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_bool swig_types[0]
2463 #define SWIGTYPE_p_char swig_types[1]
2464 #define SWIGTYPE_p_form_ops_t swig_types[2]
2465 #define SWIGTYPE_p_int swig_types[3]
2466 #define SWIGTYPE_p_unsigned_char swig_types[4]
2467 #define SWIGTYPE_p_unsigned_int swig_types[5]
2468 #define SWIGTYPE_p_unsigned_long swig_types[6]
2469 #define SWIGTYPE_p_wxANIHandler swig_types[7]
2470 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8]
2471 #define SWIGTYPE_p_wxActivateEvent swig_types[9]
2472 #define SWIGTYPE_p_wxArrayInt swig_types[10]
2473 #define SWIGTYPE_p_wxBMPHandler swig_types[11]
2474 #define SWIGTYPE_p_wxBitmap swig_types[12]
2475 #define SWIGTYPE_p_wxBoxSizer swig_types[13]
2476 #define SWIGTYPE_p_wxCURHandler swig_types[14]
2477 #define SWIGTYPE_p_wxCalculateLayoutEvent swig_types[15]
2478 #define SWIGTYPE_p_wxChildFocusEvent swig_types[16]
2479 #define SWIGTYPE_p_wxCloseEvent swig_types[17]
2480 #define SWIGTYPE_p_wxColour swig_types[18]
2481 #define SWIGTYPE_p_wxColourData swig_types[19]
2482 #define SWIGTYPE_p_wxColourDialog swig_types[20]
2483 #define SWIGTYPE_p_wxCommandEvent swig_types[21]
2484 #define SWIGTYPE_p_wxContextMenuEvent swig_types[22]
2485 #define SWIGTYPE_p_wxControl swig_types[23]
2486 #define SWIGTYPE_p_wxControlWithItems swig_types[24]
2487 #define SWIGTYPE_p_wxDC swig_types[25]
2488 #define SWIGTYPE_p_wxDateEvent swig_types[26]
2489 #define SWIGTYPE_p_wxDialog swig_types[27]
2490 #define SWIGTYPE_p_wxDirDialog swig_types[28]
2491 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[29]
2492 #define SWIGTYPE_p_wxDropFilesEvent swig_types[30]
2493 #define SWIGTYPE_p_wxDuplexMode swig_types[31]
2494 #define SWIGTYPE_p_wxEraseEvent swig_types[32]
2495 #define SWIGTYPE_p_wxEvent swig_types[33]
2496 #define SWIGTYPE_p_wxEvtHandler swig_types[34]
2497 #define SWIGTYPE_p_wxFSFile swig_types[35]
2498 #define SWIGTYPE_p_wxFileDialog swig_types[36]
2499 #define SWIGTYPE_p_wxFileSystem swig_types[37]
2500 #define SWIGTYPE_p_wxFindDialogEvent swig_types[38]
2501 #define SWIGTYPE_p_wxFindReplaceData swig_types[39]
2502 #define SWIGTYPE_p_wxFindReplaceDialog swig_types[40]
2503 #define SWIGTYPE_p_wxFlexGridSizer swig_types[41]
2504 #define SWIGTYPE_p_wxFocusEvent swig_types[42]
2505 #define SWIGTYPE_p_wxFont swig_types[43]
2506 #define SWIGTYPE_p_wxFontData swig_types[44]
2507 #define SWIGTYPE_p_wxFontDialog swig_types[45]
2508 #define SWIGTYPE_p_wxFrame swig_types[46]
2509 #define SWIGTYPE_p_wxGBSizerItem swig_types[47]
2510 #define SWIGTYPE_p_wxGIFHandler swig_types[48]
2511 #define SWIGTYPE_p_wxGridBagSizer swig_types[49]
2512 #define SWIGTYPE_p_wxGridSizer swig_types[50]
2513 #define SWIGTYPE_p_wxHtmlLinkInfo swig_types[51]
2514 #define SWIGTYPE_p_wxICOHandler swig_types[52]
2515 #define SWIGTYPE_p_wxIcon swig_types[53]
2516 #define SWIGTYPE_p_wxIconBundle swig_types[54]
2517 #define SWIGTYPE_p_wxIconizeEvent swig_types[55]
2518 #define SWIGTYPE_p_wxIdleEvent swig_types[56]
2519 #define SWIGTYPE_p_wxImage swig_types[57]
2520 #define SWIGTYPE_p_wxImageHandler swig_types[58]
2521 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[59]
2522 #define SWIGTYPE_p_wxInitDialogEvent swig_types[60]
2523 #define SWIGTYPE_p_wxJPEGHandler swig_types[61]
2524 #define SWIGTYPE_p_wxKeyEvent swig_types[62]
2525 #define SWIGTYPE_p_wxLayoutAlgorithm swig_types[63]
2526 #define SWIGTYPE_p_wxLayoutConstraints swig_types[64]
2527 #define SWIGTYPE_p_wxMDIChildFrame swig_types[65]
2528 #define SWIGTYPE_p_wxMDIClientWindow swig_types[66]
2529 #define SWIGTYPE_p_wxMDIParentFrame swig_types[67]
2530 #define SWIGTYPE_p_wxMaximizeEvent swig_types[68]
2531 #define SWIGTYPE_p_wxMenu swig_types[69]
2532 #define SWIGTYPE_p_wxMenuBar swig_types[70]
2533 #define SWIGTYPE_p_wxMenuEvent swig_types[71]
2534 #define SWIGTYPE_p_wxMenuItem swig_types[72]
2535 #define SWIGTYPE_p_wxMessageDialog swig_types[73]
2536 #define SWIGTYPE_p_wxMiniFrame swig_types[74]
2537 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[75]
2538 #define SWIGTYPE_p_wxMouseEvent swig_types[76]
2539 #define SWIGTYPE_p_wxMoveEvent swig_types[77]
2540 #define SWIGTYPE_p_wxMultiChoiceDialog swig_types[78]
2541 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[79]
2542 #define SWIGTYPE_p_wxNcPaintEvent swig_types[80]
2543 #define SWIGTYPE_p_wxNotifyEvent swig_types[81]
2544 #define SWIGTYPE_p_wxObject swig_types[82]
2545 #define SWIGTYPE_p_wxPCXHandler swig_types[83]
2546 #define SWIGTYPE_p_wxPNGHandler swig_types[84]
2547 #define SWIGTYPE_p_wxPNMHandler swig_types[85]
2548 #define SWIGTYPE_p_wxPageSetupDialog swig_types[86]
2549 #define SWIGTYPE_p_wxPageSetupDialogData swig_types[87]
2550 #define SWIGTYPE_p_wxPaintEvent swig_types[88]
2551 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[89]
2552 #define SWIGTYPE_p_wxPanel swig_types[90]
2553 #define SWIGTYPE_p_wxPaperSize swig_types[91]
2554 #define SWIGTYPE_p_wxPasswordEntryDialog swig_types[92]
2555 #define SWIGTYPE_p_wxPoint swig_types[93]
2556 #define SWIGTYPE_p_wxPopupWindow swig_types[94]
2557 #define SWIGTYPE_p_wxPreviewCanvas swig_types[95]
2558 #define SWIGTYPE_p_wxPreviewControlBar swig_types[96]
2559 #define SWIGTYPE_p_wxPreviewFrame swig_types[97]
2560 #define SWIGTYPE_p_wxPrintData swig_types[98]
2561 #define SWIGTYPE_p_wxPrintDialog swig_types[99]
2562 #define SWIGTYPE_p_wxPrintDialogData swig_types[100]
2563 #define SWIGTYPE_p_wxPrintPreview swig_types[101]
2564 #define SWIGTYPE_p_wxPrinter swig_types[102]
2565 #define SWIGTYPE_p_wxProgressDialog swig_types[103]
2566 #define SWIGTYPE_p_wxPyApp swig_types[104]
2567 #define SWIGTYPE_p_wxPyCommandEvent swig_types[105]
2568 #define SWIGTYPE_p_wxPyEvent swig_types[106]
2569 #define SWIGTYPE_p_wxPyHtmlListBox swig_types[107]
2570 #define SWIGTYPE_p_wxPyImageHandler swig_types[108]
2571 #define SWIGTYPE_p_wxPyPanel swig_types[109]
2572 #define SWIGTYPE_p_wxPyPopupTransientWindow swig_types[110]
2573 #define SWIGTYPE_p_wxPyPreviewControlBar swig_types[111]
2574 #define SWIGTYPE_p_wxPyPreviewFrame swig_types[112]
2575 #define SWIGTYPE_p_wxPyPrintPreview swig_types[113]
2576 #define SWIGTYPE_p_wxPyPrintout swig_types[114]
2577 #define SWIGTYPE_p_wxPyScrolledWindow swig_types[115]
2578 #define SWIGTYPE_p_wxPySizer swig_types[116]
2579 #define SWIGTYPE_p_wxPyTaskBarIcon swig_types[117]
2580 #define SWIGTYPE_p_wxPyVListBox swig_types[118]
2581 #define SWIGTYPE_p_wxPyVScrolledWindow swig_types[119]
2582 #define SWIGTYPE_p_wxPyValidator swig_types[120]
2583 #define SWIGTYPE_p_wxPyWindow swig_types[121]
2584 #define SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[122]
2585 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[123]
2586 #define SWIGTYPE_p_wxRect swig_types[124]
2587 #define SWIGTYPE_p_wxRegion swig_types[125]
2588 #define SWIGTYPE_p_wxSashEvent swig_types[126]
2589 #define SWIGTYPE_p_wxSashLayoutWindow swig_types[127]
2590 #define SWIGTYPE_p_wxSashWindow swig_types[128]
2591 #define SWIGTYPE_p_wxScrollEvent swig_types[129]
2592 #define SWIGTYPE_p_wxScrollWinEvent swig_types[130]
2593 #define SWIGTYPE_p_wxScrolledWindow swig_types[131]
2594 #define SWIGTYPE_p_wxSetCursorEvent swig_types[132]
2595 #define SWIGTYPE_p_wxShowEvent swig_types[133]
2596 #define SWIGTYPE_p_wxSingleChoiceDialog swig_types[134]
2597 #define SWIGTYPE_p_wxSize swig_types[135]
2598 #define SWIGTYPE_p_wxSizeEvent swig_types[136]
2599 #define SWIGTYPE_p_wxSizer swig_types[137]
2600 #define SWIGTYPE_p_wxSizerItem swig_types[138]
2601 #define SWIGTYPE_p_wxSplashScreen swig_types[139]
2602 #define SWIGTYPE_p_wxSplashScreenWindow swig_types[140]
2603 #define SWIGTYPE_p_wxSplitterEvent swig_types[141]
2604 #define SWIGTYPE_p_wxSplitterWindow swig_types[142]
2605 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[143]
2606 #define SWIGTYPE_p_wxStatusBar swig_types[144]
2607 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[145]
2608 #define SWIGTYPE_p_wxString swig_types[146]
2609 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[147]
2610 #define SWIGTYPE_p_wxTIFFHandler swig_types[148]
2611 #define SWIGTYPE_p_wxTaskBarIcon swig_types[149]
2612 #define SWIGTYPE_p_wxTaskBarIconEvent swig_types[150]
2613 #define SWIGTYPE_p_wxTextEntryDialog swig_types[151]
2614 #define SWIGTYPE_p_wxTipWindow swig_types[152]
2615 #define SWIGTYPE_p_wxToolBar swig_types[153]
2616 #define SWIGTYPE_p_wxTopLevelWindow swig_types[154]
2617 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[155]
2618 #define SWIGTYPE_p_wxValidator swig_types[156]
2619 #define SWIGTYPE_p_wxVisualAttributes swig_types[157]
2620 #define SWIGTYPE_p_wxWindow swig_types[158]
2621 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[159]
2622 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[160]
2623 #define SWIGTYPE_p_wxXPMHandler swig_types[161]
2624 static swig_type_info
*swig_types
[163];
2625 static swig_module_info swig_module
= {swig_types
, 162, 0, 0, 0, 0};
2626 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2627 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2629 /* -------- TYPES TABLE (END) -------- */
2631 #if (PY_VERSION_HEX <= 0x02000000)
2632 # if !defined(SWIG_PYTHON_CLASSIC)
2633 # error "This python version requires to use swig with the '-classic' option"
2636 #if (PY_VERSION_HEX <= 0x02020000)
2637 # error "This python version requires to use swig with the '-nomodern' option"
2639 #if (PY_VERSION_HEX <= 0x02020000)
2640 # error "This python version requires to use swig with the '-nomodernargs' option"
2643 # error "This python version requires to use swig with the '-nofastunpack' option"
2646 /*-----------------------------------------------
2647 @(target):= _windows_.so
2648 ------------------------------------------------*/
2649 #define SWIG_init init_windows_
2651 #define SWIG_name "_windows_"
2653 #define SWIGVERSION 0x010329
2656 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2657 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2660 #include <stdexcept>
2664 class PyObject_ptr
{
2669 PyObject_ptr() :_obj(0)
2673 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2678 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2680 if (initial_ref
) Py_XINCREF(_obj
);
2683 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2685 Py_XINCREF(item
._obj
);
2696 operator PyObject
*() const
2701 PyObject
*operator->() const
2710 struct PyObject_var
: PyObject_ptr
{
2711 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2713 PyObject_var
& operator = (PyObject
* obj
)
2723 #include "wx/wxPython/wxPython.h"
2724 #include "wx/wxPython/pyclasses.h"
2727 static const wxString
wxPyEmptyString(wxEmptyString
);
2728 static const wxString
wxPyPanelNameStr(wxPanelNameStr
);
2734 # define LLONG_MIN LONG_LONG_MIN
2737 # define LLONG_MAX LONG_LONG_MAX
2740 # define ULLONG_MAX ULONG_LONG_MAX
2745 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2747 if (PyNumber_Check(obj
)) {
2748 if (val
) *val
= PyInt_AsLong(obj
);
2751 return SWIG_TypeError
;
2756 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2759 int res
= SWIG_AsVal_long (obj
, &v
);
2760 if (SWIG_IsOK(res
)) {
2761 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2762 return SWIG_OverflowError
;
2764 if (val
) *val
= static_cast< int >(v
);
2772 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2774 if (obj
== Py_True
) {
2775 if (val
) *val
= true;
2777 } else if (obj
== Py_False
) {
2778 if (val
) *val
= false;
2782 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2783 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2789 #define SWIG_From_long PyInt_FromLong
2792 SWIGINTERNINLINE PyObject
*
2793 SWIG_From_int (int value
)
2795 return SWIG_From_long (value
);
2800 SWIG_AsVal_double (PyObject
*obj
, double* val
)
2802 if (PyNumber_Check(obj
)) {
2803 if (val
) *val
= PyFloat_AsDouble(obj
);
2806 return SWIG_TypeError
;
2810 #define SWIG_From_double PyFloat_FromDouble
2812 static const wxString
wxPyFrameNameStr(wxFrameNameStr
);
2813 static const wxString
wxPyDialogNameStr(wxDialogNameStr
);
2814 static const wxString
wxPyStatusLineNameStr(wxStatusLineNameStr
);
2815 static const wxString
wxPyToolBarNameStr(wxToolBarNameStr
);
2816 SWIGINTERN
void wxTopLevelWindow_MacSetMetalAppearance(wxTopLevelWindow
*self
,bool on
){ /*wxPyRaiseNotImplemented();*/ }
2817 SWIGINTERN
bool wxTopLevelWindow_MacGetMetalAppearance(wxTopLevelWindow
const *self
){ /*wxPyRaiseNotImplemented();*/ return false; }
2820 SWIGINTERN wxRect
wxStatusBar_GetFieldRect(wxStatusBar
*self
,int i
){
2822 self
->GetFieldRect(i
, r
);
2825 static const wxString
wxPySplitterNameStr(wxT("splitter"));
2826 static const wxString
wxPySashNameStr(wxT("sashWindow"));
2827 static const wxString
wxPySashLayoutNameStr(wxT("layoutWindow"));
2829 #include <wx/popupwin.h>
2832 class wxPyPopupTransientWindow
: public wxPopupTransientWindow
2835 wxPyPopupTransientWindow() : wxPopupTransientWindow() {}
2836 wxPyPopupTransientWindow(wxWindow
* parent
, int style
= wxBORDER_NONE
)
2837 : wxPopupTransientWindow(parent
, style
) {}
2839 DEC_PYCALLBACK_BOOL_ME(ProcessLeftDown
);
2840 DEC_PYCALLBACK__(OnDismiss
);
2841 DEC_PYCALLBACK_BOOL_(CanDismiss
);
2846 IMP_PYCALLBACK_BOOL_ME(wxPyPopupTransientWindow
, wxPopupTransientWindow
, ProcessLeftDown
);
2847 IMP_PYCALLBACK__(wxPyPopupTransientWindow
, wxPopupTransientWindow
, OnDismiss
);
2848 IMP_PYCALLBACK_BOOL_(wxPyPopupTransientWindow
, wxPopupTransientWindow
, CanDismiss
);
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
); }
2925 // update the thumb size shown by the scrollbar
2926 void UpdateScrollbar() { wxVScrolledWindow::UpdateScrollbar(); }
2928 // remove the scrollbar completely because we don't need it
2929 void RemoveScrollbar() { wxVScrolledWindow::RemoveScrollbar(); }
2934 IMPLEMENT_ABSTRACT_CLASS(wxPyVScrolledWindow
, wxVScrolledWindow
);
2936 IMP_PYCALLBACK_COORD_SIZET_constpure(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLineHeight
);
2937 IMP_PYCALLBACK_VOID_SIZETSIZET_const(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLinesHint
);
2938 IMP_PYCALLBACK_COORD_const (wxPyVScrolledWindow
, wxVScrolledWindow
, EstimateTotalHeight
);
2942 SWIG_AsVal_unsigned_SS_long (PyObject
* obj
, unsigned long* val
)
2945 if (SWIG_AsVal_long(obj
, &v
) && v
< 0) {
2946 return SWIG_TypeError
;
2949 *val
= (unsigned long)v
;
2954 SWIGINTERNINLINE
int
2955 SWIG_AsVal_size_t (PyObject
* obj
, size_t *val
)
2958 int res
= SWIG_AsVal_unsigned_SS_long (obj
, val
? &v
: 0);
2959 if (SWIG_IsOK(res
) && val
) *val
= static_cast< size_t >(v
);
2964 SWIGINTERNINLINE PyObject
*
2965 SWIG_From_unsigned_SS_long (unsigned long value
)
2967 return (value
> LONG_MAX
) ?
2968 PyLong_FromUnsignedLong(value
) : PyInt_FromLong(static_cast< long >(value
));
2972 SWIGINTERNINLINE PyObject
*
2973 SWIG_From_size_t (size_t value
)
2975 return SWIG_From_unsigned_SS_long (static_cast< unsigned long >(value
));
2979 #include <wx/vlbox.h>
2981 static const wxString
wxPyVListBoxNameStr(wxVListBoxNameStr
);
2983 class wxPyVListBox
: public wxVListBox
2985 DECLARE_ABSTRACT_CLASS(wxPyVListBox
)
2987 wxPyVListBox() : wxVListBox() {}
2989 wxPyVListBox(wxWindow
*parent
,
2990 wxWindowID id
= wxID_ANY
,
2991 const wxPoint
& pos
= wxDefaultPosition
,
2992 const wxSize
& size
= wxDefaultSize
,
2994 const wxString
& name
= wxPyVListBoxNameStr
)
2995 : wxVListBox(parent
, id
, pos
, size
, style
, name
)
2998 // Overridable virtuals
3000 // the derived class must implement this function to actually draw the item
3001 // with the given index on the provided DC
3002 // virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const = 0;
3003 DEC_PYCALLBACK__DCRECTSIZET_constpure(OnDrawItem
);
3006 // the derived class must implement this method to return the height of the
3008 // virtual wxCoord OnMeasureItem(size_t n) const = 0;
3009 DEC_PYCALLBACK_COORD_SIZET_constpure(OnMeasureItem
);
3012 // this method may be used to draw separators between the lines; note that
3013 // the rectangle may be modified, typically to deflate it a bit before
3014 // passing to OnDrawItem()
3016 // the base class version doesn't do anything
3017 // virtual void OnDrawSeparator(wxDC& dc, wxRect& rect, size_t n) const;
3018 DEC_PYCALLBACK__DCRECTSIZET2_const(OnDrawSeparator
);
3021 // this method is used to draw the items background and, maybe, a border
3024 // the base class version implements a reasonable default behaviour which
3025 // consists in drawing the selected item with the standard background
3026 // colour and drawing a border around the item if it is either selected or
3028 // virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const;
3029 DEC_PYCALLBACK__DCRECTSIZET_const(OnDrawBackground
);
3035 IMPLEMENT_ABSTRACT_CLASS(wxPyVListBox
, wxVListBox
);
3037 IMP_PYCALLBACK__DCRECTSIZET_constpure(wxPyVListBox
, wxVListBox
, OnDrawItem
);
3038 IMP_PYCALLBACK_COORD_SIZET_constpure (wxPyVListBox
, wxVListBox
, OnMeasureItem
);
3039 IMP_PYCALLBACK__DCRECTSIZET2_const (wxPyVListBox
, wxVListBox
, OnDrawSeparator
);
3040 IMP_PYCALLBACK__DCRECTSIZET_const (wxPyVListBox
, wxVListBox
, OnDrawBackground
);
3043 SWIGINTERN PyObject
*wxPyVListBox_GetFirstSelected(wxPyVListBox
*self
){
3044 unsigned long cookie
= 0;
3045 int selected
= self
->GetFirstSelected(cookie
);
3046 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3047 PyObject
* tup
= PyTuple_New(2);
3048 PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
));
3049 PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
));
3050 wxPyEndBlockThreads(blocked
);
3053 SWIGINTERN PyObject
*wxPyVListBox_GetNextSelected(wxPyVListBox
*self
,unsigned long cookie
){
3054 int selected
= self
->GetNextSelected(cookie
);
3055 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3056 PyObject
* tup
= PyTuple_New(2);
3057 PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
));
3058 PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
));
3059 wxPyEndBlockThreads(blocked
);
3063 #include <wx/htmllbox.h>
3066 class wxPyHtmlListBox
: public wxHtmlListBox
3068 DECLARE_ABSTRACT_CLASS(wxPyHtmlListBox
)
3070 wxPyHtmlListBox() : wxHtmlListBox() {}
3072 wxPyHtmlListBox(wxWindow
*parent
,
3073 wxWindowID id
= wxID_ANY
,
3074 const wxPoint
& pos
= wxDefaultPosition
,
3075 const wxSize
& size
= wxDefaultSize
,
3077 const wxString
& name
= wxPyVListBoxNameStr
)
3078 : wxHtmlListBox(parent
, id
, pos
, size
, style
, name
)
3081 // Overridable virtuals
3083 // this method must be implemented in the derived class and should return
3084 // the body (i.e. without <html>) of the HTML for the given item
3085 DEC_PYCALLBACK_STRING_SIZET_pure(OnGetItem
);
3087 // this function may be overridden to decorate HTML returned by OnGetItem()
3088 DEC_PYCALLBACK_STRING_SIZET(OnGetItemMarkup
);
3090 // These are from wxVListBox
3091 DEC_PYCALLBACK__DCRECTSIZET2_const(OnDrawSeparator
);
3092 DEC_PYCALLBACK__DCRECTSIZET_const(OnDrawBackground
);
3095 // // this method allows to customize the selection appearance: it may be used
3096 // // to specify the colour of the text which normally has the given colour
3097 // // colFg when it is inside the selection
3099 // // by default, the original colour is not used at all and all text has the
3100 // // same (default for this system) colour inside selection
3101 // virtual wxColour GetSelectedTextColour(const wxColour& colFg) const;
3103 // // this is the same as GetSelectedTextColour() but allows to customize the
3104 // // background colour -- this is even more rarely used as you can change it
3105 // // globally using SetSelectionBackground()
3106 // virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) const;
3109 // This method may be overriden to handle clicking on a link in
3110 // the listbox. By default, clicking links is ignored.
3111 virtual void OnLinkClicked(size_t n
,
3112 const wxHtmlLinkInfo
& link
);
3118 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlListBox
, wxHtmlListBox
)
3120 IMP_PYCALLBACK_STRING_SIZET_pure(wxPyHtmlListBox
, wxHtmlListBox
, OnGetItem
);
3121 IMP_PYCALLBACK_STRING_SIZET (wxPyHtmlListBox
, wxHtmlListBox
, OnGetItemMarkup
);
3122 IMP_PYCALLBACK__DCRECTSIZET2_const (wxPyHtmlListBox
, wxHtmlListBox
, OnDrawSeparator
);
3123 IMP_PYCALLBACK__DCRECTSIZET_const (wxPyHtmlListBox
, wxHtmlListBox
, OnDrawBackground
);
3126 void wxPyHtmlListBox::OnLinkClicked(size_t n
,
3127 const wxHtmlLinkInfo
& link
) {
3129 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3130 if ((found
= wxPyCBH_findCallback(m_myInst
, "OnLinkClicked"))) {
3131 PyObject
* obj
= wxPyConstructObject((void*)&link
, wxT("wxHtmlLinkInfo"), 0);
3132 wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(iO)", n
, obj
));
3135 wxPyEndBlockThreads(blocked
);
3137 wxPyHtmlListBox::OnLinkClicked(n
, link
);
3144 #ifndef wxHAS_TASK_BAR_ICON
3145 // implement dummy classes for platforms that don't have it
3147 class wxTaskBarIcon
: public wxEvtHandler
3150 wxTaskBarIcon() { wxPyRaiseNotImplemented(); }
3154 class wxTaskBarIconEvent
: public wxEvent
3157 wxTaskBarIconEvent(wxEventType
, wxTaskBarIcon
*)
3158 { wxPyRaiseNotImplemented(); }
3159 virtual wxEvent
* Clone() const { return NULL
; }
3160 bool IsOk() const { return false; }
3161 bool IsIconInstalled() const { return false; }
3162 bool SetIcon(const wxIcon
& icon
, const wxString
& tooltip
= wxPyEmptyString
) { return false; }
3163 bool RemoveIcon() { return false; }
3164 bool PopupMenu(wxMenu
*menu
) { return false; }
3168 wxEVT_TASKBAR_MOVE
= 0,
3169 wxEVT_TASKBAR_LEFT_DOWN
= 0,
3170 wxEVT_TASKBAR_LEFT_UP
= 0,
3171 wxEVT_TASKBAR_RIGHT_DOWN
= 0,
3172 wxEVT_TASKBAR_RIGHT_UP
= 0,
3173 wxEVT_TASKBAR_LEFT_DCLICK
= 0,
3174 wxEVT_TASKBAR_RIGHT_DCLICK
= 0,
3179 // Otherwise make a class that can virtualize CreatePopupMenu
3180 class wxPyTaskBarIcon
: public wxTaskBarIcon
3182 DECLARE_ABSTRACT_CLASS(wxPyTaskBarIcon
)
3184 wxPyTaskBarIcon() : wxTaskBarIcon()
3187 wxMenu
* CreatePopupMenu() {
3188 wxMenu
*rval
= NULL
;
3190 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3191 if ((found
= wxPyCBH_findCallback(m_myInst
, "CreatePopupMenu"))) {
3194 ro
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3196 if (wxPyConvertSwigPtr(ro
, (void **)&ptr
, wxT("wxMenu")))
3201 wxPyEndBlockThreads(blocked
);
3203 rval
= wxTaskBarIcon::CreatePopupMenu();
3210 IMPLEMENT_ABSTRACT_CLASS(wxPyTaskBarIcon
, wxTaskBarIcon
);
3214 SWIGINTERN
void wxPyTaskBarIcon_Destroy(wxPyTaskBarIcon
*self
){
3218 static const wxString
wxPyFileSelectorPromptStr(wxFileSelectorPromptStr
);
3219 static const wxString
wxPyDirSelectorPromptStr(wxDirSelectorPromptStr
);
3220 static const wxString
wxPyDirDialogNameStr(wxDirDialogNameStr
);
3221 static const wxString
wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr
);
3222 static const wxString
wxPyGetTextFromUserPromptStr(wxGetTextFromUserPromptStr
);
3223 static const wxString
wxPyMessageBoxCaptionStr(wxMessageBoxCaptionStr
);
3224 SWIGINTERN PyObject
*wxFileDialog_GetFilenames(wxFileDialog
*self
){
3226 self
->GetFilenames(arr
);
3227 return wxArrayString2PyList_helper(arr
);
3229 SWIGINTERN PyObject
*wxFileDialog_GetPaths(wxFileDialog
*self
){
3231 self
->GetPaths(arr
);
3232 return wxArrayString2PyList_helper(arr
);
3234 SWIGINTERN PyObject
*wxMultiChoiceDialog_GetSelections(wxMultiChoiceDialog
*self
){
3235 return wxArrayInt2PyList_helper(self
->GetSelections());
3237 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
){
3238 return new wxSingleChoiceDialog(parent
, message
, caption
,
3239 choices
, choices_array
, NULL
, style
, pos
);
3241 static const wxString
wxPyGetPasswordFromUserPromptStr(wxGetPasswordFromUserPromptStr
);
3243 SWIGINTERNINLINE PyObject
*
3244 SWIG_From_bool (bool value
)
3246 return PyBool_FromLong(value
? 1 : 0);
3252 // C++ version of Python aware wxWindow
3253 class wxPyWindow
: public wxWindow
3255 DECLARE_DYNAMIC_CLASS(wxPyWindow
)
3257 wxPyWindow() : wxWindow() {}
3258 wxPyWindow(wxWindow
* parent
, const wxWindowID id
,
3259 const wxPoint
& pos
= wxDefaultPosition
,
3260 const wxSize
& size
= wxDefaultSize
,
3262 const wxString
& name
= wxPyPanelNameStr
)
3263 : wxWindow(parent
, id
, pos
, size
, style
, name
) {}
3265 void SetBestSize(const wxSize
& size
) { wxWindow::SetBestSize(size
); }
3267 bool DoEraseBackground(wxDC
* dc
) {
3269 return wxWindow::DoEraseBackground(dc
->GetHDC());
3271 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3277 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3278 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3279 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3280 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3282 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3283 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3284 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3286 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3287 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3289 DEC_PYCALLBACK__(InitDialog
);
3290 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3291 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3292 DEC_PYCALLBACK_BOOL_(Validate
);
3294 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3295 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3296 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3298 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3299 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3301 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3302 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3304 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3306 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3311 IMPLEMENT_DYNAMIC_CLASS(wxPyWindow
, wxWindow
);
3313 IMP_PYCALLBACK_VOID_INT4(wxPyWindow
, wxWindow
, DoMoveWindow
);
3314 IMP_PYCALLBACK_VOID_INT5(wxPyWindow
, wxWindow
, DoSetSize
);
3315 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetClientSize
);
3316 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetVirtualSize
);
3318 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetSize
);
3319 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetClientSize
);
3320 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetPosition
);
3322 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetVirtualSize
);
3323 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetBestSize
);
3325 IMP_PYCALLBACK__(wxPyWindow
, wxWindow
, InitDialog
);
3326 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataFromWindow
);
3327 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataToWindow
);
3328 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, Validate
);
3330 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocus
);
3331 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocusFromKeyboard
);
3332 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, GetMaxSize
);
3334 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, AddChild
);
3335 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, RemoveChild
);
3337 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, ShouldInheritColours
);
3338 IMP_PYCALLBACK_VIZATTR_(wxPyWindow
, wxWindow
, GetDefaultAttributes
);
3340 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, HasTransparentBackground
);
3342 IMP_PYCALLBACK_VOID_(wxPyWindow
, wxWindow
, OnInternalIdle
);
3344 // C++ version of Python aware wxPanel
3345 class wxPyPanel
: public wxPanel
3347 DECLARE_DYNAMIC_CLASS(wxPyPanel
)
3349 wxPyPanel() : wxPanel() {}
3350 wxPyPanel(wxWindow
* parent
, const wxWindowID id
,
3351 const wxPoint
& pos
= wxDefaultPosition
,
3352 const wxSize
& size
= wxDefaultSize
,
3354 const wxString
& name
= wxPyPanelNameStr
)
3355 : wxPanel(parent
, id
, pos
, size
, style
, name
) {}
3357 void SetBestSize(const wxSize
& size
) { wxPanel::SetBestSize(size
); }
3358 bool DoEraseBackground(wxDC
* dc
) {
3360 return wxWindow::DoEraseBackground(dc
->GetHDC());
3362 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3369 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3370 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3371 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3372 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3374 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3375 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3376 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3378 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3379 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3381 DEC_PYCALLBACK__(InitDialog
);
3382 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3383 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3384 DEC_PYCALLBACK_BOOL_(Validate
);
3386 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3387 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3388 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3390 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3391 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3393 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3394 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3396 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3398 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3403 IMPLEMENT_DYNAMIC_CLASS(wxPyPanel
, wxPanel
);
3405 IMP_PYCALLBACK_VOID_INT4(wxPyPanel
, wxPanel
, DoMoveWindow
);
3406 IMP_PYCALLBACK_VOID_INT5(wxPyPanel
, wxPanel
, DoSetSize
);
3407 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetClientSize
);
3408 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetVirtualSize
);
3410 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetSize
);
3411 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetClientSize
);
3412 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetPosition
);
3414 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetVirtualSize
);
3415 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetBestSize
);
3417 IMP_PYCALLBACK__(wxPyPanel
, wxPanel
, InitDialog
);
3418 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataFromWindow
);
3419 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataToWindow
);
3420 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, Validate
);
3422 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocus
);
3423 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocusFromKeyboard
);
3424 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, GetMaxSize
);
3426 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, AddChild
);
3427 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, RemoveChild
);
3429 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, ShouldInheritColours
);
3430 IMP_PYCALLBACK_VIZATTR_(wxPyPanel
, wxPanel
, GetDefaultAttributes
);
3432 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, HasTransparentBackground
);
3434 IMP_PYCALLBACK_VOID_(wxPyPanel
, wxPanel
, OnInternalIdle
);
3436 // C++ version of Python aware wxScrolledWindow
3437 class wxPyScrolledWindow
: public wxScrolledWindow
3439 DECLARE_DYNAMIC_CLASS(wxPyScrolledWindow
)
3441 wxPyScrolledWindow() : wxScrolledWindow() {}
3442 wxPyScrolledWindow(wxWindow
* parent
, const wxWindowID id
,
3443 const wxPoint
& pos
= wxDefaultPosition
,
3444 const wxSize
& size
= wxDefaultSize
,
3446 const wxString
& name
= wxPyPanelNameStr
)
3447 : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
) {}
3449 void SetBestSize(const wxSize
& size
) { wxScrolledWindow::SetBestSize(size
); }
3450 bool DoEraseBackground(wxDC
* dc
) {
3452 return wxWindow::DoEraseBackground(dc
->GetHDC());
3454 dc
->SetBackground(wxBrush(GetBackgroundColour()));
3460 DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
);
3461 DEC_PYCALLBACK_VOID_INT5(DoSetSize
);
3462 DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
);
3463 DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
);
3465 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
);
3466 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
);
3467 DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
);
3469 DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
);
3470 DEC_PYCALLBACK_SIZE_const(DoGetBestSize
);
3472 DEC_PYCALLBACK__(InitDialog
);
3473 DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
);
3474 DEC_PYCALLBACK_BOOL_(TransferDataToWindow
);
3475 DEC_PYCALLBACK_BOOL_(Validate
);
3477 DEC_PYCALLBACK_BOOL_const(AcceptsFocus
);
3478 DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
);
3479 DEC_PYCALLBACK_SIZE_const(GetMaxSize
);
3481 DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
);
3482 DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
);
3484 DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
);
3485 DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
);
3487 DEC_PYCALLBACK_BOOL_(HasTransparentBackground
);
3489 DEC_PYCALLBACK_VOID_(OnInternalIdle
);
3494 IMPLEMENT_DYNAMIC_CLASS(wxPyScrolledWindow
, wxScrolledWindow
);
3496 IMP_PYCALLBACK_VOID_INT4(wxPyScrolledWindow
, wxScrolledWindow
, DoMoveWindow
);
3497 IMP_PYCALLBACK_VOID_INT5(wxPyScrolledWindow
, wxScrolledWindow
, DoSetSize
);
3498 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetClientSize
);
3499 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetVirtualSize
);
3501 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetSize
);
3502 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetClientSize
);
3503 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetPosition
);
3505 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetVirtualSize
);
3506 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetBestSize
);
3508 IMP_PYCALLBACK__(wxPyScrolledWindow
, wxScrolledWindow
, InitDialog
);
3509 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataFromWindow
);
3510 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataToWindow
);
3511 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, Validate
);
3513 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocus
);
3514 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocusFromKeyboard
);
3515 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, GetMaxSize
);
3517 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, AddChild
);
3518 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, RemoveChild
);
3520 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, ShouldInheritColours
);
3521 IMP_PYCALLBACK_VIZATTR_(wxPyScrolledWindow
, wxScrolledWindow
, GetDefaultAttributes
);
3523 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, HasTransparentBackground
);
3525 IMP_PYCALLBACK_VOID_(wxPyScrolledWindow
, wxScrolledWindow
, OnInternalIdle
);
3528 #include "wx/wxPython/printfw.h"
3531 static const wxString
wxPyPrintoutTitleStr(wxT("Printout"));
3532 static const wxString
wxPyPreviewCanvasNameStr(wxT("previewcanvas"));
3533 SWIGINTERN PyObject
*wxPrintData_GetPrivData(wxPrintData
*self
){
3535 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3536 data
= PyString_FromStringAndSize(self
->GetPrivData(),
3537 self
->GetPrivDataLen());
3538 wxPyEndBlockThreads(blocked
);
3541 SWIGINTERN
void wxPrintData_SetPrivData(wxPrintData
*self
,PyObject
*data
){
3542 if (! PyString_Check(data
)) {
3543 wxPyBLOCK_THREADS(PyErr_SetString(PyExc_TypeError
,
3544 "Expected string object"));
3548 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3549 self
->SetPrivData(PyString_AS_STRING(data
), PyString_GET_SIZE(data
));
3550 wxPyEndBlockThreads(blocked
);
3554 IMPLEMENT_ABSTRACT_CLASS(wxPyPrintout
, wxPrintout
);
3556 // Since this one would be tough and ugly to do with the Macros...
3557 void wxPyPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *pageFrom
, int *pageTo
) {
3558 bool hadErr
= false;
3561 wxPyBlock_t blocked
= wxPyBeginBlockThreads();
3562 if ((found
= wxPyCBH_findCallback(m_myInst
, "GetPageInfo"))) {
3563 PyObject
* result
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()"));
3564 if (result
&& PyTuple_Check(result
) && PyTuple_Size(result
) == 4) {
3567 val
= PyTuple_GetItem(result
, 0);
3568 if (PyInt_Check(val
)) *minPage
= PyInt_AsLong(val
);
3571 val
= PyTuple_GetItem(result
, 1);
3572 if (PyInt_Check(val
)) *maxPage
= PyInt_AsLong(val
);
3575 val
= PyTuple_GetItem(result
, 2);
3576 if (PyInt_Check(val
)) *pageFrom
= PyInt_AsLong(val
);
3579 val
= PyTuple_GetItem(result
, 3);
3580 if (PyInt_Check(val
)) *pageTo
= PyInt_AsLong(val
);
3587 PyErr_SetString(PyExc_TypeError
, "GetPageInfo should return a tuple of 4 integers.");
3592 wxPyEndBlockThreads(blocked
);
3594 wxPrintout::GetPageInfo(minPage
, maxPage
, pageFrom
, pageTo
);
3599 IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout
, wxPrintout
, OnBeginDocument
);
3600 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndDocument
);
3601 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnBeginPrinting
);
3602 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndPrinting
);
3603 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnPreparePrinting
);
3604 IMP_PYCALLBACK_BOOL_INT_pure(wxPyPrintout
, wxPrintout
, OnPrintPage
);
3605 IMP_PYCALLBACK_BOOL_INT(wxPyPrintout
, wxPrintout
, HasPage
);
3611 #define DEC_PYCALLBACK_BOOL_PREWINDC(CBNAME) \
3612 bool CBNAME(wxPreviewCanvas* a, wxDC& b)
3615 #define IMP_PYCALLBACK_BOOL_PREWINDC(CLASS, PCLASS, CBNAME) \
3616 bool CLASS::CBNAME(wxPreviewCanvas* a, wxDC& b) { \
3619 wxPyBlock_t blocked = wxPyBeginBlockThreads(); \
3620 if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) { \
3621 PyObject* win = wxPyMake_wxObject(a,false); \
3622 PyObject* dc = wxPyMake_wxObject(&b,false); \
3623 rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", win, dc)); \
3627 wxPyEndBlockThreads(blocked); \
3629 rval = PCLASS::CBNAME(a, b); \
3636 class wxPyPrintPreview
: public wxPrintPreview
3638 DECLARE_CLASS(wxPyPrintPreview
)
3640 wxPyPrintPreview(wxPyPrintout
* printout
,
3641 wxPyPrintout
* printoutForPrinting
,
3642 wxPrintDialogData
* data
=NULL
)
3643 : wxPrintPreview(printout
, printoutForPrinting
, data
)
3645 wxPyPrintPreview(wxPyPrintout
* printout
,
3646 wxPyPrintout
* printoutForPrinting
,
3648 : wxPrintPreview(printout
, printoutForPrinting
, data
)
3651 DEC_PYCALLBACK_BOOL_INT(SetCurrentPage
);
3652 DEC_PYCALLBACK_BOOL_PREWINDC(PaintPage
);
3653 DEC_PYCALLBACK_BOOL_PREWINDC(DrawBlankPage
);
3654 DEC_PYCALLBACK_BOOL_INT(RenderPage
);
3655 DEC_PYCALLBACK_VOID_INT(SetZoom
);
3656 DEC_PYCALLBACK_BOOL_BOOL(Print
);
3657 DEC_PYCALLBACK_VOID_(DetermineScaling
);
3662 // Stupid renamed classes... Fix this in 2.5...
3663 #if defined(__WXMSW__)
3664 IMPLEMENT_CLASS( wxPyPrintPreview
, wxWindowsPrintPreview
);
3665 #elif defined(__WXMAC__)
3666 IMPLEMENT_CLASS( wxPyPrintPreview
, wxMacPrintPreview
);
3668 IMPLEMENT_CLASS( wxPyPrintPreview
, wxPostScriptPrintPreview
);
3671 IMP_PYCALLBACK_BOOL_INT (wxPyPrintPreview
, wxPrintPreview
, SetCurrentPage
);
3672 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, PaintPage
);
3673 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, DrawBlankPage
);
3674 IMP_PYCALLBACK_BOOL_INT (wxPyPrintPreview
, wxPrintPreview
, RenderPage
);
3675 IMP_PYCALLBACK_VOID_INT (wxPyPrintPreview
, wxPrintPreview
, SetZoom
);
3676 IMP_PYCALLBACK_BOOL_BOOL (wxPyPrintPreview
, wxPrintPreview
, Print
);
3677 IMP_PYCALLBACK_VOID_ (wxPyPrintPreview
, wxPrintPreview
, DetermineScaling
);
3680 class wxPyPreviewFrame
: public wxPreviewFrame
3682 DECLARE_CLASS(wxPyPreviewFrame
)
3684 wxPyPreviewFrame(wxPrintPreview
* preview
, wxFrame
* parent
,
3685 const wxString
& title
,
3686 const wxPoint
& pos
= wxDefaultPosition
,
3687 const wxSize
& size
= wxDefaultSize
,
3688 long style
= wxDEFAULT_FRAME_STYLE
,
3689 const wxString
& name
= wxPyFrameNameStr
)
3690 : wxPreviewFrame(preview
, parent
, title
, pos
, size
, style
, name
)
3693 void SetPreviewCanvas(wxPreviewCanvas
* canvas
) { m_previewCanvas
= canvas
; }
3694 void SetControlBar(wxPreviewControlBar
* bar
) { m_controlBar
= bar
; }
3696 DEC_PYCALLBACK_VOID_(Initialize
);
3697 DEC_PYCALLBACK_VOID_(CreateCanvas
);
3698 DEC_PYCALLBACK_VOID_(CreateControlBar
);
3703 IMPLEMENT_CLASS(wxPyPreviewFrame
, wxPreviewFrame
);
3705 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, Initialize
);
3706 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateCanvas
);
3707 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateControlBar
);
3710 class wxPyPreviewControlBar
: public wxPreviewControlBar
3712 DECLARE_CLASS(wxPyPreviewControlBar
)
3714 wxPyPreviewControlBar(wxPrintPreview
*preview
,
3717 const wxPoint
& pos
= wxDefaultPosition
,
3718 const wxSize
& size
= wxDefaultSize
,
3720 const wxString
& name
= wxPyPanelNameStr
)
3721 : wxPreviewControlBar(preview
, buttons
, parent
, pos
, size
, style
, name
)
3724 void SetPrintPreview(wxPrintPreview
* preview
) { m_printPreview
= preview
; }
3726 DEC_PYCALLBACK_VOID_(CreateButtons
);
3727 DEC_PYCALLBACK_VOID_INT(SetZoomControl
);
3732 IMPLEMENT_CLASS(wxPyPreviewControlBar
, wxPreviewControlBar
);
3733 IMP_PYCALLBACK_VOID_(wxPyPreviewControlBar
, wxPreviewControlBar
, CreateButtons
);
3734 IMP_PYCALLBACK_VOID_INT(wxPyPreviewControlBar
, wxPreviewControlBar
, SetZoomControl
);
3739 SWIGINTERN PyObject
*_wrap_new_Panel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3740 PyObject
*resultobj
= 0;
3741 wxWindow
*arg1
= (wxWindow
*) 0 ;
3742 int arg2
= (int) (int)-1 ;
3743 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
3744 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
3745 wxSize
const &arg4_defvalue
= wxDefaultSize
;
3746 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
3747 long arg5
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER
;
3748 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
3749 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
3750 wxPanel
*result
= 0 ;
3759 bool temp6
= false ;
3760 PyObject
* obj0
= 0 ;
3761 PyObject
* obj1
= 0 ;
3762 PyObject
* obj2
= 0 ;
3763 PyObject
* obj3
= 0 ;
3764 PyObject
* obj4
= 0 ;
3765 PyObject
* obj5
= 0 ;
3766 char * kwnames
[] = {
3767 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
3770 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Panel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
3771 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3772 if (!SWIG_IsOK(res1
)) {
3773 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Panel" "', expected argument " "1"" of type '" "wxWindow *""'");
3775 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
3777 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3778 if (!SWIG_IsOK(ecode2
)) {
3779 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Panel" "', expected argument " "2"" of type '" "int""'");
3781 arg2
= static_cast< int >(val2
);
3786 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
3792 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
3796 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
3797 if (!SWIG_IsOK(ecode5
)) {
3798 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_Panel" "', expected argument " "5"" of type '" "long""'");
3800 arg5
= static_cast< long >(val5
);
3804 arg6
= wxString_in_helper(obj5
);
3805 if (arg6
== NULL
) SWIG_fail
;
3810 if (!wxPyCheckForApp()) SWIG_fail
;
3811 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3812 result
= (wxPanel
*)new wxPanel(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
3813 wxPyEndAllowThreads(__tstate
);
3814 if (PyErr_Occurred()) SWIG_fail
;
3816 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPanel
, SWIG_POINTER_NEW
| 0 );
3831 SWIGINTERN PyObject
*_wrap_new_PrePanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3832 PyObject
*resultobj
= 0;
3833 wxPanel
*result
= 0 ;
3835 if (!SWIG_Python_UnpackTuple(args
,"new_PrePanel",0,0,0)) SWIG_fail
;
3837 if (!wxPyCheckForApp()) SWIG_fail
;
3838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3839 result
= (wxPanel
*)new wxPanel();
3840 wxPyEndAllowThreads(__tstate
);
3841 if (PyErr_Occurred()) SWIG_fail
;
3843 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPanel
, SWIG_POINTER_OWN
| 0 );
3850 SWIGINTERN PyObject
*_wrap_Panel_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3851 PyObject
*resultobj
= 0;
3852 wxPanel
*arg1
= (wxPanel
*) 0 ;
3853 wxWindow
*arg2
= (wxWindow
*) 0 ;
3854 int arg3
= (int) (int)-1 ;
3855 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
3856 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
3857 wxSize
const &arg5_defvalue
= wxDefaultSize
;
3858 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
3859 long arg6
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER
;
3860 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
3861 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
3873 bool temp7
= false ;
3874 PyObject
* obj0
= 0 ;
3875 PyObject
* obj1
= 0 ;
3876 PyObject
* obj2
= 0 ;
3877 PyObject
* obj3
= 0 ;
3878 PyObject
* obj4
= 0 ;
3879 PyObject
* obj5
= 0 ;
3880 PyObject
* obj6
= 0 ;
3881 char * kwnames
[] = {
3882 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
3885 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Panel_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
3886 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPanel
, 0 | 0 );
3887 if (!SWIG_IsOK(res1
)) {
3888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Panel_Create" "', expected argument " "1"" of type '" "wxPanel *""'");
3890 arg1
= reinterpret_cast< wxPanel
* >(argp1
);
3891 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
3892 if (!SWIG_IsOK(res2
)) {
3893 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Panel_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
3895 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
3897 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3898 if (!SWIG_IsOK(ecode3
)) {
3899 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Panel_Create" "', expected argument " "3"" of type '" "int""'");
3901 arg3
= static_cast< int >(val3
);
3906 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3912 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3916 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
3917 if (!SWIG_IsOK(ecode6
)) {
3918 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "Panel_Create" "', expected argument " "6"" of type '" "long""'");
3920 arg6
= static_cast< long >(val6
);
3924 arg7
= wxString_in_helper(obj6
);
3925 if (arg7
== NULL
) SWIG_fail
;
3930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3931 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3932 wxPyEndAllowThreads(__tstate
);
3933 if (PyErr_Occurred()) SWIG_fail
;
3936 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3952 SWIGINTERN PyObject
*_wrap_Panel_SetFocusIgnoringChildren(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3953 PyObject
*resultobj
= 0;
3954 wxPanel
*arg1
= (wxPanel
*) 0 ;
3957 PyObject
*swig_obj
[1] ;
3959 if (!args
) SWIG_fail
;
3961 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPanel
, 0 | 0 );
3962 if (!SWIG_IsOK(res1
)) {
3963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Panel_SetFocusIgnoringChildren" "', expected argument " "1"" of type '" "wxPanel *""'");
3965 arg1
= reinterpret_cast< wxPanel
* >(argp1
);
3967 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3968 (arg1
)->SetFocusIgnoringChildren();
3969 wxPyEndAllowThreads(__tstate
);
3970 if (PyErr_Occurred()) SWIG_fail
;
3972 resultobj
= SWIG_Py_Void();
3979 SWIGINTERN PyObject
*_wrap_Panel_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3980 PyObject
*resultobj
= 0;
3981 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
3982 SwigValueWrapper
<wxVisualAttributes
> result
;
3985 PyObject
* obj0
= 0 ;
3986 char * kwnames
[] = {
3987 (char *) "variant", NULL
3990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Panel_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
3992 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
3993 if (!SWIG_IsOK(ecode1
)) {
3994 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Panel_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
3996 arg1
= static_cast< wxWindowVariant
>(val1
);
3999 if (!wxPyCheckForApp()) SWIG_fail
;
4000 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4001 result
= wxPanel::GetClassDefaultAttributes(arg1
);
4002 wxPyEndAllowThreads(__tstate
);
4003 if (PyErr_Occurred()) SWIG_fail
;
4005 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
4012 SWIGINTERN PyObject
*Panel_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4014 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
4015 SWIG_TypeNewClientData(SWIGTYPE_p_wxPanel
, SWIG_NewClientData(obj
));
4016 return SWIG_Py_Void();
4019 SWIGINTERN PyObject
*Panel_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4020 return SWIG_Python_InitShadowInstance(args
);
4023 SWIGINTERN PyObject
*_wrap_new_ScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4024 PyObject
*resultobj
= 0;
4025 wxWindow
*arg1
= (wxWindow
*) 0 ;
4026 int arg2
= (int) (int)-1 ;
4027 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
4028 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
4029 wxSize
const &arg4_defvalue
= wxDefaultSize
;
4030 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
4031 long arg5
= (long) wxHSCROLL
|wxVSCROLL
;
4032 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
4033 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
4034 wxScrolledWindow
*result
= 0 ;
4043 bool temp6
= false ;
4044 PyObject
* obj0
= 0 ;
4045 PyObject
* obj1
= 0 ;
4046 PyObject
* obj2
= 0 ;
4047 PyObject
* obj3
= 0 ;
4048 PyObject
* obj4
= 0 ;
4049 PyObject
* obj5
= 0 ;
4050 char * kwnames
[] = {
4051 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4054 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_ScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
4055 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4056 if (!SWIG_IsOK(res1
)) {
4057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
4059 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
4061 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4062 if (!SWIG_IsOK(ecode2
)) {
4063 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_ScrolledWindow" "', expected argument " "2"" of type '" "int""'");
4065 arg2
= static_cast< int >(val2
);
4070 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
4076 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
4080 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
4081 if (!SWIG_IsOK(ecode5
)) {
4082 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_ScrolledWindow" "', expected argument " "5"" of type '" "long""'");
4084 arg5
= static_cast< long >(val5
);
4088 arg6
= wxString_in_helper(obj5
);
4089 if (arg6
== NULL
) SWIG_fail
;
4094 if (!wxPyCheckForApp()) SWIG_fail
;
4095 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4096 result
= (wxScrolledWindow
*)new wxScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
4097 wxPyEndAllowThreads(__tstate
);
4098 if (PyErr_Occurred()) SWIG_fail
;
4100 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_NEW
| 0 );
4115 SWIGINTERN PyObject
*_wrap_new_PreScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4116 PyObject
*resultobj
= 0;
4117 wxScrolledWindow
*result
= 0 ;
4119 if (!SWIG_Python_UnpackTuple(args
,"new_PreScrolledWindow",0,0,0)) SWIG_fail
;
4121 if (!wxPyCheckForApp()) SWIG_fail
;
4122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4123 result
= (wxScrolledWindow
*)new wxScrolledWindow();
4124 wxPyEndAllowThreads(__tstate
);
4125 if (PyErr_Occurred()) SWIG_fail
;
4127 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_OWN
| 0 );
4134 SWIGINTERN PyObject
*_wrap_ScrolledWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4135 PyObject
*resultobj
= 0;
4136 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4137 wxWindow
*arg2
= (wxWindow
*) 0 ;
4138 int arg3
= (int) (int)-1 ;
4139 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
4140 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
4141 wxSize
const &arg5_defvalue
= wxDefaultSize
;
4142 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
4143 long arg6
= (long) wxHSCROLL
|wxVSCROLL
;
4144 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
4145 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
4157 bool temp7
= false ;
4158 PyObject
* obj0
= 0 ;
4159 PyObject
* obj1
= 0 ;
4160 PyObject
* obj2
= 0 ;
4161 PyObject
* obj3
= 0 ;
4162 PyObject
* obj4
= 0 ;
4163 PyObject
* obj5
= 0 ;
4164 PyObject
* obj6
= 0 ;
4165 char * kwnames
[] = {
4166 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
4169 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:ScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
4170 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4171 if (!SWIG_IsOK(res1
)) {
4172 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_Create" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4174 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4175 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
4176 if (!SWIG_IsOK(res2
)) {
4177 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
4179 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
4181 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4182 if (!SWIG_IsOK(ecode3
)) {
4183 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_Create" "', expected argument " "3"" of type '" "int""'");
4185 arg3
= static_cast< int >(val3
);
4190 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
4196 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
4200 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
4201 if (!SWIG_IsOK(ecode6
)) {
4202 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "ScrolledWindow_Create" "', expected argument " "6"" of type '" "long""'");
4204 arg6
= static_cast< long >(val6
);
4208 arg7
= wxString_in_helper(obj6
);
4209 if (arg7
== NULL
) SWIG_fail
;
4214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4215 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
4216 wxPyEndAllowThreads(__tstate
);
4217 if (PyErr_Occurred()) SWIG_fail
;
4220 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4236 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4237 PyObject
*resultobj
= 0;
4238 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4243 int arg6
= (int) 0 ;
4244 int arg7
= (int) 0 ;
4245 bool arg8
= (bool) false ;
4262 PyObject
* obj0
= 0 ;
4263 PyObject
* obj1
= 0 ;
4264 PyObject
* obj2
= 0 ;
4265 PyObject
* obj3
= 0 ;
4266 PyObject
* obj4
= 0 ;
4267 PyObject
* obj5
= 0 ;
4268 PyObject
* obj6
= 0 ;
4269 PyObject
* obj7
= 0 ;
4270 char * kwnames
[] = {
4271 (char *) "self",(char *) "pixelsPerUnitX",(char *) "pixelsPerUnitY",(char *) "noUnitsX",(char *) "noUnitsY",(char *) "xPos",(char *) "yPos",(char *) "noRefresh", NULL
4274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOO:ScrolledWindow_SetScrollbars",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
4275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4276 if (!SWIG_IsOK(res1
)) {
4277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4279 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4280 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4281 if (!SWIG_IsOK(ecode2
)) {
4282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "2"" of type '" "int""'");
4284 arg2
= static_cast< int >(val2
);
4285 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4286 if (!SWIG_IsOK(ecode3
)) {
4287 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "3"" of type '" "int""'");
4289 arg3
= static_cast< int >(val3
);
4290 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
4291 if (!SWIG_IsOK(ecode4
)) {
4292 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "4"" of type '" "int""'");
4294 arg4
= static_cast< int >(val4
);
4295 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
4296 if (!SWIG_IsOK(ecode5
)) {
4297 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "5"" of type '" "int""'");
4299 arg5
= static_cast< int >(val5
);
4301 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
4302 if (!SWIG_IsOK(ecode6
)) {
4303 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "6"" of type '" "int""'");
4305 arg6
= static_cast< int >(val6
);
4308 ecode7
= SWIG_AsVal_int(obj6
, &val7
);
4309 if (!SWIG_IsOK(ecode7
)) {
4310 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "7"" of type '" "int""'");
4312 arg7
= static_cast< int >(val7
);
4315 ecode8
= SWIG_AsVal_bool(obj7
, &val8
);
4316 if (!SWIG_IsOK(ecode8
)) {
4317 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "ScrolledWindow_SetScrollbars" "', expected argument " "8"" of type '" "bool""'");
4319 arg8
= static_cast< bool >(val8
);
4322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4323 (arg1
)->SetScrollbars(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
4324 wxPyEndAllowThreads(__tstate
);
4325 if (PyErr_Occurred()) SWIG_fail
;
4327 resultobj
= SWIG_Py_Void();
4334 SWIGINTERN PyObject
*_wrap_ScrolledWindow_Scroll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4335 PyObject
*resultobj
= 0;
4336 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4345 PyObject
* obj0
= 0 ;
4346 PyObject
* obj1
= 0 ;
4347 PyObject
* obj2
= 0 ;
4348 char * kwnames
[] = {
4349 (char *) "self",(char *) "x",(char *) "y", NULL
4352 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_Scroll",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4353 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4354 if (!SWIG_IsOK(res1
)) {
4355 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4357 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4358 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4359 if (!SWIG_IsOK(ecode2
)) {
4360 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "2"" of type '" "int""'");
4362 arg2
= static_cast< int >(val2
);
4363 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4364 if (!SWIG_IsOK(ecode3
)) {
4365 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_Scroll" "', expected argument " "3"" of type '" "int""'");
4367 arg3
= static_cast< int >(val3
);
4369 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4370 (arg1
)->Scroll(arg2
,arg3
);
4371 wxPyEndAllowThreads(__tstate
);
4372 if (PyErr_Occurred()) SWIG_fail
;
4374 resultobj
= SWIG_Py_Void();
4381 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScrollPageSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4382 PyObject
*resultobj
= 0;
4383 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4390 PyObject
* obj0
= 0 ;
4391 PyObject
* obj1
= 0 ;
4392 char * kwnames
[] = {
4393 (char *) "self",(char *) "orient", NULL
4396 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_GetScrollPageSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4397 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4398 if (!SWIG_IsOK(res1
)) {
4399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScrollPageSize" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4401 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4402 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4403 if (!SWIG_IsOK(ecode2
)) {
4404 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_GetScrollPageSize" "', expected argument " "2"" of type '" "int""'");
4406 arg2
= static_cast< int >(val2
);
4408 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4409 result
= (int)((wxScrolledWindow
const *)arg1
)->GetScrollPageSize(arg2
);
4410 wxPyEndAllowThreads(__tstate
);
4411 if (PyErr_Occurred()) SWIG_fail
;
4413 resultobj
= SWIG_From_int(static_cast< int >(result
));
4420 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollPageSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4421 PyObject
*resultobj
= 0;
4422 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4431 PyObject
* obj0
= 0 ;
4432 PyObject
* obj1
= 0 ;
4433 PyObject
* obj2
= 0 ;
4434 char * kwnames
[] = {
4435 (char *) "self",(char *) "orient",(char *) "pageSize", NULL
4438 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollPageSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4439 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4440 if (!SWIG_IsOK(res1
)) {
4441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4443 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4444 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4445 if (!SWIG_IsOK(ecode2
)) {
4446 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "2"" of type '" "int""'");
4448 arg2
= static_cast< int >(val2
);
4449 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4450 if (!SWIG_IsOK(ecode3
)) {
4451 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollPageSize" "', expected argument " "3"" of type '" "int""'");
4453 arg3
= static_cast< int >(val3
);
4455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4456 (arg1
)->SetScrollPageSize(arg2
,arg3
);
4457 wxPyEndAllowThreads(__tstate
);
4458 if (PyErr_Occurred()) SWIG_fail
;
4460 resultobj
= SWIG_Py_Void();
4467 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScrollRate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4468 PyObject
*resultobj
= 0;
4469 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4478 PyObject
* obj0
= 0 ;
4479 PyObject
* obj1
= 0 ;
4480 PyObject
* obj2
= 0 ;
4481 char * kwnames
[] = {
4482 (char *) "self",(char *) "xstep",(char *) "ystep", NULL
4485 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollRate",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4486 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4487 if (!SWIG_IsOK(res1
)) {
4488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4490 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4491 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4492 if (!SWIG_IsOK(ecode2
)) {
4493 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "2"" of type '" "int""'");
4495 arg2
= static_cast< int >(val2
);
4496 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4497 if (!SWIG_IsOK(ecode3
)) {
4498 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScrollRate" "', expected argument " "3"" of type '" "int""'");
4500 arg3
= static_cast< int >(val3
);
4502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4503 (arg1
)->SetScrollRate(arg2
,arg3
);
4504 wxPyEndAllowThreads(__tstate
);
4505 if (PyErr_Occurred()) SWIG_fail
;
4507 resultobj
= SWIG_Py_Void();
4514 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScrollPixelsPerUnit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4515 PyObject
*resultobj
= 0;
4516 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4517 int *arg2
= (int *) 0 ;
4518 int *arg3
= (int *) 0 ;
4522 int res2
= SWIG_TMPOBJ
;
4524 int res3
= SWIG_TMPOBJ
;
4525 PyObject
*swig_obj
[1] ;
4529 if (!args
) SWIG_fail
;
4531 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4532 if (!SWIG_IsOK(res1
)) {
4533 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScrollPixelsPerUnit" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4535 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4538 ((wxScrolledWindow
const *)arg1
)->GetScrollPixelsPerUnit(arg2
,arg3
);
4539 wxPyEndAllowThreads(__tstate
);
4540 if (PyErr_Occurred()) SWIG_fail
;
4542 resultobj
= SWIG_Py_Void();
4543 if (SWIG_IsTmpObj(res2
)) {
4544 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4546 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4547 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4549 if (SWIG_IsTmpObj(res3
)) {
4550 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
4552 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4553 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
4561 SWIGINTERN PyObject
*_wrap_ScrolledWindow_EnableScrolling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4562 PyObject
*resultobj
= 0;
4563 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4572 PyObject
* obj0
= 0 ;
4573 PyObject
* obj1
= 0 ;
4574 PyObject
* obj2
= 0 ;
4575 char * kwnames
[] = {
4576 (char *) "self",(char *) "x_scrolling",(char *) "y_scrolling", NULL
4579 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_EnableScrolling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4580 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4581 if (!SWIG_IsOK(res1
)) {
4582 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4584 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4585 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4586 if (!SWIG_IsOK(ecode2
)) {
4587 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "2"" of type '" "bool""'");
4589 arg2
= static_cast< bool >(val2
);
4590 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
4591 if (!SWIG_IsOK(ecode3
)) {
4592 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_EnableScrolling" "', expected argument " "3"" of type '" "bool""'");
4594 arg3
= static_cast< bool >(val3
);
4596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4597 (arg1
)->EnableScrolling(arg2
,arg3
);
4598 wxPyEndAllowThreads(__tstate
);
4599 if (PyErr_Occurred()) SWIG_fail
;
4601 resultobj
= SWIG_Py_Void();
4608 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetViewStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4609 PyObject
*resultobj
= 0;
4610 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4611 int *arg2
= (int *) 0 ;
4612 int *arg3
= (int *) 0 ;
4616 int res2
= SWIG_TMPOBJ
;
4618 int res3
= SWIG_TMPOBJ
;
4619 PyObject
*swig_obj
[1] ;
4623 if (!args
) SWIG_fail
;
4625 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4626 if (!SWIG_IsOK(res1
)) {
4627 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetViewStart" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4629 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4631 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4632 ((wxScrolledWindow
const *)arg1
)->GetViewStart(arg2
,arg3
);
4633 wxPyEndAllowThreads(__tstate
);
4634 if (PyErr_Occurred()) SWIG_fail
;
4636 resultobj
= SWIG_Py_Void();
4637 if (SWIG_IsTmpObj(res2
)) {
4638 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4640 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4641 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4643 if (SWIG_IsTmpObj(res3
)) {
4644 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
4646 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4647 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
4655 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetScale(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4656 PyObject
*resultobj
= 0;
4657 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4666 PyObject
* obj0
= 0 ;
4667 PyObject
* obj1
= 0 ;
4668 PyObject
* obj2
= 0 ;
4669 char * kwnames
[] = {
4670 (char *) "self",(char *) "xs",(char *) "ys", NULL
4673 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScale",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4674 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4675 if (!SWIG_IsOK(res1
)) {
4676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4678 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4679 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
4680 if (!SWIG_IsOK(ecode2
)) {
4681 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "2"" of type '" "double""'");
4683 arg2
= static_cast< double >(val2
);
4684 ecode3
= SWIG_AsVal_double(obj2
, &val3
);
4685 if (!SWIG_IsOK(ecode3
)) {
4686 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_SetScale" "', expected argument " "3"" of type '" "double""'");
4688 arg3
= static_cast< double >(val3
);
4690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4691 (arg1
)->SetScale(arg2
,arg3
);
4692 wxPyEndAllowThreads(__tstate
);
4693 if (PyErr_Occurred()) SWIG_fail
;
4695 resultobj
= SWIG_Py_Void();
4702 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScaleX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4703 PyObject
*resultobj
= 0;
4704 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4708 PyObject
*swig_obj
[1] ;
4710 if (!args
) SWIG_fail
;
4712 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4713 if (!SWIG_IsOK(res1
)) {
4714 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScaleX" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4716 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4719 result
= (double)((wxScrolledWindow
const *)arg1
)->GetScaleX();
4720 wxPyEndAllowThreads(__tstate
);
4721 if (PyErr_Occurred()) SWIG_fail
;
4723 resultobj
= SWIG_From_double(static_cast< double >(result
));
4730 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetScaleY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4731 PyObject
*resultobj
= 0;
4732 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4736 PyObject
*swig_obj
[1] ;
4738 if (!args
) SWIG_fail
;
4740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4741 if (!SWIG_IsOK(res1
)) {
4742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetScaleY" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4744 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4747 result
= (double)((wxScrolledWindow
const *)arg1
)->GetScaleY();
4748 wxPyEndAllowThreads(__tstate
);
4749 if (PyErr_Occurred()) SWIG_fail
;
4751 resultobj
= SWIG_From_double(static_cast< double >(result
));
4758 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4759 PyObject
*resultobj
= 0;
4760 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4767 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
4768 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4769 if (!SWIG_IsOK(res1
)) {
4770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4772 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4775 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
4778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4779 result
= ((wxScrolledWindow
const *)arg1
)->CalcScrolledPosition((wxPoint
const &)*arg2
);
4780 wxPyEndAllowThreads(__tstate
);
4781 if (PyErr_Occurred()) SWIG_fail
;
4783 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
4790 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4791 PyObject
*resultobj
= 0;
4792 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4795 int *arg4
= (int *) 0 ;
4796 int *arg5
= (int *) 0 ;
4804 int res4
= SWIG_TMPOBJ
;
4806 int res5
= SWIG_TMPOBJ
;
4810 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
4811 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4812 if (!SWIG_IsOK(res1
)) {
4813 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4815 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4816 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
4817 if (!SWIG_IsOK(ecode2
)) {
4818 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "2"" of type '" "int""'");
4820 arg2
= static_cast< int >(val2
);
4821 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
4822 if (!SWIG_IsOK(ecode3
)) {
4823 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_CalcScrolledPosition" "', expected argument " "3"" of type '" "int""'");
4825 arg3
= static_cast< int >(val3
);
4827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4828 ((wxScrolledWindow
const *)arg1
)->CalcScrolledPosition(arg2
,arg3
,arg4
,arg5
);
4829 wxPyEndAllowThreads(__tstate
);
4830 if (PyErr_Occurred()) SWIG_fail
;
4832 resultobj
= SWIG_Py_Void();
4833 if (SWIG_IsTmpObj(res4
)) {
4834 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
4836 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4837 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
4839 if (SWIG_IsTmpObj(res5
)) {
4840 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
4842 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4843 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
4851 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrolledPosition(PyObject
*self
, PyObject
*args
) {
4855 if (!(argc
= SWIG_Python_UnpackTuple(args
,"ScrolledWindow_CalcScrolledPosition",0,3,argv
))) SWIG_fail
;
4858 return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(self
, argc
, argv
);
4861 return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(self
, argc
, argv
);
4865 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcScrolledPosition'");
4870 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4871 PyObject
*resultobj
= 0;
4872 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4879 if ((nobjs
< 2) || (nobjs
> 2)) SWIG_fail
;
4880 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4881 if (!SWIG_IsOK(res1
)) {
4882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4884 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4887 if ( ! wxPoint_helper(swig_obj
[1], &arg2
)) SWIG_fail
;
4890 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4891 result
= ((wxScrolledWindow
const *)arg1
)->CalcUnscrolledPosition((wxPoint
const &)*arg2
);
4892 wxPyEndAllowThreads(__tstate
);
4893 if (PyErr_Occurred()) SWIG_fail
;
4895 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
4902 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
4903 PyObject
*resultobj
= 0;
4904 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4907 int *arg4
= (int *) 0 ;
4908 int *arg5
= (int *) 0 ;
4916 int res4
= SWIG_TMPOBJ
;
4918 int res5
= SWIG_TMPOBJ
;
4922 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
4923 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4924 if (!SWIG_IsOK(res1
)) {
4925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
4927 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4928 ecode2
= SWIG_AsVal_int(swig_obj
[1], &val2
);
4929 if (!SWIG_IsOK(ecode2
)) {
4930 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "2"" of type '" "int""'");
4932 arg2
= static_cast< int >(val2
);
4933 ecode3
= SWIG_AsVal_int(swig_obj
[2], &val3
);
4934 if (!SWIG_IsOK(ecode3
)) {
4935 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "ScrolledWindow_CalcUnscrolledPosition" "', expected argument " "3"" of type '" "int""'");
4937 arg3
= static_cast< int >(val3
);
4939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4940 ((wxScrolledWindow
const *)arg1
)->CalcUnscrolledPosition(arg2
,arg3
,arg4
,arg5
);
4941 wxPyEndAllowThreads(__tstate
);
4942 if (PyErr_Occurred()) SWIG_fail
;
4944 resultobj
= SWIG_Py_Void();
4945 if (SWIG_IsTmpObj(res4
)) {
4946 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
4948 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4949 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
4951 if (SWIG_IsTmpObj(res5
)) {
4952 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
4954 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4955 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
4963 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcUnscrolledPosition(PyObject
*self
, PyObject
*args
) {
4967 if (!(argc
= SWIG_Python_UnpackTuple(args
,"ScrolledWindow_CalcUnscrolledPosition",0,3,argv
))) SWIG_fail
;
4970 return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(self
, argc
, argv
);
4973 return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(self
, argc
, argv
);
4977 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcUnscrolledPosition'");
4982 SWIGINTERN PyObject
*_wrap_ScrolledWindow_AdjustScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4983 PyObject
*resultobj
= 0;
4984 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
4987 PyObject
*swig_obj
[1] ;
4989 if (!args
) SWIG_fail
;
4991 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
4992 if (!SWIG_IsOK(res1
)) {
4993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_AdjustScrollbars" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
4995 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
4997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4998 (arg1
)->AdjustScrollbars();
4999 wxPyEndAllowThreads(__tstate
);
5000 if (PyErr_Occurred()) SWIG_fail
;
5002 resultobj
= SWIG_Py_Void();
5009 SWIGINTERN PyObject
*_wrap_ScrolledWindow_CalcScrollInc(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5010 PyObject
*resultobj
= 0;
5011 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5012 wxScrollWinEvent
*arg2
= 0 ;
5018 PyObject
* obj0
= 0 ;
5019 PyObject
* obj1
= 0 ;
5020 char * kwnames
[] = {
5021 (char *) "self",(char *) "event", NULL
5024 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_CalcScrollInc",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5025 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5026 if (!SWIG_IsOK(res1
)) {
5027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5029 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5030 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxScrollWinEvent
, 0 );
5031 if (!SWIG_IsOK(res2
)) {
5032 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "2"" of type '" "wxScrollWinEvent &""'");
5035 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ScrolledWindow_CalcScrollInc" "', expected argument " "2"" of type '" "wxScrollWinEvent &""'");
5037 arg2
= reinterpret_cast< wxScrollWinEvent
* >(argp2
);
5039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5040 result
= (int)(arg1
)->CalcScrollInc(*arg2
);
5041 wxPyEndAllowThreads(__tstate
);
5042 if (PyErr_Occurred()) SWIG_fail
;
5044 resultobj
= SWIG_From_int(static_cast< int >(result
));
5051 SWIGINTERN PyObject
*_wrap_ScrolledWindow_SetTargetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5052 PyObject
*resultobj
= 0;
5053 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5054 wxWindow
*arg2
= (wxWindow
*) 0 ;
5059 PyObject
* obj0
= 0 ;
5060 PyObject
* obj1
= 0 ;
5061 char * kwnames
[] = {
5062 (char *) "self",(char *) "target", NULL
5065 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_SetTargetWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5066 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5067 if (!SWIG_IsOK(res1
)) {
5068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_SetTargetWindow" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5070 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5071 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
5072 if (!SWIG_IsOK(res2
)) {
5073 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_SetTargetWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
5075 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
5077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5078 (arg1
)->SetTargetWindow(arg2
);
5079 wxPyEndAllowThreads(__tstate
);
5080 if (PyErr_Occurred()) SWIG_fail
;
5082 resultobj
= SWIG_Py_Void();
5089 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetTargetWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5090 PyObject
*resultobj
= 0;
5091 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5092 wxWindow
*result
= 0 ;
5095 PyObject
*swig_obj
[1] ;
5097 if (!args
) SWIG_fail
;
5099 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5100 if (!SWIG_IsOK(res1
)) {
5101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_GetTargetWindow" "', expected argument " "1"" of type '" "wxScrolledWindow const *""'");
5103 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5106 result
= (wxWindow
*)((wxScrolledWindow
const *)arg1
)->GetTargetWindow();
5107 wxPyEndAllowThreads(__tstate
);
5108 if (PyErr_Occurred()) SWIG_fail
;
5111 resultobj
= wxPyMake_wxObject(result
, 0);
5119 SWIGINTERN PyObject
*_wrap_ScrolledWindow_DoPrepareDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5120 PyObject
*resultobj
= 0;
5121 wxScrolledWindow
*arg1
= (wxScrolledWindow
*) 0 ;
5127 PyObject
* obj0
= 0 ;
5128 PyObject
* obj1
= 0 ;
5129 char * kwnames
[] = {
5130 (char *) "self",(char *) "dc", NULL
5133 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_DoPrepareDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5134 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxScrolledWindow
, 0 | 0 );
5135 if (!SWIG_IsOK(res1
)) {
5136 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "1"" of type '" "wxScrolledWindow *""'");
5138 arg1
= reinterpret_cast< wxScrolledWindow
* >(argp1
);
5139 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
5140 if (!SWIG_IsOK(res2
)) {
5141 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "2"" of type '" "wxDC &""'");
5144 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "ScrolledWindow_DoPrepareDC" "', expected argument " "2"" of type '" "wxDC &""'");
5146 arg2
= reinterpret_cast< wxDC
* >(argp2
);
5148 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5149 (arg1
)->DoPrepareDC(*arg2
);
5150 wxPyEndAllowThreads(__tstate
);
5151 if (PyErr_Occurred()) SWIG_fail
;
5153 resultobj
= SWIG_Py_Void();
5160 SWIGINTERN PyObject
*_wrap_ScrolledWindow_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5161 PyObject
*resultobj
= 0;
5162 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
5163 SwigValueWrapper
<wxVisualAttributes
> result
;
5166 PyObject
* obj0
= 0 ;
5167 char * kwnames
[] = {
5168 (char *) "variant", NULL
5171 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ScrolledWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
5173 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
5174 if (!SWIG_IsOK(ecode1
)) {
5175 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "ScrolledWindow_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
5177 arg1
= static_cast< wxWindowVariant
>(val1
);
5180 if (!wxPyCheckForApp()) SWIG_fail
;
5181 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5182 result
= wxScrolledWindow::GetClassDefaultAttributes(arg1
);
5183 wxPyEndAllowThreads(__tstate
);
5184 if (PyErr_Occurred()) SWIG_fail
;
5186 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
5193 SWIGINTERN PyObject
*ScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5195 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5196 SWIG_TypeNewClientData(SWIGTYPE_p_wxScrolledWindow
, SWIG_NewClientData(obj
));
5197 return SWIG_Py_Void();
5200 SWIGINTERN PyObject
*ScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5201 return SWIG_Python_InitShadowInstance(args
);
5204 SWIGINTERN
int FrameNameStr_set(PyObject
*) {
5205 SWIG_Error(SWIG_AttributeError
,"Variable FrameNameStr is read-only.");
5210 SWIGINTERN PyObject
*FrameNameStr_get(void) {
5211 PyObject
*pyobj
= 0;
5215 pyobj
= PyUnicode_FromWideChar((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len());
5217 pyobj
= PyString_FromStringAndSize((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len());
5224 SWIGINTERN
int DialogNameStr_set(PyObject
*) {
5225 SWIG_Error(SWIG_AttributeError
,"Variable DialogNameStr is read-only.");
5230 SWIGINTERN PyObject
*DialogNameStr_get(void) {
5231 PyObject
*pyobj
= 0;
5235 pyobj
= PyUnicode_FromWideChar((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len());
5237 pyobj
= PyString_FromStringAndSize((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len());
5244 SWIGINTERN
int StatusLineNameStr_set(PyObject
*) {
5245 SWIG_Error(SWIG_AttributeError
,"Variable StatusLineNameStr is read-only.");
5250 SWIGINTERN PyObject
*StatusLineNameStr_get(void) {
5251 PyObject
*pyobj
= 0;
5255 pyobj
= PyUnicode_FromWideChar((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len());
5257 pyobj
= PyString_FromStringAndSize((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len());
5264 SWIGINTERN
int ToolBarNameStr_set(PyObject
*) {
5265 SWIG_Error(SWIG_AttributeError
,"Variable ToolBarNameStr is read-only.");
5270 SWIGINTERN PyObject
*ToolBarNameStr_get(void) {
5271 PyObject
*pyobj
= 0;
5275 pyobj
= PyUnicode_FromWideChar((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len());
5277 pyobj
= PyString_FromStringAndSize((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len());
5284 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Maximize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5285 PyObject
*resultobj
= 0;
5286 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5287 bool arg2
= (bool) true ;
5292 PyObject
* obj0
= 0 ;
5293 PyObject
* obj1
= 0 ;
5294 char * kwnames
[] = {
5295 (char *) "self",(char *) "maximize", NULL
5298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Maximize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5300 if (!SWIG_IsOK(res1
)) {
5301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Maximize" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5303 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5305 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5306 if (!SWIG_IsOK(ecode2
)) {
5307 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_Maximize" "', expected argument " "2"" of type '" "bool""'");
5309 arg2
= static_cast< bool >(val2
);
5312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5313 (arg1
)->Maximize(arg2
);
5314 wxPyEndAllowThreads(__tstate
);
5315 if (PyErr_Occurred()) SWIG_fail
;
5317 resultobj
= SWIG_Py_Void();
5324 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Restore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5325 PyObject
*resultobj
= 0;
5326 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5329 PyObject
*swig_obj
[1] ;
5331 if (!args
) SWIG_fail
;
5333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5334 if (!SWIG_IsOK(res1
)) {
5335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Restore" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5337 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5341 wxPyEndAllowThreads(__tstate
);
5342 if (PyErr_Occurred()) SWIG_fail
;
5344 resultobj
= SWIG_Py_Void();
5351 SWIGINTERN PyObject
*_wrap_TopLevelWindow_Iconize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5352 PyObject
*resultobj
= 0;
5353 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5354 bool arg2
= (bool) true ;
5359 PyObject
* obj0
= 0 ;
5360 PyObject
* obj1
= 0 ;
5361 char * kwnames
[] = {
5362 (char *) "self",(char *) "iconize", NULL
5365 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Iconize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5366 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5367 if (!SWIG_IsOK(res1
)) {
5368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_Iconize" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5370 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5372 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5373 if (!SWIG_IsOK(ecode2
)) {
5374 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_Iconize" "', expected argument " "2"" of type '" "bool""'");
5376 arg2
= static_cast< bool >(val2
);
5379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5380 (arg1
)->Iconize(arg2
);
5381 wxPyEndAllowThreads(__tstate
);
5382 if (PyErr_Occurred()) SWIG_fail
;
5384 resultobj
= SWIG_Py_Void();
5391 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5392 PyObject
*resultobj
= 0;
5393 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5397 PyObject
*swig_obj
[1] ;
5399 if (!args
) SWIG_fail
;
5401 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5402 if (!SWIG_IsOK(res1
)) {
5403 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsMaximized" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5405 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5407 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5408 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsMaximized();
5409 wxPyEndAllowThreads(__tstate
);
5410 if (PyErr_Occurred()) SWIG_fail
;
5413 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5421 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsAlwaysMaximized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5422 PyObject
*resultobj
= 0;
5423 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5427 PyObject
*swig_obj
[1] ;
5429 if (!args
) SWIG_fail
;
5431 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5432 if (!SWIG_IsOK(res1
)) {
5433 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsAlwaysMaximized" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5435 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5437 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5438 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsAlwaysMaximized();
5439 wxPyEndAllowThreads(__tstate
);
5440 if (PyErr_Occurred()) SWIG_fail
;
5443 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5451 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsIconized(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5452 PyObject
*resultobj
= 0;
5453 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5457 PyObject
*swig_obj
[1] ;
5459 if (!args
) SWIG_fail
;
5461 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5462 if (!SWIG_IsOK(res1
)) {
5463 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsIconized" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5465 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5467 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5468 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsIconized();
5469 wxPyEndAllowThreads(__tstate
);
5470 if (PyErr_Occurred()) SWIG_fail
;
5473 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5481 SWIGINTERN PyObject
*_wrap_TopLevelWindow_GetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5482 PyObject
*resultobj
= 0;
5483 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5487 PyObject
*swig_obj
[1] ;
5489 if (!args
) SWIG_fail
;
5491 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5492 if (!SWIG_IsOK(res1
)) {
5493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_GetIcon" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5495 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5498 result
= ((wxTopLevelWindow
const *)arg1
)->GetIcon();
5499 wxPyEndAllowThreads(__tstate
);
5500 if (PyErr_Occurred()) SWIG_fail
;
5502 resultobj
= SWIG_NewPointerObj((new wxIcon(static_cast< const wxIcon
& >(result
))), SWIGTYPE_p_wxIcon
, SWIG_POINTER_OWN
| 0 );
5509 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5510 PyObject
*resultobj
= 0;
5511 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5517 PyObject
* obj0
= 0 ;
5518 PyObject
* obj1
= 0 ;
5519 char * kwnames
[] = {
5520 (char *) "self",(char *) "icon", NULL
5523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcon",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5524 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5525 if (!SWIG_IsOK(res1
)) {
5526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetIcon" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5528 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5529 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
5530 if (!SWIG_IsOK(res2
)) {
5531 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
5534 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
5536 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
5538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5539 (arg1
)->SetIcon((wxIcon
const &)*arg2
);
5540 wxPyEndAllowThreads(__tstate
);
5541 if (PyErr_Occurred()) SWIG_fail
;
5543 resultobj
= SWIG_Py_Void();
5550 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5551 PyObject
*resultobj
= 0;
5552 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5553 wxIconBundle
*arg2
= 0 ;
5558 PyObject
* obj0
= 0 ;
5559 PyObject
* obj1
= 0 ;
5560 char * kwnames
[] = {
5561 (char *) "self",(char *) "icons", NULL
5564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcons",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5566 if (!SWIG_IsOK(res1
)) {
5567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetIcons" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5569 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5570 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIconBundle
, 0 | 0);
5571 if (!SWIG_IsOK(res2
)) {
5572 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
5575 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetIcons" "', expected argument " "2"" of type '" "wxIconBundle const &""'");
5577 arg2
= reinterpret_cast< wxIconBundle
* >(argp2
);
5579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5580 (arg1
)->SetIcons((wxIconBundle
const &)*arg2
);
5581 wxPyEndAllowThreads(__tstate
);
5582 if (PyErr_Occurred()) SWIG_fail
;
5584 resultobj
= SWIG_Py_Void();
5591 SWIGINTERN PyObject
*_wrap_TopLevelWindow_ShowFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5592 PyObject
*resultobj
= 0;
5593 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5595 long arg3
= (long) wxFULLSCREEN_ALL
;
5603 PyObject
* obj0
= 0 ;
5604 PyObject
* obj1
= 0 ;
5605 PyObject
* obj2
= 0 ;
5606 char * kwnames
[] = {
5607 (char *) "self",(char *) "show",(char *) "style", NULL
5610 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TopLevelWindow_ShowFullScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5611 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5612 if (!SWIG_IsOK(res1
)) {
5613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5615 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5616 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5617 if (!SWIG_IsOK(ecode2
)) {
5618 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "2"" of type '" "bool""'");
5620 arg2
= static_cast< bool >(val2
);
5622 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
5623 if (!SWIG_IsOK(ecode3
)) {
5624 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "TopLevelWindow_ShowFullScreen" "', expected argument " "3"" of type '" "long""'");
5626 arg3
= static_cast< long >(val3
);
5629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5630 result
= (bool)(arg1
)->ShowFullScreen(arg2
,arg3
);
5631 wxPyEndAllowThreads(__tstate
);
5632 if (PyErr_Occurred()) SWIG_fail
;
5635 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5643 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsFullScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5644 PyObject
*resultobj
= 0;
5645 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5649 PyObject
*swig_obj
[1] ;
5651 if (!args
) SWIG_fail
;
5653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5654 if (!SWIG_IsOK(res1
)) {
5655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsFullScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5657 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5660 result
= (bool)((wxTopLevelWindow
const *)arg1
)->IsFullScreen();
5661 wxPyEndAllowThreads(__tstate
);
5662 if (PyErr_Occurred()) SWIG_fail
;
5665 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5673 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5674 PyObject
*resultobj
= 0;
5675 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5676 wxString
*arg2
= 0 ;
5679 bool temp2
= false ;
5680 PyObject
* obj0
= 0 ;
5681 PyObject
* obj1
= 0 ;
5682 char * kwnames
[] = {
5683 (char *) "self",(char *) "title", NULL
5686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetTitle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5688 if (!SWIG_IsOK(res1
)) {
5689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetTitle" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5691 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5693 arg2
= wxString_in_helper(obj1
);
5694 if (arg2
== NULL
) SWIG_fail
;
5698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5699 (arg1
)->SetTitle((wxString
const &)*arg2
);
5700 wxPyEndAllowThreads(__tstate
);
5701 if (PyErr_Occurred()) SWIG_fail
;
5703 resultobj
= SWIG_Py_Void();
5718 SWIGINTERN PyObject
*_wrap_TopLevelWindow_GetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5719 PyObject
*resultobj
= 0;
5720 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5724 PyObject
*swig_obj
[1] ;
5726 if (!args
) SWIG_fail
;
5728 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5729 if (!SWIG_IsOK(res1
)) {
5730 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_GetTitle" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5732 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5734 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5735 result
= ((wxTopLevelWindow
const *)arg1
)->GetTitle();
5736 wxPyEndAllowThreads(__tstate
);
5737 if (PyErr_Occurred()) SWIG_fail
;
5741 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
5743 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
5752 SWIGINTERN PyObject
*_wrap_TopLevelWindow_SetShape(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5753 PyObject
*resultobj
= 0;
5754 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5755 wxRegion
*arg2
= 0 ;
5761 PyObject
* obj0
= 0 ;
5762 PyObject
* obj1
= 0 ;
5763 char * kwnames
[] = {
5764 (char *) "self",(char *) "region", NULL
5767 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetShape",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5768 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5769 if (!SWIG_IsOK(res1
)) {
5770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_SetShape" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5772 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5773 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxRegion
, 0 | 0);
5774 if (!SWIG_IsOK(res2
)) {
5775 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TopLevelWindow_SetShape" "', expected argument " "2"" of type '" "wxRegion const &""'");
5778 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TopLevelWindow_SetShape" "', expected argument " "2"" of type '" "wxRegion const &""'");
5780 arg2
= reinterpret_cast< wxRegion
* >(argp2
);
5782 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5783 result
= (bool)(arg1
)->SetShape((wxRegion
const &)*arg2
);
5784 wxPyEndAllowThreads(__tstate
);
5785 if (PyErr_Occurred()) SWIG_fail
;
5788 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5796 SWIGINTERN PyObject
*_wrap_TopLevelWindow_RequestUserAttention(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5797 PyObject
*resultobj
= 0;
5798 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5799 int arg2
= (int) wxUSER_ATTENTION_INFO
;
5804 PyObject
* obj0
= 0 ;
5805 PyObject
* obj1
= 0 ;
5806 char * kwnames
[] = {
5807 (char *) "self",(char *) "flags", NULL
5810 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_RequestUserAttention",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5811 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5812 if (!SWIG_IsOK(res1
)) {
5813 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_RequestUserAttention" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5815 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5817 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5818 if (!SWIG_IsOK(ecode2
)) {
5819 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_RequestUserAttention" "', expected argument " "2"" of type '" "int""'");
5821 arg2
= static_cast< int >(val2
);
5824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5825 (arg1
)->RequestUserAttention(arg2
);
5826 wxPyEndAllowThreads(__tstate
);
5827 if (PyErr_Occurred()) SWIG_fail
;
5829 resultobj
= SWIG_Py_Void();
5836 SWIGINTERN PyObject
*_wrap_TopLevelWindow_IsActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5837 PyObject
*resultobj
= 0;
5838 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5842 PyObject
*swig_obj
[1] ;
5844 if (!args
) SWIG_fail
;
5846 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5847 if (!SWIG_IsOK(res1
)) {
5848 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_IsActive" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5850 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5852 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5853 result
= (bool)(arg1
)->IsActive();
5854 wxPyEndAllowThreads(__tstate
);
5855 if (PyErr_Occurred()) SWIG_fail
;
5858 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5866 SWIGINTERN PyObject
*_wrap_TopLevelWindow_MacSetMetalAppearance(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5867 PyObject
*resultobj
= 0;
5868 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5874 PyObject
* obj0
= 0 ;
5875 PyObject
* obj1
= 0 ;
5876 char * kwnames
[] = {
5877 (char *) "self",(char *) "on", NULL
5880 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_MacSetMetalAppearance",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5881 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5882 if (!SWIG_IsOK(res1
)) {
5883 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_MacSetMetalAppearance" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5885 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5886 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5887 if (!SWIG_IsOK(ecode2
)) {
5888 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_MacSetMetalAppearance" "', expected argument " "2"" of type '" "bool""'");
5890 arg2
= static_cast< bool >(val2
);
5892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5893 wxTopLevelWindow_MacSetMetalAppearance(arg1
,arg2
);
5894 wxPyEndAllowThreads(__tstate
);
5895 if (PyErr_Occurred()) SWIG_fail
;
5897 resultobj
= SWIG_Py_Void();
5904 SWIGINTERN PyObject
*_wrap_TopLevelWindow_MacGetMetalAppearance(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5905 PyObject
*resultobj
= 0;
5906 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5910 PyObject
*swig_obj
[1] ;
5912 if (!args
) SWIG_fail
;
5914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5915 if (!SWIG_IsOK(res1
)) {
5916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_MacGetMetalAppearance" "', expected argument " "1"" of type '" "wxTopLevelWindow const *""'");
5918 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5921 result
= (bool)wxTopLevelWindow_MacGetMetalAppearance((wxTopLevelWindow
const *)arg1
);
5922 wxPyEndAllowThreads(__tstate
);
5923 if (PyErr_Occurred()) SWIG_fail
;
5926 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5934 SWIGINTERN PyObject
*_wrap_TopLevelWindow_CenterOnScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5935 PyObject
*resultobj
= 0;
5936 wxTopLevelWindow
*arg1
= (wxTopLevelWindow
*) 0 ;
5937 int arg2
= (int) wxBOTH
;
5942 PyObject
* obj0
= 0 ;
5943 PyObject
* obj1
= 0 ;
5944 char * kwnames
[] = {
5945 (char *) "self",(char *) "dir", NULL
5948 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_CenterOnScreen",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5949 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTopLevelWindow
, 0 | 0 );
5950 if (!SWIG_IsOK(res1
)) {
5951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TopLevelWindow_CenterOnScreen" "', expected argument " "1"" of type '" "wxTopLevelWindow *""'");
5953 arg1
= reinterpret_cast< wxTopLevelWindow
* >(argp1
);
5955 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5956 if (!SWIG_IsOK(ecode2
)) {
5957 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "TopLevelWindow_CenterOnScreen" "', expected argument " "2"" of type '" "int""'");
5959 arg2
= static_cast< int >(val2
);
5962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5963 (arg1
)->CenterOnScreen(arg2
);
5964 wxPyEndAllowThreads(__tstate
);
5965 if (PyErr_Occurred()) SWIG_fail
;
5967 resultobj
= SWIG_Py_Void();
5974 SWIGINTERN PyObject
*TopLevelWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5976 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
5977 SWIG_TypeNewClientData(SWIGTYPE_p_wxTopLevelWindow
, SWIG_NewClientData(obj
));
5978 return SWIG_Py_Void();
5981 SWIGINTERN PyObject
*_wrap_new_Frame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5982 PyObject
*resultobj
= 0;
5983 wxWindow
*arg1
= (wxWindow
*) 0 ;
5984 int arg2
= (int) (int)-1 ;
5985 wxString
const &arg3_defvalue
= wxPyEmptyString
;
5986 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
5987 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
5988 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
5989 wxSize
const &arg5_defvalue
= wxDefaultSize
;
5990 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
5991 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
5992 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
5993 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
5994 wxFrame
*result
= 0 ;
5999 bool temp3
= false ;
6004 bool temp7
= false ;
6005 PyObject
* obj0
= 0 ;
6006 PyObject
* obj1
= 0 ;
6007 PyObject
* obj2
= 0 ;
6008 PyObject
* obj3
= 0 ;
6009 PyObject
* obj4
= 0 ;
6010 PyObject
* obj5
= 0 ;
6011 PyObject
* obj6
= 0 ;
6012 char * kwnames
[] = {
6013 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6016 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Frame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
6017 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6018 if (!SWIG_IsOK(res1
)) {
6019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Frame" "', expected argument " "1"" of type '" "wxWindow *""'");
6021 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
6023 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6024 if (!SWIG_IsOK(ecode2
)) {
6025 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Frame" "', expected argument " "2"" of type '" "int""'");
6027 arg2
= static_cast< int >(val2
);
6031 arg3
= wxString_in_helper(obj2
);
6032 if (arg3
== NULL
) SWIG_fail
;
6039 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
6045 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
6049 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
6050 if (!SWIG_IsOK(ecode6
)) {
6051 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_Frame" "', expected argument " "6"" of type '" "long""'");
6053 arg6
= static_cast< long >(val6
);
6057 arg7
= wxString_in_helper(obj6
);
6058 if (arg7
== NULL
) SWIG_fail
;
6063 if (!wxPyCheckForApp()) SWIG_fail
;
6064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6065 result
= (wxFrame
*)new wxFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
6066 wxPyEndAllowThreads(__tstate
);
6067 if (PyErr_Occurred()) SWIG_fail
;
6069 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrame
, SWIG_POINTER_NEW
| 0 );
6092 SWIGINTERN PyObject
*_wrap_new_PreFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6093 PyObject
*resultobj
= 0;
6094 wxFrame
*result
= 0 ;
6096 if (!SWIG_Python_UnpackTuple(args
,"new_PreFrame",0,0,0)) SWIG_fail
;
6098 if (!wxPyCheckForApp()) SWIG_fail
;
6099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6100 result
= (wxFrame
*)new wxFrame();
6101 wxPyEndAllowThreads(__tstate
);
6102 if (PyErr_Occurred()) SWIG_fail
;
6104 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFrame
, SWIG_POINTER_OWN
| 0 );
6111 SWIGINTERN PyObject
*_wrap_Frame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6112 PyObject
*resultobj
= 0;
6113 wxFrame
*arg1
= (wxFrame
*) 0 ;
6114 wxWindow
*arg2
= (wxWindow
*) 0 ;
6115 int arg3
= (int) (int)-1 ;
6116 wxString
const &arg4_defvalue
= wxPyEmptyString
;
6117 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6118 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
6119 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
6120 wxSize
const &arg6_defvalue
= wxDefaultSize
;
6121 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
6122 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
6123 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
6124 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
6132 bool temp4
= false ;
6137 bool temp8
= false ;
6138 PyObject
* obj0
= 0 ;
6139 PyObject
* obj1
= 0 ;
6140 PyObject
* obj2
= 0 ;
6141 PyObject
* obj3
= 0 ;
6142 PyObject
* obj4
= 0 ;
6143 PyObject
* obj5
= 0 ;
6144 PyObject
* obj6
= 0 ;
6145 PyObject
* obj7
= 0 ;
6146 char * kwnames
[] = {
6147 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
6150 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Frame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
6151 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6152 if (!SWIG_IsOK(res1
)) {
6153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_Create" "', expected argument " "1"" of type '" "wxFrame *""'");
6155 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6156 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
6157 if (!SWIG_IsOK(res2
)) {
6158 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
6160 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
6162 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6163 if (!SWIG_IsOK(ecode3
)) {
6164 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_Create" "', expected argument " "3"" of type '" "int""'");
6166 arg3
= static_cast< int >(val3
);
6170 arg4
= wxString_in_helper(obj3
);
6171 if (arg4
== NULL
) SWIG_fail
;
6178 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
6184 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
6188 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
6189 if (!SWIG_IsOK(ecode7
)) {
6190 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "Frame_Create" "', expected argument " "7"" of type '" "long""'");
6192 arg7
= static_cast< long >(val7
);
6196 arg8
= wxString_in_helper(obj7
);
6197 if (arg8
== NULL
) SWIG_fail
;
6202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6203 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
6204 wxPyEndAllowThreads(__tstate
);
6205 if (PyErr_Occurred()) SWIG_fail
;
6208 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6232 SWIGINTERN PyObject
*_wrap_Frame_SendSizeEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6233 PyObject
*resultobj
= 0;
6234 wxFrame
*arg1
= (wxFrame
*) 0 ;
6237 PyObject
*swig_obj
[1] ;
6239 if (!args
) SWIG_fail
;
6241 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6242 if (!SWIG_IsOK(res1
)) {
6243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SendSizeEvent" "', expected argument " "1"" of type '" "wxFrame *""'");
6245 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6248 (arg1
)->SendSizeEvent();
6249 wxPyEndAllowThreads(__tstate
);
6250 if (PyErr_Occurred()) SWIG_fail
;
6252 resultobj
= SWIG_Py_Void();
6259 SWIGINTERN PyObject
*_wrap_Frame_SetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6260 PyObject
*resultobj
= 0;
6261 wxFrame
*arg1
= (wxFrame
*) 0 ;
6262 wxMenuBar
*arg2
= (wxMenuBar
*) 0 ;
6267 PyObject
* obj0
= 0 ;
6268 PyObject
* obj1
= 0 ;
6269 char * kwnames
[] = {
6270 (char *) "self",(char *) "menubar", NULL
6273 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetMenuBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6274 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6275 if (!SWIG_IsOK(res1
)) {
6276 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetMenuBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6278 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6279 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenuBar
, 0 | 0 );
6280 if (!SWIG_IsOK(res2
)) {
6281 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetMenuBar" "', expected argument " "2"" of type '" "wxMenuBar *""'");
6283 arg2
= reinterpret_cast< wxMenuBar
* >(argp2
);
6285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6286 (arg1
)->SetMenuBar(arg2
);
6287 wxPyEndAllowThreads(__tstate
);
6288 if (PyErr_Occurred()) SWIG_fail
;
6290 resultobj
= SWIG_Py_Void();
6297 SWIGINTERN PyObject
*_wrap_Frame_GetMenuBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6298 PyObject
*resultobj
= 0;
6299 wxFrame
*arg1
= (wxFrame
*) 0 ;
6300 wxMenuBar
*result
= 0 ;
6303 PyObject
*swig_obj
[1] ;
6305 if (!args
) SWIG_fail
;
6307 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6308 if (!SWIG_IsOK(res1
)) {
6309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetMenuBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6311 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6314 result
= (wxMenuBar
*)((wxFrame
const *)arg1
)->GetMenuBar();
6315 wxPyEndAllowThreads(__tstate
);
6316 if (PyErr_Occurred()) SWIG_fail
;
6319 resultobj
= wxPyMake_wxObject(result
, 0);
6327 SWIGINTERN PyObject
*_wrap_Frame_ProcessCommand(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6328 PyObject
*resultobj
= 0;
6329 wxFrame
*arg1
= (wxFrame
*) 0 ;
6336 PyObject
* obj0
= 0 ;
6337 PyObject
* obj1
= 0 ;
6338 char * kwnames
[] = {
6339 (char *) "self",(char *) "winid", NULL
6342 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_ProcessCommand",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6343 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6344 if (!SWIG_IsOK(res1
)) {
6345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_ProcessCommand" "', expected argument " "1"" of type '" "wxFrame *""'");
6347 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6348 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6349 if (!SWIG_IsOK(ecode2
)) {
6350 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_ProcessCommand" "', expected argument " "2"" of type '" "int""'");
6352 arg2
= static_cast< int >(val2
);
6354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6355 result
= (bool)(arg1
)->ProcessCommand(arg2
);
6356 wxPyEndAllowThreads(__tstate
);
6357 if (PyErr_Occurred()) SWIG_fail
;
6360 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6368 SWIGINTERN PyObject
*_wrap_Frame_CreateStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6369 PyObject
*resultobj
= 0;
6370 wxFrame
*arg1
= (wxFrame
*) 0 ;
6371 int arg2
= (int) 1 ;
6372 long arg3
= (long) wxDEFAULT_STATUSBAR_STYLE
;
6373 int arg4
= (int) 0 ;
6374 wxString
const &arg5_defvalue
= wxPyStatusLineNameStr
;
6375 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
6376 wxStatusBar
*result
= 0 ;
6385 bool temp5
= false ;
6386 PyObject
* obj0
= 0 ;
6387 PyObject
* obj1
= 0 ;
6388 PyObject
* obj2
= 0 ;
6389 PyObject
* obj3
= 0 ;
6390 PyObject
* obj4
= 0 ;
6391 char * kwnames
[] = {
6392 (char *) "self",(char *) "number",(char *) "style",(char *) "winid",(char *) "name", NULL
6395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:Frame_CreateStatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
6396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6397 if (!SWIG_IsOK(res1
)) {
6398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_CreateStatusBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6400 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6402 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6403 if (!SWIG_IsOK(ecode2
)) {
6404 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_CreateStatusBar" "', expected argument " "2"" of type '" "int""'");
6406 arg2
= static_cast< int >(val2
);
6409 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
6410 if (!SWIG_IsOK(ecode3
)) {
6411 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_CreateStatusBar" "', expected argument " "3"" of type '" "long""'");
6413 arg3
= static_cast< long >(val3
);
6416 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
6417 if (!SWIG_IsOK(ecode4
)) {
6418 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Frame_CreateStatusBar" "', expected argument " "4"" of type '" "int""'");
6420 arg4
= static_cast< int >(val4
);
6424 arg5
= wxString_in_helper(obj4
);
6425 if (arg5
== NULL
) SWIG_fail
;
6430 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6431 result
= (wxStatusBar
*)(arg1
)->CreateStatusBar(arg2
,arg3
,arg4
,(wxString
const &)*arg5
);
6432 wxPyEndAllowThreads(__tstate
);
6433 if (PyErr_Occurred()) SWIG_fail
;
6436 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6452 SWIGINTERN PyObject
*_wrap_Frame_GetStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6453 PyObject
*resultobj
= 0;
6454 wxFrame
*arg1
= (wxFrame
*) 0 ;
6455 wxStatusBar
*result
= 0 ;
6458 PyObject
*swig_obj
[1] ;
6460 if (!args
) SWIG_fail
;
6462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6463 if (!SWIG_IsOK(res1
)) {
6464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetStatusBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6466 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6469 result
= (wxStatusBar
*)((wxFrame
const *)arg1
)->GetStatusBar();
6470 wxPyEndAllowThreads(__tstate
);
6471 if (PyErr_Occurred()) SWIG_fail
;
6474 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6482 SWIGINTERN PyObject
*_wrap_Frame_SetStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6483 PyObject
*resultobj
= 0;
6484 wxFrame
*arg1
= (wxFrame
*) 0 ;
6485 wxStatusBar
*arg2
= (wxStatusBar
*) 0 ;
6490 PyObject
* obj0
= 0 ;
6491 PyObject
* obj1
= 0 ;
6492 char * kwnames
[] = {
6493 (char *) "self",(char *) "statBar", NULL
6496 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6497 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6498 if (!SWIG_IsOK(res1
)) {
6499 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6501 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6502 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
6503 if (!SWIG_IsOK(res2
)) {
6504 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetStatusBar" "', expected argument " "2"" of type '" "wxStatusBar *""'");
6506 arg2
= reinterpret_cast< wxStatusBar
* >(argp2
);
6508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6509 (arg1
)->SetStatusBar(arg2
);
6510 wxPyEndAllowThreads(__tstate
);
6511 if (PyErr_Occurred()) SWIG_fail
;
6513 resultobj
= SWIG_Py_Void();
6520 SWIGINTERN PyObject
*_wrap_Frame_SetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6521 PyObject
*resultobj
= 0;
6522 wxFrame
*arg1
= (wxFrame
*) 0 ;
6523 wxString
*arg2
= 0 ;
6524 int arg3
= (int) 0 ;
6527 bool temp2
= false ;
6530 PyObject
* obj0
= 0 ;
6531 PyObject
* obj1
= 0 ;
6532 PyObject
* obj2
= 0 ;
6533 char * kwnames
[] = {
6534 (char *) "self",(char *) "text",(char *) "number", NULL
6537 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6538 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6539 if (!SWIG_IsOK(res1
)) {
6540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6542 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6544 arg2
= wxString_in_helper(obj1
);
6545 if (arg2
== NULL
) SWIG_fail
;
6549 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6550 if (!SWIG_IsOK(ecode3
)) {
6551 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_SetStatusText" "', expected argument " "3"" of type '" "int""'");
6553 arg3
= static_cast< int >(val3
);
6556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6557 (arg1
)->SetStatusText((wxString
const &)*arg2
,arg3
);
6558 wxPyEndAllowThreads(__tstate
);
6559 if (PyErr_Occurred()) SWIG_fail
;
6561 resultobj
= SWIG_Py_Void();
6576 SWIGINTERN PyObject
*_wrap_Frame_SetStatusWidths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6577 PyObject
*resultobj
= 0;
6578 wxFrame
*arg1
= (wxFrame
*) 0 ;
6580 int *arg3
= (int *) 0 ;
6583 PyObject
* obj0
= 0 ;
6584 PyObject
* obj1
= 0 ;
6585 char * kwnames
[] = {
6586 (char *) "self",(char *) "widths", NULL
6589 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusWidths",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6590 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6591 if (!SWIG_IsOK(res1
)) {
6592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusWidths" "', expected argument " "1"" of type '" "wxFrame *""'");
6594 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6596 arg2
= PyList_Size(obj1
);
6597 arg3
= int_LIST_helper(obj1
);
6598 if (arg3
== NULL
) SWIG_fail
;
6601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6602 (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
);
6603 wxPyEndAllowThreads(__tstate
);
6604 if (PyErr_Occurred()) SWIG_fail
;
6606 resultobj
= SWIG_Py_Void();
6608 if (arg3
) delete [] arg3
;
6613 if (arg3
) delete [] arg3
;
6619 SWIGINTERN PyObject
*_wrap_Frame_PushStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6620 PyObject
*resultobj
= 0;
6621 wxFrame
*arg1
= (wxFrame
*) 0 ;
6622 wxString
*arg2
= 0 ;
6623 int arg3
= (int) 0 ;
6626 bool temp2
= false ;
6629 PyObject
* obj0
= 0 ;
6630 PyObject
* obj1
= 0 ;
6631 PyObject
* obj2
= 0 ;
6632 char * kwnames
[] = {
6633 (char *) "self",(char *) "text",(char *) "number", NULL
6636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6638 if (!SWIG_IsOK(res1
)) {
6639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_PushStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6641 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6643 arg2
= wxString_in_helper(obj1
);
6644 if (arg2
== NULL
) SWIG_fail
;
6648 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6649 if (!SWIG_IsOK(ecode3
)) {
6650 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_PushStatusText" "', expected argument " "3"" of type '" "int""'");
6652 arg3
= static_cast< int >(val3
);
6655 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6656 (arg1
)->PushStatusText((wxString
const &)*arg2
,arg3
);
6657 wxPyEndAllowThreads(__tstate
);
6658 if (PyErr_Occurred()) SWIG_fail
;
6660 resultobj
= SWIG_Py_Void();
6675 SWIGINTERN PyObject
*_wrap_Frame_PopStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6676 PyObject
*resultobj
= 0;
6677 wxFrame
*arg1
= (wxFrame
*) 0 ;
6678 int arg2
= (int) 0 ;
6683 PyObject
* obj0
= 0 ;
6684 PyObject
* obj1
= 0 ;
6685 char * kwnames
[] = {
6686 (char *) "self",(char *) "number", NULL
6689 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_PopStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6690 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6691 if (!SWIG_IsOK(res1
)) {
6692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_PopStatusText" "', expected argument " "1"" of type '" "wxFrame *""'");
6694 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6696 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6697 if (!SWIG_IsOK(ecode2
)) {
6698 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_PopStatusText" "', expected argument " "2"" of type '" "int""'");
6700 arg2
= static_cast< int >(val2
);
6703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6704 (arg1
)->PopStatusText(arg2
);
6705 wxPyEndAllowThreads(__tstate
);
6706 if (PyErr_Occurred()) SWIG_fail
;
6708 resultobj
= SWIG_Py_Void();
6715 SWIGINTERN PyObject
*_wrap_Frame_SetStatusBarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6716 PyObject
*resultobj
= 0;
6717 wxFrame
*arg1
= (wxFrame
*) 0 ;
6723 PyObject
* obj0
= 0 ;
6724 PyObject
* obj1
= 0 ;
6725 char * kwnames
[] = {
6726 (char *) "self",(char *) "n", NULL
6729 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBarPane",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6730 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6731 if (!SWIG_IsOK(res1
)) {
6732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetStatusBarPane" "', expected argument " "1"" of type '" "wxFrame *""'");
6734 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6735 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6736 if (!SWIG_IsOK(ecode2
)) {
6737 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_SetStatusBarPane" "', expected argument " "2"" of type '" "int""'");
6739 arg2
= static_cast< int >(val2
);
6741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6742 (arg1
)->SetStatusBarPane(arg2
);
6743 wxPyEndAllowThreads(__tstate
);
6744 if (PyErr_Occurred()) SWIG_fail
;
6746 resultobj
= SWIG_Py_Void();
6753 SWIGINTERN PyObject
*_wrap_Frame_GetStatusBarPane(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6754 PyObject
*resultobj
= 0;
6755 wxFrame
*arg1
= (wxFrame
*) 0 ;
6759 PyObject
*swig_obj
[1] ;
6761 if (!args
) SWIG_fail
;
6763 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6764 if (!SWIG_IsOK(res1
)) {
6765 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetStatusBarPane" "', expected argument " "1"" of type '" "wxFrame const *""'");
6767 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6770 result
= (int)((wxFrame
const *)arg1
)->GetStatusBarPane();
6771 wxPyEndAllowThreads(__tstate
);
6772 if (PyErr_Occurred()) SWIG_fail
;
6774 resultobj
= SWIG_From_int(static_cast< int >(result
));
6781 SWIGINTERN PyObject
*_wrap_Frame_CreateToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6782 PyObject
*resultobj
= 0;
6783 wxFrame
*arg1
= (wxFrame
*) 0 ;
6784 long arg2
= (long) -1 ;
6785 int arg3
= (int) -1 ;
6786 wxString
const &arg4_defvalue
= wxPyToolBarNameStr
;
6787 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
6788 wxToolBar
*result
= 0 ;
6795 bool temp4
= false ;
6796 PyObject
* obj0
= 0 ;
6797 PyObject
* obj1
= 0 ;
6798 PyObject
* obj2
= 0 ;
6799 PyObject
* obj3
= 0 ;
6800 char * kwnames
[] = {
6801 (char *) "self",(char *) "style",(char *) "winid",(char *) "name", NULL
6804 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:Frame_CreateToolBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
6805 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6806 if (!SWIG_IsOK(res1
)) {
6807 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_CreateToolBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6809 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6811 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
6812 if (!SWIG_IsOK(ecode2
)) {
6813 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Frame_CreateToolBar" "', expected argument " "2"" of type '" "long""'");
6815 arg2
= static_cast< long >(val2
);
6818 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6819 if (!SWIG_IsOK(ecode3
)) {
6820 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_CreateToolBar" "', expected argument " "3"" of type '" "int""'");
6822 arg3
= static_cast< int >(val3
);
6826 arg4
= wxString_in_helper(obj3
);
6827 if (arg4
== NULL
) SWIG_fail
;
6832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6833 result
= (wxToolBar
*)(arg1
)->CreateToolBar(arg2
,arg3
,(wxString
const &)*arg4
);
6834 wxPyEndAllowThreads(__tstate
);
6835 if (PyErr_Occurred()) SWIG_fail
;
6838 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6854 SWIGINTERN PyObject
*_wrap_Frame_GetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6855 PyObject
*resultobj
= 0;
6856 wxFrame
*arg1
= (wxFrame
*) 0 ;
6857 wxToolBar
*result
= 0 ;
6860 PyObject
*swig_obj
[1] ;
6862 if (!args
) SWIG_fail
;
6864 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6865 if (!SWIG_IsOK(res1
)) {
6866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_GetToolBar" "', expected argument " "1"" of type '" "wxFrame const *""'");
6868 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6871 result
= (wxToolBar
*)((wxFrame
const *)arg1
)->GetToolBar();
6872 wxPyEndAllowThreads(__tstate
);
6873 if (PyErr_Occurred()) SWIG_fail
;
6876 resultobj
= wxPyMake_wxObject(result
, (bool)0);
6884 SWIGINTERN PyObject
*_wrap_Frame_SetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6885 PyObject
*resultobj
= 0;
6886 wxFrame
*arg1
= (wxFrame
*) 0 ;
6887 wxToolBar
*arg2
= (wxToolBar
*) 0 ;
6892 PyObject
* obj0
= 0 ;
6893 PyObject
* obj1
= 0 ;
6894 char * kwnames
[] = {
6895 (char *) "self",(char *) "toolbar", NULL
6898 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetToolBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6899 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6900 if (!SWIG_IsOK(res1
)) {
6901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_SetToolBar" "', expected argument " "1"" of type '" "wxFrame *""'");
6903 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6904 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxToolBar
, 0 | 0 );
6905 if (!SWIG_IsOK(res2
)) {
6906 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_SetToolBar" "', expected argument " "2"" of type '" "wxToolBar *""'");
6908 arg2
= reinterpret_cast< wxToolBar
* >(argp2
);
6910 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6911 (arg1
)->SetToolBar(arg2
);
6912 wxPyEndAllowThreads(__tstate
);
6913 if (PyErr_Occurred()) SWIG_fail
;
6915 resultobj
= SWIG_Py_Void();
6922 SWIGINTERN PyObject
*_wrap_Frame_DoGiveHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6923 PyObject
*resultobj
= 0;
6924 wxFrame
*arg1
= (wxFrame
*) 0 ;
6925 wxString
*arg2
= 0 ;
6929 bool temp2
= false ;
6932 PyObject
* obj0
= 0 ;
6933 PyObject
* obj1
= 0 ;
6934 PyObject
* obj2
= 0 ;
6935 char * kwnames
[] = {
6936 (char *) "self",(char *) "text",(char *) "show", NULL
6939 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Frame_DoGiveHelp",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6940 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6941 if (!SWIG_IsOK(res1
)) {
6942 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_DoGiveHelp" "', expected argument " "1"" of type '" "wxFrame *""'");
6944 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6946 arg2
= wxString_in_helper(obj1
);
6947 if (arg2
== NULL
) SWIG_fail
;
6950 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6951 if (!SWIG_IsOK(ecode3
)) {
6952 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Frame_DoGiveHelp" "', expected argument " "3"" of type '" "bool""'");
6954 arg3
= static_cast< bool >(val3
);
6956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6957 (arg1
)->DoGiveHelp((wxString
const &)*arg2
,arg3
);
6958 wxPyEndAllowThreads(__tstate
);
6959 if (PyErr_Occurred()) SWIG_fail
;
6961 resultobj
= SWIG_Py_Void();
6976 SWIGINTERN PyObject
*_wrap_Frame_DoMenuUpdates(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6977 PyObject
*resultobj
= 0;
6978 wxFrame
*arg1
= (wxFrame
*) 0 ;
6979 wxMenu
*arg2
= (wxMenu
*) NULL
;
6984 PyObject
* obj0
= 0 ;
6985 PyObject
* obj1
= 0 ;
6986 char * kwnames
[] = {
6987 (char *) "self",(char *) "menu", NULL
6990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_DoMenuUpdates",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6991 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFrame
, 0 | 0 );
6992 if (!SWIG_IsOK(res1
)) {
6993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Frame_DoMenuUpdates" "', expected argument " "1"" of type '" "wxFrame *""'");
6995 arg1
= reinterpret_cast< wxFrame
* >(argp1
);
6997 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
6998 if (!SWIG_IsOK(res2
)) {
6999 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Frame_DoMenuUpdates" "', expected argument " "2"" of type '" "wxMenu *""'");
7001 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
7004 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7005 (arg1
)->DoMenuUpdates(arg2
);
7006 wxPyEndAllowThreads(__tstate
);
7007 if (PyErr_Occurred()) SWIG_fail
;
7009 resultobj
= SWIG_Py_Void();
7016 SWIGINTERN PyObject
*_wrap_Frame_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7017 PyObject
*resultobj
= 0;
7018 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7019 SwigValueWrapper
<wxVisualAttributes
> result
;
7022 PyObject
* obj0
= 0 ;
7023 char * kwnames
[] = {
7024 (char *) "variant", NULL
7027 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Frame_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
7029 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7030 if (!SWIG_IsOK(ecode1
)) {
7031 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Frame_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
7033 arg1
= static_cast< wxWindowVariant
>(val1
);
7036 if (!wxPyCheckForApp()) SWIG_fail
;
7037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7038 result
= wxFrame::GetClassDefaultAttributes(arg1
);
7039 wxPyEndAllowThreads(__tstate
);
7040 if (PyErr_Occurred()) SWIG_fail
;
7042 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
7049 SWIGINTERN PyObject
*Frame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7051 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7052 SWIG_TypeNewClientData(SWIGTYPE_p_wxFrame
, SWIG_NewClientData(obj
));
7053 return SWIG_Py_Void();
7056 SWIGINTERN PyObject
*Frame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7057 return SWIG_Python_InitShadowInstance(args
);
7060 SWIGINTERN PyObject
*_wrap_new_Dialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7061 PyObject
*resultobj
= 0;
7062 wxWindow
*arg1
= (wxWindow
*) 0 ;
7063 int arg2
= (int) (int)-1 ;
7064 wxString
const &arg3_defvalue
= wxPyEmptyString
;
7065 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
7066 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7067 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7068 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7069 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7070 long arg6
= (long) wxDEFAULT_DIALOG_STYLE
;
7071 wxString
const &arg7_defvalue
= wxPyDialogNameStr
;
7072 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7073 wxDialog
*result
= 0 ;
7078 bool temp3
= false ;
7083 bool temp7
= false ;
7084 PyObject
* obj0
= 0 ;
7085 PyObject
* obj1
= 0 ;
7086 PyObject
* obj2
= 0 ;
7087 PyObject
* obj3
= 0 ;
7088 PyObject
* obj4
= 0 ;
7089 PyObject
* obj5
= 0 ;
7090 PyObject
* obj6
= 0 ;
7091 char * kwnames
[] = {
7092 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7095 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Dialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
7096 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7097 if (!SWIG_IsOK(res1
)) {
7098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Dialog" "', expected argument " "1"" of type '" "wxWindow *""'");
7100 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7102 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7103 if (!SWIG_IsOK(ecode2
)) {
7104 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_Dialog" "', expected argument " "2"" of type '" "int""'");
7106 arg2
= static_cast< int >(val2
);
7110 arg3
= wxString_in_helper(obj2
);
7111 if (arg3
== NULL
) SWIG_fail
;
7118 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7124 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7128 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
7129 if (!SWIG_IsOK(ecode6
)) {
7130 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_Dialog" "', expected argument " "6"" of type '" "long""'");
7132 arg6
= static_cast< long >(val6
);
7136 arg7
= wxString_in_helper(obj6
);
7137 if (arg7
== NULL
) SWIG_fail
;
7142 if (!wxPyCheckForApp()) SWIG_fail
;
7143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7144 result
= (wxDialog
*)new wxDialog(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7145 wxPyEndAllowThreads(__tstate
);
7146 if (PyErr_Occurred()) SWIG_fail
;
7148 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDialog
, SWIG_POINTER_NEW
| 0 );
7171 SWIGINTERN PyObject
*_wrap_new_PreDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7172 PyObject
*resultobj
= 0;
7173 wxDialog
*result
= 0 ;
7175 if (!SWIG_Python_UnpackTuple(args
,"new_PreDialog",0,0,0)) SWIG_fail
;
7177 if (!wxPyCheckForApp()) SWIG_fail
;
7178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7179 result
= (wxDialog
*)new wxDialog();
7180 wxPyEndAllowThreads(__tstate
);
7181 if (PyErr_Occurred()) SWIG_fail
;
7183 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDialog
, SWIG_POINTER_OWN
| 0 );
7190 SWIGINTERN PyObject
*_wrap_Dialog_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7191 PyObject
*resultobj
= 0;
7192 wxDialog
*arg1
= (wxDialog
*) 0 ;
7193 wxWindow
*arg2
= (wxWindow
*) 0 ;
7194 int arg3
= (int) (int)-1 ;
7195 wxString
const &arg4_defvalue
= wxPyEmptyString
;
7196 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7197 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7198 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7199 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7200 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7201 long arg7
= (long) wxDEFAULT_DIALOG_STYLE
;
7202 wxString
const &arg8_defvalue
= wxPyDialogNameStr
;
7203 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7211 bool temp4
= false ;
7216 bool temp8
= false ;
7217 PyObject
* obj0
= 0 ;
7218 PyObject
* obj1
= 0 ;
7219 PyObject
* obj2
= 0 ;
7220 PyObject
* obj3
= 0 ;
7221 PyObject
* obj4
= 0 ;
7222 PyObject
* obj5
= 0 ;
7223 PyObject
* obj6
= 0 ;
7224 PyObject
* obj7
= 0 ;
7225 char * kwnames
[] = {
7226 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7229 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Dialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
7230 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7231 if (!SWIG_IsOK(res1
)) {
7232 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_Create" "', expected argument " "1"" of type '" "wxDialog *""'");
7234 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7235 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7236 if (!SWIG_IsOK(res2
)) {
7237 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Dialog_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
7239 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7241 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7242 if (!SWIG_IsOK(ecode3
)) {
7243 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Dialog_Create" "', expected argument " "3"" of type '" "int""'");
7245 arg3
= static_cast< int >(val3
);
7249 arg4
= wxString_in_helper(obj3
);
7250 if (arg4
== NULL
) SWIG_fail
;
7257 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
7263 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
7267 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
7268 if (!SWIG_IsOK(ecode7
)) {
7269 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "Dialog_Create" "', expected argument " "7"" of type '" "long""'");
7271 arg7
= static_cast< long >(val7
);
7275 arg8
= wxString_in_helper(obj7
);
7276 if (arg8
== NULL
) SWIG_fail
;
7281 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7282 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
7283 wxPyEndAllowThreads(__tstate
);
7284 if (PyErr_Occurred()) SWIG_fail
;
7287 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7311 SWIGINTERN PyObject
*_wrap_Dialog_SetReturnCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7312 PyObject
*resultobj
= 0;
7313 wxDialog
*arg1
= (wxDialog
*) 0 ;
7319 PyObject
* obj0
= 0 ;
7320 PyObject
* obj1
= 0 ;
7321 char * kwnames
[] = {
7322 (char *) "self",(char *) "returnCode", NULL
7325 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetReturnCode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7326 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7327 if (!SWIG_IsOK(res1
)) {
7328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetReturnCode" "', expected argument " "1"" of type '" "wxDialog *""'");
7330 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7331 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7332 if (!SWIG_IsOK(ecode2
)) {
7333 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetReturnCode" "', expected argument " "2"" of type '" "int""'");
7335 arg2
= static_cast< int >(val2
);
7337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7338 (arg1
)->SetReturnCode(arg2
);
7339 wxPyEndAllowThreads(__tstate
);
7340 if (PyErr_Occurred()) SWIG_fail
;
7342 resultobj
= SWIG_Py_Void();
7349 SWIGINTERN PyObject
*_wrap_Dialog_GetReturnCode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7350 PyObject
*resultobj
= 0;
7351 wxDialog
*arg1
= (wxDialog
*) 0 ;
7355 PyObject
*swig_obj
[1] ;
7357 if (!args
) SWIG_fail
;
7359 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7360 if (!SWIG_IsOK(res1
)) {
7361 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetReturnCode" "', expected argument " "1"" of type '" "wxDialog const *""'");
7363 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7366 result
= (int)((wxDialog
const *)arg1
)->GetReturnCode();
7367 wxPyEndAllowThreads(__tstate
);
7368 if (PyErr_Occurred()) SWIG_fail
;
7370 resultobj
= SWIG_From_int(static_cast< int >(result
));
7377 SWIGINTERN PyObject
*_wrap_Dialog_SetAffirmativeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7378 PyObject
*resultobj
= 0;
7379 wxDialog
*arg1
= (wxDialog
*) 0 ;
7385 PyObject
* obj0
= 0 ;
7386 PyObject
* obj1
= 0 ;
7387 char * kwnames
[] = {
7388 (char *) "self",(char *) "affirmativeId", NULL
7391 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetAffirmativeId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7392 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7393 if (!SWIG_IsOK(res1
)) {
7394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetAffirmativeId" "', expected argument " "1"" of type '" "wxDialog *""'");
7396 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7397 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7398 if (!SWIG_IsOK(ecode2
)) {
7399 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetAffirmativeId" "', expected argument " "2"" of type '" "int""'");
7401 arg2
= static_cast< int >(val2
);
7403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7404 (arg1
)->SetAffirmativeId(arg2
);
7405 wxPyEndAllowThreads(__tstate
);
7406 if (PyErr_Occurred()) SWIG_fail
;
7408 resultobj
= SWIG_Py_Void();
7415 SWIGINTERN PyObject
*_wrap_Dialog_GetAffirmativeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7416 PyObject
*resultobj
= 0;
7417 wxDialog
*arg1
= (wxDialog
*) 0 ;
7421 PyObject
*swig_obj
[1] ;
7423 if (!args
) SWIG_fail
;
7425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7426 if (!SWIG_IsOK(res1
)) {
7427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetAffirmativeId" "', expected argument " "1"" of type '" "wxDialog const *""'");
7429 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7432 result
= (int)((wxDialog
const *)arg1
)->GetAffirmativeId();
7433 wxPyEndAllowThreads(__tstate
);
7434 if (PyErr_Occurred()) SWIG_fail
;
7436 resultobj
= SWIG_From_int(static_cast< int >(result
));
7443 SWIGINTERN PyObject
*_wrap_Dialog_SetEscapeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7444 PyObject
*resultobj
= 0;
7445 wxDialog
*arg1
= (wxDialog
*) 0 ;
7451 PyObject
* obj0
= 0 ;
7452 PyObject
* obj1
= 0 ;
7453 char * kwnames
[] = {
7454 (char *) "self",(char *) "escapeId", NULL
7457 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetEscapeId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7458 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7459 if (!SWIG_IsOK(res1
)) {
7460 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_SetEscapeId" "', expected argument " "1"" of type '" "wxDialog *""'");
7462 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7463 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7464 if (!SWIG_IsOK(ecode2
)) {
7465 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_SetEscapeId" "', expected argument " "2"" of type '" "int""'");
7467 arg2
= static_cast< int >(val2
);
7469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7470 (arg1
)->SetEscapeId(arg2
);
7471 wxPyEndAllowThreads(__tstate
);
7472 if (PyErr_Occurred()) SWIG_fail
;
7474 resultobj
= SWIG_Py_Void();
7481 SWIGINTERN PyObject
*_wrap_Dialog_GetEscapeId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7482 PyObject
*resultobj
= 0;
7483 wxDialog
*arg1
= (wxDialog
*) 0 ;
7487 PyObject
*swig_obj
[1] ;
7489 if (!args
) SWIG_fail
;
7491 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7492 if (!SWIG_IsOK(res1
)) {
7493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_GetEscapeId" "', expected argument " "1"" of type '" "wxDialog const *""'");
7495 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7498 result
= (int)((wxDialog
const *)arg1
)->GetEscapeId();
7499 wxPyEndAllowThreads(__tstate
);
7500 if (PyErr_Occurred()) SWIG_fail
;
7502 resultobj
= SWIG_From_int(static_cast< int >(result
));
7509 SWIGINTERN PyObject
*_wrap_Dialog_CreateTextSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7510 PyObject
*resultobj
= 0;
7511 wxDialog
*arg1
= (wxDialog
*) 0 ;
7512 wxString
*arg2
= 0 ;
7513 wxSizer
*result
= 0 ;
7516 bool temp2
= false ;
7517 PyObject
* obj0
= 0 ;
7518 PyObject
* obj1
= 0 ;
7519 char * kwnames
[] = {
7520 (char *) "self",(char *) "message", NULL
7523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateTextSizer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7524 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7525 if (!SWIG_IsOK(res1
)) {
7526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateTextSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7528 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7530 arg2
= wxString_in_helper(obj1
);
7531 if (arg2
== NULL
) SWIG_fail
;
7535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7536 result
= (wxSizer
*)(arg1
)->CreateTextSizer((wxString
const &)*arg2
);
7537 wxPyEndAllowThreads(__tstate
);
7538 if (PyErr_Occurred()) SWIG_fail
;
7541 resultobj
= wxPyMake_wxObject(result
, (bool)0);
7557 SWIGINTERN PyObject
*_wrap_Dialog_CreateButtonSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7558 PyObject
*resultobj
= 0;
7559 wxDialog
*arg1
= (wxDialog
*) 0 ;
7561 bool arg3
= (bool) false ;
7562 int arg4
= (int) 0 ;
7563 wxSizer
*result
= 0 ;
7572 PyObject
* obj0
= 0 ;
7573 PyObject
* obj1
= 0 ;
7574 PyObject
* obj2
= 0 ;
7575 PyObject
* obj3
= 0 ;
7576 char * kwnames
[] = {
7577 (char *) "self",(char *) "flags",(char *) "separated",(char *) "distance", NULL
7580 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:Dialog_CreateButtonSizer",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
7581 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7582 if (!SWIG_IsOK(res1
)) {
7583 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7585 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7586 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
7587 if (!SWIG_IsOK(ecode2
)) {
7588 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "2"" of type '" "long""'");
7590 arg2
= static_cast< long >(val2
);
7592 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
7593 if (!SWIG_IsOK(ecode3
)) {
7594 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "3"" of type '" "bool""'");
7596 arg3
= static_cast< bool >(val3
);
7599 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
7600 if (!SWIG_IsOK(ecode4
)) {
7601 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Dialog_CreateButtonSizer" "', expected argument " "4"" of type '" "int""'");
7603 arg4
= static_cast< int >(val4
);
7606 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7607 result
= (wxSizer
*)(arg1
)->CreateButtonSizer(arg2
,arg3
,arg4
);
7608 wxPyEndAllowThreads(__tstate
);
7609 if (PyErr_Occurred()) SWIG_fail
;
7612 resultobj
= wxPyMake_wxObject(result
, (bool)0);
7620 SWIGINTERN PyObject
*_wrap_Dialog_CreateStdDialogButtonSizer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7621 PyObject
*resultobj
= 0;
7622 wxDialog
*arg1
= (wxDialog
*) 0 ;
7624 wxStdDialogButtonSizer
*result
= 0 ;
7629 PyObject
* obj0
= 0 ;
7630 PyObject
* obj1
= 0 ;
7631 char * kwnames
[] = {
7632 (char *) "self",(char *) "flags", NULL
7635 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateStdDialogButtonSizer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7636 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7637 if (!SWIG_IsOK(res1
)) {
7638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_CreateStdDialogButtonSizer" "', expected argument " "1"" of type '" "wxDialog *""'");
7640 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7641 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
7642 if (!SWIG_IsOK(ecode2
)) {
7643 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_CreateStdDialogButtonSizer" "', expected argument " "2"" of type '" "long""'");
7645 arg2
= static_cast< long >(val2
);
7647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7648 result
= (wxStdDialogButtonSizer
*)(arg1
)->CreateStdDialogButtonSizer(arg2
);
7649 wxPyEndAllowThreads(__tstate
);
7650 if (PyErr_Occurred()) SWIG_fail
;
7652 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStdDialogButtonSizer
, 0 | 0 );
7659 SWIGINTERN PyObject
*_wrap_Dialog_IsModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7660 PyObject
*resultobj
= 0;
7661 wxDialog
*arg1
= (wxDialog
*) 0 ;
7665 PyObject
*swig_obj
[1] ;
7667 if (!args
) SWIG_fail
;
7669 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7670 if (!SWIG_IsOK(res1
)) {
7671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_IsModal" "', expected argument " "1"" of type '" "wxDialog const *""'");
7673 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7676 result
= (bool)((wxDialog
const *)arg1
)->IsModal();
7677 wxPyEndAllowThreads(__tstate
);
7678 if (PyErr_Occurred()) SWIG_fail
;
7681 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7689 SWIGINTERN PyObject
*_wrap_Dialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7690 PyObject
*resultobj
= 0;
7691 wxDialog
*arg1
= (wxDialog
*) 0 ;
7695 PyObject
*swig_obj
[1] ;
7697 if (!args
) SWIG_fail
;
7699 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7700 if (!SWIG_IsOK(res1
)) {
7701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_ShowModal" "', expected argument " "1"" of type '" "wxDialog *""'");
7703 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7706 result
= (int)(arg1
)->ShowModal();
7707 wxPyEndAllowThreads(__tstate
);
7708 if (PyErr_Occurred()) SWIG_fail
;
7710 resultobj
= SWIG_From_int(static_cast< int >(result
));
7717 SWIGINTERN PyObject
*_wrap_Dialog_EndModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7718 PyObject
*resultobj
= 0;
7719 wxDialog
*arg1
= (wxDialog
*) 0 ;
7725 PyObject
* obj0
= 0 ;
7726 PyObject
* obj1
= 0 ;
7727 char * kwnames
[] = {
7728 (char *) "self",(char *) "retCode", NULL
7731 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_EndModal",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7732 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDialog
, 0 | 0 );
7733 if (!SWIG_IsOK(res1
)) {
7734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Dialog_EndModal" "', expected argument " "1"" of type '" "wxDialog *""'");
7736 arg1
= reinterpret_cast< wxDialog
* >(argp1
);
7737 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7738 if (!SWIG_IsOK(ecode2
)) {
7739 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Dialog_EndModal" "', expected argument " "2"" of type '" "int""'");
7741 arg2
= static_cast< int >(val2
);
7743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7744 (arg1
)->EndModal(arg2
);
7745 wxPyEndAllowThreads(__tstate
);
7746 if (PyErr_Occurred()) SWIG_fail
;
7748 resultobj
= SWIG_Py_Void();
7755 SWIGINTERN PyObject
*_wrap_Dialog_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7756 PyObject
*resultobj
= 0;
7757 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
7758 SwigValueWrapper
<wxVisualAttributes
> result
;
7761 PyObject
* obj0
= 0 ;
7762 char * kwnames
[] = {
7763 (char *) "variant", NULL
7766 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Dialog_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
7768 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
7769 if (!SWIG_IsOK(ecode1
)) {
7770 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "Dialog_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
7772 arg1
= static_cast< wxWindowVariant
>(val1
);
7775 if (!wxPyCheckForApp()) SWIG_fail
;
7776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7777 result
= wxDialog::GetClassDefaultAttributes(arg1
);
7778 wxPyEndAllowThreads(__tstate
);
7779 if (PyErr_Occurred()) SWIG_fail
;
7781 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
7788 SWIGINTERN PyObject
*Dialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7790 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
7791 SWIG_TypeNewClientData(SWIGTYPE_p_wxDialog
, SWIG_NewClientData(obj
));
7792 return SWIG_Py_Void();
7795 SWIGINTERN PyObject
*Dialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7796 return SWIG_Python_InitShadowInstance(args
);
7799 SWIGINTERN PyObject
*_wrap_new_MiniFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7800 PyObject
*resultobj
= 0;
7801 wxWindow
*arg1
= (wxWindow
*) 0 ;
7802 int arg2
= (int) (int)-1 ;
7803 wxString
const &arg3_defvalue
= wxPyEmptyString
;
7804 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
7805 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
7806 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
7807 wxSize
const &arg5_defvalue
= wxDefaultSize
;
7808 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
7809 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
7810 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
7811 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
7812 wxMiniFrame
*result
= 0 ;
7817 bool temp3
= false ;
7822 bool temp7
= false ;
7823 PyObject
* obj0
= 0 ;
7824 PyObject
* obj1
= 0 ;
7825 PyObject
* obj2
= 0 ;
7826 PyObject
* obj3
= 0 ;
7827 PyObject
* obj4
= 0 ;
7828 PyObject
* obj5
= 0 ;
7829 PyObject
* obj6
= 0 ;
7830 char * kwnames
[] = {
7831 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7834 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MiniFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
7835 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7836 if (!SWIG_IsOK(res1
)) {
7837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MiniFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
7839 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
7841 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7842 if (!SWIG_IsOK(ecode2
)) {
7843 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MiniFrame" "', expected argument " "2"" of type '" "int""'");
7845 arg2
= static_cast< int >(val2
);
7849 arg3
= wxString_in_helper(obj2
);
7850 if (arg3
== NULL
) SWIG_fail
;
7857 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
7863 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
7867 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
7868 if (!SWIG_IsOK(ecode6
)) {
7869 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MiniFrame" "', expected argument " "6"" of type '" "long""'");
7871 arg6
= static_cast< long >(val6
);
7875 arg7
= wxString_in_helper(obj6
);
7876 if (arg7
== NULL
) SWIG_fail
;
7881 if (!wxPyCheckForApp()) SWIG_fail
;
7882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7883 result
= (wxMiniFrame
*)new wxMiniFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
7884 wxPyEndAllowThreads(__tstate
);
7885 if (PyErr_Occurred()) SWIG_fail
;
7887 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMiniFrame
, SWIG_POINTER_NEW
| 0 );
7910 SWIGINTERN PyObject
*_wrap_new_PreMiniFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7911 PyObject
*resultobj
= 0;
7912 wxMiniFrame
*result
= 0 ;
7914 if (!SWIG_Python_UnpackTuple(args
,"new_PreMiniFrame",0,0,0)) SWIG_fail
;
7916 if (!wxPyCheckForApp()) SWIG_fail
;
7917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7918 result
= (wxMiniFrame
*)new wxMiniFrame();
7919 wxPyEndAllowThreads(__tstate
);
7920 if (PyErr_Occurred()) SWIG_fail
;
7922 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMiniFrame
, SWIG_POINTER_OWN
| 0 );
7929 SWIGINTERN PyObject
*_wrap_MiniFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7930 PyObject
*resultobj
= 0;
7931 wxMiniFrame
*arg1
= (wxMiniFrame
*) 0 ;
7932 wxWindow
*arg2
= (wxWindow
*) 0 ;
7933 int arg3
= (int) (int)-1 ;
7934 wxString
const &arg4_defvalue
= wxPyEmptyString
;
7935 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
7936 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
7937 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
7938 wxSize
const &arg6_defvalue
= wxDefaultSize
;
7939 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
7940 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
7941 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
7942 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
7950 bool temp4
= false ;
7955 bool temp8
= false ;
7956 PyObject
* obj0
= 0 ;
7957 PyObject
* obj1
= 0 ;
7958 PyObject
* obj2
= 0 ;
7959 PyObject
* obj3
= 0 ;
7960 PyObject
* obj4
= 0 ;
7961 PyObject
* obj5
= 0 ;
7962 PyObject
* obj6
= 0 ;
7963 PyObject
* obj7
= 0 ;
7964 char * kwnames
[] = {
7965 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
7968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MiniFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
7969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMiniFrame
, 0 | 0 );
7970 if (!SWIG_IsOK(res1
)) {
7971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MiniFrame_Create" "', expected argument " "1"" of type '" "wxMiniFrame *""'");
7973 arg1
= reinterpret_cast< wxMiniFrame
* >(argp1
);
7974 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
7975 if (!SWIG_IsOK(res2
)) {
7976 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MiniFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
7978 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
7980 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
7981 if (!SWIG_IsOK(ecode3
)) {
7982 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MiniFrame_Create" "', expected argument " "3"" of type '" "int""'");
7984 arg3
= static_cast< int >(val3
);
7988 arg4
= wxString_in_helper(obj3
);
7989 if (arg4
== NULL
) SWIG_fail
;
7996 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
8002 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
8006 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
8007 if (!SWIG_IsOK(ecode7
)) {
8008 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MiniFrame_Create" "', expected argument " "7"" of type '" "long""'");
8010 arg7
= static_cast< long >(val7
);
8014 arg8
= wxString_in_helper(obj7
);
8015 if (arg8
== NULL
) SWIG_fail
;
8020 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8021 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
8022 wxPyEndAllowThreads(__tstate
);
8023 if (PyErr_Occurred()) SWIG_fail
;
8026 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8050 SWIGINTERN PyObject
*MiniFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8052 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8053 SWIG_TypeNewClientData(SWIGTYPE_p_wxMiniFrame
, SWIG_NewClientData(obj
));
8054 return SWIG_Py_Void();
8057 SWIGINTERN PyObject
*MiniFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8058 return SWIG_Python_InitShadowInstance(args
);
8061 SWIGINTERN PyObject
*_wrap_new_SplashScreenWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8062 PyObject
*resultobj
= 0;
8063 wxBitmap
*arg1
= 0 ;
8064 wxWindow
*arg2
= (wxWindow
*) 0 ;
8066 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
8067 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
8068 wxSize
const &arg5_defvalue
= wxDefaultSize
;
8069 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
8070 long arg6
= (long) wxNO_BORDER
;
8071 wxSplashScreenWindow
*result
= 0 ;
8082 PyObject
* obj0
= 0 ;
8083 PyObject
* obj1
= 0 ;
8084 PyObject
* obj2
= 0 ;
8085 PyObject
* obj3
= 0 ;
8086 PyObject
* obj4
= 0 ;
8087 PyObject
* obj5
= 0 ;
8088 char * kwnames
[] = {
8089 (char *) "bitmap",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
8092 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_SplashScreenWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
8093 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8094 if (!SWIG_IsOK(res1
)) {
8095 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplashScreenWindow" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8098 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_SplashScreenWindow" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8100 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8101 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8102 if (!SWIG_IsOK(res2
)) {
8103 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_SplashScreenWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
8105 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8106 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8107 if (!SWIG_IsOK(ecode3
)) {
8108 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_SplashScreenWindow" "', expected argument " "3"" of type '" "int""'");
8110 arg3
= static_cast< int >(val3
);
8114 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
8120 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
8124 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
8125 if (!SWIG_IsOK(ecode6
)) {
8126 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_SplashScreenWindow" "', expected argument " "6"" of type '" "long""'");
8128 arg6
= static_cast< long >(val6
);
8131 if (!wxPyCheckForApp()) SWIG_fail
;
8132 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8133 result
= (wxSplashScreenWindow
*)new wxSplashScreenWindow((wxBitmap
const &)*arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
);
8134 wxPyEndAllowThreads(__tstate
);
8135 if (PyErr_Occurred()) SWIG_fail
;
8137 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreenWindow
, SWIG_POINTER_NEW
| 0 );
8144 SWIGINTERN PyObject
*_wrap_SplashScreenWindow_SetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8145 PyObject
*resultobj
= 0;
8146 wxSplashScreenWindow
*arg1
= (wxSplashScreenWindow
*) 0 ;
8147 wxBitmap
*arg2
= 0 ;
8152 PyObject
* obj0
= 0 ;
8153 PyObject
* obj1
= 0 ;
8154 char * kwnames
[] = {
8155 (char *) "self",(char *) "bitmap", NULL
8158 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplashScreenWindow_SetBitmap",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8159 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8160 if (!SWIG_IsOK(res1
)) {
8161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "1"" of type '" "wxSplashScreenWindow *""'");
8163 arg1
= reinterpret_cast< wxSplashScreenWindow
* >(argp1
);
8164 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8165 if (!SWIG_IsOK(res2
)) {
8166 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
8169 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "SplashScreenWindow_SetBitmap" "', expected argument " "2"" of type '" "wxBitmap const &""'");
8171 arg2
= reinterpret_cast< wxBitmap
* >(argp2
);
8173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8174 (arg1
)->SetBitmap((wxBitmap
const &)*arg2
);
8175 wxPyEndAllowThreads(__tstate
);
8176 if (PyErr_Occurred()) SWIG_fail
;
8178 resultobj
= SWIG_Py_Void();
8185 SWIGINTERN PyObject
*_wrap_SplashScreenWindow_GetBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8186 PyObject
*resultobj
= 0;
8187 wxSplashScreenWindow
*arg1
= (wxSplashScreenWindow
*) 0 ;
8188 wxBitmap
*result
= 0 ;
8191 PyObject
*swig_obj
[1] ;
8193 if (!args
) SWIG_fail
;
8195 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8196 if (!SWIG_IsOK(res1
)) {
8197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreenWindow_GetBitmap" "', expected argument " "1"" of type '" "wxSplashScreenWindow *""'");
8199 arg1
= reinterpret_cast< wxSplashScreenWindow
* >(argp1
);
8201 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8203 wxBitmap
&_result_ref
= (arg1
)->GetBitmap();
8204 result
= (wxBitmap
*) &_result_ref
;
8206 wxPyEndAllowThreads(__tstate
);
8207 if (PyErr_Occurred()) SWIG_fail
;
8210 wxBitmap
* resultptr
= new wxBitmap(*result
);
8211 resultobj
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1);
8219 SWIGINTERN PyObject
*SplashScreenWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8221 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8222 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplashScreenWindow
, SWIG_NewClientData(obj
));
8223 return SWIG_Py_Void();
8226 SWIGINTERN PyObject
*SplashScreenWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8227 return SWIG_Python_InitShadowInstance(args
);
8230 SWIGINTERN PyObject
*_wrap_new_SplashScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8231 PyObject
*resultobj
= 0;
8232 wxBitmap
*arg1
= 0 ;
8235 wxWindow
*arg4
= (wxWindow
*) 0 ;
8236 int arg5
= (int) -1 ;
8237 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
8238 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
8239 wxSize
const &arg7_defvalue
= wxDefaultSize
;
8240 wxSize
*arg7
= (wxSize
*) &arg7_defvalue
;
8241 long arg8
= (long) wxSIMPLE_BORDER
|wxFRAME_NO_TASKBAR
|wxSTAY_ON_TOP
;
8242 wxSplashScreen
*result
= 0 ;
8257 PyObject
* obj0
= 0 ;
8258 PyObject
* obj1
= 0 ;
8259 PyObject
* obj2
= 0 ;
8260 PyObject
* obj3
= 0 ;
8261 PyObject
* obj4
= 0 ;
8262 PyObject
* obj5
= 0 ;
8263 PyObject
* obj6
= 0 ;
8264 PyObject
* obj7
= 0 ;
8265 char * kwnames
[] = {
8266 (char *) "bitmap",(char *) "splashStyle",(char *) "milliseconds",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL
8269 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:new_SplashScreen",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
8270 res1
= SWIG_ConvertPtr(obj0
, &argp1
, SWIGTYPE_p_wxBitmap
, 0 | 0);
8271 if (!SWIG_IsOK(res1
)) {
8272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplashScreen" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8275 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_SplashScreen" "', expected argument " "1"" of type '" "wxBitmap const &""'");
8277 arg1
= reinterpret_cast< wxBitmap
* >(argp1
);
8278 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
8279 if (!SWIG_IsOK(ecode2
)) {
8280 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SplashScreen" "', expected argument " "2"" of type '" "long""'");
8282 arg2
= static_cast< long >(val2
);
8283 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8284 if (!SWIG_IsOK(ecode3
)) {
8285 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_SplashScreen" "', expected argument " "3"" of type '" "int""'");
8287 arg3
= static_cast< int >(val3
);
8288 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8289 if (!SWIG_IsOK(res4
)) {
8290 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_SplashScreen" "', expected argument " "4"" of type '" "wxWindow *""'");
8292 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
8294 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
8295 if (!SWIG_IsOK(ecode5
)) {
8296 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SplashScreen" "', expected argument " "5"" of type '" "int""'");
8298 arg5
= static_cast< int >(val5
);
8303 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
8309 if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
;
8313 ecode8
= SWIG_AsVal_long(obj7
, &val8
);
8314 if (!SWIG_IsOK(ecode8
)) {
8315 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "new_SplashScreen" "', expected argument " "8"" of type '" "long""'");
8317 arg8
= static_cast< long >(val8
);
8320 if (!wxPyCheckForApp()) SWIG_fail
;
8321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8322 result
= (wxSplashScreen
*)new wxSplashScreen((wxBitmap
const &)*arg1
,arg2
,arg3
,arg4
,arg5
,(wxPoint
const &)*arg6
,(wxSize
const &)*arg7
,arg8
);
8323 wxPyEndAllowThreads(__tstate
);
8324 if (PyErr_Occurred()) SWIG_fail
;
8326 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreen
, SWIG_POINTER_NEW
| 0 );
8333 SWIGINTERN PyObject
*_wrap_SplashScreen_GetSplashStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8334 PyObject
*resultobj
= 0;
8335 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8339 PyObject
*swig_obj
[1] ;
8341 if (!args
) SWIG_fail
;
8343 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8344 if (!SWIG_IsOK(res1
)) {
8345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetSplashStyle" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8347 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8350 result
= (long)((wxSplashScreen
const *)arg1
)->GetSplashStyle();
8351 wxPyEndAllowThreads(__tstate
);
8352 if (PyErr_Occurred()) SWIG_fail
;
8354 resultobj
= SWIG_From_long(static_cast< long >(result
));
8361 SWIGINTERN PyObject
*_wrap_SplashScreen_GetSplashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8362 PyObject
*resultobj
= 0;
8363 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8364 wxSplashScreenWindow
*result
= 0 ;
8367 PyObject
*swig_obj
[1] ;
8369 if (!args
) SWIG_fail
;
8371 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8372 if (!SWIG_IsOK(res1
)) {
8373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetSplashWindow" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8375 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8378 result
= (wxSplashScreenWindow
*)((wxSplashScreen
const *)arg1
)->GetSplashWindow();
8379 wxPyEndAllowThreads(__tstate
);
8380 if (PyErr_Occurred()) SWIG_fail
;
8382 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplashScreenWindow
, 0 | 0 );
8389 SWIGINTERN PyObject
*_wrap_SplashScreen_GetTimeout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8390 PyObject
*resultobj
= 0;
8391 wxSplashScreen
*arg1
= (wxSplashScreen
*) 0 ;
8395 PyObject
*swig_obj
[1] ;
8397 if (!args
) SWIG_fail
;
8399 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplashScreen
, 0 | 0 );
8400 if (!SWIG_IsOK(res1
)) {
8401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplashScreen_GetTimeout" "', expected argument " "1"" of type '" "wxSplashScreen const *""'");
8403 arg1
= reinterpret_cast< wxSplashScreen
* >(argp1
);
8405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8406 result
= (int)((wxSplashScreen
const *)arg1
)->GetTimeout();
8407 wxPyEndAllowThreads(__tstate
);
8408 if (PyErr_Occurred()) SWIG_fail
;
8410 resultobj
= SWIG_From_int(static_cast< int >(result
));
8417 SWIGINTERN PyObject
*SplashScreen_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8419 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
8420 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplashScreen
, SWIG_NewClientData(obj
));
8421 return SWIG_Py_Void();
8424 SWIGINTERN PyObject
*SplashScreen_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8425 return SWIG_Python_InitShadowInstance(args
);
8428 SWIGINTERN PyObject
*_wrap_new_StatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8429 PyObject
*resultobj
= 0;
8430 wxWindow
*arg1
= (wxWindow
*) 0 ;
8431 int arg2
= (int) -1 ;
8432 long arg3
= (long) wxDEFAULT_STATUSBAR_STYLE
;
8433 wxString
const &arg4_defvalue
= wxPyStatusLineNameStr
;
8434 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
8435 wxStatusBar
*result
= 0 ;
8442 bool temp4
= false ;
8443 PyObject
* obj0
= 0 ;
8444 PyObject
* obj1
= 0 ;
8445 PyObject
* obj2
= 0 ;
8446 PyObject
* obj3
= 0 ;
8447 char * kwnames
[] = {
8448 (char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL
8451 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:new_StatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
8452 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8453 if (!SWIG_IsOK(res1
)) {
8454 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StatusBar" "', expected argument " "1"" of type '" "wxWindow *""'");
8456 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
8458 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8459 if (!SWIG_IsOK(ecode2
)) {
8460 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StatusBar" "', expected argument " "2"" of type '" "int""'");
8462 arg2
= static_cast< int >(val2
);
8465 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
8466 if (!SWIG_IsOK(ecode3
)) {
8467 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_StatusBar" "', expected argument " "3"" of type '" "long""'");
8469 arg3
= static_cast< long >(val3
);
8473 arg4
= wxString_in_helper(obj3
);
8474 if (arg4
== NULL
) SWIG_fail
;
8479 if (!wxPyCheckForApp()) SWIG_fail
;
8480 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8481 result
= (wxStatusBar
*)new wxStatusBar(arg1
,arg2
,arg3
,(wxString
const &)*arg4
);
8482 wxPyEndAllowThreads(__tstate
);
8483 if (PyErr_Occurred()) SWIG_fail
;
8485 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_NEW
| 0 );
8500 SWIGINTERN PyObject
*_wrap_new_PreStatusBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8501 PyObject
*resultobj
= 0;
8502 wxStatusBar
*result
= 0 ;
8504 if (!SWIG_Python_UnpackTuple(args
,"new_PreStatusBar",0,0,0)) SWIG_fail
;
8506 if (!wxPyCheckForApp()) SWIG_fail
;
8507 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8508 result
= (wxStatusBar
*)new wxStatusBar();
8509 wxPyEndAllowThreads(__tstate
);
8510 if (PyErr_Occurred()) SWIG_fail
;
8512 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_OWN
| 0 );
8519 SWIGINTERN PyObject
*_wrap_StatusBar_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8520 PyObject
*resultobj
= 0;
8521 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8522 wxWindow
*arg2
= (wxWindow
*) 0 ;
8523 int arg3
= (int) -1 ;
8524 long arg4
= (long) wxST_SIZEGRIP
;
8525 wxString
const &arg5_defvalue
= wxPyStatusLineNameStr
;
8526 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
8536 bool temp5
= false ;
8537 PyObject
* obj0
= 0 ;
8538 PyObject
* obj1
= 0 ;
8539 PyObject
* obj2
= 0 ;
8540 PyObject
* obj3
= 0 ;
8541 PyObject
* obj4
= 0 ;
8542 char * kwnames
[] = {
8543 (char *) "self",(char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL
8546 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:StatusBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8547 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8548 if (!SWIG_IsOK(res1
)) {
8549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_Create" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8551 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8552 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
8553 if (!SWIG_IsOK(res2
)) {
8554 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StatusBar_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
8556 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
8558 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8559 if (!SWIG_IsOK(ecode3
)) {
8560 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_Create" "', expected argument " "3"" of type '" "int""'");
8562 arg3
= static_cast< int >(val3
);
8565 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
8566 if (!SWIG_IsOK(ecode4
)) {
8567 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StatusBar_Create" "', expected argument " "4"" of type '" "long""'");
8569 arg4
= static_cast< long >(val4
);
8573 arg5
= wxString_in_helper(obj4
);
8574 if (arg5
== NULL
) SWIG_fail
;
8579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8580 result
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,(wxString
const &)*arg5
);
8581 wxPyEndAllowThreads(__tstate
);
8582 if (PyErr_Occurred()) SWIG_fail
;
8585 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8601 SWIGINTERN PyObject
*_wrap_StatusBar_SetFieldsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8602 PyObject
*resultobj
= 0;
8603 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8604 int arg2
= (int) 1 ;
8609 PyObject
* obj0
= 0 ;
8610 PyObject
* obj1
= 0 ;
8611 char * kwnames
[] = {
8612 (char *) "self",(char *) "number", NULL
8615 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_SetFieldsCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8616 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8617 if (!SWIG_IsOK(res1
)) {
8618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetFieldsCount" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8620 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8622 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8623 if (!SWIG_IsOK(ecode2
)) {
8624 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_SetFieldsCount" "', expected argument " "2"" of type '" "int""'");
8626 arg2
= static_cast< int >(val2
);
8629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8630 (arg1
)->SetFieldsCount(arg2
);
8631 wxPyEndAllowThreads(__tstate
);
8632 if (PyErr_Occurred()) SWIG_fail
;
8634 resultobj
= SWIG_Py_Void();
8641 SWIGINTERN PyObject
*_wrap_StatusBar_GetFieldsCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8642 PyObject
*resultobj
= 0;
8643 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8647 PyObject
*swig_obj
[1] ;
8649 if (!args
) SWIG_fail
;
8651 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8652 if (!SWIG_IsOK(res1
)) {
8653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetFieldsCount" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
8655 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8658 result
= (int)((wxStatusBar
const *)arg1
)->GetFieldsCount();
8659 wxPyEndAllowThreads(__tstate
);
8660 if (PyErr_Occurred()) SWIG_fail
;
8662 resultobj
= SWIG_From_int(static_cast< int >(result
));
8669 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8670 PyObject
*resultobj
= 0;
8671 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8672 wxString
*arg2
= 0 ;
8673 int arg3
= (int) 0 ;
8676 bool temp2
= false ;
8679 PyObject
* obj0
= 0 ;
8680 PyObject
* obj1
= 0 ;
8681 PyObject
* obj2
= 0 ;
8682 char * kwnames
[] = {
8683 (char *) "self",(char *) "text",(char *) "number", NULL
8686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8688 if (!SWIG_IsOK(res1
)) {
8689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8691 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8693 arg2
= wxString_in_helper(obj1
);
8694 if (arg2
== NULL
) SWIG_fail
;
8698 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8699 if (!SWIG_IsOK(ecode3
)) {
8700 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_SetStatusText" "', expected argument " "3"" of type '" "int""'");
8702 arg3
= static_cast< int >(val3
);
8705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8706 (arg1
)->SetStatusText((wxString
const &)*arg2
,arg3
);
8707 wxPyEndAllowThreads(__tstate
);
8708 if (PyErr_Occurred()) SWIG_fail
;
8710 resultobj
= SWIG_Py_Void();
8725 SWIGINTERN PyObject
*_wrap_StatusBar_GetStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8726 PyObject
*resultobj
= 0;
8727 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8728 int arg2
= (int) 0 ;
8734 PyObject
* obj0
= 0 ;
8735 PyObject
* obj1
= 0 ;
8736 char * kwnames
[] = {
8737 (char *) "self",(char *) "number", NULL
8740 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_GetStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8741 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8742 if (!SWIG_IsOK(res1
)) {
8743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetStatusText" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
8745 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8747 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8748 if (!SWIG_IsOK(ecode2
)) {
8749 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_GetStatusText" "', expected argument " "2"" of type '" "int""'");
8751 arg2
= static_cast< int >(val2
);
8754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8755 result
= ((wxStatusBar
const *)arg1
)->GetStatusText(arg2
);
8756 wxPyEndAllowThreads(__tstate
);
8757 if (PyErr_Occurred()) SWIG_fail
;
8761 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
8763 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
8772 SWIGINTERN PyObject
*_wrap_StatusBar_PushStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8773 PyObject
*resultobj
= 0;
8774 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8775 wxString
*arg2
= 0 ;
8776 int arg3
= (int) 0 ;
8779 bool temp2
= false ;
8782 PyObject
* obj0
= 0 ;
8783 PyObject
* obj1
= 0 ;
8784 PyObject
* obj2
= 0 ;
8785 char * kwnames
[] = {
8786 (char *) "self",(char *) "text",(char *) "number", NULL
8789 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8790 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8791 if (!SWIG_IsOK(res1
)) {
8792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_PushStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8794 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8796 arg2
= wxString_in_helper(obj1
);
8797 if (arg2
== NULL
) SWIG_fail
;
8801 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8802 if (!SWIG_IsOK(ecode3
)) {
8803 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StatusBar_PushStatusText" "', expected argument " "3"" of type '" "int""'");
8805 arg3
= static_cast< int >(val3
);
8808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8809 (arg1
)->PushStatusText((wxString
const &)*arg2
,arg3
);
8810 wxPyEndAllowThreads(__tstate
);
8811 if (PyErr_Occurred()) SWIG_fail
;
8813 resultobj
= SWIG_Py_Void();
8828 SWIGINTERN PyObject
*_wrap_StatusBar_PopStatusText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8829 PyObject
*resultobj
= 0;
8830 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8831 int arg2
= (int) 0 ;
8836 PyObject
* obj0
= 0 ;
8837 PyObject
* obj1
= 0 ;
8838 char * kwnames
[] = {
8839 (char *) "self",(char *) "number", NULL
8842 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_PopStatusText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8843 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8844 if (!SWIG_IsOK(res1
)) {
8845 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_PopStatusText" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8847 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8849 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8850 if (!SWIG_IsOK(ecode2
)) {
8851 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_PopStatusText" "', expected argument " "2"" of type '" "int""'");
8853 arg2
= static_cast< int >(val2
);
8856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8857 (arg1
)->PopStatusText(arg2
);
8858 wxPyEndAllowThreads(__tstate
);
8859 if (PyErr_Occurred()) SWIG_fail
;
8861 resultobj
= SWIG_Py_Void();
8868 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusWidths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8869 PyObject
*resultobj
= 0;
8870 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8872 int *arg3
= (int *) 0 ;
8875 PyObject
* obj0
= 0 ;
8876 PyObject
* obj1
= 0 ;
8877 char * kwnames
[] = {
8878 (char *) "self",(char *) "widths", NULL
8881 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusWidths",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8882 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8883 if (!SWIG_IsOK(res1
)) {
8884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusWidths" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8886 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8888 arg2
= PyList_Size(obj1
);
8889 arg3
= int_LIST_helper(obj1
);
8890 if (arg3
== NULL
) SWIG_fail
;
8893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8894 (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
);
8895 wxPyEndAllowThreads(__tstate
);
8896 if (PyErr_Occurred()) SWIG_fail
;
8898 resultobj
= SWIG_Py_Void();
8900 if (arg3
) delete [] arg3
;
8905 if (arg3
) delete [] arg3
;
8911 SWIGINTERN PyObject
*_wrap_StatusBar_SetStatusStyles(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8912 PyObject
*resultobj
= 0;
8913 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8915 int *arg3
= (int *) 0 ;
8918 PyObject
* obj0
= 0 ;
8919 PyObject
* obj1
= 0 ;
8920 char * kwnames
[] = {
8921 (char *) "self",(char *) "styles", NULL
8924 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusStyles",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8925 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8926 if (!SWIG_IsOK(res1
)) {
8927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetStatusStyles" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8929 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8931 arg2
= PyList_Size(obj1
);
8932 arg3
= int_LIST_helper(obj1
);
8933 if (arg3
== NULL
) SWIG_fail
;
8936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8937 (arg1
)->SetStatusStyles(arg2
,(int const *)arg3
);
8938 wxPyEndAllowThreads(__tstate
);
8939 if (PyErr_Occurred()) SWIG_fail
;
8941 resultobj
= SWIG_Py_Void();
8943 if (arg3
) delete [] arg3
;
8948 if (arg3
) delete [] arg3
;
8954 SWIGINTERN PyObject
*_wrap_StatusBar_GetFieldRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8955 PyObject
*resultobj
= 0;
8956 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
8963 PyObject
* obj0
= 0 ;
8964 PyObject
* obj1
= 0 ;
8965 char * kwnames
[] = {
8966 (char *) "self",(char *) "i", NULL
8969 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_GetFieldRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8970 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
8971 if (!SWIG_IsOK(res1
)) {
8972 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetFieldRect" "', expected argument " "1"" of type '" "wxStatusBar *""'");
8974 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
8975 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8976 if (!SWIG_IsOK(ecode2
)) {
8977 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_GetFieldRect" "', expected argument " "2"" of type '" "int""'");
8979 arg2
= static_cast< int >(val2
);
8981 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8982 result
= wxStatusBar_GetFieldRect(arg1
,arg2
);
8983 wxPyEndAllowThreads(__tstate
);
8984 if (PyErr_Occurred()) SWIG_fail
;
8986 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
8993 SWIGINTERN PyObject
*_wrap_StatusBar_SetMinHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8994 PyObject
*resultobj
= 0;
8995 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9001 PyObject
* obj0
= 0 ;
9002 PyObject
* obj1
= 0 ;
9003 char * kwnames
[] = {
9004 (char *) "self",(char *) "height", NULL
9007 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetMinHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9008 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9009 if (!SWIG_IsOK(res1
)) {
9010 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_SetMinHeight" "', expected argument " "1"" of type '" "wxStatusBar *""'");
9012 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9013 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9014 if (!SWIG_IsOK(ecode2
)) {
9015 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StatusBar_SetMinHeight" "', expected argument " "2"" of type '" "int""'");
9017 arg2
= static_cast< int >(val2
);
9019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9020 (arg1
)->SetMinHeight(arg2
);
9021 wxPyEndAllowThreads(__tstate
);
9022 if (PyErr_Occurred()) SWIG_fail
;
9024 resultobj
= SWIG_Py_Void();
9031 SWIGINTERN PyObject
*_wrap_StatusBar_GetBorderX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9032 PyObject
*resultobj
= 0;
9033 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9037 PyObject
*swig_obj
[1] ;
9039 if (!args
) SWIG_fail
;
9041 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9042 if (!SWIG_IsOK(res1
)) {
9043 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetBorderX" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
9045 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9047 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9048 result
= (int)((wxStatusBar
const *)arg1
)->GetBorderX();
9049 wxPyEndAllowThreads(__tstate
);
9050 if (PyErr_Occurred()) SWIG_fail
;
9052 resultobj
= SWIG_From_int(static_cast< int >(result
));
9059 SWIGINTERN PyObject
*_wrap_StatusBar_GetBorderY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9060 PyObject
*resultobj
= 0;
9061 wxStatusBar
*arg1
= (wxStatusBar
*) 0 ;
9065 PyObject
*swig_obj
[1] ;
9067 if (!args
) SWIG_fail
;
9069 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStatusBar
, 0 | 0 );
9070 if (!SWIG_IsOK(res1
)) {
9071 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StatusBar_GetBorderY" "', expected argument " "1"" of type '" "wxStatusBar const *""'");
9073 arg1
= reinterpret_cast< wxStatusBar
* >(argp1
);
9075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9076 result
= (int)((wxStatusBar
const *)arg1
)->GetBorderY();
9077 wxPyEndAllowThreads(__tstate
);
9078 if (PyErr_Occurred()) SWIG_fail
;
9080 resultobj
= SWIG_From_int(static_cast< int >(result
));
9087 SWIGINTERN PyObject
*_wrap_StatusBar_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9088 PyObject
*resultobj
= 0;
9089 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
9090 SwigValueWrapper
<wxVisualAttributes
> result
;
9093 PyObject
* obj0
= 0 ;
9094 char * kwnames
[] = {
9095 (char *) "variant", NULL
9098 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StatusBar_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
9100 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
9101 if (!SWIG_IsOK(ecode1
)) {
9102 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "StatusBar_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
9104 arg1
= static_cast< wxWindowVariant
>(val1
);
9107 if (!wxPyCheckForApp()) SWIG_fail
;
9108 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9109 result
= wxStatusBar::GetClassDefaultAttributes(arg1
);
9110 wxPyEndAllowThreads(__tstate
);
9111 if (PyErr_Occurred()) SWIG_fail
;
9113 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
9120 SWIGINTERN PyObject
*StatusBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9122 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
9123 SWIG_TypeNewClientData(SWIGTYPE_p_wxStatusBar
, SWIG_NewClientData(obj
));
9124 return SWIG_Py_Void();
9127 SWIGINTERN PyObject
*StatusBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9128 return SWIG_Python_InitShadowInstance(args
);
9131 SWIGINTERN
int SplitterNameStr_set(PyObject
*) {
9132 SWIG_Error(SWIG_AttributeError
,"Variable SplitterNameStr is read-only.");
9137 SWIGINTERN PyObject
*SplitterNameStr_get(void) {
9138 PyObject
*pyobj
= 0;
9142 pyobj
= PyUnicode_FromWideChar((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len());
9144 pyobj
= PyString_FromStringAndSize((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len());
9151 SWIGINTERN PyObject
*_wrap_new_SplitterWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9152 PyObject
*resultobj
= 0;
9153 wxWindow
*arg1
= (wxWindow
*) 0 ;
9154 int arg2
= (int) -1 ;
9155 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
9156 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
9157 wxSize
const &arg4_defvalue
= wxDefaultSize
;
9158 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
9159 long arg5
= (long) wxSP_3D
;
9160 wxString
const &arg6_defvalue
= wxPySplitterNameStr
;
9161 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
9162 wxSplitterWindow
*result
= 0 ;
9171 bool temp6
= false ;
9172 PyObject
* obj0
= 0 ;
9173 PyObject
* obj1
= 0 ;
9174 PyObject
* obj2
= 0 ;
9175 PyObject
* obj3
= 0 ;
9176 PyObject
* obj4
= 0 ;
9177 PyObject
* obj5
= 0 ;
9178 char * kwnames
[] = {
9179 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
9182 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SplitterWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
9183 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9184 if (!SWIG_IsOK(res1
)) {
9185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SplitterWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
9187 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
9189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9190 if (!SWIG_IsOK(ecode2
)) {
9191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SplitterWindow" "', expected argument " "2"" of type '" "int""'");
9193 arg2
= static_cast< int >(val2
);
9198 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
9204 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
9208 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
9209 if (!SWIG_IsOK(ecode5
)) {
9210 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SplitterWindow" "', expected argument " "5"" of type '" "long""'");
9212 arg5
= static_cast< long >(val5
);
9216 arg6
= wxString_in_helper(obj5
);
9217 if (arg6
== NULL
) SWIG_fail
;
9222 if (!wxPyCheckForApp()) SWIG_fail
;
9223 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9224 result
= (wxSplitterWindow
*)new wxSplitterWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
9225 wxPyEndAllowThreads(__tstate
);
9226 if (PyErr_Occurred()) SWIG_fail
;
9228 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_NEW
| 0 );
9243 SWIGINTERN PyObject
*_wrap_new_PreSplitterWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9244 PyObject
*resultobj
= 0;
9245 wxSplitterWindow
*result
= 0 ;
9247 if (!SWIG_Python_UnpackTuple(args
,"new_PreSplitterWindow",0,0,0)) SWIG_fail
;
9249 if (!wxPyCheckForApp()) SWIG_fail
;
9250 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9251 result
= (wxSplitterWindow
*)new wxSplitterWindow();
9252 wxPyEndAllowThreads(__tstate
);
9253 if (PyErr_Occurred()) SWIG_fail
;
9255 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_OWN
| 0 );
9262 SWIGINTERN PyObject
*_wrap_SplitterWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9263 PyObject
*resultobj
= 0;
9264 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9265 wxWindow
*arg2
= (wxWindow
*) 0 ;
9266 int arg3
= (int) -1 ;
9267 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
9268 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
9269 wxSize
const &arg5_defvalue
= wxDefaultSize
;
9270 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
9271 long arg6
= (long) wxSP_3D
;
9272 wxString
const &arg7_defvalue
= wxPySplitterNameStr
;
9273 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
9285 bool temp7
= false ;
9286 PyObject
* obj0
= 0 ;
9287 PyObject
* obj1
= 0 ;
9288 PyObject
* obj2
= 0 ;
9289 PyObject
* obj3
= 0 ;
9290 PyObject
* obj4
= 0 ;
9291 PyObject
* obj5
= 0 ;
9292 PyObject
* obj6
= 0 ;
9293 char * kwnames
[] = {
9294 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
9297 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SplitterWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
9298 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9299 if (!SWIG_IsOK(res1
)) {
9300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Create" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9302 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9303 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9304 if (!SWIG_IsOK(res2
)) {
9305 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
9307 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9309 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9310 if (!SWIG_IsOK(ecode3
)) {
9311 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_Create" "', expected argument " "3"" of type '" "int""'");
9313 arg3
= static_cast< int >(val3
);
9318 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
9324 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
9328 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
9329 if (!SWIG_IsOK(ecode6
)) {
9330 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SplitterWindow_Create" "', expected argument " "6"" of type '" "long""'");
9332 arg6
= static_cast< long >(val6
);
9336 arg7
= wxString_in_helper(obj6
);
9337 if (arg7
== NULL
) SWIG_fail
;
9342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9343 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
9344 wxPyEndAllowThreads(__tstate
);
9345 if (PyErr_Occurred()) SWIG_fail
;
9348 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9364 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetWindow1(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9365 PyObject
*resultobj
= 0;
9366 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9367 wxWindow
*result
= 0 ;
9370 PyObject
*swig_obj
[1] ;
9372 if (!args
) SWIG_fail
;
9374 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9375 if (!SWIG_IsOK(res1
)) {
9376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetWindow1" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9378 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9381 result
= (wxWindow
*)((wxSplitterWindow
const *)arg1
)->GetWindow1();
9382 wxPyEndAllowThreads(__tstate
);
9383 if (PyErr_Occurred()) SWIG_fail
;
9386 resultobj
= wxPyMake_wxObject(result
, 0);
9394 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetWindow2(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9395 PyObject
*resultobj
= 0;
9396 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9397 wxWindow
*result
= 0 ;
9400 PyObject
*swig_obj
[1] ;
9402 if (!args
) SWIG_fail
;
9404 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9405 if (!SWIG_IsOK(res1
)) {
9406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetWindow2" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9408 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9411 result
= (wxWindow
*)((wxSplitterWindow
const *)arg1
)->GetWindow2();
9412 wxPyEndAllowThreads(__tstate
);
9413 if (PyErr_Occurred()) SWIG_fail
;
9416 resultobj
= wxPyMake_wxObject(result
, 0);
9424 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSplitMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9425 PyObject
*resultobj
= 0;
9426 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9432 PyObject
* obj0
= 0 ;
9433 PyObject
* obj1
= 0 ;
9434 char * kwnames
[] = {
9435 (char *) "self",(char *) "mode", NULL
9438 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSplitMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9439 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9440 if (!SWIG_IsOK(res1
)) {
9441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSplitMode" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9443 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9444 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9445 if (!SWIG_IsOK(ecode2
)) {
9446 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSplitMode" "', expected argument " "2"" of type '" "int""'");
9448 arg2
= static_cast< int >(val2
);
9450 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9451 (arg1
)->SetSplitMode(arg2
);
9452 wxPyEndAllowThreads(__tstate
);
9453 if (PyErr_Occurred()) SWIG_fail
;
9455 resultobj
= SWIG_Py_Void();
9462 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSplitMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9463 PyObject
*resultobj
= 0;
9464 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9468 PyObject
*swig_obj
[1] ;
9470 if (!args
) SWIG_fail
;
9472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9473 if (!SWIG_IsOK(res1
)) {
9474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSplitMode" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9476 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9478 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9479 result
= (wxSplitMode
)((wxSplitterWindow
const *)arg1
)->GetSplitMode();
9480 wxPyEndAllowThreads(__tstate
);
9481 if (PyErr_Occurred()) SWIG_fail
;
9483 resultobj
= SWIG_From_int(static_cast< int >(result
));
9490 SWIGINTERN PyObject
*_wrap_SplitterWindow_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9491 PyObject
*resultobj
= 0;
9492 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9493 wxWindow
*arg2
= (wxWindow
*) 0 ;
9498 PyObject
* obj0
= 0 ;
9499 PyObject
* obj1
= 0 ;
9500 char * kwnames
[] = {
9501 (char *) "self",(char *) "window", NULL
9504 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_Initialize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9505 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9506 if (!SWIG_IsOK(res1
)) {
9507 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Initialize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9509 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9510 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9511 if (!SWIG_IsOK(res2
)) {
9512 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Initialize" "', expected argument " "2"" of type '" "wxWindow *""'");
9514 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9517 (arg1
)->Initialize(arg2
);
9518 wxPyEndAllowThreads(__tstate
);
9519 if (PyErr_Occurred()) SWIG_fail
;
9521 resultobj
= SWIG_Py_Void();
9528 SWIGINTERN PyObject
*_wrap_SplitterWindow_SplitVertically(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9529 PyObject
*resultobj
= 0;
9530 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9531 wxWindow
*arg2
= (wxWindow
*) 0 ;
9532 wxWindow
*arg3
= (wxWindow
*) 0 ;
9533 int arg4
= (int) 0 ;
9543 PyObject
* obj0
= 0 ;
9544 PyObject
* obj1
= 0 ;
9545 PyObject
* obj2
= 0 ;
9546 PyObject
* obj3
= 0 ;
9547 char * kwnames
[] = {
9548 (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL
9551 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitVertically",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9552 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9553 if (!SWIG_IsOK(res1
)) {
9554 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9556 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9557 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9558 if (!SWIG_IsOK(res2
)) {
9559 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "2"" of type '" "wxWindow *""'");
9561 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9562 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9563 if (!SWIG_IsOK(res3
)) {
9564 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "3"" of type '" "wxWindow *""'");
9566 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9568 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9569 if (!SWIG_IsOK(ecode4
)) {
9570 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SplitVertically" "', expected argument " "4"" of type '" "int""'");
9572 arg4
= static_cast< int >(val4
);
9575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9576 result
= (bool)(arg1
)->SplitVertically(arg2
,arg3
,arg4
);
9577 wxPyEndAllowThreads(__tstate
);
9578 if (PyErr_Occurred()) SWIG_fail
;
9581 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9589 SWIGINTERN PyObject
*_wrap_SplitterWindow_SplitHorizontally(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9590 PyObject
*resultobj
= 0;
9591 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9592 wxWindow
*arg2
= (wxWindow
*) 0 ;
9593 wxWindow
*arg3
= (wxWindow
*) 0 ;
9594 int arg4
= (int) 0 ;
9604 PyObject
* obj0
= 0 ;
9605 PyObject
* obj1
= 0 ;
9606 PyObject
* obj2
= 0 ;
9607 PyObject
* obj3
= 0 ;
9608 char * kwnames
[] = {
9609 (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL
9612 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitHorizontally",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
9613 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9614 if (!SWIG_IsOK(res1
)) {
9615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9617 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9618 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9619 if (!SWIG_IsOK(res2
)) {
9620 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "2"" of type '" "wxWindow *""'");
9622 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9623 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9624 if (!SWIG_IsOK(res3
)) {
9625 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "3"" of type '" "wxWindow *""'");
9627 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9629 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9630 if (!SWIG_IsOK(ecode4
)) {
9631 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SplitHorizontally" "', expected argument " "4"" of type '" "int""'");
9633 arg4
= static_cast< int >(val4
);
9636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9637 result
= (bool)(arg1
)->SplitHorizontally(arg2
,arg3
,arg4
);
9638 wxPyEndAllowThreads(__tstate
);
9639 if (PyErr_Occurred()) SWIG_fail
;
9642 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9650 SWIGINTERN PyObject
*_wrap_SplitterWindow_Unsplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9651 PyObject
*resultobj
= 0;
9652 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9653 wxWindow
*arg2
= (wxWindow
*) NULL
;
9659 PyObject
* obj0
= 0 ;
9660 PyObject
* obj1
= 0 ;
9661 char * kwnames
[] = {
9662 (char *) "self",(char *) "toRemove", NULL
9665 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:SplitterWindow_Unsplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9666 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9667 if (!SWIG_IsOK(res1
)) {
9668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_Unsplit" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9670 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9672 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9673 if (!SWIG_IsOK(res2
)) {
9674 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_Unsplit" "', expected argument " "2"" of type '" "wxWindow *""'");
9676 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9680 result
= (bool)(arg1
)->Unsplit(arg2
);
9681 wxPyEndAllowThreads(__tstate
);
9682 if (PyErr_Occurred()) SWIG_fail
;
9685 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9693 SWIGINTERN PyObject
*_wrap_SplitterWindow_ReplaceWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9694 PyObject
*resultobj
= 0;
9695 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9696 wxWindow
*arg2
= (wxWindow
*) 0 ;
9697 wxWindow
*arg3
= (wxWindow
*) 0 ;
9705 PyObject
* obj0
= 0 ;
9706 PyObject
* obj1
= 0 ;
9707 PyObject
* obj2
= 0 ;
9708 char * kwnames
[] = {
9709 (char *) "self",(char *) "winOld",(char *) "winNew", NULL
9712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SplitterWindow_ReplaceWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9714 if (!SWIG_IsOK(res1
)) {
9715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9717 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9718 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9719 if (!SWIG_IsOK(res2
)) {
9720 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
9722 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
9723 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
9724 if (!SWIG_IsOK(res3
)) {
9725 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "SplitterWindow_ReplaceWindow" "', expected argument " "3"" of type '" "wxWindow *""'");
9727 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
9729 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9730 result
= (bool)(arg1
)->ReplaceWindow(arg2
,arg3
);
9731 wxPyEndAllowThreads(__tstate
);
9732 if (PyErr_Occurred()) SWIG_fail
;
9735 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9743 SWIGINTERN PyObject
*_wrap_SplitterWindow_UpdateSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9744 PyObject
*resultobj
= 0;
9745 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9748 PyObject
*swig_obj
[1] ;
9750 if (!args
) SWIG_fail
;
9752 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9753 if (!SWIG_IsOK(res1
)) {
9754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_UpdateSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9756 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9759 (arg1
)->UpdateSize();
9760 wxPyEndAllowThreads(__tstate
);
9761 if (PyErr_Occurred()) SWIG_fail
;
9763 resultobj
= SWIG_Py_Void();
9770 SWIGINTERN PyObject
*_wrap_SplitterWindow_IsSplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9771 PyObject
*resultobj
= 0;
9772 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9776 PyObject
*swig_obj
[1] ;
9778 if (!args
) SWIG_fail
;
9780 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9781 if (!SWIG_IsOK(res1
)) {
9782 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_IsSplit" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9784 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9786 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9787 result
= (bool)((wxSplitterWindow
const *)arg1
)->IsSplit();
9788 wxPyEndAllowThreads(__tstate
);
9789 if (PyErr_Occurred()) SWIG_fail
;
9792 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9800 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9801 PyObject
*resultobj
= 0;
9802 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9808 PyObject
* obj0
= 0 ;
9809 PyObject
* obj1
= 0 ;
9810 char * kwnames
[] = {
9811 (char *) "self",(char *) "width", NULL
9814 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9815 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9816 if (!SWIG_IsOK(res1
)) {
9817 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9819 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9820 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9821 if (!SWIG_IsOK(ecode2
)) {
9822 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashSize" "', expected argument " "2"" of type '" "int""'");
9824 arg2
= static_cast< int >(val2
);
9826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9827 (arg1
)->SetSashSize(arg2
);
9828 wxPyEndAllowThreads(__tstate
);
9829 if (PyErr_Occurred()) SWIG_fail
;
9831 resultobj
= SWIG_Py_Void();
9838 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9839 PyObject
*resultobj
= 0;
9840 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9846 PyObject
* obj0
= 0 ;
9847 PyObject
* obj1
= 0 ;
9848 char * kwnames
[] = {
9849 (char *) "self",(char *) "width", NULL
9852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9854 if (!SWIG_IsOK(res1
)) {
9855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetBorderSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9857 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9858 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9859 if (!SWIG_IsOK(ecode2
)) {
9860 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetBorderSize" "', expected argument " "2"" of type '" "int""'");
9862 arg2
= static_cast< int >(val2
);
9864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9865 (arg1
)->SetBorderSize(arg2
);
9866 wxPyEndAllowThreads(__tstate
);
9867 if (PyErr_Occurred()) SWIG_fail
;
9869 resultobj
= SWIG_Py_Void();
9876 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9877 PyObject
*resultobj
= 0;
9878 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9882 PyObject
*swig_obj
[1] ;
9884 if (!args
) SWIG_fail
;
9886 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9887 if (!SWIG_IsOK(res1
)) {
9888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9890 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9893 result
= (int)((wxSplitterWindow
const *)arg1
)->GetSashSize();
9894 wxPyEndAllowThreads(__tstate
);
9895 if (PyErr_Occurred()) SWIG_fail
;
9897 resultobj
= SWIG_From_int(static_cast< int >(result
));
9904 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9905 PyObject
*resultobj
= 0;
9906 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9910 PyObject
*swig_obj
[1] ;
9912 if (!args
) SWIG_fail
;
9914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9915 if (!SWIG_IsOK(res1
)) {
9916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetBorderSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9918 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9921 result
= (int)((wxSplitterWindow
const *)arg1
)->GetBorderSize();
9922 wxPyEndAllowThreads(__tstate
);
9923 if (PyErr_Occurred()) SWIG_fail
;
9925 resultobj
= SWIG_From_int(static_cast< int >(result
));
9932 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9933 PyObject
*resultobj
= 0;
9934 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9936 bool arg3
= (bool) true ;
9943 PyObject
* obj0
= 0 ;
9944 PyObject
* obj1
= 0 ;
9945 PyObject
* obj2
= 0 ;
9946 char * kwnames
[] = {
9947 (char *) "self",(char *) "position",(char *) "redraw", NULL
9950 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:SplitterWindow_SetSashPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9951 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9952 if (!SWIG_IsOK(res1
)) {
9953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
9955 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9956 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9957 if (!SWIG_IsOK(ecode2
)) {
9958 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "2"" of type '" "int""'");
9960 arg2
= static_cast< int >(val2
);
9962 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
9963 if (!SWIG_IsOK(ecode3
)) {
9964 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_SetSashPosition" "', expected argument " "3"" of type '" "bool""'");
9966 arg3
= static_cast< bool >(val3
);
9969 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9970 (arg1
)->SetSashPosition(arg2
,arg3
);
9971 wxPyEndAllowThreads(__tstate
);
9972 if (PyErr_Occurred()) SWIG_fail
;
9974 resultobj
= SWIG_Py_Void();
9981 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9982 PyObject
*resultobj
= 0;
9983 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
9987 PyObject
*swig_obj
[1] ;
9989 if (!args
) SWIG_fail
;
9991 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
9992 if (!SWIG_IsOK(res1
)) {
9993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashPosition" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
9995 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
9997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9998 result
= (int)((wxSplitterWindow
const *)arg1
)->GetSashPosition();
9999 wxPyEndAllowThreads(__tstate
);
10000 if (PyErr_Occurred()) SWIG_fail
;
10002 resultobj
= SWIG_From_int(static_cast< int >(result
));
10009 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetSashGravity(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10010 PyObject
*resultobj
= 0;
10011 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10017 PyObject
* obj0
= 0 ;
10018 PyObject
* obj1
= 0 ;
10019 char * kwnames
[] = {
10020 (char *) "self",(char *) "gravity", NULL
10023 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashGravity",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10024 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10025 if (!SWIG_IsOK(res1
)) {
10026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetSashGravity" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10028 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10029 ecode2
= SWIG_AsVal_double(obj1
, &val2
);
10030 if (!SWIG_IsOK(ecode2
)) {
10031 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetSashGravity" "', expected argument " "2"" of type '" "double""'");
10033 arg2
= static_cast< double >(val2
);
10035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10036 (arg1
)->SetSashGravity(arg2
);
10037 wxPyEndAllowThreads(__tstate
);
10038 if (PyErr_Occurred()) SWIG_fail
;
10040 resultobj
= SWIG_Py_Void();
10047 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetSashGravity(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10048 PyObject
*resultobj
= 0;
10049 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10053 PyObject
*swig_obj
[1] ;
10055 if (!args
) SWIG_fail
;
10056 swig_obj
[0] = args
;
10057 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10058 if (!SWIG_IsOK(res1
)) {
10059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetSashGravity" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10061 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10064 result
= (double)((wxSplitterWindow
const *)arg1
)->GetSashGravity();
10065 wxPyEndAllowThreads(__tstate
);
10066 if (PyErr_Occurred()) SWIG_fail
;
10068 resultobj
= SWIG_From_double(static_cast< double >(result
));
10075 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetMinimumPaneSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10076 PyObject
*resultobj
= 0;
10077 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10083 PyObject
* obj0
= 0 ;
10084 PyObject
* obj1
= 0 ;
10085 char * kwnames
[] = {
10086 (char *) "self",(char *) "min", NULL
10089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetMinimumPaneSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10091 if (!SWIG_IsOK(res1
)) {
10092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetMinimumPaneSize" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10094 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10095 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10096 if (!SWIG_IsOK(ecode2
)) {
10097 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetMinimumPaneSize" "', expected argument " "2"" of type '" "int""'");
10099 arg2
= static_cast< int >(val2
);
10101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10102 (arg1
)->SetMinimumPaneSize(arg2
);
10103 wxPyEndAllowThreads(__tstate
);
10104 if (PyErr_Occurred()) SWIG_fail
;
10106 resultobj
= SWIG_Py_Void();
10113 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetMinimumPaneSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10114 PyObject
*resultobj
= 0;
10115 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10119 PyObject
*swig_obj
[1] ;
10121 if (!args
) SWIG_fail
;
10122 swig_obj
[0] = args
;
10123 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10124 if (!SWIG_IsOK(res1
)) {
10125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetMinimumPaneSize" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10127 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10130 result
= (int)((wxSplitterWindow
const *)arg1
)->GetMinimumPaneSize();
10131 wxPyEndAllowThreads(__tstate
);
10132 if (PyErr_Occurred()) SWIG_fail
;
10134 resultobj
= SWIG_From_int(static_cast< int >(result
));
10141 SWIGINTERN PyObject
*_wrap_SplitterWindow_SashHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10142 PyObject
*resultobj
= 0;
10143 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10146 int arg4
= (int) 5 ;
10156 PyObject
* obj0
= 0 ;
10157 PyObject
* obj1
= 0 ;
10158 PyObject
* obj2
= 0 ;
10159 PyObject
* obj3
= 0 ;
10160 char * kwnames
[] = {
10161 (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL
10164 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
10165 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10166 if (!SWIG_IsOK(res1
)) {
10167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10169 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10170 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10171 if (!SWIG_IsOK(ecode2
)) {
10172 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "2"" of type '" "int""'");
10174 arg2
= static_cast< int >(val2
);
10175 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10176 if (!SWIG_IsOK(ecode3
)) {
10177 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "3"" of type '" "int""'");
10179 arg3
= static_cast< int >(val3
);
10181 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
10182 if (!SWIG_IsOK(ecode4
)) {
10183 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SplitterWindow_SashHitTest" "', expected argument " "4"" of type '" "int""'");
10185 arg4
= static_cast< int >(val4
);
10188 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10189 result
= (bool)(arg1
)->SashHitTest(arg2
,arg3
,arg4
);
10190 wxPyEndAllowThreads(__tstate
);
10191 if (PyErr_Occurred()) SWIG_fail
;
10194 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10202 SWIGINTERN PyObject
*_wrap_SplitterWindow_SizeWindows(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10203 PyObject
*resultobj
= 0;
10204 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10207 PyObject
*swig_obj
[1] ;
10209 if (!args
) SWIG_fail
;
10210 swig_obj
[0] = args
;
10211 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10212 if (!SWIG_IsOK(res1
)) {
10213 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SizeWindows" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10215 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10217 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10218 (arg1
)->SizeWindows();
10219 wxPyEndAllowThreads(__tstate
);
10220 if (PyErr_Occurred()) SWIG_fail
;
10222 resultobj
= SWIG_Py_Void();
10229 SWIGINTERN PyObject
*_wrap_SplitterWindow_SetNeedUpdating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10230 PyObject
*resultobj
= 0;
10231 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10237 PyObject
* obj0
= 0 ;
10238 PyObject
* obj1
= 0 ;
10239 char * kwnames
[] = {
10240 (char *) "self",(char *) "needUpdating", NULL
10243 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetNeedUpdating",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10244 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10245 if (!SWIG_IsOK(res1
)) {
10246 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_SetNeedUpdating" "', expected argument " "1"" of type '" "wxSplitterWindow *""'");
10248 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10249 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
10250 if (!SWIG_IsOK(ecode2
)) {
10251 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterWindow_SetNeedUpdating" "', expected argument " "2"" of type '" "bool""'");
10253 arg2
= static_cast< bool >(val2
);
10255 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10256 (arg1
)->SetNeedUpdating(arg2
);
10257 wxPyEndAllowThreads(__tstate
);
10258 if (PyErr_Occurred()) SWIG_fail
;
10260 resultobj
= SWIG_Py_Void();
10267 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetNeedUpdating(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10268 PyObject
*resultobj
= 0;
10269 wxSplitterWindow
*arg1
= (wxSplitterWindow
*) 0 ;
10273 PyObject
*swig_obj
[1] ;
10275 if (!args
) SWIG_fail
;
10276 swig_obj
[0] = args
;
10277 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10278 if (!SWIG_IsOK(res1
)) {
10279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterWindow_GetNeedUpdating" "', expected argument " "1"" of type '" "wxSplitterWindow const *""'");
10281 arg1
= reinterpret_cast< wxSplitterWindow
* >(argp1
);
10283 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10284 result
= (bool)((wxSplitterWindow
const *)arg1
)->GetNeedUpdating();
10285 wxPyEndAllowThreads(__tstate
);
10286 if (PyErr_Occurred()) SWIG_fail
;
10289 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10297 SWIGINTERN PyObject
*_wrap_SplitterWindow_GetClassDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10298 PyObject
*resultobj
= 0;
10299 wxWindowVariant arg1
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL
;
10300 SwigValueWrapper
<wxVisualAttributes
> result
;
10303 PyObject
* obj0
= 0 ;
10304 char * kwnames
[] = {
10305 (char *) "variant", NULL
10308 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SplitterWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) SWIG_fail
;
10310 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10311 if (!SWIG_IsOK(ecode1
)) {
10312 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "SplitterWindow_GetClassDefaultAttributes" "', expected argument " "1"" of type '" "wxWindowVariant""'");
10314 arg1
= static_cast< wxWindowVariant
>(val1
);
10317 if (!wxPyCheckForApp()) SWIG_fail
;
10318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10319 result
= wxSplitterWindow::GetClassDefaultAttributes(arg1
);
10320 wxPyEndAllowThreads(__tstate
);
10321 if (PyErr_Occurred()) SWIG_fail
;
10323 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
10330 SWIGINTERN PyObject
*SplitterWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10332 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10333 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplitterWindow
, SWIG_NewClientData(obj
));
10334 return SWIG_Py_Void();
10337 SWIGINTERN PyObject
*SplitterWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10338 return SWIG_Python_InitShadowInstance(args
);
10341 SWIGINTERN PyObject
*_wrap_new_SplitterEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10342 PyObject
*resultobj
= 0;
10343 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
10344 wxSplitterWindow
*arg2
= (wxSplitterWindow
*) (wxSplitterWindow
*) NULL
;
10345 wxSplitterEvent
*result
= 0 ;
10350 PyObject
* obj0
= 0 ;
10351 PyObject
* obj1
= 0 ;
10352 char * kwnames
[] = {
10353 (char *) "type",(char *) "splitter", NULL
10356 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SplitterEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10358 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
10359 if (!SWIG_IsOK(ecode1
)) {
10360 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_SplitterEvent" "', expected argument " "1"" of type '" "wxEventType""'");
10362 arg1
= static_cast< wxEventType
>(val1
);
10365 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxSplitterWindow
, 0 | 0 );
10366 if (!SWIG_IsOK(res2
)) {
10367 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_SplitterEvent" "', expected argument " "2"" of type '" "wxSplitterWindow *""'");
10369 arg2
= reinterpret_cast< wxSplitterWindow
* >(argp2
);
10372 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10373 result
= (wxSplitterEvent
*)new wxSplitterEvent(arg1
,arg2
);
10374 wxPyEndAllowThreads(__tstate
);
10375 if (PyErr_Occurred()) SWIG_fail
;
10377 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_NEW
| 0 );
10384 SWIGINTERN PyObject
*_wrap_SplitterEvent_SetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10385 PyObject
*resultobj
= 0;
10386 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10392 PyObject
* obj0
= 0 ;
10393 PyObject
* obj1
= 0 ;
10394 char * kwnames
[] = {
10395 (char *) "self",(char *) "pos", NULL
10398 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterEvent_SetSashPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10399 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10400 if (!SWIG_IsOK(res1
)) {
10401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_SetSashPosition" "', expected argument " "1"" of type '" "wxSplitterEvent *""'");
10403 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10404 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10405 if (!SWIG_IsOK(ecode2
)) {
10406 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SplitterEvent_SetSashPosition" "', expected argument " "2"" of type '" "int""'");
10408 arg2
= static_cast< int >(val2
);
10410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10411 (arg1
)->SetSashPosition(arg2
);
10412 wxPyEndAllowThreads(__tstate
);
10413 if (PyErr_Occurred()) SWIG_fail
;
10415 resultobj
= SWIG_Py_Void();
10422 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetSashPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10423 PyObject
*resultobj
= 0;
10424 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10428 PyObject
*swig_obj
[1] ;
10430 if (!args
) SWIG_fail
;
10431 swig_obj
[0] = args
;
10432 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10433 if (!SWIG_IsOK(res1
)) {
10434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetSashPosition" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10436 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10439 result
= (int)((wxSplitterEvent
const *)arg1
)->GetSashPosition();
10440 wxPyEndAllowThreads(__tstate
);
10441 if (PyErr_Occurred()) SWIG_fail
;
10443 resultobj
= SWIG_From_int(static_cast< int >(result
));
10450 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetWindowBeingRemoved(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10451 PyObject
*resultobj
= 0;
10452 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10453 wxWindow
*result
= 0 ;
10456 PyObject
*swig_obj
[1] ;
10458 if (!args
) SWIG_fail
;
10459 swig_obj
[0] = args
;
10460 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10461 if (!SWIG_IsOK(res1
)) {
10462 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetWindowBeingRemoved" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10464 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10467 result
= (wxWindow
*)((wxSplitterEvent
const *)arg1
)->GetWindowBeingRemoved();
10468 wxPyEndAllowThreads(__tstate
);
10469 if (PyErr_Occurred()) SWIG_fail
;
10472 resultobj
= wxPyMake_wxObject(result
, 0);
10480 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10481 PyObject
*resultobj
= 0;
10482 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10486 PyObject
*swig_obj
[1] ;
10488 if (!args
) SWIG_fail
;
10489 swig_obj
[0] = args
;
10490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10491 if (!SWIG_IsOK(res1
)) {
10492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetX" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10494 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10497 result
= (int)((wxSplitterEvent
const *)arg1
)->GetX();
10498 wxPyEndAllowThreads(__tstate
);
10499 if (PyErr_Occurred()) SWIG_fail
;
10501 resultobj
= SWIG_From_int(static_cast< int >(result
));
10508 SWIGINTERN PyObject
*_wrap_SplitterEvent_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10509 PyObject
*resultobj
= 0;
10510 wxSplitterEvent
*arg1
= (wxSplitterEvent
*) 0 ;
10514 PyObject
*swig_obj
[1] ;
10516 if (!args
) SWIG_fail
;
10517 swig_obj
[0] = args
;
10518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSplitterEvent
, 0 | 0 );
10519 if (!SWIG_IsOK(res1
)) {
10520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SplitterEvent_GetY" "', expected argument " "1"" of type '" "wxSplitterEvent const *""'");
10522 arg1
= reinterpret_cast< wxSplitterEvent
* >(argp1
);
10524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10525 result
= (int)((wxSplitterEvent
const *)arg1
)->GetY();
10526 wxPyEndAllowThreads(__tstate
);
10527 if (PyErr_Occurred()) SWIG_fail
;
10529 resultobj
= SWIG_From_int(static_cast< int >(result
));
10536 SWIGINTERN PyObject
*SplitterEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10538 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
10539 SWIG_TypeNewClientData(SWIGTYPE_p_wxSplitterEvent
, SWIG_NewClientData(obj
));
10540 return SWIG_Py_Void();
10543 SWIGINTERN PyObject
*SplitterEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10544 return SWIG_Python_InitShadowInstance(args
);
10547 SWIGINTERN
int SashNameStr_set(PyObject
*) {
10548 SWIG_Error(SWIG_AttributeError
,"Variable SashNameStr is read-only.");
10553 SWIGINTERN PyObject
*SashNameStr_get(void) {
10554 PyObject
*pyobj
= 0;
10558 pyobj
= PyUnicode_FromWideChar((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len());
10560 pyobj
= PyString_FromStringAndSize((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len());
10567 SWIGINTERN
int SashLayoutNameStr_set(PyObject
*) {
10568 SWIG_Error(SWIG_AttributeError
,"Variable SashLayoutNameStr is read-only.");
10573 SWIGINTERN PyObject
*SashLayoutNameStr_get(void) {
10574 PyObject
*pyobj
= 0;
10578 pyobj
= PyUnicode_FromWideChar((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len());
10580 pyobj
= PyString_FromStringAndSize((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len());
10587 SWIGINTERN PyObject
*_wrap_new_SashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10588 PyObject
*resultobj
= 0;
10589 wxWindow
*arg1
= (wxWindow
*) 0 ;
10590 int arg2
= (int) -1 ;
10591 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
10592 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
10593 wxSize
const &arg4_defvalue
= wxDefaultSize
;
10594 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
10595 long arg5
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
10596 wxString
const &arg6_defvalue
= wxPySashNameStr
;
10597 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
10598 wxSashWindow
*result
= 0 ;
10607 bool temp6
= false ;
10608 PyObject
* obj0
= 0 ;
10609 PyObject
* obj1
= 0 ;
10610 PyObject
* obj2
= 0 ;
10611 PyObject
* obj3
= 0 ;
10612 PyObject
* obj4
= 0 ;
10613 PyObject
* obj5
= 0 ;
10614 char * kwnames
[] = {
10615 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10618 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
10619 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10620 if (!SWIG_IsOK(res1
)) {
10621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SashWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
10623 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
10625 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10626 if (!SWIG_IsOK(ecode2
)) {
10627 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashWindow" "', expected argument " "2"" of type '" "int""'");
10629 arg2
= static_cast< int >(val2
);
10634 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
10640 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
10644 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
10645 if (!SWIG_IsOK(ecode5
)) {
10646 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SashWindow" "', expected argument " "5"" of type '" "long""'");
10648 arg5
= static_cast< long >(val5
);
10652 arg6
= wxString_in_helper(obj5
);
10653 if (arg6
== NULL
) SWIG_fail
;
10658 if (!wxPyCheckForApp()) SWIG_fail
;
10659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10660 result
= (wxSashWindow
*)new wxSashWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
10661 wxPyEndAllowThreads(__tstate
);
10662 if (PyErr_Occurred()) SWIG_fail
;
10664 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_NEW
| 0 );
10679 SWIGINTERN PyObject
*_wrap_new_PreSashWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10680 PyObject
*resultobj
= 0;
10681 wxSashWindow
*result
= 0 ;
10683 if (!SWIG_Python_UnpackTuple(args
,"new_PreSashWindow",0,0,0)) SWIG_fail
;
10685 if (!wxPyCheckForApp()) SWIG_fail
;
10686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10687 result
= (wxSashWindow
*)new wxSashWindow();
10688 wxPyEndAllowThreads(__tstate
);
10689 if (PyErr_Occurred()) SWIG_fail
;
10691 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_OWN
| 0 );
10698 SWIGINTERN PyObject
*_wrap_SashWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10699 PyObject
*resultobj
= 0;
10700 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10701 wxWindow
*arg2
= (wxWindow
*) 0 ;
10702 int arg3
= (int) -1 ;
10703 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
10704 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
10705 wxSize
const &arg5_defvalue
= wxDefaultSize
;
10706 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
10707 long arg6
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
10708 wxString
const &arg7_defvalue
= wxPySashNameStr
;
10709 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
10721 bool temp7
= false ;
10722 PyObject
* obj0
= 0 ;
10723 PyObject
* obj1
= 0 ;
10724 PyObject
* obj2
= 0 ;
10725 PyObject
* obj3
= 0 ;
10726 PyObject
* obj4
= 0 ;
10727 PyObject
* obj5
= 0 ;
10728 PyObject
* obj6
= 0 ;
10729 char * kwnames
[] = {
10730 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
10733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
10734 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10735 if (!SWIG_IsOK(res1
)) {
10736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_Create" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10738 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10739 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
10740 if (!SWIG_IsOK(res2
)) {
10741 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SashWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
10743 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
10745 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10746 if (!SWIG_IsOK(ecode3
)) {
10747 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_Create" "', expected argument " "3"" of type '" "int""'");
10749 arg3
= static_cast< int >(val3
);
10754 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
10760 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
10764 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
10765 if (!SWIG_IsOK(ecode6
)) {
10766 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SashWindow_Create" "', expected argument " "6"" of type '" "long""'");
10768 arg6
= static_cast< long >(val6
);
10772 arg7
= wxString_in_helper(obj6
);
10773 if (arg7
== NULL
) SWIG_fail
;
10778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10779 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
10780 wxPyEndAllowThreads(__tstate
);
10781 if (PyErr_Occurred()) SWIG_fail
;
10784 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10800 SWIGINTERN PyObject
*_wrap_SashWindow_SetSashVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10801 PyObject
*resultobj
= 0;
10802 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10803 wxSashEdgePosition arg2
;
10811 PyObject
* obj0
= 0 ;
10812 PyObject
* obj1
= 0 ;
10813 PyObject
* obj2
= 0 ;
10814 char * kwnames
[] = {
10815 (char *) "self",(char *) "edge",(char *) "sash", NULL
10818 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10819 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10820 if (!SWIG_IsOK(res1
)) {
10821 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10823 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10824 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10825 if (!SWIG_IsOK(ecode2
)) {
10826 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10828 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10829 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10830 if (!SWIG_IsOK(ecode3
)) {
10831 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SetSashVisible" "', expected argument " "3"" of type '" "bool""'");
10833 arg3
= static_cast< bool >(val3
);
10835 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10836 (arg1
)->SetSashVisible(arg2
,arg3
);
10837 wxPyEndAllowThreads(__tstate
);
10838 if (PyErr_Occurred()) SWIG_fail
;
10840 resultobj
= SWIG_Py_Void();
10847 SWIGINTERN PyObject
*_wrap_SashWindow_GetSashVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10848 PyObject
*resultobj
= 0;
10849 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10850 wxSashEdgePosition arg2
;
10856 PyObject
* obj0
= 0 ;
10857 PyObject
* obj1
= 0 ;
10858 char * kwnames
[] = {
10859 (char *) "self",(char *) "edge", NULL
10862 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetSashVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10863 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10864 if (!SWIG_IsOK(res1
)) {
10865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetSashVisible" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
10867 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10868 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10869 if (!SWIG_IsOK(ecode2
)) {
10870 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_GetSashVisible" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10872 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10874 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10875 result
= (bool)((wxSashWindow
const *)arg1
)->GetSashVisible(arg2
);
10876 wxPyEndAllowThreads(__tstate
);
10877 if (PyErr_Occurred()) SWIG_fail
;
10880 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10888 SWIGINTERN PyObject
*_wrap_SashWindow_SetSashBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10889 PyObject
*resultobj
= 0;
10890 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10891 wxSashEdgePosition arg2
;
10899 PyObject
* obj0
= 0 ;
10900 PyObject
* obj1
= 0 ;
10901 PyObject
* obj2
= 0 ;
10902 char * kwnames
[] = {
10903 (char *) "self",(char *) "edge",(char *) "border", NULL
10906 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashBorder",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10907 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10908 if (!SWIG_IsOK(res1
)) {
10909 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "1"" of type '" "wxSashWindow *""'");
10911 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10912 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10913 if (!SWIG_IsOK(ecode2
)) {
10914 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10916 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10917 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
10918 if (!SWIG_IsOK(ecode3
)) {
10919 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SetSashBorder" "', expected argument " "3"" of type '" "bool""'");
10921 arg3
= static_cast< bool >(val3
);
10923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10924 (arg1
)->SetSashBorder(arg2
,arg3
);
10925 wxPyEndAllowThreads(__tstate
);
10926 if (PyErr_Occurred()) SWIG_fail
;
10928 resultobj
= SWIG_Py_Void();
10935 SWIGINTERN PyObject
*_wrap_SashWindow_HasBorder(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10936 PyObject
*resultobj
= 0;
10937 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10938 wxSashEdgePosition arg2
;
10944 PyObject
* obj0
= 0 ;
10945 PyObject
* obj1
= 0 ;
10946 char * kwnames
[] = {
10947 (char *) "self",(char *) "edge", NULL
10950 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_HasBorder",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10951 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10952 if (!SWIG_IsOK(res1
)) {
10953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_HasBorder" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
10955 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10956 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10957 if (!SWIG_IsOK(ecode2
)) {
10958 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_HasBorder" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
10960 arg2
= static_cast< wxSashEdgePosition
>(val2
);
10962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10963 result
= (bool)((wxSashWindow
const *)arg1
)->HasBorder(arg2
);
10964 wxPyEndAllowThreads(__tstate
);
10965 if (PyErr_Occurred()) SWIG_fail
;
10968 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10976 SWIGINTERN PyObject
*_wrap_SashWindow_GetEdgeMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10977 PyObject
*resultobj
= 0;
10978 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
10979 wxSashEdgePosition arg2
;
10985 PyObject
* obj0
= 0 ;
10986 PyObject
* obj1
= 0 ;
10987 char * kwnames
[] = {
10988 (char *) "self",(char *) "edge", NULL
10991 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetEdgeMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10992 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
10993 if (!SWIG_IsOK(res1
)) {
10994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetEdgeMargin" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
10996 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
10997 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10998 if (!SWIG_IsOK(ecode2
)) {
10999 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_GetEdgeMargin" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11001 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11004 result
= (int)((wxSashWindow
const *)arg1
)->GetEdgeMargin(arg2
);
11005 wxPyEndAllowThreads(__tstate
);
11006 if (PyErr_Occurred()) SWIG_fail
;
11008 resultobj
= SWIG_From_int(static_cast< int >(result
));
11015 SWIGINTERN PyObject
*_wrap_SashWindow_SetDefaultBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11016 PyObject
*resultobj
= 0;
11017 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11023 PyObject
* obj0
= 0 ;
11024 PyObject
* obj1
= 0 ;
11025 char * kwnames
[] = {
11026 (char *) "self",(char *) "width", NULL
11029 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetDefaultBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11030 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11031 if (!SWIG_IsOK(res1
)) {
11032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetDefaultBorderSize" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11034 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11035 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11036 if (!SWIG_IsOK(ecode2
)) {
11037 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetDefaultBorderSize" "', expected argument " "2"" of type '" "int""'");
11039 arg2
= static_cast< int >(val2
);
11041 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11042 (arg1
)->SetDefaultBorderSize(arg2
);
11043 wxPyEndAllowThreads(__tstate
);
11044 if (PyErr_Occurred()) SWIG_fail
;
11046 resultobj
= SWIG_Py_Void();
11053 SWIGINTERN PyObject
*_wrap_SashWindow_GetDefaultBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11054 PyObject
*resultobj
= 0;
11055 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11059 PyObject
*swig_obj
[1] ;
11061 if (!args
) SWIG_fail
;
11062 swig_obj
[0] = args
;
11063 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11064 if (!SWIG_IsOK(res1
)) {
11065 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetDefaultBorderSize" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11067 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11070 result
= (int)((wxSashWindow
const *)arg1
)->GetDefaultBorderSize();
11071 wxPyEndAllowThreads(__tstate
);
11072 if (PyErr_Occurred()) SWIG_fail
;
11074 resultobj
= SWIG_From_int(static_cast< int >(result
));
11081 SWIGINTERN PyObject
*_wrap_SashWindow_SetExtraBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11082 PyObject
*resultobj
= 0;
11083 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11089 PyObject
* obj0
= 0 ;
11090 PyObject
* obj1
= 0 ;
11091 char * kwnames
[] = {
11092 (char *) "self",(char *) "width", NULL
11095 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetExtraBorderSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11096 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11097 if (!SWIG_IsOK(res1
)) {
11098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetExtraBorderSize" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11100 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11101 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11102 if (!SWIG_IsOK(ecode2
)) {
11103 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetExtraBorderSize" "', expected argument " "2"" of type '" "int""'");
11105 arg2
= static_cast< int >(val2
);
11107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11108 (arg1
)->SetExtraBorderSize(arg2
);
11109 wxPyEndAllowThreads(__tstate
);
11110 if (PyErr_Occurred()) SWIG_fail
;
11112 resultobj
= SWIG_Py_Void();
11119 SWIGINTERN PyObject
*_wrap_SashWindow_GetExtraBorderSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11120 PyObject
*resultobj
= 0;
11121 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11125 PyObject
*swig_obj
[1] ;
11127 if (!args
) SWIG_fail
;
11128 swig_obj
[0] = args
;
11129 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11130 if (!SWIG_IsOK(res1
)) {
11131 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetExtraBorderSize" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11133 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11136 result
= (int)((wxSashWindow
const *)arg1
)->GetExtraBorderSize();
11137 wxPyEndAllowThreads(__tstate
);
11138 if (PyErr_Occurred()) SWIG_fail
;
11140 resultobj
= SWIG_From_int(static_cast< int >(result
));
11147 SWIGINTERN PyObject
*_wrap_SashWindow_SetMinimumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11148 PyObject
*resultobj
= 0;
11149 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11155 PyObject
* obj0
= 0 ;
11156 PyObject
* obj1
= 0 ;
11157 char * kwnames
[] = {
11158 (char *) "self",(char *) "min", NULL
11161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11163 if (!SWIG_IsOK(res1
)) {
11164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMinimumSizeX" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11166 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11167 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11168 if (!SWIG_IsOK(ecode2
)) {
11169 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMinimumSizeX" "', expected argument " "2"" of type '" "int""'");
11171 arg2
= static_cast< int >(val2
);
11173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11174 (arg1
)->SetMinimumSizeX(arg2
);
11175 wxPyEndAllowThreads(__tstate
);
11176 if (PyErr_Occurred()) SWIG_fail
;
11178 resultobj
= SWIG_Py_Void();
11185 SWIGINTERN PyObject
*_wrap_SashWindow_SetMinimumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11186 PyObject
*resultobj
= 0;
11187 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11193 PyObject
* obj0
= 0 ;
11194 PyObject
* obj1
= 0 ;
11195 char * kwnames
[] = {
11196 (char *) "self",(char *) "min", NULL
11199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11201 if (!SWIG_IsOK(res1
)) {
11202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMinimumSizeY" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11204 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11205 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11206 if (!SWIG_IsOK(ecode2
)) {
11207 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMinimumSizeY" "', expected argument " "2"" of type '" "int""'");
11209 arg2
= static_cast< int >(val2
);
11211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11212 (arg1
)->SetMinimumSizeY(arg2
);
11213 wxPyEndAllowThreads(__tstate
);
11214 if (PyErr_Occurred()) SWIG_fail
;
11216 resultobj
= SWIG_Py_Void();
11223 SWIGINTERN PyObject
*_wrap_SashWindow_GetMinimumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11224 PyObject
*resultobj
= 0;
11225 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11229 PyObject
*swig_obj
[1] ;
11231 if (!args
) SWIG_fail
;
11232 swig_obj
[0] = args
;
11233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11234 if (!SWIG_IsOK(res1
)) {
11235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMinimumSizeX" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11237 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11240 result
= (int)((wxSashWindow
const *)arg1
)->GetMinimumSizeX();
11241 wxPyEndAllowThreads(__tstate
);
11242 if (PyErr_Occurred()) SWIG_fail
;
11244 resultobj
= SWIG_From_int(static_cast< int >(result
));
11251 SWIGINTERN PyObject
*_wrap_SashWindow_GetMinimumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11252 PyObject
*resultobj
= 0;
11253 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11257 PyObject
*swig_obj
[1] ;
11259 if (!args
) SWIG_fail
;
11260 swig_obj
[0] = args
;
11261 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11262 if (!SWIG_IsOK(res1
)) {
11263 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMinimumSizeY" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11265 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11267 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11268 result
= (int)((wxSashWindow
const *)arg1
)->GetMinimumSizeY();
11269 wxPyEndAllowThreads(__tstate
);
11270 if (PyErr_Occurred()) SWIG_fail
;
11272 resultobj
= SWIG_From_int(static_cast< int >(result
));
11279 SWIGINTERN PyObject
*_wrap_SashWindow_SetMaximumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11280 PyObject
*resultobj
= 0;
11281 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11287 PyObject
* obj0
= 0 ;
11288 PyObject
* obj1
= 0 ;
11289 char * kwnames
[] = {
11290 (char *) "self",(char *) "max", NULL
11293 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11294 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11295 if (!SWIG_IsOK(res1
)) {
11296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMaximumSizeX" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11298 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11299 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11300 if (!SWIG_IsOK(ecode2
)) {
11301 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMaximumSizeX" "', expected argument " "2"" of type '" "int""'");
11303 arg2
= static_cast< int >(val2
);
11305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11306 (arg1
)->SetMaximumSizeX(arg2
);
11307 wxPyEndAllowThreads(__tstate
);
11308 if (PyErr_Occurred()) SWIG_fail
;
11310 resultobj
= SWIG_Py_Void();
11317 SWIGINTERN PyObject
*_wrap_SashWindow_SetMaximumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11318 PyObject
*resultobj
= 0;
11319 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11325 PyObject
* obj0
= 0 ;
11326 PyObject
* obj1
= 0 ;
11327 char * kwnames
[] = {
11328 (char *) "self",(char *) "max", NULL
11331 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11332 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11333 if (!SWIG_IsOK(res1
)) {
11334 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SetMaximumSizeY" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11336 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11337 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11338 if (!SWIG_IsOK(ecode2
)) {
11339 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SetMaximumSizeY" "', expected argument " "2"" of type '" "int""'");
11341 arg2
= static_cast< int >(val2
);
11343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11344 (arg1
)->SetMaximumSizeY(arg2
);
11345 wxPyEndAllowThreads(__tstate
);
11346 if (PyErr_Occurred()) SWIG_fail
;
11348 resultobj
= SWIG_Py_Void();
11355 SWIGINTERN PyObject
*_wrap_SashWindow_GetMaximumSizeX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11356 PyObject
*resultobj
= 0;
11357 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11361 PyObject
*swig_obj
[1] ;
11363 if (!args
) SWIG_fail
;
11364 swig_obj
[0] = args
;
11365 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11366 if (!SWIG_IsOK(res1
)) {
11367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMaximumSizeX" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11369 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11372 result
= (int)((wxSashWindow
const *)arg1
)->GetMaximumSizeX();
11373 wxPyEndAllowThreads(__tstate
);
11374 if (PyErr_Occurred()) SWIG_fail
;
11376 resultobj
= SWIG_From_int(static_cast< int >(result
));
11383 SWIGINTERN PyObject
*_wrap_SashWindow_GetMaximumSizeY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11384 PyObject
*resultobj
= 0;
11385 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11389 PyObject
*swig_obj
[1] ;
11391 if (!args
) SWIG_fail
;
11392 swig_obj
[0] = args
;
11393 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11394 if (!SWIG_IsOK(res1
)) {
11395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_GetMaximumSizeY" "', expected argument " "1"" of type '" "wxSashWindow const *""'");
11397 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11400 result
= (int)((wxSashWindow
const *)arg1
)->GetMaximumSizeY();
11401 wxPyEndAllowThreads(__tstate
);
11402 if (PyErr_Occurred()) SWIG_fail
;
11404 resultobj
= SWIG_From_int(static_cast< int >(result
));
11411 SWIGINTERN PyObject
*_wrap_SashWindow_SashHitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11412 PyObject
*resultobj
= 0;
11413 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11416 int arg4
= (int) 2 ;
11417 wxSashEdgePosition result
;
11426 PyObject
* obj0
= 0 ;
11427 PyObject
* obj1
= 0 ;
11428 PyObject
* obj2
= 0 ;
11429 PyObject
* obj3
= 0 ;
11430 char * kwnames
[] = {
11431 (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL
11434 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SashWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
11435 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11436 if (!SWIG_IsOK(res1
)) {
11437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SashHitTest" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11439 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11440 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11441 if (!SWIG_IsOK(ecode2
)) {
11442 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashWindow_SashHitTest" "', expected argument " "2"" of type '" "int""'");
11444 arg2
= static_cast< int >(val2
);
11445 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11446 if (!SWIG_IsOK(ecode3
)) {
11447 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashWindow_SashHitTest" "', expected argument " "3"" of type '" "int""'");
11449 arg3
= static_cast< int >(val3
);
11451 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
11452 if (!SWIG_IsOK(ecode4
)) {
11453 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "SashWindow_SashHitTest" "', expected argument " "4"" of type '" "int""'");
11455 arg4
= static_cast< int >(val4
);
11458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11459 result
= (wxSashEdgePosition
)(arg1
)->SashHitTest(arg2
,arg3
,arg4
);
11460 wxPyEndAllowThreads(__tstate
);
11461 if (PyErr_Occurred()) SWIG_fail
;
11463 resultobj
= SWIG_From_int(static_cast< int >(result
));
11470 SWIGINTERN PyObject
*_wrap_SashWindow_SizeWindows(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11471 PyObject
*resultobj
= 0;
11472 wxSashWindow
*arg1
= (wxSashWindow
*) 0 ;
11475 PyObject
*swig_obj
[1] ;
11477 if (!args
) SWIG_fail
;
11478 swig_obj
[0] = args
;
11479 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashWindow
, 0 | 0 );
11480 if (!SWIG_IsOK(res1
)) {
11481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashWindow_SizeWindows" "', expected argument " "1"" of type '" "wxSashWindow *""'");
11483 arg1
= reinterpret_cast< wxSashWindow
* >(argp1
);
11485 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11486 (arg1
)->SizeWindows();
11487 wxPyEndAllowThreads(__tstate
);
11488 if (PyErr_Occurred()) SWIG_fail
;
11490 resultobj
= SWIG_Py_Void();
11497 SWIGINTERN PyObject
*SashWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11499 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11500 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashWindow
, SWIG_NewClientData(obj
));
11501 return SWIG_Py_Void();
11504 SWIGINTERN PyObject
*SashWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11505 return SWIG_Python_InitShadowInstance(args
);
11508 SWIGINTERN PyObject
*_wrap_new_SashEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11509 PyObject
*resultobj
= 0;
11510 int arg1
= (int) 0 ;
11511 wxSashEdgePosition arg2
= (wxSashEdgePosition
) wxSASH_NONE
;
11512 wxSashEvent
*result
= 0 ;
11517 PyObject
* obj0
= 0 ;
11518 PyObject
* obj1
= 0 ;
11519 char * kwnames
[] = {
11520 (char *) "id",(char *) "edge", NULL
11523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SashEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11525 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11526 if (!SWIG_IsOK(ecode1
)) {
11527 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_SashEvent" "', expected argument " "1"" of type '" "int""'");
11529 arg1
= static_cast< int >(val1
);
11532 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11533 if (!SWIG_IsOK(ecode2
)) {
11534 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashEvent" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11536 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11540 result
= (wxSashEvent
*)new wxSashEvent(arg1
,arg2
);
11541 wxPyEndAllowThreads(__tstate
);
11542 if (PyErr_Occurred()) SWIG_fail
;
11544 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_NEW
| 0 );
11551 SWIGINTERN PyObject
*_wrap_SashEvent_SetEdge(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11552 PyObject
*resultobj
= 0;
11553 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11554 wxSashEdgePosition arg2
;
11559 PyObject
* obj0
= 0 ;
11560 PyObject
* obj1
= 0 ;
11561 char * kwnames
[] = {
11562 (char *) "self",(char *) "edge", NULL
11565 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetEdge",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11566 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11567 if (!SWIG_IsOK(res1
)) {
11568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetEdge" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11570 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11571 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11572 if (!SWIG_IsOK(ecode2
)) {
11573 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashEvent_SetEdge" "', expected argument " "2"" of type '" "wxSashEdgePosition""'");
11575 arg2
= static_cast< wxSashEdgePosition
>(val2
);
11577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11578 (arg1
)->SetEdge(arg2
);
11579 wxPyEndAllowThreads(__tstate
);
11580 if (PyErr_Occurred()) SWIG_fail
;
11582 resultobj
= SWIG_Py_Void();
11589 SWIGINTERN PyObject
*_wrap_SashEvent_GetEdge(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11590 PyObject
*resultobj
= 0;
11591 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11592 wxSashEdgePosition result
;
11595 PyObject
*swig_obj
[1] ;
11597 if (!args
) SWIG_fail
;
11598 swig_obj
[0] = args
;
11599 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11600 if (!SWIG_IsOK(res1
)) {
11601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetEdge" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11603 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11605 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11606 result
= (wxSashEdgePosition
)((wxSashEvent
const *)arg1
)->GetEdge();
11607 wxPyEndAllowThreads(__tstate
);
11608 if (PyErr_Occurred()) SWIG_fail
;
11610 resultobj
= SWIG_From_int(static_cast< int >(result
));
11617 SWIGINTERN PyObject
*_wrap_SashEvent_SetDragRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11618 PyObject
*resultobj
= 0;
11619 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11624 PyObject
* obj0
= 0 ;
11625 PyObject
* obj1
= 0 ;
11626 char * kwnames
[] = {
11627 (char *) "self",(char *) "rect", NULL
11630 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11631 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11632 if (!SWIG_IsOK(res1
)) {
11633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetDragRect" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11635 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11638 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
11641 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11642 (arg1
)->SetDragRect((wxRect
const &)*arg2
);
11643 wxPyEndAllowThreads(__tstate
);
11644 if (PyErr_Occurred()) SWIG_fail
;
11646 resultobj
= SWIG_Py_Void();
11653 SWIGINTERN PyObject
*_wrap_SashEvent_GetDragRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11654 PyObject
*resultobj
= 0;
11655 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11659 PyObject
*swig_obj
[1] ;
11661 if (!args
) SWIG_fail
;
11662 swig_obj
[0] = args
;
11663 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11664 if (!SWIG_IsOK(res1
)) {
11665 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetDragRect" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11667 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11669 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11670 result
= ((wxSashEvent
const *)arg1
)->GetDragRect();
11671 wxPyEndAllowThreads(__tstate
);
11672 if (PyErr_Occurred()) SWIG_fail
;
11674 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
11681 SWIGINTERN PyObject
*_wrap_SashEvent_SetDragStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11682 PyObject
*resultobj
= 0;
11683 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11684 wxSashDragStatus arg2
;
11689 PyObject
* obj0
= 0 ;
11690 PyObject
* obj1
= 0 ;
11691 char * kwnames
[] = {
11692 (char *) "self",(char *) "status", NULL
11695 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11696 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11697 if (!SWIG_IsOK(res1
)) {
11698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_SetDragStatus" "', expected argument " "1"" of type '" "wxSashEvent *""'");
11700 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11701 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11702 if (!SWIG_IsOK(ecode2
)) {
11703 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashEvent_SetDragStatus" "', expected argument " "2"" of type '" "wxSashDragStatus""'");
11705 arg2
= static_cast< wxSashDragStatus
>(val2
);
11707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11708 (arg1
)->SetDragStatus(arg2
);
11709 wxPyEndAllowThreads(__tstate
);
11710 if (PyErr_Occurred()) SWIG_fail
;
11712 resultobj
= SWIG_Py_Void();
11719 SWIGINTERN PyObject
*_wrap_SashEvent_GetDragStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11720 PyObject
*resultobj
= 0;
11721 wxSashEvent
*arg1
= (wxSashEvent
*) 0 ;
11722 wxSashDragStatus result
;
11725 PyObject
*swig_obj
[1] ;
11727 if (!args
) SWIG_fail
;
11728 swig_obj
[0] = args
;
11729 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashEvent
, 0 | 0 );
11730 if (!SWIG_IsOK(res1
)) {
11731 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashEvent_GetDragStatus" "', expected argument " "1"" of type '" "wxSashEvent const *""'");
11733 arg1
= reinterpret_cast< wxSashEvent
* >(argp1
);
11735 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11736 result
= (wxSashDragStatus
)((wxSashEvent
const *)arg1
)->GetDragStatus();
11737 wxPyEndAllowThreads(__tstate
);
11738 if (PyErr_Occurred()) SWIG_fail
;
11740 resultobj
= SWIG_From_int(static_cast< int >(result
));
11747 SWIGINTERN PyObject
*SashEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11749 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
11750 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashEvent
, SWIG_NewClientData(obj
));
11751 return SWIG_Py_Void();
11754 SWIGINTERN PyObject
*SashEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11755 return SWIG_Python_InitShadowInstance(args
);
11758 SWIGINTERN PyObject
*_wrap_new_QueryLayoutInfoEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11759 PyObject
*resultobj
= 0;
11760 int arg1
= (int) 0 ;
11761 wxQueryLayoutInfoEvent
*result
= 0 ;
11764 PyObject
* obj0
= 0 ;
11765 char * kwnames
[] = {
11766 (char *) "id", NULL
11769 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_QueryLayoutInfoEvent",kwnames
,&obj0
)) SWIG_fail
;
11771 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
11772 if (!SWIG_IsOK(ecode1
)) {
11773 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_QueryLayoutInfoEvent" "', expected argument " "1"" of type '" "int""'");
11775 arg1
= static_cast< int >(val1
);
11778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11779 result
= (wxQueryLayoutInfoEvent
*)new wxQueryLayoutInfoEvent(arg1
);
11780 wxPyEndAllowThreads(__tstate
);
11781 if (PyErr_Occurred()) SWIG_fail
;
11783 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_NEW
| 0 );
11790 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetRequestedLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11791 PyObject
*resultobj
= 0;
11792 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11798 PyObject
* obj0
= 0 ;
11799 PyObject
* obj1
= 0 ;
11800 char * kwnames
[] = {
11801 (char *) "self",(char *) "length", NULL
11804 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetRequestedLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11805 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11806 if (!SWIG_IsOK(res1
)) {
11807 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetRequestedLength" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11809 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11810 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11811 if (!SWIG_IsOK(ecode2
)) {
11812 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetRequestedLength" "', expected argument " "2"" of type '" "int""'");
11814 arg2
= static_cast< int >(val2
);
11816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11817 (arg1
)->SetRequestedLength(arg2
);
11818 wxPyEndAllowThreads(__tstate
);
11819 if (PyErr_Occurred()) SWIG_fail
;
11821 resultobj
= SWIG_Py_Void();
11828 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetRequestedLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11829 PyObject
*resultobj
= 0;
11830 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11834 PyObject
*swig_obj
[1] ;
11836 if (!args
) SWIG_fail
;
11837 swig_obj
[0] = args
;
11838 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11839 if (!SWIG_IsOK(res1
)) {
11840 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetRequestedLength" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11842 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11845 result
= (int)((wxQueryLayoutInfoEvent
const *)arg1
)->GetRequestedLength();
11846 wxPyEndAllowThreads(__tstate
);
11847 if (PyErr_Occurred()) SWIG_fail
;
11849 resultobj
= SWIG_From_int(static_cast< int >(result
));
11856 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11857 PyObject
*resultobj
= 0;
11858 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11864 PyObject
* obj0
= 0 ;
11865 PyObject
* obj1
= 0 ;
11866 char * kwnames
[] = {
11867 (char *) "self",(char *) "flags", NULL
11870 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11871 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11872 if (!SWIG_IsOK(res1
)) {
11873 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetFlags" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11875 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11876 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11877 if (!SWIG_IsOK(ecode2
)) {
11878 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
11880 arg2
= static_cast< int >(val2
);
11882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11883 (arg1
)->SetFlags(arg2
);
11884 wxPyEndAllowThreads(__tstate
);
11885 if (PyErr_Occurred()) SWIG_fail
;
11887 resultobj
= SWIG_Py_Void();
11894 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11895 PyObject
*resultobj
= 0;
11896 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11900 PyObject
*swig_obj
[1] ;
11902 if (!args
) SWIG_fail
;
11903 swig_obj
[0] = args
;
11904 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11905 if (!SWIG_IsOK(res1
)) {
11906 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetFlags" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11908 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11910 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11911 result
= (int)((wxQueryLayoutInfoEvent
const *)arg1
)->GetFlags();
11912 wxPyEndAllowThreads(__tstate
);
11913 if (PyErr_Occurred()) SWIG_fail
;
11915 resultobj
= SWIG_From_int(static_cast< int >(result
));
11922 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11923 PyObject
*resultobj
= 0;
11924 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11929 PyObject
* obj0
= 0 ;
11930 PyObject
* obj1
= 0 ;
11931 char * kwnames
[] = {
11932 (char *) "self",(char *) "size", NULL
11935 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11937 if (!SWIG_IsOK(res1
)) {
11938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetSize" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
11940 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11943 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
11946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11947 (arg1
)->SetSize((wxSize
const &)*arg2
);
11948 wxPyEndAllowThreads(__tstate
);
11949 if (PyErr_Occurred()) SWIG_fail
;
11951 resultobj
= SWIG_Py_Void();
11958 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11959 PyObject
*resultobj
= 0;
11960 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11964 PyObject
*swig_obj
[1] ;
11966 if (!args
) SWIG_fail
;
11967 swig_obj
[0] = args
;
11968 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
11969 if (!SWIG_IsOK(res1
)) {
11970 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetSize" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
11972 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
11974 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11975 result
= ((wxQueryLayoutInfoEvent
const *)arg1
)->GetSize();
11976 wxPyEndAllowThreads(__tstate
);
11977 if (PyErr_Occurred()) SWIG_fail
;
11979 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
11986 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11987 PyObject
*resultobj
= 0;
11988 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
11989 wxLayoutOrientation arg2
;
11994 PyObject
* obj0
= 0 ;
11995 PyObject
* obj1
= 0 ;
11996 char * kwnames
[] = {
11997 (char *) "self",(char *) "orient", NULL
12000 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12001 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12002 if (!SWIG_IsOK(res1
)) {
12003 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetOrientation" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
12005 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12006 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12007 if (!SWIG_IsOK(ecode2
)) {
12008 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetOrientation" "', expected argument " "2"" of type '" "wxLayoutOrientation""'");
12010 arg2
= static_cast< wxLayoutOrientation
>(val2
);
12012 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12013 (arg1
)->SetOrientation(arg2
);
12014 wxPyEndAllowThreads(__tstate
);
12015 if (PyErr_Occurred()) SWIG_fail
;
12017 resultobj
= SWIG_Py_Void();
12024 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12025 PyObject
*resultobj
= 0;
12026 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12027 wxLayoutOrientation result
;
12030 PyObject
*swig_obj
[1] ;
12032 if (!args
) SWIG_fail
;
12033 swig_obj
[0] = args
;
12034 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12035 if (!SWIG_IsOK(res1
)) {
12036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetOrientation" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
12038 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12041 result
= (wxLayoutOrientation
)((wxQueryLayoutInfoEvent
const *)arg1
)->GetOrientation();
12042 wxPyEndAllowThreads(__tstate
);
12043 if (PyErr_Occurred()) SWIG_fail
;
12045 resultobj
= SWIG_From_int(static_cast< int >(result
));
12052 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_SetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12053 PyObject
*resultobj
= 0;
12054 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12055 wxLayoutAlignment arg2
;
12060 PyObject
* obj0
= 0 ;
12061 PyObject
* obj1
= 0 ;
12062 char * kwnames
[] = {
12063 (char *) "self",(char *) "align", NULL
12066 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetAlignment",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12067 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12068 if (!SWIG_IsOK(res1
)) {
12069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_SetAlignment" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent *""'");
12071 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12072 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12073 if (!SWIG_IsOK(ecode2
)) {
12074 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "QueryLayoutInfoEvent_SetAlignment" "', expected argument " "2"" of type '" "wxLayoutAlignment""'");
12076 arg2
= static_cast< wxLayoutAlignment
>(val2
);
12078 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12079 (arg1
)->SetAlignment(arg2
);
12080 wxPyEndAllowThreads(__tstate
);
12081 if (PyErr_Occurred()) SWIG_fail
;
12083 resultobj
= SWIG_Py_Void();
12090 SWIGINTERN PyObject
*_wrap_QueryLayoutInfoEvent_GetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12091 PyObject
*resultobj
= 0;
12092 wxQueryLayoutInfoEvent
*arg1
= (wxQueryLayoutInfoEvent
*) 0 ;
12093 wxLayoutAlignment result
;
12096 PyObject
*swig_obj
[1] ;
12098 if (!args
) SWIG_fail
;
12099 swig_obj
[0] = args
;
12100 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxQueryLayoutInfoEvent
, 0 | 0 );
12101 if (!SWIG_IsOK(res1
)) {
12102 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "QueryLayoutInfoEvent_GetAlignment" "', expected argument " "1"" of type '" "wxQueryLayoutInfoEvent const *""'");
12104 arg1
= reinterpret_cast< wxQueryLayoutInfoEvent
* >(argp1
);
12106 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12107 result
= (wxLayoutAlignment
)((wxQueryLayoutInfoEvent
const *)arg1
)->GetAlignment();
12108 wxPyEndAllowThreads(__tstate
);
12109 if (PyErr_Occurred()) SWIG_fail
;
12111 resultobj
= SWIG_From_int(static_cast< int >(result
));
12118 SWIGINTERN PyObject
*QueryLayoutInfoEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12120 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12121 SWIG_TypeNewClientData(SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_NewClientData(obj
));
12122 return SWIG_Py_Void();
12125 SWIGINTERN PyObject
*QueryLayoutInfoEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12126 return SWIG_Python_InitShadowInstance(args
);
12129 SWIGINTERN PyObject
*_wrap_new_CalculateLayoutEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12130 PyObject
*resultobj
= 0;
12131 int arg1
= (int) 0 ;
12132 wxCalculateLayoutEvent
*result
= 0 ;
12135 PyObject
* obj0
= 0 ;
12136 char * kwnames
[] = {
12137 (char *) "id", NULL
12140 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_CalculateLayoutEvent",kwnames
,&obj0
)) SWIG_fail
;
12142 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
12143 if (!SWIG_IsOK(ecode1
)) {
12144 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_CalculateLayoutEvent" "', expected argument " "1"" of type '" "int""'");
12146 arg1
= static_cast< int >(val1
);
12149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12150 result
= (wxCalculateLayoutEvent
*)new wxCalculateLayoutEvent(arg1
);
12151 wxPyEndAllowThreads(__tstate
);
12152 if (PyErr_Occurred()) SWIG_fail
;
12154 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_NEW
| 0 );
12161 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12162 PyObject
*resultobj
= 0;
12163 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12169 PyObject
* obj0
= 0 ;
12170 PyObject
* obj1
= 0 ;
12171 char * kwnames
[] = {
12172 (char *) "self",(char *) "flags", NULL
12175 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12176 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12177 if (!SWIG_IsOK(res1
)) {
12178 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_SetFlags" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent *""'");
12180 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12181 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12182 if (!SWIG_IsOK(ecode2
)) {
12183 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "CalculateLayoutEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
12185 arg2
= static_cast< int >(val2
);
12187 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12188 (arg1
)->SetFlags(arg2
);
12189 wxPyEndAllowThreads(__tstate
);
12190 if (PyErr_Occurred()) SWIG_fail
;
12192 resultobj
= SWIG_Py_Void();
12199 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12200 PyObject
*resultobj
= 0;
12201 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12205 PyObject
*swig_obj
[1] ;
12207 if (!args
) SWIG_fail
;
12208 swig_obj
[0] = args
;
12209 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12210 if (!SWIG_IsOK(res1
)) {
12211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_GetFlags" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent const *""'");
12213 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12215 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12216 result
= (int)((wxCalculateLayoutEvent
const *)arg1
)->GetFlags();
12217 wxPyEndAllowThreads(__tstate
);
12218 if (PyErr_Occurred()) SWIG_fail
;
12220 resultobj
= SWIG_From_int(static_cast< int >(result
));
12227 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_SetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12228 PyObject
*resultobj
= 0;
12229 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12234 PyObject
* obj0
= 0 ;
12235 PyObject
* obj1
= 0 ;
12236 char * kwnames
[] = {
12237 (char *) "self",(char *) "rect", NULL
12240 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12241 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12242 if (!SWIG_IsOK(res1
)) {
12243 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_SetRect" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent *""'");
12245 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12248 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
12251 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12252 (arg1
)->SetRect((wxRect
const &)*arg2
);
12253 wxPyEndAllowThreads(__tstate
);
12254 if (PyErr_Occurred()) SWIG_fail
;
12256 resultobj
= SWIG_Py_Void();
12263 SWIGINTERN PyObject
*_wrap_CalculateLayoutEvent_GetRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12264 PyObject
*resultobj
= 0;
12265 wxCalculateLayoutEvent
*arg1
= (wxCalculateLayoutEvent
*) 0 ;
12269 PyObject
*swig_obj
[1] ;
12271 if (!args
) SWIG_fail
;
12272 swig_obj
[0] = args
;
12273 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxCalculateLayoutEvent
, 0 | 0 );
12274 if (!SWIG_IsOK(res1
)) {
12275 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "CalculateLayoutEvent_GetRect" "', expected argument " "1"" of type '" "wxCalculateLayoutEvent const *""'");
12277 arg1
= reinterpret_cast< wxCalculateLayoutEvent
* >(argp1
);
12279 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12280 result
= ((wxCalculateLayoutEvent
const *)arg1
)->GetRect();
12281 wxPyEndAllowThreads(__tstate
);
12282 if (PyErr_Occurred()) SWIG_fail
;
12284 resultobj
= SWIG_NewPointerObj((new wxRect(static_cast< const wxRect
& >(result
))), SWIGTYPE_p_wxRect
, SWIG_POINTER_OWN
| 0 );
12291 SWIGINTERN PyObject
*CalculateLayoutEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12293 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12294 SWIG_TypeNewClientData(SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_NewClientData(obj
));
12295 return SWIG_Py_Void();
12298 SWIGINTERN PyObject
*CalculateLayoutEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12299 return SWIG_Python_InitShadowInstance(args
);
12302 SWIGINTERN PyObject
*_wrap_new_SashLayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12303 PyObject
*resultobj
= 0;
12304 wxWindow
*arg1
= (wxWindow
*) 0 ;
12305 int arg2
= (int) -1 ;
12306 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
12307 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
12308 wxSize
const &arg4_defvalue
= wxDefaultSize
;
12309 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
12310 long arg5
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
12311 wxString
const &arg6_defvalue
= wxPySashLayoutNameStr
;
12312 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
12313 wxSashLayoutWindow
*result
= 0 ;
12322 bool temp6
= false ;
12323 PyObject
* obj0
= 0 ;
12324 PyObject
* obj1
= 0 ;
12325 PyObject
* obj2
= 0 ;
12326 PyObject
* obj3
= 0 ;
12327 PyObject
* obj4
= 0 ;
12328 PyObject
* obj5
= 0 ;
12329 char * kwnames
[] = {
12330 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12333 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashLayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
12334 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12335 if (!SWIG_IsOK(res1
)) {
12336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SashLayoutWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
12338 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12340 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12341 if (!SWIG_IsOK(ecode2
)) {
12342 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_SashLayoutWindow" "', expected argument " "2"" of type '" "int""'");
12344 arg2
= static_cast< int >(val2
);
12349 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
12355 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
12359 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
12360 if (!SWIG_IsOK(ecode5
)) {
12361 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_SashLayoutWindow" "', expected argument " "5"" of type '" "long""'");
12363 arg5
= static_cast< long >(val5
);
12367 arg6
= wxString_in_helper(obj5
);
12368 if (arg6
== NULL
) SWIG_fail
;
12373 if (!wxPyCheckForApp()) SWIG_fail
;
12374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12375 result
= (wxSashLayoutWindow
*)new wxSashLayoutWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
12376 wxPyEndAllowThreads(__tstate
);
12377 if (PyErr_Occurred()) SWIG_fail
;
12379 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_NEW
| 0 );
12394 SWIGINTERN PyObject
*_wrap_new_PreSashLayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12395 PyObject
*resultobj
= 0;
12396 wxSashLayoutWindow
*result
= 0 ;
12398 if (!SWIG_Python_UnpackTuple(args
,"new_PreSashLayoutWindow",0,0,0)) SWIG_fail
;
12400 if (!wxPyCheckForApp()) SWIG_fail
;
12401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12402 result
= (wxSashLayoutWindow
*)new wxSashLayoutWindow();
12403 wxPyEndAllowThreads(__tstate
);
12404 if (PyErr_Occurred()) SWIG_fail
;
12406 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_OWN
| 0 );
12413 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12414 PyObject
*resultobj
= 0;
12415 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12416 wxWindow
*arg2
= (wxWindow
*) 0 ;
12417 int arg3
= (int) -1 ;
12418 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
12419 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
12420 wxSize
const &arg5_defvalue
= wxDefaultSize
;
12421 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
12422 long arg6
= (long) wxCLIP_CHILDREN
|wxSW_3D
;
12423 wxString
const &arg7_defvalue
= wxPySashLayoutNameStr
;
12424 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
12436 bool temp7
= false ;
12437 PyObject
* obj0
= 0 ;
12438 PyObject
* obj1
= 0 ;
12439 PyObject
* obj2
= 0 ;
12440 PyObject
* obj3
= 0 ;
12441 PyObject
* obj4
= 0 ;
12442 PyObject
* obj5
= 0 ;
12443 PyObject
* obj6
= 0 ;
12444 char * kwnames
[] = {
12445 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
12448 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashLayoutWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
12449 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12450 if (!SWIG_IsOK(res1
)) {
12451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_Create" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12453 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12454 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12455 if (!SWIG_IsOK(res2
)) {
12456 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "SashLayoutWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
12458 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12460 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
12461 if (!SWIG_IsOK(ecode3
)) {
12462 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "SashLayoutWindow_Create" "', expected argument " "3"" of type '" "int""'");
12464 arg3
= static_cast< int >(val3
);
12469 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
12475 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
12479 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
12480 if (!SWIG_IsOK(ecode6
)) {
12481 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "SashLayoutWindow_Create" "', expected argument " "6"" of type '" "long""'");
12483 arg6
= static_cast< long >(val6
);
12487 arg7
= wxString_in_helper(obj6
);
12488 if (arg7
== NULL
) SWIG_fail
;
12493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12494 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
12495 wxPyEndAllowThreads(__tstate
);
12496 if (PyErr_Occurred()) SWIG_fail
;
12499 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12515 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_GetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12516 PyObject
*resultobj
= 0;
12517 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12518 wxLayoutAlignment result
;
12521 PyObject
*swig_obj
[1] ;
12523 if (!args
) SWIG_fail
;
12524 swig_obj
[0] = args
;
12525 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12526 if (!SWIG_IsOK(res1
)) {
12527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_GetAlignment" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12529 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12532 result
= (wxLayoutAlignment
)(arg1
)->GetAlignment();
12533 wxPyEndAllowThreads(__tstate
);
12534 if (PyErr_Occurred()) SWIG_fail
;
12536 resultobj
= SWIG_From_int(static_cast< int >(result
));
12543 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12544 PyObject
*resultobj
= 0;
12545 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12546 wxLayoutOrientation result
;
12549 PyObject
*swig_obj
[1] ;
12551 if (!args
) SWIG_fail
;
12552 swig_obj
[0] = args
;
12553 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12554 if (!SWIG_IsOK(res1
)) {
12555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_GetOrientation" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12557 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12559 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12560 result
= (wxLayoutOrientation
)(arg1
)->GetOrientation();
12561 wxPyEndAllowThreads(__tstate
);
12562 if (PyErr_Occurred()) SWIG_fail
;
12564 resultobj
= SWIG_From_int(static_cast< int >(result
));
12571 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetAlignment(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12572 PyObject
*resultobj
= 0;
12573 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12574 wxLayoutAlignment arg2
;
12579 PyObject
* obj0
= 0 ;
12580 PyObject
* obj1
= 0 ;
12581 char * kwnames
[] = {
12582 (char *) "self",(char *) "alignment", NULL
12585 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetAlignment",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12586 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12587 if (!SWIG_IsOK(res1
)) {
12588 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetAlignment" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12590 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12591 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12592 if (!SWIG_IsOK(ecode2
)) {
12593 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashLayoutWindow_SetAlignment" "', expected argument " "2"" of type '" "wxLayoutAlignment""'");
12595 arg2
= static_cast< wxLayoutAlignment
>(val2
);
12597 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12598 (arg1
)->SetAlignment(arg2
);
12599 wxPyEndAllowThreads(__tstate
);
12600 if (PyErr_Occurred()) SWIG_fail
;
12602 resultobj
= SWIG_Py_Void();
12609 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetDefaultSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12610 PyObject
*resultobj
= 0;
12611 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12616 PyObject
* obj0
= 0 ;
12617 PyObject
* obj1
= 0 ;
12618 char * kwnames
[] = {
12619 (char *) "self",(char *) "size", NULL
12622 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetDefaultSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12623 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12624 if (!SWIG_IsOK(res1
)) {
12625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetDefaultSize" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12627 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12630 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
12633 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12634 (arg1
)->SetDefaultSize((wxSize
const &)*arg2
);
12635 wxPyEndAllowThreads(__tstate
);
12636 if (PyErr_Occurred()) SWIG_fail
;
12638 resultobj
= SWIG_Py_Void();
12645 SWIGINTERN PyObject
*_wrap_SashLayoutWindow_SetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12646 PyObject
*resultobj
= 0;
12647 wxSashLayoutWindow
*arg1
= (wxSashLayoutWindow
*) 0 ;
12648 wxLayoutOrientation arg2
;
12653 PyObject
* obj0
= 0 ;
12654 PyObject
* obj1
= 0 ;
12655 char * kwnames
[] = {
12656 (char *) "self",(char *) "orientation", NULL
12659 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12660 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSashLayoutWindow
, 0 | 0 );
12661 if (!SWIG_IsOK(res1
)) {
12662 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SashLayoutWindow_SetOrientation" "', expected argument " "1"" of type '" "wxSashLayoutWindow *""'");
12664 arg1
= reinterpret_cast< wxSashLayoutWindow
* >(argp1
);
12665 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12666 if (!SWIG_IsOK(ecode2
)) {
12667 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SashLayoutWindow_SetOrientation" "', expected argument " "2"" of type '" "wxLayoutOrientation""'");
12669 arg2
= static_cast< wxLayoutOrientation
>(val2
);
12671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12672 (arg1
)->SetOrientation(arg2
);
12673 wxPyEndAllowThreads(__tstate
);
12674 if (PyErr_Occurred()) SWIG_fail
;
12676 resultobj
= SWIG_Py_Void();
12683 SWIGINTERN PyObject
*SashLayoutWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12685 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12686 SWIG_TypeNewClientData(SWIGTYPE_p_wxSashLayoutWindow
, SWIG_NewClientData(obj
));
12687 return SWIG_Py_Void();
12690 SWIGINTERN PyObject
*SashLayoutWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12691 return SWIG_Python_InitShadowInstance(args
);
12694 SWIGINTERN PyObject
*_wrap_new_LayoutAlgorithm(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12695 PyObject
*resultobj
= 0;
12696 wxLayoutAlgorithm
*result
= 0 ;
12698 if (!SWIG_Python_UnpackTuple(args
,"new_LayoutAlgorithm",0,0,0)) SWIG_fail
;
12700 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12701 result
= (wxLayoutAlgorithm
*)new wxLayoutAlgorithm();
12702 wxPyEndAllowThreads(__tstate
);
12703 if (PyErr_Occurred()) SWIG_fail
;
12705 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_NEW
| 0 );
12712 SWIGINTERN PyObject
*_wrap_delete_LayoutAlgorithm(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12713 PyObject
*resultobj
= 0;
12714 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12717 PyObject
*swig_obj
[1] ;
12719 if (!args
) SWIG_fail
;
12720 swig_obj
[0] = args
;
12721 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_DISOWN
| 0 );
12722 if (!SWIG_IsOK(res1
)) {
12723 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_LayoutAlgorithm" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12725 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12730 wxPyEndAllowThreads(__tstate
);
12731 if (PyErr_Occurred()) SWIG_fail
;
12733 resultobj
= SWIG_Py_Void();
12740 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutMDIFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12741 PyObject
*resultobj
= 0;
12742 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12743 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
12744 wxRect
*arg3
= (wxRect
*) NULL
;
12752 PyObject
* obj0
= 0 ;
12753 PyObject
* obj1
= 0 ;
12754 PyObject
* obj2
= 0 ;
12755 char * kwnames
[] = {
12756 (char *) "self",(char *) "frame",(char *) "rect", NULL
12759 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutMDIFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12760 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12761 if (!SWIG_IsOK(res1
)) {
12762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12764 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12765 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
12766 if (!SWIG_IsOK(res2
)) {
12767 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
12769 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
12771 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxRect
, 0 | 0 );
12772 if (!SWIG_IsOK(res3
)) {
12773 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutMDIFrame" "', expected argument " "3"" of type '" "wxRect *""'");
12775 arg3
= reinterpret_cast< wxRect
* >(argp3
);
12778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12779 result
= (bool)(arg1
)->LayoutMDIFrame(arg2
,arg3
);
12780 wxPyEndAllowThreads(__tstate
);
12781 if (PyErr_Occurred()) SWIG_fail
;
12784 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12792 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12793 PyObject
*resultobj
= 0;
12794 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12795 wxFrame
*arg2
= (wxFrame
*) 0 ;
12796 wxWindow
*arg3
= (wxWindow
*) NULL
;
12804 PyObject
* obj0
= 0 ;
12805 PyObject
* obj1
= 0 ;
12806 PyObject
* obj2
= 0 ;
12807 char * kwnames
[] = {
12808 (char *) "self",(char *) "frame",(char *) "mainWindow", NULL
12811 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutFrame",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12812 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12813 if (!SWIG_IsOK(res1
)) {
12814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12816 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12817 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
12818 if (!SWIG_IsOK(res2
)) {
12819 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
12821 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
12823 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12824 if (!SWIG_IsOK(res3
)) {
12825 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutFrame" "', expected argument " "3"" of type '" "wxWindow *""'");
12827 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12831 result
= (bool)(arg1
)->LayoutFrame(arg2
,arg3
);
12832 wxPyEndAllowThreads(__tstate
);
12833 if (PyErr_Occurred()) SWIG_fail
;
12836 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12844 SWIGINTERN PyObject
*_wrap_LayoutAlgorithm_LayoutWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12845 PyObject
*resultobj
= 0;
12846 wxLayoutAlgorithm
*arg1
= (wxLayoutAlgorithm
*) 0 ;
12847 wxWindow
*arg2
= (wxWindow
*) 0 ;
12848 wxWindow
*arg3
= (wxWindow
*) NULL
;
12856 PyObject
* obj0
= 0 ;
12857 PyObject
* obj1
= 0 ;
12858 PyObject
* obj2
= 0 ;
12859 char * kwnames
[] = {
12860 (char *) "self",(char *) "parent",(char *) "mainWindow", NULL
12863 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12864 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxLayoutAlgorithm
, 0 | 0 );
12865 if (!SWIG_IsOK(res1
)) {
12866 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "1"" of type '" "wxLayoutAlgorithm *""'");
12868 arg1
= reinterpret_cast< wxLayoutAlgorithm
* >(argp1
);
12869 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12870 if (!SWIG_IsOK(res2
)) {
12871 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
12873 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12875 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12876 if (!SWIG_IsOK(res3
)) {
12877 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "LayoutAlgorithm_LayoutWindow" "', expected argument " "3"" of type '" "wxWindow *""'");
12879 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
12882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12883 result
= (bool)(arg1
)->LayoutWindow(arg2
,arg3
);
12884 wxPyEndAllowThreads(__tstate
);
12885 if (PyErr_Occurred()) SWIG_fail
;
12888 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12896 SWIGINTERN PyObject
*LayoutAlgorithm_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12898 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
12899 SWIG_TypeNewClientData(SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_NewClientData(obj
));
12900 return SWIG_Py_Void();
12903 SWIGINTERN PyObject
*LayoutAlgorithm_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12904 return SWIG_Python_InitShadowInstance(args
);
12907 SWIGINTERN PyObject
*_wrap_new_PopupWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12908 PyObject
*resultobj
= 0;
12909 wxWindow
*arg1
= (wxWindow
*) 0 ;
12910 int arg2
= (int) wxBORDER_NONE
;
12911 wxPopupWindow
*result
= 0 ;
12916 PyObject
* obj0
= 0 ;
12917 PyObject
* obj1
= 0 ;
12918 char * kwnames
[] = {
12919 (char *) "parent",(char *) "flags", NULL
12922 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12923 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12924 if (!SWIG_IsOK(res1
)) {
12925 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PopupWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
12927 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
12929 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12930 if (!SWIG_IsOK(ecode2
)) {
12931 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PopupWindow" "', expected argument " "2"" of type '" "int""'");
12933 arg2
= static_cast< int >(val2
);
12936 if (!wxPyCheckForApp()) SWIG_fail
;
12937 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12938 result
= (wxPopupWindow
*)new wxPopupWindow(arg1
,arg2
);
12939 wxPyEndAllowThreads(__tstate
);
12940 if (PyErr_Occurred()) SWIG_fail
;
12942 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_NEW
| 0 );
12949 SWIGINTERN PyObject
*_wrap_new_PrePopupWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12950 PyObject
*resultobj
= 0;
12951 wxPopupWindow
*result
= 0 ;
12953 if (!SWIG_Python_UnpackTuple(args
,"new_PrePopupWindow",0,0,0)) SWIG_fail
;
12955 if (!wxPyCheckForApp()) SWIG_fail
;
12956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12957 result
= (wxPopupWindow
*)new wxPopupWindow();
12958 wxPyEndAllowThreads(__tstate
);
12959 if (PyErr_Occurred()) SWIG_fail
;
12961 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_OWN
| 0 );
12968 SWIGINTERN PyObject
*_wrap_PopupWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12969 PyObject
*resultobj
= 0;
12970 wxPopupWindow
*arg1
= (wxPopupWindow
*) 0 ;
12971 wxWindow
*arg2
= (wxWindow
*) 0 ;
12972 int arg3
= (int) wxBORDER_NONE
;
12980 PyObject
* obj0
= 0 ;
12981 PyObject
* obj1
= 0 ;
12982 PyObject
* obj2
= 0 ;
12983 char * kwnames
[] = {
12984 (char *) "self",(char *) "parent",(char *) "flags", NULL
12987 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:PopupWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12988 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPopupWindow
, 0 | 0 );
12989 if (!SWIG_IsOK(res1
)) {
12990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PopupWindow_Create" "', expected argument " "1"" of type '" "wxPopupWindow *""'");
12992 arg1
= reinterpret_cast< wxPopupWindow
* >(argp1
);
12993 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
12994 if (!SWIG_IsOK(res2
)) {
12995 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PopupWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
12997 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
12999 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13000 if (!SWIG_IsOK(ecode3
)) {
13001 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PopupWindow_Create" "', expected argument " "3"" of type '" "int""'");
13003 arg3
= static_cast< int >(val3
);
13006 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13007 result
= (bool)(arg1
)->Create(arg2
,arg3
);
13008 wxPyEndAllowThreads(__tstate
);
13009 if (PyErr_Occurred()) SWIG_fail
;
13012 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13020 SWIGINTERN PyObject
*_wrap_PopupWindow_Position(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13021 PyObject
*resultobj
= 0;
13022 wxPopupWindow
*arg1
= (wxPopupWindow
*) 0 ;
13023 wxPoint
*arg2
= 0 ;
13029 PyObject
* obj0
= 0 ;
13030 PyObject
* obj1
= 0 ;
13031 PyObject
* obj2
= 0 ;
13032 char * kwnames
[] = {
13033 (char *) "self",(char *) "ptOrigin",(char *) "size", NULL
13036 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PopupWindow_Position",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13037 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPopupWindow
, 0 | 0 );
13038 if (!SWIG_IsOK(res1
)) {
13039 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PopupWindow_Position" "', expected argument " "1"" of type '" "wxPopupWindow *""'");
13041 arg1
= reinterpret_cast< wxPopupWindow
* >(argp1
);
13044 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
13048 if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
;
13051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13052 (arg1
)->Position((wxPoint
const &)*arg2
,(wxSize
const &)*arg3
);
13053 wxPyEndAllowThreads(__tstate
);
13054 if (PyErr_Occurred()) SWIG_fail
;
13056 resultobj
= SWIG_Py_Void();
13063 SWIGINTERN PyObject
*PopupWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13065 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13066 SWIG_TypeNewClientData(SWIGTYPE_p_wxPopupWindow
, SWIG_NewClientData(obj
));
13067 return SWIG_Py_Void();
13070 SWIGINTERN PyObject
*PopupWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13071 return SWIG_Python_InitShadowInstance(args
);
13074 SWIGINTERN PyObject
*_wrap_new_PopupTransientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13075 PyObject
*resultobj
= 0;
13076 wxWindow
*arg1
= (wxWindow
*) 0 ;
13077 int arg2
= (int) wxBORDER_NONE
;
13078 wxPyPopupTransientWindow
*result
= 0 ;
13083 PyObject
* obj0
= 0 ;
13084 PyObject
* obj1
= 0 ;
13085 char * kwnames
[] = {
13086 (char *) "parent",(char *) "style", NULL
13089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupTransientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13091 if (!SWIG_IsOK(res1
)) {
13092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PopupTransientWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13094 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13096 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13097 if (!SWIG_IsOK(ecode2
)) {
13098 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PopupTransientWindow" "', expected argument " "2"" of type '" "int""'");
13100 arg2
= static_cast< int >(val2
);
13103 if (!wxPyCheckForApp()) SWIG_fail
;
13104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13105 result
= (wxPyPopupTransientWindow
*)new wxPyPopupTransientWindow(arg1
,arg2
);
13106 wxPyEndAllowThreads(__tstate
);
13107 if (PyErr_Occurred()) SWIG_fail
;
13109 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_NEW
| 0 );
13116 SWIGINTERN PyObject
*_wrap_new_PrePopupTransientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13117 PyObject
*resultobj
= 0;
13118 wxPyPopupTransientWindow
*result
= 0 ;
13120 if (!SWIG_Python_UnpackTuple(args
,"new_PrePopupTransientWindow",0,0,0)) SWIG_fail
;
13122 if (!wxPyCheckForApp()) SWIG_fail
;
13123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13124 result
= (wxPyPopupTransientWindow
*)new wxPyPopupTransientWindow();
13125 wxPyEndAllowThreads(__tstate
);
13126 if (PyErr_Occurred()) SWIG_fail
;
13128 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_OWN
| 0 );
13135 SWIGINTERN PyObject
*_wrap_PopupTransientWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13136 PyObject
*resultobj
= 0;
13137 wxPyPopupTransientWindow
*arg1
= (wxPyPopupTransientWindow
*) 0 ;
13138 PyObject
*arg2
= (PyObject
*) 0 ;
13139 PyObject
*arg3
= (PyObject
*) 0 ;
13142 PyObject
* obj0
= 0 ;
13143 PyObject
* obj1
= 0 ;
13144 PyObject
* obj2
= 0 ;
13145 char * kwnames
[] = {
13146 (char *) "self",(char *) "self",(char *) "_class", NULL
13149 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PopupTransientWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13150 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPopupTransientWindow
, 0 | 0 );
13151 if (!SWIG_IsOK(res1
)) {
13152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PopupTransientWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPopupTransientWindow *""'");
13154 arg1
= reinterpret_cast< wxPyPopupTransientWindow
* >(argp1
);
13158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13159 (arg1
)->_setCallbackInfo(arg2
,arg3
);
13160 wxPyEndAllowThreads(__tstate
);
13161 if (PyErr_Occurred()) SWIG_fail
;
13163 resultobj
= SWIG_Py_Void();
13170 SWIGINTERN PyObject
*_wrap_PopupTransientWindow_Popup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13171 PyObject
*resultobj
= 0;
13172 wxPyPopupTransientWindow
*arg1
= (wxPyPopupTransientWindow
*) 0 ;
13173 wxWindow
*arg2
= (wxWindow
*) NULL
;
13178 PyObject
* obj0
= 0 ;
13179 PyObject
* obj1
= 0 ;
13180 char * kwnames
[] = {
13181 (char *) "self",(char *) "focus", NULL
13184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PopupTransientWindow_Popup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13185 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPopupTransientWindow
, 0 | 0 );
13186 if (!SWIG_IsOK(res1
)) {
13187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PopupTransientWindow_Popup" "', expected argument " "1"" of type '" "wxPyPopupTransientWindow *""'");
13189 arg1
= reinterpret_cast< wxPyPopupTransientWindow
* >(argp1
);
13191 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13192 if (!SWIG_IsOK(res2
)) {
13193 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PopupTransientWindow_Popup" "', expected argument " "2"" of type '" "wxWindow *""'");
13195 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13198 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13199 (arg1
)->Popup(arg2
);
13200 wxPyEndAllowThreads(__tstate
);
13201 if (PyErr_Occurred()) SWIG_fail
;
13203 resultobj
= SWIG_Py_Void();
13210 SWIGINTERN PyObject
*_wrap_PopupTransientWindow_Dismiss(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13211 PyObject
*resultobj
= 0;
13212 wxPyPopupTransientWindow
*arg1
= (wxPyPopupTransientWindow
*) 0 ;
13215 PyObject
*swig_obj
[1] ;
13217 if (!args
) SWIG_fail
;
13218 swig_obj
[0] = args
;
13219 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPopupTransientWindow
, 0 | 0 );
13220 if (!SWIG_IsOK(res1
)) {
13221 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PopupTransientWindow_Dismiss" "', expected argument " "1"" of type '" "wxPyPopupTransientWindow *""'");
13223 arg1
= reinterpret_cast< wxPyPopupTransientWindow
* >(argp1
);
13225 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13227 wxPyEndAllowThreads(__tstate
);
13228 if (PyErr_Occurred()) SWIG_fail
;
13230 resultobj
= SWIG_Py_Void();
13237 SWIGINTERN PyObject
*PopupTransientWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13239 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13240 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_NewClientData(obj
));
13241 return SWIG_Py_Void();
13244 SWIGINTERN PyObject
*PopupTransientWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13245 return SWIG_Python_InitShadowInstance(args
);
13248 SWIGINTERN PyObject
*_wrap_new_TipWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13249 PyObject
*resultobj
= 0;
13250 wxWindow
*arg1
= (wxWindow
*) 0 ;
13251 wxString
*arg2
= 0 ;
13252 int arg3
= (int) 100 ;
13253 wxRect
*arg4
= (wxRect
*) NULL
;
13254 wxTipWindow
*result
= 0 ;
13257 bool temp2
= false ;
13262 PyObject
* obj0
= 0 ;
13263 PyObject
* obj1
= 0 ;
13264 PyObject
* obj2
= 0 ;
13265 PyObject
* obj3
= 0 ;
13266 char * kwnames
[] = {
13267 (char *) "parent",(char *) "text",(char *) "maxLength",(char *) "rectBound", NULL
13270 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_TipWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
13271 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13272 if (!SWIG_IsOK(res1
)) {
13273 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TipWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13275 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13277 arg2
= wxString_in_helper(obj1
);
13278 if (arg2
== NULL
) SWIG_fail
;
13282 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13283 if (!SWIG_IsOK(ecode3
)) {
13284 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_TipWindow" "', expected argument " "3"" of type '" "int""'");
13286 arg3
= static_cast< int >(val3
);
13289 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxRect
, 0 | 0 );
13290 if (!SWIG_IsOK(res4
)) {
13291 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_TipWindow" "', expected argument " "4"" of type '" "wxRect *""'");
13293 arg4
= reinterpret_cast< wxRect
* >(argp4
);
13296 if (!wxPyCheckForApp()) SWIG_fail
;
13297 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13298 result
= (wxTipWindow
*)new_wxTipWindow(arg1
,(wxString
const &)*arg2
,arg3
,arg4
);
13299 wxPyEndAllowThreads(__tstate
);
13300 if (PyErr_Occurred()) SWIG_fail
;
13302 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTipWindow
, SWIG_POINTER_NEW
| 0 );
13317 SWIGINTERN PyObject
*_wrap_TipWindow_SetBoundingRect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13318 PyObject
*resultobj
= 0;
13319 wxTipWindow
*arg1
= (wxTipWindow
*) 0 ;
13324 PyObject
* obj0
= 0 ;
13325 PyObject
* obj1
= 0 ;
13326 char * kwnames
[] = {
13327 (char *) "self",(char *) "rectBound", NULL
13330 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TipWindow_SetBoundingRect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13331 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTipWindow
, 0 | 0 );
13332 if (!SWIG_IsOK(res1
)) {
13333 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipWindow_SetBoundingRect" "', expected argument " "1"" of type '" "wxTipWindow *""'");
13335 arg1
= reinterpret_cast< wxTipWindow
* >(argp1
);
13338 if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
;
13341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13342 (arg1
)->SetBoundingRect((wxRect
const &)*arg2
);
13343 wxPyEndAllowThreads(__tstate
);
13344 if (PyErr_Occurred()) SWIG_fail
;
13346 resultobj
= SWIG_Py_Void();
13353 SWIGINTERN PyObject
*_wrap_TipWindow_Close(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13354 PyObject
*resultobj
= 0;
13355 wxTipWindow
*arg1
= (wxTipWindow
*) 0 ;
13358 PyObject
*swig_obj
[1] ;
13360 if (!args
) SWIG_fail
;
13361 swig_obj
[0] = args
;
13362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTipWindow
, 0 | 0 );
13363 if (!SWIG_IsOK(res1
)) {
13364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TipWindow_Close" "', expected argument " "1"" of type '" "wxTipWindow *""'");
13366 arg1
= reinterpret_cast< wxTipWindow
* >(argp1
);
13368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13370 wxPyEndAllowThreads(__tstate
);
13371 if (PyErr_Occurred()) SWIG_fail
;
13373 resultobj
= SWIG_Py_Void();
13380 SWIGINTERN PyObject
*TipWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13382 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
13383 SWIG_TypeNewClientData(SWIGTYPE_p_wxTipWindow
, SWIG_NewClientData(obj
));
13384 return SWIG_Py_Void();
13387 SWIGINTERN PyObject
*TipWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13388 return SWIG_Python_InitShadowInstance(args
);
13391 SWIGINTERN PyObject
*_wrap_new_VScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13392 PyObject
*resultobj
= 0;
13393 wxWindow
*arg1
= (wxWindow
*) 0 ;
13394 int arg2
= (int) wxID_ANY
;
13395 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
13396 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
13397 wxSize
const &arg4_defvalue
= wxDefaultSize
;
13398 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
13399 long arg5
= (long) 0 ;
13400 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
13401 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
13402 wxPyVScrolledWindow
*result
= 0 ;
13411 bool temp6
= false ;
13412 PyObject
* obj0
= 0 ;
13413 PyObject
* obj1
= 0 ;
13414 PyObject
* obj2
= 0 ;
13415 PyObject
* obj3
= 0 ;
13416 PyObject
* obj4
= 0 ;
13417 PyObject
* obj5
= 0 ;
13418 char * kwnames
[] = {
13419 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
13422 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
13423 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13424 if (!SWIG_IsOK(res1
)) {
13425 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_VScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
13427 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
13429 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13430 if (!SWIG_IsOK(ecode2
)) {
13431 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_VScrolledWindow" "', expected argument " "2"" of type '" "int""'");
13433 arg2
= static_cast< int >(val2
);
13438 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
13444 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
13448 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
13449 if (!SWIG_IsOK(ecode5
)) {
13450 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_VScrolledWindow" "', expected argument " "5"" of type '" "long""'");
13452 arg5
= static_cast< long >(val5
);
13456 arg6
= wxString_in_helper(obj5
);
13457 if (arg6
== NULL
) SWIG_fail
;
13462 if (!wxPyCheckForApp()) SWIG_fail
;
13463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13464 result
= (wxPyVScrolledWindow
*)new wxPyVScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
13465 wxPyEndAllowThreads(__tstate
);
13466 if (PyErr_Occurred()) SWIG_fail
;
13468 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_NEW
| 0 );
13483 SWIGINTERN PyObject
*_wrap_new_PreVScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13484 PyObject
*resultobj
= 0;
13485 wxPyVScrolledWindow
*result
= 0 ;
13487 if (!SWIG_Python_UnpackTuple(args
,"new_PreVScrolledWindow",0,0,0)) SWIG_fail
;
13489 if (!wxPyCheckForApp()) SWIG_fail
;
13490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13491 result
= (wxPyVScrolledWindow
*)new wxPyVScrolledWindow();
13492 wxPyEndAllowThreads(__tstate
);
13493 if (PyErr_Occurred()) SWIG_fail
;
13495 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_OWN
| 0 );
13502 SWIGINTERN PyObject
*_wrap_VScrolledWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13503 PyObject
*resultobj
= 0;
13504 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13505 PyObject
*arg2
= (PyObject
*) 0 ;
13506 PyObject
*arg3
= (PyObject
*) 0 ;
13509 PyObject
* obj0
= 0 ;
13510 PyObject
* obj1
= 0 ;
13511 PyObject
* obj2
= 0 ;
13512 char * kwnames
[] = {
13513 (char *) "self",(char *) "self",(char *) "_class", NULL
13516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13518 if (!SWIG_IsOK(res1
)) {
13519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13521 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13526 (arg1
)->_setCallbackInfo(arg2
,arg3
);
13527 wxPyEndAllowThreads(__tstate
);
13528 if (PyErr_Occurred()) SWIG_fail
;
13530 resultobj
= SWIG_Py_Void();
13537 SWIGINTERN PyObject
*_wrap_VScrolledWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13538 PyObject
*resultobj
= 0;
13539 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13540 wxWindow
*arg2
= (wxWindow
*) 0 ;
13541 int arg3
= (int) wxID_ANY
;
13542 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
13543 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
13544 wxSize
const &arg5_defvalue
= wxDefaultSize
;
13545 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
13546 long arg6
= (long) 0 ;
13547 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
13548 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
13560 bool temp7
= false ;
13561 PyObject
* obj0
= 0 ;
13562 PyObject
* obj1
= 0 ;
13563 PyObject
* obj2
= 0 ;
13564 PyObject
* obj3
= 0 ;
13565 PyObject
* obj4
= 0 ;
13566 PyObject
* obj5
= 0 ;
13567 PyObject
* obj6
= 0 ;
13568 char * kwnames
[] = {
13569 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
13572 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
13573 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13574 if (!SWIG_IsOK(res1
)) {
13575 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_Create" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13577 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13578 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
13579 if (!SWIG_IsOK(res2
)) {
13580 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VScrolledWindow_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
13582 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
13584 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13585 if (!SWIG_IsOK(ecode3
)) {
13586 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_Create" "', expected argument " "3"" of type '" "int""'");
13588 arg3
= static_cast< int >(val3
);
13593 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
13599 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
13603 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
13604 if (!SWIG_IsOK(ecode6
)) {
13605 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "VScrolledWindow_Create" "', expected argument " "6"" of type '" "long""'");
13607 arg6
= static_cast< long >(val6
);
13611 arg7
= wxString_in_helper(obj6
);
13612 if (arg7
== NULL
) SWIG_fail
;
13617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13618 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
13619 wxPyEndAllowThreads(__tstate
);
13620 if (PyErr_Occurred()) SWIG_fail
;
13623 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13639 SWIGINTERN PyObject
*_wrap_VScrolledWindow_SetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13640 PyObject
*resultobj
= 0;
13641 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13647 PyObject
* obj0
= 0 ;
13648 PyObject
* obj1
= 0 ;
13649 char * kwnames
[] = {
13650 (char *) "self",(char *) "count", NULL
13653 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_SetLineCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13654 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13655 if (!SWIG_IsOK(res1
)) {
13656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_SetLineCount" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13658 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13659 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13660 if (!SWIG_IsOK(ecode2
)) {
13661 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_SetLineCount" "', expected argument " "2"" of type '" "size_t""'");
13663 arg2
= static_cast< size_t >(val2
);
13665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13666 (arg1
)->SetLineCount(arg2
);
13667 wxPyEndAllowThreads(__tstate
);
13668 if (PyErr_Occurred()) SWIG_fail
;
13670 resultobj
= SWIG_Py_Void();
13677 SWIGINTERN PyObject
*_wrap_VScrolledWindow_ScrollToLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13678 PyObject
*resultobj
= 0;
13679 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13686 PyObject
* obj0
= 0 ;
13687 PyObject
* obj1
= 0 ;
13688 char * kwnames
[] = {
13689 (char *) "self",(char *) "line", NULL
13692 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13693 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13694 if (!SWIG_IsOK(res1
)) {
13695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_ScrollToLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13697 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13698 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13699 if (!SWIG_IsOK(ecode2
)) {
13700 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_ScrollToLine" "', expected argument " "2"" of type '" "size_t""'");
13702 arg2
= static_cast< size_t >(val2
);
13704 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13705 result
= (bool)(arg1
)->ScrollToLine(arg2
);
13706 wxPyEndAllowThreads(__tstate
);
13707 if (PyErr_Occurred()) SWIG_fail
;
13710 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
13718 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13719 PyObject
*resultobj
= 0;
13720 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13726 PyObject
* obj0
= 0 ;
13727 PyObject
* obj1
= 0 ;
13728 char * kwnames
[] = {
13729 (char *) "self",(char *) "line", NULL
13732 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_RefreshLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13733 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13734 if (!SWIG_IsOK(res1
)) {
13735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13737 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13738 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13739 if (!SWIG_IsOK(ecode2
)) {
13740 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_RefreshLine" "', expected argument " "2"" of type '" "size_t""'");
13742 arg2
= static_cast< size_t >(val2
);
13744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13745 (arg1
)->RefreshLine(arg2
);
13746 wxPyEndAllowThreads(__tstate
);
13747 if (PyErr_Occurred()) SWIG_fail
;
13749 resultobj
= SWIG_Py_Void();
13756 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13757 PyObject
*resultobj
= 0;
13758 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13767 PyObject
* obj0
= 0 ;
13768 PyObject
* obj1
= 0 ;
13769 PyObject
* obj2
= 0 ;
13770 char * kwnames
[] = {
13771 (char *) "self",(char *) "_from",(char *) "to", NULL
13774 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_RefreshLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13775 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13776 if (!SWIG_IsOK(res1
)) {
13777 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13779 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13780 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
13781 if (!SWIG_IsOK(ecode2
)) {
13782 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "2"" of type '" "size_t""'");
13784 arg2
= static_cast< size_t >(val2
);
13785 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
13786 if (!SWIG_IsOK(ecode3
)) {
13787 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_RefreshLines" "', expected argument " "3"" of type '" "size_t""'");
13789 arg3
= static_cast< size_t >(val3
);
13791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13792 (arg1
)->RefreshLines(arg2
,arg3
);
13793 wxPyEndAllowThreads(__tstate
);
13794 if (PyErr_Occurred()) SWIG_fail
;
13796 resultobj
= SWIG_Py_Void();
13803 SWIGINTERN PyObject
*_wrap_VScrolledWindow_HitTestXY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13804 PyObject
*resultobj
= 0;
13805 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13815 PyObject
* obj0
= 0 ;
13816 PyObject
* obj1
= 0 ;
13817 PyObject
* obj2
= 0 ;
13818 char * kwnames
[] = {
13819 (char *) "self",(char *) "x",(char *) "y", NULL
13822 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_HitTestXY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
13823 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13824 if (!SWIG_IsOK(res1
)) {
13825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13827 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13828 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
13829 if (!SWIG_IsOK(ecode2
)) {
13830 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "2"" of type '" "int""'");
13832 arg2
= static_cast< int >(val2
);
13833 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
13834 if (!SWIG_IsOK(ecode3
)) {
13835 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_HitTestXY" "', expected argument " "3"" of type '" "int""'");
13837 arg3
= static_cast< int >(val3
);
13839 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13840 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->HitTest(arg2
,arg3
);
13841 wxPyEndAllowThreads(__tstate
);
13842 if (PyErr_Occurred()) SWIG_fail
;
13844 resultobj
= SWIG_From_int(static_cast< int >(result
));
13851 SWIGINTERN PyObject
*_wrap_VScrolledWindow_HitTest(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
13852 PyObject
*resultobj
= 0;
13853 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13854 wxPoint
*arg2
= 0 ;
13859 PyObject
* obj0
= 0 ;
13860 PyObject
* obj1
= 0 ;
13861 char * kwnames
[] = {
13862 (char *) "self",(char *) "pt", NULL
13865 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_HitTest",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
13866 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13867 if (!SWIG_IsOK(res1
)) {
13868 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_HitTest" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13870 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13873 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
13876 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13877 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->HitTest((wxPoint
const &)*arg2
);
13878 wxPyEndAllowThreads(__tstate
);
13879 if (PyErr_Occurred()) SWIG_fail
;
13881 resultobj
= SWIG_From_int(static_cast< int >(result
));
13888 SWIGINTERN PyObject
*_wrap_VScrolledWindow_RefreshAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13889 PyObject
*resultobj
= 0;
13890 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13893 PyObject
*swig_obj
[1] ;
13895 if (!args
) SWIG_fail
;
13896 swig_obj
[0] = args
;
13897 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13898 if (!SWIG_IsOK(res1
)) {
13899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_RefreshAll" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
13901 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13904 (arg1
)->RefreshAll();
13905 wxPyEndAllowThreads(__tstate
);
13906 if (PyErr_Occurred()) SWIG_fail
;
13908 resultobj
= SWIG_Py_Void();
13915 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13916 PyObject
*resultobj
= 0;
13917 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13921 PyObject
*swig_obj
[1] ;
13923 if (!args
) SWIG_fail
;
13924 swig_obj
[0] = args
;
13925 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13926 if (!SWIG_IsOK(res1
)) {
13927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLineCount" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13929 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13931 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13932 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetLineCount();
13933 wxPyEndAllowThreads(__tstate
);
13934 if (PyErr_Occurred()) SWIG_fail
;
13936 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13943 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetVisibleBegin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13944 PyObject
*resultobj
= 0;
13945 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13949 PyObject
*swig_obj
[1] ;
13951 if (!args
) SWIG_fail
;
13952 swig_obj
[0] = args
;
13953 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13954 if (!SWIG_IsOK(res1
)) {
13955 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetVisibleBegin" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13957 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13960 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetVisibleBegin();
13961 wxPyEndAllowThreads(__tstate
);
13962 if (PyErr_Occurred()) SWIG_fail
;
13964 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13971 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetVisibleEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13972 PyObject
*resultobj
= 0;
13973 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
13977 PyObject
*swig_obj
[1] ;
13979 if (!args
) SWIG_fail
;
13980 swig_obj
[0] = args
;
13981 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
13982 if (!SWIG_IsOK(res1
)) {
13983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetVisibleEnd" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
13985 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
13987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13988 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetVisibleEnd();
13989 wxPyEndAllowThreads(__tstate
);
13990 if (PyErr_Occurred()) SWIG_fail
;
13992 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
13999 SWIGINTERN PyObject
*_wrap_VScrolledWindow_IsVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14000 PyObject
*resultobj
= 0;
14001 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
14008 PyObject
* obj0
= 0 ;
14009 PyObject
* obj1
= 0 ;
14010 char * kwnames
[] = {
14011 (char *) "self",(char *) "line", NULL
14014 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_IsVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14015 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
14016 if (!SWIG_IsOK(res1
)) {
14017 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_IsVisible" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
14019 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
14020 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14021 if (!SWIG_IsOK(ecode2
)) {
14022 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_IsVisible" "', expected argument " "2"" of type '" "size_t""'");
14024 arg2
= static_cast< size_t >(val2
);
14026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14027 result
= (bool)((wxPyVScrolledWindow
const *)arg1
)->IsVisible(arg2
);
14028 wxPyEndAllowThreads(__tstate
);
14029 if (PyErr_Occurred()) SWIG_fail
;
14032 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14040 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetFirstVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14041 PyObject
*resultobj
= 0;
14042 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
14046 PyObject
*swig_obj
[1] ;
14048 if (!args
) SWIG_fail
;
14049 swig_obj
[0] = args
;
14050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
14051 if (!SWIG_IsOK(res1
)) {
14052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
14054 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
14056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14057 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetFirstVisibleLine();
14058 wxPyEndAllowThreads(__tstate
);
14059 if (PyErr_Occurred()) SWIG_fail
;
14061 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14068 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLastVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14069 PyObject
*resultobj
= 0;
14070 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
14074 PyObject
*swig_obj
[1] ;
14076 if (!args
) SWIG_fail
;
14077 swig_obj
[0] = args
;
14078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
14079 if (!SWIG_IsOK(res1
)) {
14080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLastVisibleLine" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
14082 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
14084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14085 result
= (size_t)((wxPyVScrolledWindow
const *)arg1
)->GetLastVisibleLine();
14086 wxPyEndAllowThreads(__tstate
);
14087 if (PyErr_Occurred()) SWIG_fail
;
14089 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14096 SWIGINTERN PyObject
*_wrap_VScrolledWindow_FindFirstFromBottom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14097 PyObject
*resultobj
= 0;
14098 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
14100 bool arg3
= (bool) false ;
14108 PyObject
* obj0
= 0 ;
14109 PyObject
* obj1
= 0 ;
14110 PyObject
* obj2
= 0 ;
14111 char * kwnames
[] = {
14112 (char *) "self",(char *) "lineLast",(char *) "fullyVisible", NULL
14115 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:VScrolledWindow_FindFirstFromBottom",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14116 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
14117 if (!SWIG_IsOK(res1
)) {
14118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "1"" of type '" "wxPyVScrolledWindow *""'");
14120 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
14121 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14122 if (!SWIG_IsOK(ecode2
)) {
14123 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "2"" of type '" "size_t""'");
14125 arg2
= static_cast< size_t >(val2
);
14127 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
14128 if (!SWIG_IsOK(ecode3
)) {
14129 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_FindFirstFromBottom" "', expected argument " "3"" of type '" "bool""'");
14131 arg3
= static_cast< bool >(val3
);
14134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14135 result
= (size_t)(arg1
)->FindFirstFromBottom(arg2
,arg3
);
14136 wxPyEndAllowThreads(__tstate
);
14137 if (PyErr_Occurred()) SWIG_fail
;
14139 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14146 SWIGINTERN PyObject
*_wrap_VScrolledWindow_GetLinesHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14147 PyObject
*resultobj
= 0;
14148 wxPyVScrolledWindow
*arg1
= (wxPyVScrolledWindow
*) 0 ;
14158 PyObject
* obj0
= 0 ;
14159 PyObject
* obj1
= 0 ;
14160 PyObject
* obj2
= 0 ;
14161 char * kwnames
[] = {
14162 (char *) "self",(char *) "lineMin",(char *) "lineMax", NULL
14165 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_GetLinesHeight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14166 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVScrolledWindow
, 0 | 0 );
14167 if (!SWIG_IsOK(res1
)) {
14168 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "1"" of type '" "wxPyVScrolledWindow const *""'");
14170 arg1
= reinterpret_cast< wxPyVScrolledWindow
* >(argp1
);
14171 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14172 if (!SWIG_IsOK(ecode2
)) {
14173 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "2"" of type '" "size_t""'");
14175 arg2
= static_cast< size_t >(val2
);
14176 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
14177 if (!SWIG_IsOK(ecode3
)) {
14178 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VScrolledWindow_GetLinesHeight" "', expected argument " "3"" of type '" "size_t""'");
14180 arg3
= static_cast< size_t >(val3
);
14182 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14183 result
= (int)((wxPyVScrolledWindow
const *)arg1
)->GetLinesHeight(arg2
,arg3
);
14184 wxPyEndAllowThreads(__tstate
);
14185 if (PyErr_Occurred()) SWIG_fail
;
14187 resultobj
= SWIG_From_int(static_cast< int >(result
));
14194 SWIGINTERN PyObject
*VScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14196 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
14197 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_NewClientData(obj
));
14198 return SWIG_Py_Void();
14201 SWIGINTERN PyObject
*VScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14202 return SWIG_Python_InitShadowInstance(args
);
14205 SWIGINTERN
int VListBoxNameStr_set(PyObject
*) {
14206 SWIG_Error(SWIG_AttributeError
,"Variable VListBoxNameStr is read-only.");
14211 SWIGINTERN PyObject
*VListBoxNameStr_get(void) {
14212 PyObject
*pyobj
= 0;
14216 pyobj
= PyUnicode_FromWideChar((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len());
14218 pyobj
= PyString_FromStringAndSize((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len());
14225 SWIGINTERN PyObject
*_wrap_new_VListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14226 PyObject
*resultobj
= 0;
14227 wxWindow
*arg1
= (wxWindow
*) 0 ;
14228 int arg2
= (int) wxID_ANY
;
14229 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
14230 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
14231 wxSize
const &arg4_defvalue
= wxDefaultSize
;
14232 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
14233 long arg5
= (long) 0 ;
14234 wxString
const &arg6_defvalue
= wxPyVListBoxNameStr
;
14235 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
14236 wxPyVListBox
*result
= 0 ;
14245 bool temp6
= false ;
14246 PyObject
* obj0
= 0 ;
14247 PyObject
* obj1
= 0 ;
14248 PyObject
* obj2
= 0 ;
14249 PyObject
* obj3
= 0 ;
14250 PyObject
* obj4
= 0 ;
14251 PyObject
* obj5
= 0 ;
14252 char * kwnames
[] = {
14253 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
14256 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
14257 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14258 if (!SWIG_IsOK(res1
)) {
14259 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_VListBox" "', expected argument " "1"" of type '" "wxWindow *""'");
14261 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
14263 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14264 if (!SWIG_IsOK(ecode2
)) {
14265 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_VListBox" "', expected argument " "2"" of type '" "int""'");
14267 arg2
= static_cast< int >(val2
);
14272 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
14278 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
14282 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
14283 if (!SWIG_IsOK(ecode5
)) {
14284 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_VListBox" "', expected argument " "5"" of type '" "long""'");
14286 arg5
= static_cast< long >(val5
);
14290 arg6
= wxString_in_helper(obj5
);
14291 if (arg6
== NULL
) SWIG_fail
;
14296 if (!wxPyCheckForApp()) SWIG_fail
;
14297 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14298 result
= (wxPyVListBox
*)new wxPyVListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
14299 wxPyEndAllowThreads(__tstate
);
14300 if (PyErr_Occurred()) SWIG_fail
;
14302 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_NEW
| 0 );
14317 SWIGINTERN PyObject
*_wrap_new_PreVListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14318 PyObject
*resultobj
= 0;
14319 wxPyVListBox
*result
= 0 ;
14321 if (!SWIG_Python_UnpackTuple(args
,"new_PreVListBox",0,0,0)) SWIG_fail
;
14323 if (!wxPyCheckForApp()) SWIG_fail
;
14324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14325 result
= (wxPyVListBox
*)new wxPyVListBox();
14326 wxPyEndAllowThreads(__tstate
);
14327 if (PyErr_Occurred()) SWIG_fail
;
14329 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_OWN
| 0 );
14336 SWIGINTERN PyObject
*_wrap_VListBox__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14337 PyObject
*resultobj
= 0;
14338 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14339 PyObject
*arg2
= (PyObject
*) 0 ;
14340 PyObject
*arg3
= (PyObject
*) 0 ;
14343 PyObject
* obj0
= 0 ;
14344 PyObject
* obj1
= 0 ;
14345 PyObject
* obj2
= 0 ;
14346 char * kwnames
[] = {
14347 (char *) "self",(char *) "self",(char *) "_class", NULL
14350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14352 if (!SWIG_IsOK(res1
)) {
14353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14355 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14360 (arg1
)->_setCallbackInfo(arg2
,arg3
);
14361 wxPyEndAllowThreads(__tstate
);
14362 if (PyErr_Occurred()) SWIG_fail
;
14364 resultobj
= SWIG_Py_Void();
14371 SWIGINTERN PyObject
*_wrap_VListBox_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14372 PyObject
*resultobj
= 0;
14373 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14374 wxWindow
*arg2
= (wxWindow
*) 0 ;
14375 int arg3
= (int) wxID_ANY
;
14376 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
14377 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
14378 wxSize
const &arg5_defvalue
= wxDefaultSize
;
14379 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
14380 long arg6
= (long) 0 ;
14381 wxString
const &arg7_defvalue
= wxPyVListBoxNameStr
;
14382 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
14394 bool temp7
= false ;
14395 PyObject
* obj0
= 0 ;
14396 PyObject
* obj1
= 0 ;
14397 PyObject
* obj2
= 0 ;
14398 PyObject
* obj3
= 0 ;
14399 PyObject
* obj4
= 0 ;
14400 PyObject
* obj5
= 0 ;
14401 PyObject
* obj6
= 0 ;
14402 char * kwnames
[] = {
14403 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
14406 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
14407 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14408 if (!SWIG_IsOK(res1
)) {
14409 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Create" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14411 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14412 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
14413 if (!SWIG_IsOK(res2
)) {
14414 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
14416 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
14418 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14419 if (!SWIG_IsOK(ecode3
)) {
14420 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_Create" "', expected argument " "3"" of type '" "int""'");
14422 arg3
= static_cast< int >(val3
);
14427 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
14433 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
14437 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
14438 if (!SWIG_IsOK(ecode6
)) {
14439 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "VListBox_Create" "', expected argument " "6"" of type '" "long""'");
14441 arg6
= static_cast< long >(val6
);
14445 arg7
= wxString_in_helper(obj6
);
14446 if (arg7
== NULL
) SWIG_fail
;
14451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14452 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
14453 wxPyEndAllowThreads(__tstate
);
14454 if (PyErr_Occurred()) SWIG_fail
;
14457 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14473 SWIGINTERN PyObject
*_wrap_VListBox_GetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14474 PyObject
*resultobj
= 0;
14475 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14479 PyObject
*swig_obj
[1] ;
14481 if (!args
) SWIG_fail
;
14482 swig_obj
[0] = args
;
14483 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14484 if (!SWIG_IsOK(res1
)) {
14485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetItemCount" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14487 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14490 result
= (size_t)((wxPyVListBox
const *)arg1
)->GetItemCount();
14491 wxPyEndAllowThreads(__tstate
);
14492 if (PyErr_Occurred()) SWIG_fail
;
14494 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14501 SWIGINTERN PyObject
*_wrap_VListBox_HasMultipleSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14502 PyObject
*resultobj
= 0;
14503 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14507 PyObject
*swig_obj
[1] ;
14509 if (!args
) SWIG_fail
;
14510 swig_obj
[0] = args
;
14511 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14512 if (!SWIG_IsOK(res1
)) {
14513 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_HasMultipleSelection" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14515 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14517 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14518 result
= (bool)((wxPyVListBox
const *)arg1
)->HasMultipleSelection();
14519 wxPyEndAllowThreads(__tstate
);
14520 if (PyErr_Occurred()) SWIG_fail
;
14523 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14531 SWIGINTERN PyObject
*_wrap_VListBox_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14532 PyObject
*resultobj
= 0;
14533 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14537 PyObject
*swig_obj
[1] ;
14539 if (!args
) SWIG_fail
;
14540 swig_obj
[0] = args
;
14541 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14542 if (!SWIG_IsOK(res1
)) {
14543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelection" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14545 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14548 result
= (int)((wxPyVListBox
const *)arg1
)->GetSelection();
14549 wxPyEndAllowThreads(__tstate
);
14550 if (PyErr_Occurred()) SWIG_fail
;
14552 resultobj
= SWIG_From_int(static_cast< int >(result
));
14559 SWIGINTERN PyObject
*_wrap_VListBox_IsCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14560 PyObject
*resultobj
= 0;
14561 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14568 PyObject
* obj0
= 0 ;
14569 PyObject
* obj1
= 0 ;
14570 char * kwnames
[] = {
14571 (char *) "self",(char *) "item", NULL
14574 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsCurrent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14576 if (!SWIG_IsOK(res1
)) {
14577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_IsCurrent" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14579 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14580 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14581 if (!SWIG_IsOK(ecode2
)) {
14582 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_IsCurrent" "', expected argument " "2"" of type '" "size_t""'");
14584 arg2
= static_cast< size_t >(val2
);
14586 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14587 result
= (bool)((wxPyVListBox
const *)arg1
)->IsCurrent(arg2
);
14588 wxPyEndAllowThreads(__tstate
);
14589 if (PyErr_Occurred()) SWIG_fail
;
14592 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14600 SWIGINTERN PyObject
*_wrap_VListBox_IsSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14601 PyObject
*resultobj
= 0;
14602 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14609 PyObject
* obj0
= 0 ;
14610 PyObject
* obj1
= 0 ;
14611 char * kwnames
[] = {
14612 (char *) "self",(char *) "item", NULL
14615 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsSelected",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14616 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14617 if (!SWIG_IsOK(res1
)) {
14618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_IsSelected" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14620 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14621 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14622 if (!SWIG_IsOK(ecode2
)) {
14623 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_IsSelected" "', expected argument " "2"" of type '" "size_t""'");
14625 arg2
= static_cast< size_t >(val2
);
14627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14628 result
= (bool)((wxPyVListBox
const *)arg1
)->IsSelected(arg2
);
14629 wxPyEndAllowThreads(__tstate
);
14630 if (PyErr_Occurred()) SWIG_fail
;
14633 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14641 SWIGINTERN PyObject
*_wrap_VListBox_GetSelectedCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14642 PyObject
*resultobj
= 0;
14643 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14647 PyObject
*swig_obj
[1] ;
14649 if (!args
) SWIG_fail
;
14650 swig_obj
[0] = args
;
14651 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14652 if (!SWIG_IsOK(res1
)) {
14653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelectedCount" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14655 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14658 result
= (size_t)((wxPyVListBox
const *)arg1
)->GetSelectedCount();
14659 wxPyEndAllowThreads(__tstate
);
14660 if (PyErr_Occurred()) SWIG_fail
;
14662 resultobj
= SWIG_From_size_t(static_cast< size_t >(result
));
14669 SWIGINTERN PyObject
*_wrap_VListBox_GetFirstSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14670 PyObject
*resultobj
= 0;
14671 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14672 PyObject
*result
= 0 ;
14675 PyObject
*swig_obj
[1] ;
14677 if (!args
) SWIG_fail
;
14678 swig_obj
[0] = args
;
14679 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14680 if (!SWIG_IsOK(res1
)) {
14681 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetFirstSelected" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14683 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14685 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14686 result
= (PyObject
*)wxPyVListBox_GetFirstSelected(arg1
);
14687 wxPyEndAllowThreads(__tstate
);
14688 if (PyErr_Occurred()) SWIG_fail
;
14690 resultobj
= result
;
14697 SWIGINTERN PyObject
*_wrap_VListBox_GetNextSelected(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14698 PyObject
*resultobj
= 0;
14699 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14700 unsigned long arg2
;
14701 PyObject
*result
= 0 ;
14704 unsigned long val2
;
14706 PyObject
* obj0
= 0 ;
14707 PyObject
* obj1
= 0 ;
14708 char * kwnames
[] = {
14709 (char *) "self",(char *) "cookie", NULL
14712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_GetNextSelected",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14714 if (!SWIG_IsOK(res1
)) {
14715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetNextSelected" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14717 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14718 ecode2
= SWIG_AsVal_unsigned_SS_long(obj1
, &val2
);
14719 if (!SWIG_IsOK(ecode2
)) {
14720 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_GetNextSelected" "', expected argument " "2"" of type '" "unsigned long""'");
14722 arg2
= static_cast< unsigned long >(val2
);
14724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14725 result
= (PyObject
*)wxPyVListBox_GetNextSelected(arg1
,arg2
);
14726 wxPyEndAllowThreads(__tstate
);
14727 if (PyErr_Occurred()) SWIG_fail
;
14729 resultobj
= result
;
14736 SWIGINTERN PyObject
*_wrap_VListBox_GetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14737 PyObject
*resultobj
= 0;
14738 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14742 PyObject
*swig_obj
[1] ;
14744 if (!args
) SWIG_fail
;
14745 swig_obj
[0] = args
;
14746 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14747 if (!SWIG_IsOK(res1
)) {
14748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetMargins" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14750 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14753 result
= ((wxPyVListBox
const *)arg1
)->GetMargins();
14754 wxPyEndAllowThreads(__tstate
);
14755 if (PyErr_Occurred()) SWIG_fail
;
14757 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
14764 SWIGINTERN PyObject
*_wrap_VListBox_GetSelectionBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14765 PyObject
*resultobj
= 0;
14766 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14767 wxColour
*result
= 0 ;
14770 PyObject
*swig_obj
[1] ;
14772 if (!args
) SWIG_fail
;
14773 swig_obj
[0] = args
;
14774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14775 if (!SWIG_IsOK(res1
)) {
14776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_GetSelectionBackground" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
14778 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14782 wxColour
const &_result_ref
= ((wxPyVListBox
const *)arg1
)->GetSelectionBackground();
14783 result
= (wxColour
*) &_result_ref
;
14785 wxPyEndAllowThreads(__tstate
);
14786 if (PyErr_Occurred()) SWIG_fail
;
14788 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColour
, 0 | 0 );
14795 SWIGINTERN PyObject
*_wrap_VListBox_SetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14796 PyObject
*resultobj
= 0;
14797 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14803 PyObject
* obj0
= 0 ;
14804 PyObject
* obj1
= 0 ;
14805 char * kwnames
[] = {
14806 (char *) "self",(char *) "count", NULL
14809 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14810 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14811 if (!SWIG_IsOK(res1
)) {
14812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetItemCount" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14814 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14815 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14816 if (!SWIG_IsOK(ecode2
)) {
14817 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetItemCount" "', expected argument " "2"" of type '" "size_t""'");
14819 arg2
= static_cast< size_t >(val2
);
14821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14822 (arg1
)->SetItemCount(arg2
);
14823 wxPyEndAllowThreads(__tstate
);
14824 if (PyErr_Occurred()) SWIG_fail
;
14826 resultobj
= SWIG_Py_Void();
14833 SWIGINTERN PyObject
*_wrap_VListBox_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14834 PyObject
*resultobj
= 0;
14835 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14838 PyObject
*swig_obj
[1] ;
14840 if (!args
) SWIG_fail
;
14841 swig_obj
[0] = args
;
14842 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14843 if (!SWIG_IsOK(res1
)) {
14844 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Clear" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14846 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14850 wxPyEndAllowThreads(__tstate
);
14851 if (PyErr_Occurred()) SWIG_fail
;
14853 resultobj
= SWIG_Py_Void();
14860 SWIGINTERN PyObject
*_wrap_VListBox_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14861 PyObject
*resultobj
= 0;
14862 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14868 PyObject
* obj0
= 0 ;
14869 PyObject
* obj1
= 0 ;
14870 char * kwnames
[] = {
14871 (char *) "self",(char *) "selection", NULL
14874 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14875 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14876 if (!SWIG_IsOK(res1
)) {
14877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetSelection" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14879 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14880 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14881 if (!SWIG_IsOK(ecode2
)) {
14882 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetSelection" "', expected argument " "2"" of type '" "int""'");
14884 arg2
= static_cast< int >(val2
);
14886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14887 (arg1
)->SetSelection(arg2
);
14888 wxPyEndAllowThreads(__tstate
);
14889 if (PyErr_Occurred()) SWIG_fail
;
14891 resultobj
= SWIG_Py_Void();
14898 SWIGINTERN PyObject
*_wrap_VListBox_Select(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14899 PyObject
*resultobj
= 0;
14900 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14902 bool arg3
= (bool) true ;
14910 PyObject
* obj0
= 0 ;
14911 PyObject
* obj1
= 0 ;
14912 PyObject
* obj2
= 0 ;
14913 char * kwnames
[] = {
14914 (char *) "self",(char *) "item",(char *) "select", NULL
14917 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:VListBox_Select",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14918 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14919 if (!SWIG_IsOK(res1
)) {
14920 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Select" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14922 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14923 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14924 if (!SWIG_IsOK(ecode2
)) {
14925 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_Select" "', expected argument " "2"" of type '" "size_t""'");
14927 arg2
= static_cast< size_t >(val2
);
14929 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
14930 if (!SWIG_IsOK(ecode3
)) {
14931 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_Select" "', expected argument " "3"" of type '" "bool""'");
14933 arg3
= static_cast< bool >(val3
);
14936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14937 result
= (bool)(arg1
)->Select(arg2
,arg3
);
14938 wxPyEndAllowThreads(__tstate
);
14939 if (PyErr_Occurred()) SWIG_fail
;
14942 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14950 SWIGINTERN PyObject
*_wrap_VListBox_SelectRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14951 PyObject
*resultobj
= 0;
14952 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
14962 PyObject
* obj0
= 0 ;
14963 PyObject
* obj1
= 0 ;
14964 PyObject
* obj2
= 0 ;
14965 char * kwnames
[] = {
14966 (char *) "self",(char *) "_from",(char *) "to", NULL
14969 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SelectRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14970 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
14971 if (!SWIG_IsOK(res1
)) {
14972 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SelectRange" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
14974 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
14975 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
14976 if (!SWIG_IsOK(ecode2
)) {
14977 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SelectRange" "', expected argument " "2"" of type '" "size_t""'");
14979 arg2
= static_cast< size_t >(val2
);
14980 ecode3
= SWIG_AsVal_size_t(obj2
, &val3
);
14981 if (!SWIG_IsOK(ecode3
)) {
14982 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_SelectRange" "', expected argument " "3"" of type '" "size_t""'");
14984 arg3
= static_cast< size_t >(val3
);
14986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14987 result
= (bool)(arg1
)->SelectRange(arg2
,arg3
);
14988 wxPyEndAllowThreads(__tstate
);
14989 if (PyErr_Occurred()) SWIG_fail
;
14992 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15000 SWIGINTERN PyObject
*_wrap_VListBox_Toggle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15001 PyObject
*resultobj
= 0;
15002 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15008 PyObject
* obj0
= 0 ;
15009 PyObject
* obj1
= 0 ;
15010 char * kwnames
[] = {
15011 (char *) "self",(char *) "item", NULL
15014 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_Toggle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15015 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15016 if (!SWIG_IsOK(res1
)) {
15017 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_Toggle" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15019 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15020 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15021 if (!SWIG_IsOK(ecode2
)) {
15022 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_Toggle" "', expected argument " "2"" of type '" "size_t""'");
15024 arg2
= static_cast< size_t >(val2
);
15026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15027 (arg1
)->Toggle(arg2
);
15028 wxPyEndAllowThreads(__tstate
);
15029 if (PyErr_Occurred()) SWIG_fail
;
15031 resultobj
= SWIG_Py_Void();
15038 SWIGINTERN PyObject
*_wrap_VListBox_SelectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15039 PyObject
*resultobj
= 0;
15040 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15044 PyObject
*swig_obj
[1] ;
15046 if (!args
) SWIG_fail
;
15047 swig_obj
[0] = args
;
15048 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15049 if (!SWIG_IsOK(res1
)) {
15050 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SelectAll" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15052 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15055 result
= (bool)(arg1
)->SelectAll();
15056 wxPyEndAllowThreads(__tstate
);
15057 if (PyErr_Occurred()) SWIG_fail
;
15060 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15068 SWIGINTERN PyObject
*_wrap_VListBox_DeselectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15069 PyObject
*resultobj
= 0;
15070 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15074 PyObject
*swig_obj
[1] ;
15076 if (!args
) SWIG_fail
;
15077 swig_obj
[0] = args
;
15078 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15079 if (!SWIG_IsOK(res1
)) {
15080 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_DeselectAll" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15082 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15085 result
= (bool)(arg1
)->DeselectAll();
15086 wxPyEndAllowThreads(__tstate
);
15087 if (PyErr_Occurred()) SWIG_fail
;
15090 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15098 SWIGINTERN PyObject
*_wrap_VListBox_SetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15099 PyObject
*resultobj
= 0;
15100 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15101 wxPoint
*arg2
= 0 ;
15105 PyObject
* obj0
= 0 ;
15106 PyObject
* obj1
= 0 ;
15107 char * kwnames
[] = {
15108 (char *) "self",(char *) "pt", NULL
15111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15113 if (!SWIG_IsOK(res1
)) {
15114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetMargins" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15116 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15119 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
15122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15123 (arg1
)->SetMargins((wxPoint
const &)*arg2
);
15124 wxPyEndAllowThreads(__tstate
);
15125 if (PyErr_Occurred()) SWIG_fail
;
15127 resultobj
= SWIG_Py_Void();
15134 SWIGINTERN PyObject
*_wrap_VListBox_SetMarginsXY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15135 PyObject
*resultobj
= 0;
15136 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15145 PyObject
* obj0
= 0 ;
15146 PyObject
* obj1
= 0 ;
15147 PyObject
* obj2
= 0 ;
15148 char * kwnames
[] = {
15149 (char *) "self",(char *) "x",(char *) "y", NULL
15152 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SetMarginsXY",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15153 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15154 if (!SWIG_IsOK(res1
)) {
15155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15157 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15158 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15159 if (!SWIG_IsOK(ecode2
)) {
15160 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "2"" of type '" "int""'");
15162 arg2
= static_cast< int >(val2
);
15163 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15164 if (!SWIG_IsOK(ecode3
)) {
15165 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "VListBox_SetMarginsXY" "', expected argument " "3"" of type '" "int""'");
15167 arg3
= static_cast< int >(val3
);
15169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15170 (arg1
)->SetMargins(arg2
,arg3
);
15171 wxPyEndAllowThreads(__tstate
);
15172 if (PyErr_Occurred()) SWIG_fail
;
15174 resultobj
= SWIG_Py_Void();
15181 SWIGINTERN PyObject
*_wrap_VListBox_SetSelectionBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15182 PyObject
*resultobj
= 0;
15183 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15184 wxColour
*arg2
= 0 ;
15188 PyObject
* obj0
= 0 ;
15189 PyObject
* obj1
= 0 ;
15190 char * kwnames
[] = {
15191 (char *) "self",(char *) "col", NULL
15194 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelectionBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15195 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15196 if (!SWIG_IsOK(res1
)) {
15197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_SetSelectionBackground" "', expected argument " "1"" of type '" "wxPyVListBox *""'");
15199 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15202 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
15205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15206 (arg1
)->SetSelectionBackground((wxColour
const &)*arg2
);
15207 wxPyEndAllowThreads(__tstate
);
15208 if (PyErr_Occurred()) SWIG_fail
;
15210 resultobj
= SWIG_Py_Void();
15217 SWIGINTERN PyObject
*_wrap_VListBox_OnDrawSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15218 PyObject
*resultobj
= 0;
15219 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15230 PyObject
* obj0
= 0 ;
15231 PyObject
* obj1
= 0 ;
15232 PyObject
* obj2
= 0 ;
15233 PyObject
* obj3
= 0 ;
15234 char * kwnames
[] = {
15235 (char *) "self",(char *) "dc",(char *) "rect",(char *) "n", NULL
15238 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:VListBox_OnDrawSeparator",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15239 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15240 if (!SWIG_IsOK(res1
)) {
15241 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
15243 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15244 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
15245 if (!SWIG_IsOK(res2
)) {
15246 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "2"" of type '" "wxDC &""'");
15249 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "VListBox_OnDrawSeparator" "', expected argument " "2"" of type '" "wxDC &""'");
15251 arg2
= reinterpret_cast< wxDC
* >(argp2
);
15254 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
15256 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
15257 if (!SWIG_IsOK(ecode4
)) {
15258 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "VListBox_OnDrawSeparator" "', expected argument " "4"" of type '" "size_t""'");
15260 arg4
= static_cast< size_t >(val4
);
15262 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15263 ((wxPyVListBox
const *)arg1
)->OnDrawSeparator(*arg2
,*arg3
,arg4
);
15264 wxPyEndAllowThreads(__tstate
);
15265 if (PyErr_Occurred()) SWIG_fail
;
15267 resultobj
= SWIG_Py_Void();
15274 SWIGINTERN PyObject
*_wrap_VListBox_OnDrawBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15275 PyObject
*resultobj
= 0;
15276 wxPyVListBox
*arg1
= (wxPyVListBox
*) 0 ;
15287 PyObject
* obj0
= 0 ;
15288 PyObject
* obj1
= 0 ;
15289 PyObject
* obj2
= 0 ;
15290 PyObject
* obj3
= 0 ;
15291 char * kwnames
[] = {
15292 (char *) "self",(char *) "dc",(char *) "rect",(char *) "n", NULL
15295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:VListBox_OnDrawBackground",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyVListBox
, 0 | 0 );
15297 if (!SWIG_IsOK(res1
)) {
15298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "1"" of type '" "wxPyVListBox const *""'");
15300 arg1
= reinterpret_cast< wxPyVListBox
* >(argp1
);
15301 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxDC
, 0 );
15302 if (!SWIG_IsOK(res2
)) {
15303 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
15306 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "VListBox_OnDrawBackground" "', expected argument " "2"" of type '" "wxDC &""'");
15308 arg2
= reinterpret_cast< wxDC
* >(argp2
);
15311 if ( ! wxRect_helper(obj2
, &arg3
)) SWIG_fail
;
15313 ecode4
= SWIG_AsVal_size_t(obj3
, &val4
);
15314 if (!SWIG_IsOK(ecode4
)) {
15315 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "VListBox_OnDrawBackground" "', expected argument " "4"" of type '" "size_t""'");
15317 arg4
= static_cast< size_t >(val4
);
15319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15320 ((wxPyVListBox
const *)arg1
)->OnDrawBackground(*arg2
,(wxRect
const &)*arg3
,arg4
);
15321 wxPyEndAllowThreads(__tstate
);
15322 if (PyErr_Occurred()) SWIG_fail
;
15324 resultobj
= SWIG_Py_Void();
15331 SWIGINTERN PyObject
*VListBox_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15333 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15334 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyVListBox
, SWIG_NewClientData(obj
));
15335 return SWIG_Py_Void();
15338 SWIGINTERN PyObject
*VListBox_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15339 return SWIG_Python_InitShadowInstance(args
);
15342 SWIGINTERN PyObject
*_wrap_new_HtmlListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15343 PyObject
*resultobj
= 0;
15344 wxWindow
*arg1
= (wxWindow
*) 0 ;
15345 int arg2
= (int) wxID_ANY
;
15346 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
15347 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
15348 wxSize
const &arg4_defvalue
= wxDefaultSize
;
15349 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
15350 long arg5
= (long) 0 ;
15351 wxString
const &arg6_defvalue
= wxPyVListBoxNameStr
;
15352 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
15353 wxPyHtmlListBox
*result
= 0 ;
15362 bool temp6
= false ;
15363 PyObject
* obj0
= 0 ;
15364 PyObject
* obj1
= 0 ;
15365 PyObject
* obj2
= 0 ;
15366 PyObject
* obj3
= 0 ;
15367 PyObject
* obj4
= 0 ;
15368 PyObject
* obj5
= 0 ;
15369 char * kwnames
[] = {
15370 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15373 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
15374 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15375 if (!SWIG_IsOK(res1
)) {
15376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_HtmlListBox" "', expected argument " "1"" of type '" "wxWindow *""'");
15378 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
15380 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15381 if (!SWIG_IsOK(ecode2
)) {
15382 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_HtmlListBox" "', expected argument " "2"" of type '" "int""'");
15384 arg2
= static_cast< int >(val2
);
15389 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
15395 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
15399 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
15400 if (!SWIG_IsOK(ecode5
)) {
15401 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_HtmlListBox" "', expected argument " "5"" of type '" "long""'");
15403 arg5
= static_cast< long >(val5
);
15407 arg6
= wxString_in_helper(obj5
);
15408 if (arg6
== NULL
) SWIG_fail
;
15413 if (!wxPyCheckForApp()) SWIG_fail
;
15414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15415 result
= (wxPyHtmlListBox
*)new wxPyHtmlListBox(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
15416 wxPyEndAllowThreads(__tstate
);
15417 if (PyErr_Occurred()) SWIG_fail
;
15419 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_NEW
| 0 );
15434 SWIGINTERN PyObject
*_wrap_new_PreHtmlListBox(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15435 PyObject
*resultobj
= 0;
15436 wxPyHtmlListBox
*result
= 0 ;
15438 if (!SWIG_Python_UnpackTuple(args
,"new_PreHtmlListBox",0,0,0)) SWIG_fail
;
15440 if (!wxPyCheckForApp()) SWIG_fail
;
15441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15442 result
= (wxPyHtmlListBox
*)new wxPyHtmlListBox();
15443 wxPyEndAllowThreads(__tstate
);
15444 if (PyErr_Occurred()) SWIG_fail
;
15446 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_OWN
| 0 );
15453 SWIGINTERN PyObject
*_wrap_HtmlListBox__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15454 PyObject
*resultobj
= 0;
15455 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15456 PyObject
*arg2
= (PyObject
*) 0 ;
15457 PyObject
*arg3
= (PyObject
*) 0 ;
15460 PyObject
* obj0
= 0 ;
15461 PyObject
* obj1
= 0 ;
15462 PyObject
* obj2
= 0 ;
15463 char * kwnames
[] = {
15464 (char *) "self",(char *) "self",(char *) "_class", NULL
15467 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15468 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15469 if (!SWIG_IsOK(res1
)) {
15470 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15472 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15477 (arg1
)->_setCallbackInfo(arg2
,arg3
);
15478 wxPyEndAllowThreads(__tstate
);
15479 if (PyErr_Occurred()) SWIG_fail
;
15481 resultobj
= SWIG_Py_Void();
15488 SWIGINTERN PyObject
*_wrap_HtmlListBox_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15489 PyObject
*resultobj
= 0;
15490 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15491 wxWindow
*arg2
= (wxWindow
*) 0 ;
15492 int arg3
= (int) wxID_ANY
;
15493 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
15494 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
15495 wxSize
const &arg5_defvalue
= wxDefaultSize
;
15496 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
15497 long arg6
= (long) 0 ;
15498 wxString
const &arg7_defvalue
= wxPyVListBoxNameStr
;
15499 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
15511 bool temp7
= false ;
15512 PyObject
* obj0
= 0 ;
15513 PyObject
* obj1
= 0 ;
15514 PyObject
* obj2
= 0 ;
15515 PyObject
* obj3
= 0 ;
15516 PyObject
* obj4
= 0 ;
15517 PyObject
* obj5
= 0 ;
15518 PyObject
* obj6
= 0 ;
15519 char * kwnames
[] = {
15520 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
15523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
15524 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15525 if (!SWIG_IsOK(res1
)) {
15526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_Create" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15528 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15529 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
15530 if (!SWIG_IsOK(res2
)) {
15531 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "HtmlListBox_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
15533 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
15535 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15536 if (!SWIG_IsOK(ecode3
)) {
15537 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "HtmlListBox_Create" "', expected argument " "3"" of type '" "int""'");
15539 arg3
= static_cast< int >(val3
);
15544 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
15550 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
15554 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
15555 if (!SWIG_IsOK(ecode6
)) {
15556 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "HtmlListBox_Create" "', expected argument " "6"" of type '" "long""'");
15558 arg6
= static_cast< long >(val6
);
15562 arg7
= wxString_in_helper(obj6
);
15563 if (arg7
== NULL
) SWIG_fail
;
15568 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15569 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
15570 wxPyEndAllowThreads(__tstate
);
15571 if (PyErr_Occurred()) SWIG_fail
;
15574 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15590 SWIGINTERN PyObject
*_wrap_HtmlListBox_SetItemCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15591 PyObject
*resultobj
= 0;
15592 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15598 PyObject
* obj0
= 0 ;
15599 PyObject
* obj1
= 0 ;
15600 char * kwnames
[] = {
15601 (char *) "self",(char *) "count", NULL
15604 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15605 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15606 if (!SWIG_IsOK(res1
)) {
15607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_SetItemCount" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15609 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15610 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15611 if (!SWIG_IsOK(ecode2
)) {
15612 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "HtmlListBox_SetItemCount" "', expected argument " "2"" of type '" "size_t""'");
15614 arg2
= static_cast< size_t >(val2
);
15616 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15617 (arg1
)->SetItemCount(arg2
);
15618 wxPyEndAllowThreads(__tstate
);
15619 if (PyErr_Occurred()) SWIG_fail
;
15621 resultobj
= SWIG_Py_Void();
15628 SWIGINTERN PyObject
*_wrap_HtmlListBox_GetFileSystem(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15629 PyObject
*resultobj
= 0;
15630 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15631 wxFileSystem
*result
= 0 ;
15634 PyObject
*swig_obj
[1] ;
15636 if (!args
) SWIG_fail
;
15637 swig_obj
[0] = args
;
15638 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15639 if (!SWIG_IsOK(res1
)) {
15640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_GetFileSystem" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15642 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15646 wxFileSystem
&_result_ref
= (arg1
)->GetFileSystem();
15647 result
= (wxFileSystem
*) &_result_ref
;
15649 wxPyEndAllowThreads(__tstate
);
15650 if (PyErr_Occurred()) SWIG_fail
;
15652 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileSystem
, 0 | 0 );
15659 SWIGINTERN PyObject
*_wrap_HtmlListBox_OnLinkClicked(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15660 PyObject
*resultobj
= 0;
15661 wxPyHtmlListBox
*arg1
= (wxPyHtmlListBox
*) 0 ;
15663 wxHtmlLinkInfo
*arg3
= 0 ;
15670 PyObject
* obj0
= 0 ;
15671 PyObject
* obj1
= 0 ;
15672 PyObject
* obj2
= 0 ;
15673 char * kwnames
[] = {
15674 (char *) "self",(char *) "n",(char *) "link", NULL
15677 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlListBox_OnLinkClicked",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15678 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyHtmlListBox
, 0 | 0 );
15679 if (!SWIG_IsOK(res1
)) {
15680 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "1"" of type '" "wxPyHtmlListBox *""'");
15682 arg1
= reinterpret_cast< wxPyHtmlListBox
* >(argp1
);
15683 ecode2
= SWIG_AsVal_size_t(obj1
, &val2
);
15684 if (!SWIG_IsOK(ecode2
)) {
15685 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "2"" of type '" "size_t""'");
15687 arg2
= static_cast< size_t >(val2
);
15688 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxHtmlLinkInfo
, 0 | 0);
15689 if (!SWIG_IsOK(res3
)) {
15690 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "3"" of type '" "wxHtmlLinkInfo const &""'");
15693 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "HtmlListBox_OnLinkClicked" "', expected argument " "3"" of type '" "wxHtmlLinkInfo const &""'");
15695 arg3
= reinterpret_cast< wxHtmlLinkInfo
* >(argp3
);
15697 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15698 (arg1
)->OnLinkClicked(arg2
,(wxHtmlLinkInfo
const &)*arg3
);
15699 wxPyEndAllowThreads(__tstate
);
15700 if (PyErr_Occurred()) SWIG_fail
;
15702 resultobj
= SWIG_Py_Void();
15709 SWIGINTERN PyObject
*HtmlListBox_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15711 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
15712 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyHtmlListBox
, SWIG_NewClientData(obj
));
15713 return SWIG_Py_Void();
15716 SWIGINTERN PyObject
*HtmlListBox_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15717 return SWIG_Python_InitShadowInstance(args
);
15720 SWIGINTERN PyObject
*_wrap_new_TaskBarIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15721 PyObject
*resultobj
= 0;
15722 wxPyTaskBarIcon
*result
= 0 ;
15724 if (!SWIG_Python_UnpackTuple(args
,"new_TaskBarIcon",0,0,0)) SWIG_fail
;
15726 if (!wxPyCheckForApp()) SWIG_fail
;
15727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15728 result
= (wxPyTaskBarIcon
*)new wxPyTaskBarIcon();
15729 wxPyEndAllowThreads(__tstate
);
15730 if (PyErr_Occurred()) SWIG_fail
;
15732 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_NEW
| 0 );
15739 SWIGINTERN PyObject
*_wrap_delete_TaskBarIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15740 PyObject
*resultobj
= 0;
15741 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15744 PyObject
*swig_obj
[1] ;
15746 if (!args
) SWIG_fail
;
15747 swig_obj
[0] = args
;
15748 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_DISOWN
| 0 );
15749 if (!SWIG_IsOK(res1
)) {
15750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_TaskBarIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15752 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15754 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15757 wxPyEndAllowThreads(__tstate
);
15758 if (PyErr_Occurred()) SWIG_fail
;
15760 resultobj
= SWIG_Py_Void();
15767 SWIGINTERN PyObject
*_wrap_TaskBarIcon__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15768 PyObject
*resultobj
= 0;
15769 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15770 PyObject
*arg2
= (PyObject
*) 0 ;
15771 PyObject
*arg3
= (PyObject
*) 0 ;
15777 PyObject
* obj0
= 0 ;
15778 PyObject
* obj1
= 0 ;
15779 PyObject
* obj2
= 0 ;
15780 PyObject
* obj3
= 0 ;
15781 char * kwnames
[] = {
15782 (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL
15785 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TaskBarIcon__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
15786 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15787 if (!SWIG_IsOK(res1
)) {
15788 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15790 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15793 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
15794 if (!SWIG_IsOK(ecode4
)) {
15795 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "TaskBarIcon__setCallbackInfo" "', expected argument " "4"" of type '" "int""'");
15797 arg4
= static_cast< int >(val4
);
15799 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15800 (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
);
15801 wxPyEndAllowThreads(__tstate
);
15802 if (PyErr_Occurred()) SWIG_fail
;
15804 resultobj
= SWIG_Py_Void();
15811 SWIGINTERN PyObject
*_wrap_TaskBarIcon_Destroy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15812 PyObject
*resultobj
= 0;
15813 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15816 PyObject
*swig_obj
[1] ;
15818 if (!args
) SWIG_fail
;
15819 swig_obj
[0] = args
;
15820 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15821 if (!SWIG_IsOK(res1
)) {
15822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_Destroy" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15824 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15827 wxPyTaskBarIcon_Destroy(arg1
);
15828 wxPyEndAllowThreads(__tstate
);
15829 if (PyErr_Occurred()) SWIG_fail
;
15831 resultobj
= SWIG_Py_Void();
15838 SWIGINTERN PyObject
*_wrap_TaskBarIcon_IsOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15839 PyObject
*resultobj
= 0;
15840 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15844 PyObject
*swig_obj
[1] ;
15846 if (!args
) SWIG_fail
;
15847 swig_obj
[0] = args
;
15848 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15849 if (!SWIG_IsOK(res1
)) {
15850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_IsOk" "', expected argument " "1"" of type '" "wxPyTaskBarIcon const *""'");
15852 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15855 result
= (bool)((wxPyTaskBarIcon
const *)arg1
)->IsOk();
15856 wxPyEndAllowThreads(__tstate
);
15857 if (PyErr_Occurred()) SWIG_fail
;
15860 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15868 SWIGINTERN PyObject
*_wrap_TaskBarIcon_IsIconInstalled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15869 PyObject
*resultobj
= 0;
15870 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15874 PyObject
*swig_obj
[1] ;
15876 if (!args
) SWIG_fail
;
15877 swig_obj
[0] = args
;
15878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15879 if (!SWIG_IsOK(res1
)) {
15880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_IsIconInstalled" "', expected argument " "1"" of type '" "wxPyTaskBarIcon const *""'");
15882 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15885 result
= (bool)((wxPyTaskBarIcon
const *)arg1
)->IsIconInstalled();
15886 wxPyEndAllowThreads(__tstate
);
15887 if (PyErr_Occurred()) SWIG_fail
;
15890 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15898 SWIGINTERN PyObject
*_wrap_TaskBarIcon_SetIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15899 PyObject
*resultobj
= 0;
15900 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15902 wxString
const &arg3_defvalue
= wxPyEmptyString
;
15903 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
15909 bool temp3
= false ;
15910 PyObject
* obj0
= 0 ;
15911 PyObject
* obj1
= 0 ;
15912 PyObject
* obj2
= 0 ;
15913 char * kwnames
[] = {
15914 (char *) "self",(char *) "icon",(char *) "tooltip", NULL
15917 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TaskBarIcon_SetIcon",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15918 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15919 if (!SWIG_IsOK(res1
)) {
15920 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_SetIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15922 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15923 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxIcon
, 0 | 0);
15924 if (!SWIG_IsOK(res2
)) {
15925 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TaskBarIcon_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
15928 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "TaskBarIcon_SetIcon" "', expected argument " "2"" of type '" "wxIcon const &""'");
15930 arg2
= reinterpret_cast< wxIcon
* >(argp2
);
15933 arg3
= wxString_in_helper(obj2
);
15934 if (arg3
== NULL
) SWIG_fail
;
15939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15940 result
= (bool)(arg1
)->SetIcon((wxIcon
const &)*arg2
,(wxString
const &)*arg3
);
15941 wxPyEndAllowThreads(__tstate
);
15942 if (PyErr_Occurred()) SWIG_fail
;
15945 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15961 SWIGINTERN PyObject
*_wrap_TaskBarIcon_RemoveIcon(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15962 PyObject
*resultobj
= 0;
15963 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15967 PyObject
*swig_obj
[1] ;
15969 if (!args
) SWIG_fail
;
15970 swig_obj
[0] = args
;
15971 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
15972 if (!SWIG_IsOK(res1
)) {
15973 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_RemoveIcon" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
15975 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
15977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15978 result
= (bool)(arg1
)->RemoveIcon();
15979 wxPyEndAllowThreads(__tstate
);
15980 if (PyErr_Occurred()) SWIG_fail
;
15983 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15991 SWIGINTERN PyObject
*_wrap_TaskBarIcon_PopupMenu(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15992 PyObject
*resultobj
= 0;
15993 wxPyTaskBarIcon
*arg1
= (wxPyTaskBarIcon
*) 0 ;
15994 wxMenu
*arg2
= (wxMenu
*) 0 ;
16000 PyObject
* obj0
= 0 ;
16001 PyObject
* obj1
= 0 ;
16002 char * kwnames
[] = {
16003 (char *) "self",(char *) "menu", NULL
16006 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TaskBarIcon_PopupMenu",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16007 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyTaskBarIcon
, 0 | 0 );
16008 if (!SWIG_IsOK(res1
)) {
16009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TaskBarIcon_PopupMenu" "', expected argument " "1"" of type '" "wxPyTaskBarIcon *""'");
16011 arg1
= reinterpret_cast< wxPyTaskBarIcon
* >(argp1
);
16012 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMenu
, 0 | 0 );
16013 if (!SWIG_IsOK(res2
)) {
16014 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "TaskBarIcon_PopupMenu" "', expected argument " "2"" of type '" "wxMenu *""'");
16016 arg2
= reinterpret_cast< wxMenu
* >(argp2
);
16018 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16019 result
= (bool)(arg1
)->PopupMenu(arg2
);
16020 wxPyEndAllowThreads(__tstate
);
16021 if (PyErr_Occurred()) SWIG_fail
;
16024 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16032 SWIGINTERN PyObject
*TaskBarIcon_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16034 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16035 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_NewClientData(obj
));
16036 return SWIG_Py_Void();
16039 SWIGINTERN PyObject
*TaskBarIcon_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16040 return SWIG_Python_InitShadowInstance(args
);
16043 SWIGINTERN PyObject
*_wrap_new_TaskBarIconEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16044 PyObject
*resultobj
= 0;
16046 wxTaskBarIcon
*arg2
= (wxTaskBarIcon
*) 0 ;
16047 wxTaskBarIconEvent
*result
= 0 ;
16052 PyObject
* obj0
= 0 ;
16053 PyObject
* obj1
= 0 ;
16054 char * kwnames
[] = {
16055 (char *) "evtType",(char *) "tbIcon", NULL
16058 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_TaskBarIconEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16059 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
16060 if (!SWIG_IsOK(ecode1
)) {
16061 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_TaskBarIconEvent" "', expected argument " "1"" of type '" "wxEventType""'");
16063 arg1
= static_cast< wxEventType
>(val1
);
16064 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxTaskBarIcon
, 0 | 0 );
16065 if (!SWIG_IsOK(res2
)) {
16066 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_TaskBarIconEvent" "', expected argument " "2"" of type '" "wxTaskBarIcon *""'");
16068 arg2
= reinterpret_cast< wxTaskBarIcon
* >(argp2
);
16070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16071 result
= (wxTaskBarIconEvent
*)new wxTaskBarIconEvent(arg1
,arg2
);
16072 wxPyEndAllowThreads(__tstate
);
16073 if (PyErr_Occurred()) SWIG_fail
;
16075 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTaskBarIconEvent
, SWIG_POINTER_NEW
| 0 );
16082 SWIGINTERN PyObject
*TaskBarIconEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16084 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16085 SWIG_TypeNewClientData(SWIGTYPE_p_wxTaskBarIconEvent
, SWIG_NewClientData(obj
));
16086 return SWIG_Py_Void();
16089 SWIGINTERN PyObject
*TaskBarIconEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16090 return SWIG_Python_InitShadowInstance(args
);
16093 SWIGINTERN
int FileSelectorPromptStr_set(PyObject
*) {
16094 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorPromptStr is read-only.");
16099 SWIGINTERN PyObject
*FileSelectorPromptStr_get(void) {
16100 PyObject
*pyobj
= 0;
16104 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
16106 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len());
16113 SWIGINTERN
int DirSelectorPromptStr_set(PyObject
*) {
16114 SWIG_Error(SWIG_AttributeError
,"Variable DirSelectorPromptStr is read-only.");
16119 SWIGINTERN PyObject
*DirSelectorPromptStr_get(void) {
16120 PyObject
*pyobj
= 0;
16124 pyobj
= PyUnicode_FromWideChar((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
16126 pyobj
= PyString_FromStringAndSize((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len());
16133 SWIGINTERN
int DirDialogNameStr_set(PyObject
*) {
16134 SWIG_Error(SWIG_AttributeError
,"Variable DirDialogNameStr is read-only.");
16139 SWIGINTERN PyObject
*DirDialogNameStr_get(void) {
16140 PyObject
*pyobj
= 0;
16144 pyobj
= PyUnicode_FromWideChar((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len());
16146 pyobj
= PyString_FromStringAndSize((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len());
16153 SWIGINTERN
int FileSelectorDefaultWildcardStr_set(PyObject
*) {
16154 SWIG_Error(SWIG_AttributeError
,"Variable FileSelectorDefaultWildcardStr is read-only.");
16159 SWIGINTERN PyObject
*FileSelectorDefaultWildcardStr_get(void) {
16160 PyObject
*pyobj
= 0;
16164 pyobj
= PyUnicode_FromWideChar((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
16166 pyobj
= PyString_FromStringAndSize((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len());
16173 SWIGINTERN
int GetTextFromUserPromptStr_set(PyObject
*) {
16174 SWIG_Error(SWIG_AttributeError
,"Variable GetTextFromUserPromptStr is read-only.");
16179 SWIGINTERN PyObject
*GetTextFromUserPromptStr_get(void) {
16180 PyObject
*pyobj
= 0;
16184 pyobj
= PyUnicode_FromWideChar((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len());
16186 pyobj
= PyString_FromStringAndSize((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len());
16193 SWIGINTERN
int MessageBoxCaptionStr_set(PyObject
*) {
16194 SWIG_Error(SWIG_AttributeError
,"Variable MessageBoxCaptionStr is read-only.");
16199 SWIGINTERN PyObject
*MessageBoxCaptionStr_get(void) {
16200 PyObject
*pyobj
= 0;
16204 pyobj
= PyUnicode_FromWideChar((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len());
16206 pyobj
= PyString_FromStringAndSize((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len());
16213 SWIGINTERN PyObject
*_wrap_new_ColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16214 PyObject
*resultobj
= 0;
16215 wxColourData
*result
= 0 ;
16217 if (!SWIG_Python_UnpackTuple(args
,"new_ColourData",0,0,0)) SWIG_fail
;
16219 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16220 result
= (wxColourData
*)new wxColourData();
16221 wxPyEndAllowThreads(__tstate
);
16222 if (PyErr_Occurred()) SWIG_fail
;
16224 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourData
, SWIG_POINTER_NEW
| 0 );
16231 SWIGINTERN PyObject
*_wrap_delete_ColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16232 PyObject
*resultobj
= 0;
16233 wxColourData
*arg1
= (wxColourData
*) 0 ;
16236 PyObject
*swig_obj
[1] ;
16238 if (!args
) SWIG_fail
;
16239 swig_obj
[0] = args
;
16240 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, SWIG_POINTER_DISOWN
| 0 );
16241 if (!SWIG_IsOK(res1
)) {
16242 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_ColourData" "', expected argument " "1"" of type '" "wxColourData *""'");
16244 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16246 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16249 wxPyEndAllowThreads(__tstate
);
16250 if (PyErr_Occurred()) SWIG_fail
;
16252 resultobj
= SWIG_Py_Void();
16259 SWIGINTERN PyObject
*_wrap_ColourData_GetChooseFull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16260 PyObject
*resultobj
= 0;
16261 wxColourData
*arg1
= (wxColourData
*) 0 ;
16265 PyObject
*swig_obj
[1] ;
16267 if (!args
) SWIG_fail
;
16268 swig_obj
[0] = args
;
16269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16270 if (!SWIG_IsOK(res1
)) {
16271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetChooseFull" "', expected argument " "1"" of type '" "wxColourData *""'");
16273 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16276 result
= (bool)(arg1
)->GetChooseFull();
16277 wxPyEndAllowThreads(__tstate
);
16278 if (PyErr_Occurred()) SWIG_fail
;
16281 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16289 SWIGINTERN PyObject
*_wrap_ColourData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16290 PyObject
*resultobj
= 0;
16291 wxColourData
*arg1
= (wxColourData
*) 0 ;
16295 PyObject
*swig_obj
[1] ;
16297 if (!args
) SWIG_fail
;
16298 swig_obj
[0] = args
;
16299 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16300 if (!SWIG_IsOK(res1
)) {
16301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16303 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16306 result
= (arg1
)->GetColour();
16307 wxPyEndAllowThreads(__tstate
);
16308 if (PyErr_Occurred()) SWIG_fail
;
16310 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16317 SWIGINTERN PyObject
*_wrap_ColourData_GetCustomColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16318 PyObject
*resultobj
= 0;
16319 wxColourData
*arg1
= (wxColourData
*) 0 ;
16326 PyObject
* obj0
= 0 ;
16327 PyObject
* obj1
= 0 ;
16328 char * kwnames
[] = {
16329 (char *) "self",(char *) "i", NULL
16332 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_GetCustomColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16333 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16334 if (!SWIG_IsOK(res1
)) {
16335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_GetCustomColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16337 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16338 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16339 if (!SWIG_IsOK(ecode2
)) {
16340 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_GetCustomColour" "', expected argument " "2"" of type '" "int""'");
16342 arg2
= static_cast< int >(val2
);
16344 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16345 result
= (arg1
)->GetCustomColour(arg2
);
16346 wxPyEndAllowThreads(__tstate
);
16347 if (PyErr_Occurred()) SWIG_fail
;
16349 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16356 SWIGINTERN PyObject
*_wrap_ColourData_SetChooseFull(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16357 PyObject
*resultobj
= 0;
16358 wxColourData
*arg1
= (wxColourData
*) 0 ;
16364 PyObject
* obj0
= 0 ;
16365 PyObject
* obj1
= 0 ;
16366 char * kwnames
[] = {
16367 (char *) "self",(char *) "flag", NULL
16370 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetChooseFull",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16371 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16372 if (!SWIG_IsOK(res1
)) {
16373 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetChooseFull" "', expected argument " "1"" of type '" "wxColourData *""'");
16375 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16376 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16377 if (!SWIG_IsOK(ecode2
)) {
16378 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_SetChooseFull" "', expected argument " "2"" of type '" "int""'");
16380 arg2
= static_cast< int >(val2
);
16382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16383 (arg1
)->SetChooseFull(arg2
);
16384 wxPyEndAllowThreads(__tstate
);
16385 if (PyErr_Occurred()) SWIG_fail
;
16387 resultobj
= SWIG_Py_Void();
16394 SWIGINTERN PyObject
*_wrap_ColourData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16395 PyObject
*resultobj
= 0;
16396 wxColourData
*arg1
= (wxColourData
*) 0 ;
16397 wxColour
*arg2
= 0 ;
16401 PyObject
* obj0
= 0 ;
16402 PyObject
* obj1
= 0 ;
16403 char * kwnames
[] = {
16404 (char *) "self",(char *) "colour", NULL
16407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16409 if (!SWIG_IsOK(res1
)) {
16410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16412 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16415 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
16418 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16419 (arg1
)->SetColour((wxColour
const &)*arg2
);
16420 wxPyEndAllowThreads(__tstate
);
16421 if (PyErr_Occurred()) SWIG_fail
;
16423 resultobj
= SWIG_Py_Void();
16430 SWIGINTERN PyObject
*_wrap_ColourData_SetCustomColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16431 PyObject
*resultobj
= 0;
16432 wxColourData
*arg1
= (wxColourData
*) 0 ;
16434 wxColour
*arg3
= 0 ;
16440 PyObject
* obj0
= 0 ;
16441 PyObject
* obj1
= 0 ;
16442 PyObject
* obj2
= 0 ;
16443 char * kwnames
[] = {
16444 (char *) "self",(char *) "i",(char *) "colour", NULL
16447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ColourData_SetCustomColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16449 if (!SWIG_IsOK(res1
)) {
16450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourData_SetCustomColour" "', expected argument " "1"" of type '" "wxColourData *""'");
16452 arg1
= reinterpret_cast< wxColourData
* >(argp1
);
16453 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16454 if (!SWIG_IsOK(ecode2
)) {
16455 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ColourData_SetCustomColour" "', expected argument " "2"" of type '" "int""'");
16457 arg2
= static_cast< int >(val2
);
16460 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16463 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16464 (arg1
)->SetCustomColour(arg2
,(wxColour
const &)*arg3
);
16465 wxPyEndAllowThreads(__tstate
);
16466 if (PyErr_Occurred()) SWIG_fail
;
16468 resultobj
= SWIG_Py_Void();
16475 SWIGINTERN PyObject
*ColourData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16477 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16478 SWIG_TypeNewClientData(SWIGTYPE_p_wxColourData
, SWIG_NewClientData(obj
));
16479 return SWIG_Py_Void();
16482 SWIGINTERN PyObject
*ColourData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16483 return SWIG_Python_InitShadowInstance(args
);
16486 SWIGINTERN PyObject
*_wrap_new_ColourDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16487 PyObject
*resultobj
= 0;
16488 wxWindow
*arg1
= (wxWindow
*) 0 ;
16489 wxColourData
*arg2
= (wxColourData
*) NULL
;
16490 wxColourDialog
*result
= 0 ;
16495 PyObject
* obj0
= 0 ;
16496 PyObject
* obj1
= 0 ;
16497 char * kwnames
[] = {
16498 (char *) "parent",(char *) "data", NULL
16501 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_ColourDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16502 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16503 if (!SWIG_IsOK(res1
)) {
16504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_ColourDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
16506 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16508 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxColourData
, 0 | 0 );
16509 if (!SWIG_IsOK(res2
)) {
16510 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_ColourDialog" "', expected argument " "2"" of type '" "wxColourData *""'");
16512 arg2
= reinterpret_cast< wxColourData
* >(argp2
);
16515 if (!wxPyCheckForApp()) SWIG_fail
;
16516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16517 result
= (wxColourDialog
*)new wxColourDialog(arg1
,arg2
);
16518 wxPyEndAllowThreads(__tstate
);
16519 if (PyErr_Occurred()) SWIG_fail
;
16521 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourDialog
, SWIG_POINTER_NEW
| 0 );
16528 SWIGINTERN PyObject
*_wrap_ColourDialog_GetColourData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16529 PyObject
*resultobj
= 0;
16530 wxColourDialog
*arg1
= (wxColourDialog
*) 0 ;
16531 wxColourData
*result
= 0 ;
16534 PyObject
*swig_obj
[1] ;
16536 if (!args
) SWIG_fail
;
16537 swig_obj
[0] = args
;
16538 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxColourDialog
, 0 | 0 );
16539 if (!SWIG_IsOK(res1
)) {
16540 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ColourDialog_GetColourData" "', expected argument " "1"" of type '" "wxColourDialog *""'");
16542 arg1
= reinterpret_cast< wxColourDialog
* >(argp1
);
16544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16546 wxColourData
&_result_ref
= (arg1
)->GetColourData();
16547 result
= (wxColourData
*) &_result_ref
;
16549 wxPyEndAllowThreads(__tstate
);
16550 if (PyErr_Occurred()) SWIG_fail
;
16552 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxColourData
, 0 | 0 );
16559 SWIGINTERN PyObject
*ColourDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16561 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
16562 SWIG_TypeNewClientData(SWIGTYPE_p_wxColourDialog
, SWIG_NewClientData(obj
));
16563 return SWIG_Py_Void();
16566 SWIGINTERN PyObject
*ColourDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16567 return SWIG_Python_InitShadowInstance(args
);
16570 SWIGINTERN PyObject
*_wrap_GetColourFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16571 PyObject
*resultobj
= 0;
16572 wxWindow
*arg1
= (wxWindow
*) (wxWindow
*) NULL
;
16573 wxColour
const &arg2_defvalue
= wxNullColour
;
16574 wxColour
*arg2
= (wxColour
*) &arg2_defvalue
;
16575 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16576 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16581 bool temp3
= false ;
16582 PyObject
* obj0
= 0 ;
16583 PyObject
* obj1
= 0 ;
16584 PyObject
* obj2
= 0 ;
16585 char * kwnames
[] = {
16586 (char *) "parent",(char *) "colInit",(char *) "caption", NULL
16589 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:GetColourFromUser",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16591 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16592 if (!SWIG_IsOK(res1
)) {
16593 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GetColourFromUser" "', expected argument " "1"" of type '" "wxWindow *""'");
16595 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16600 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
16605 arg3
= wxString_in_helper(obj2
);
16606 if (arg3
== NULL
) SWIG_fail
;
16611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16612 result
= wxGetColourFromUser(arg1
,(wxColour
const &)*arg2
,(wxString
const &)*arg3
);
16613 wxPyEndAllowThreads(__tstate
);
16614 if (PyErr_Occurred()) SWIG_fail
;
16616 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
16631 SWIGINTERN PyObject
*_wrap_new_DirDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16632 PyObject
*resultobj
= 0;
16633 wxWindow
*arg1
= (wxWindow
*) 0 ;
16634 wxString
const &arg2_defvalue
= wxPyDirSelectorPromptStr
;
16635 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
16636 wxString
const &arg3_defvalue
= wxPyEmptyString
;
16637 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16638 long arg4
= (long) 0 ;
16639 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
16640 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
16641 wxSize
const &arg6_defvalue
= wxDefaultSize
;
16642 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
16643 wxString
const &arg7_defvalue
= wxPyDirDialogNameStr
;
16644 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
16645 wxDirDialog
*result
= 0 ;
16648 bool temp2
= false ;
16649 bool temp3
= false ;
16654 bool temp7
= false ;
16655 PyObject
* obj0
= 0 ;
16656 PyObject
* obj1
= 0 ;
16657 PyObject
* obj2
= 0 ;
16658 PyObject
* obj3
= 0 ;
16659 PyObject
* obj4
= 0 ;
16660 PyObject
* obj5
= 0 ;
16661 PyObject
* obj6
= 0 ;
16662 char * kwnames
[] = {
16663 (char *) "parent",(char *) "message",(char *) "defaultPath",(char *) "style",(char *) "pos",(char *) "size",(char *) "name", NULL
16666 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_DirDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
16667 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16668 if (!SWIG_IsOK(res1
)) {
16669 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_DirDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
16671 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
16674 arg2
= wxString_in_helper(obj1
);
16675 if (arg2
== NULL
) SWIG_fail
;
16681 arg3
= wxString_in_helper(obj2
);
16682 if (arg3
== NULL
) SWIG_fail
;
16687 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
16688 if (!SWIG_IsOK(ecode4
)) {
16689 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_DirDialog" "', expected argument " "4"" of type '" "long""'");
16691 arg4
= static_cast< long >(val4
);
16696 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
16702 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
16707 arg7
= wxString_in_helper(obj6
);
16708 if (arg7
== NULL
) SWIG_fail
;
16713 if (!wxPyCheckForApp()) SWIG_fail
;
16714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16715 result
= (wxDirDialog
*)new wxDirDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,(wxString
const &)*arg7
);
16716 wxPyEndAllowThreads(__tstate
);
16717 if (PyErr_Occurred()) SWIG_fail
;
16719 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_NEW
| 0 );
16750 SWIGINTERN PyObject
*_wrap_new_PreDirDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16751 PyObject
*resultobj
= 0;
16752 wxDirDialog
*result
= 0 ;
16754 if (!SWIG_Python_UnpackTuple(args
,"new_PreDirDialog",0,0,0)) SWIG_fail
;
16756 if (!wxPyCheckForApp()) SWIG_fail
;
16757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16758 result
= (wxDirDialog
*)new wxDirDialog();
16759 wxPyEndAllowThreads(__tstate
);
16760 if (PyErr_Occurred()) SWIG_fail
;
16762 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_OWN
| 0 );
16769 SWIGINTERN PyObject
*_wrap_DirDialog_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16770 PyObject
*resultobj
= 0;
16771 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16772 wxWindow
*arg2
= (wxWindow
*) 0 ;
16773 wxString
const &arg3_defvalue
= wxDirSelectorPromptStr
;
16774 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
16775 wxString
const &arg4_defvalue
= wxEmptyString
;
16776 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
16777 long arg5
= (long) wxDD_DEFAULT_STYLE
;
16778 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
16779 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
16780 wxSize
const &arg7_defvalue
= wxDefaultSize
;
16781 wxSize
*arg7
= (wxSize
*) &arg7_defvalue
;
16782 wxString
const &arg8_defvalue
= wxPyDirDialogNameStr
;
16783 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
16789 bool temp3
= false ;
16790 bool temp4
= false ;
16795 bool temp8
= false ;
16796 PyObject
* obj0
= 0 ;
16797 PyObject
* obj1
= 0 ;
16798 PyObject
* obj2
= 0 ;
16799 PyObject
* obj3
= 0 ;
16800 PyObject
* obj4
= 0 ;
16801 PyObject
* obj5
= 0 ;
16802 PyObject
* obj6
= 0 ;
16803 PyObject
* obj7
= 0 ;
16804 char * kwnames
[] = {
16805 (char *) "self",(char *) "parent",(char *) "title",(char *) "defaultPath",(char *) "style",(char *) "pos",(char *) "sz",(char *) "name", NULL
16808 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:DirDialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
16809 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16810 if (!SWIG_IsOK(res1
)) {
16811 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_Create" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16813 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16814 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
16815 if (!SWIG_IsOK(res2
)) {
16816 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "DirDialog_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
16818 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
16821 arg3
= wxString_in_helper(obj2
);
16822 if (arg3
== NULL
) SWIG_fail
;
16828 arg4
= wxString_in_helper(obj3
);
16829 if (arg4
== NULL
) SWIG_fail
;
16834 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
16835 if (!SWIG_IsOK(ecode5
)) {
16836 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "DirDialog_Create" "', expected argument " "5"" of type '" "long""'");
16838 arg5
= static_cast< long >(val5
);
16843 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
16849 if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
;
16854 arg8
= wxString_in_helper(obj7
);
16855 if (arg8
== NULL
) SWIG_fail
;
16860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16861 result
= (bool)(arg1
)->Create(arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,(wxPoint
const &)*arg6
,(wxSize
const &)*arg7
,(wxString
const &)*arg8
);
16862 wxPyEndAllowThreads(__tstate
);
16863 if (PyErr_Occurred()) SWIG_fail
;
16866 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
16898 SWIGINTERN PyObject
*_wrap_DirDialog_GetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16899 PyObject
*resultobj
= 0;
16900 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16904 PyObject
*swig_obj
[1] ;
16906 if (!args
) SWIG_fail
;
16907 swig_obj
[0] = args
;
16908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16909 if (!SWIG_IsOK(res1
)) {
16910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_GetPath" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16912 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16915 result
= (arg1
)->GetPath();
16916 wxPyEndAllowThreads(__tstate
);
16917 if (PyErr_Occurred()) SWIG_fail
;
16921 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16923 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16932 SWIGINTERN PyObject
*_wrap_DirDialog_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16933 PyObject
*resultobj
= 0;
16934 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16938 PyObject
*swig_obj
[1] ;
16940 if (!args
) SWIG_fail
;
16941 swig_obj
[0] = args
;
16942 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16943 if (!SWIG_IsOK(res1
)) {
16944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_GetMessage" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16946 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16949 result
= (arg1
)->GetMessage();
16950 wxPyEndAllowThreads(__tstate
);
16951 if (PyErr_Occurred()) SWIG_fail
;
16955 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
16957 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
16966 SWIGINTERN PyObject
*_wrap_DirDialog_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16967 PyObject
*resultobj
= 0;
16968 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
16969 wxString
*arg2
= 0 ;
16972 bool temp2
= false ;
16973 PyObject
* obj0
= 0 ;
16974 PyObject
* obj1
= 0 ;
16975 char * kwnames
[] = {
16976 (char *) "self",(char *) "message", NULL
16979 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16980 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
16981 if (!SWIG_IsOK(res1
)) {
16982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_SetMessage" "', expected argument " "1"" of type '" "wxDirDialog *""'");
16984 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
16986 arg2
= wxString_in_helper(obj1
);
16987 if (arg2
== NULL
) SWIG_fail
;
16991 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16992 (arg1
)->SetMessage((wxString
const &)*arg2
);
16993 wxPyEndAllowThreads(__tstate
);
16994 if (PyErr_Occurred()) SWIG_fail
;
16996 resultobj
= SWIG_Py_Void();
17011 SWIGINTERN PyObject
*_wrap_DirDialog_SetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17012 PyObject
*resultobj
= 0;
17013 wxDirDialog
*arg1
= (wxDirDialog
*) 0 ;
17014 wxString
*arg2
= 0 ;
17017 bool temp2
= false ;
17018 PyObject
* obj0
= 0 ;
17019 PyObject
* obj1
= 0 ;
17020 char * kwnames
[] = {
17021 (char *) "self",(char *) "path", NULL
17024 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17025 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxDirDialog
, 0 | 0 );
17026 if (!SWIG_IsOK(res1
)) {
17027 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "DirDialog_SetPath" "', expected argument " "1"" of type '" "wxDirDialog *""'");
17029 arg1
= reinterpret_cast< wxDirDialog
* >(argp1
);
17031 arg2
= wxString_in_helper(obj1
);
17032 if (arg2
== NULL
) SWIG_fail
;
17036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17037 (arg1
)->SetPath((wxString
const &)*arg2
);
17038 wxPyEndAllowThreads(__tstate
);
17039 if (PyErr_Occurred()) SWIG_fail
;
17041 resultobj
= SWIG_Py_Void();
17056 SWIGINTERN PyObject
*DirDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17058 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17059 SWIG_TypeNewClientData(SWIGTYPE_p_wxDirDialog
, SWIG_NewClientData(obj
));
17060 return SWIG_Py_Void();
17063 SWIGINTERN PyObject
*DirDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17064 return SWIG_Python_InitShadowInstance(args
);
17067 SWIGINTERN PyObject
*_wrap_new_FileDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17068 PyObject
*resultobj
= 0;
17069 wxWindow
*arg1
= (wxWindow
*) 0 ;
17070 wxString
const &arg2_defvalue
= wxPyFileSelectorPromptStr
;
17071 wxString
*arg2
= (wxString
*) &arg2_defvalue
;
17072 wxString
const &arg3_defvalue
= wxPyEmptyString
;
17073 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
17074 wxString
const &arg4_defvalue
= wxPyEmptyString
;
17075 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
17076 wxString
const &arg5_defvalue
= wxPyFileSelectorDefaultWildcardStr
;
17077 wxString
*arg5
= (wxString
*) &arg5_defvalue
;
17078 long arg6
= (long) 0 ;
17079 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
17080 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
17081 wxFileDialog
*result
= 0 ;
17084 bool temp2
= false ;
17085 bool temp3
= false ;
17086 bool temp4
= false ;
17087 bool temp5
= false ;
17091 PyObject
* obj0
= 0 ;
17092 PyObject
* obj1
= 0 ;
17093 PyObject
* obj2
= 0 ;
17094 PyObject
* obj3
= 0 ;
17095 PyObject
* obj4
= 0 ;
17096 PyObject
* obj5
= 0 ;
17097 PyObject
* obj6
= 0 ;
17098 char * kwnames
[] = {
17099 (char *) "parent",(char *) "message",(char *) "defaultDir",(char *) "defaultFile",(char *) "wildcard",(char *) "style",(char *) "pos", NULL
17102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_FileDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
17103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
17104 if (!SWIG_IsOK(res1
)) {
17105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FileDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
17107 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
17110 arg2
= wxString_in_helper(obj1
);
17111 if (arg2
== NULL
) SWIG_fail
;
17117 arg3
= wxString_in_helper(obj2
);
17118 if (arg3
== NULL
) SWIG_fail
;
17124 arg4
= wxString_in_helper(obj3
);
17125 if (arg4
== NULL
) SWIG_fail
;
17131 arg5
= wxString_in_helper(obj4
);
17132 if (arg5
== NULL
) SWIG_fail
;
17137 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
17138 if (!SWIG_IsOK(ecode6
)) {
17139 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_FileDialog" "', expected argument " "6"" of type '" "long""'");
17141 arg6
= static_cast< long >(val6
);
17146 if ( ! wxPoint_helper(obj6
, &arg7
)) SWIG_fail
;
17150 if (!wxPyCheckForApp()) SWIG_fail
;
17151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17152 result
= (wxFileDialog
*)new wxFileDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,(wxString
const &)*arg5
,arg6
,(wxPoint
const &)*arg7
);
17153 wxPyEndAllowThreads(__tstate
);
17154 if (PyErr_Occurred()) SWIG_fail
;
17156 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_NEW
| 0 );
17195 SWIGINTERN PyObject
*_wrap_FileDialog_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17196 PyObject
*resultobj
= 0;
17197 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17198 wxString
*arg2
= 0 ;
17201 bool temp2
= false ;
17202 PyObject
* obj0
= 0 ;
17203 PyObject
* obj1
= 0 ;
17204 char * kwnames
[] = {
17205 (char *) "self",(char *) "message", NULL
17208 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17209 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17210 if (!SWIG_IsOK(res1
)) {
17211 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetMessage" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17213 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17215 arg2
= wxString_in_helper(obj1
);
17216 if (arg2
== NULL
) SWIG_fail
;
17220 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17221 (arg1
)->SetMessage((wxString
const &)*arg2
);
17222 wxPyEndAllowThreads(__tstate
);
17223 if (PyErr_Occurred()) SWIG_fail
;
17225 resultobj
= SWIG_Py_Void();
17240 SWIGINTERN PyObject
*_wrap_FileDialog_SetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17241 PyObject
*resultobj
= 0;
17242 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17243 wxString
*arg2
= 0 ;
17246 bool temp2
= false ;
17247 PyObject
* obj0
= 0 ;
17248 PyObject
* obj1
= 0 ;
17249 char * kwnames
[] = {
17250 (char *) "self",(char *) "path", NULL
17253 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetPath",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17254 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17255 if (!SWIG_IsOK(res1
)) {
17256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetPath" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17258 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17260 arg2
= wxString_in_helper(obj1
);
17261 if (arg2
== NULL
) SWIG_fail
;
17265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17266 (arg1
)->SetPath((wxString
const &)*arg2
);
17267 wxPyEndAllowThreads(__tstate
);
17268 if (PyErr_Occurred()) SWIG_fail
;
17270 resultobj
= SWIG_Py_Void();
17285 SWIGINTERN PyObject
*_wrap_FileDialog_SetDirectory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17286 PyObject
*resultobj
= 0;
17287 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17288 wxString
*arg2
= 0 ;
17291 bool temp2
= false ;
17292 PyObject
* obj0
= 0 ;
17293 PyObject
* obj1
= 0 ;
17294 char * kwnames
[] = {
17295 (char *) "self",(char *) "dir", NULL
17298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetDirectory",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17300 if (!SWIG_IsOK(res1
)) {
17301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetDirectory" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17303 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17305 arg2
= wxString_in_helper(obj1
);
17306 if (arg2
== NULL
) SWIG_fail
;
17310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17311 (arg1
)->SetDirectory((wxString
const &)*arg2
);
17312 wxPyEndAllowThreads(__tstate
);
17313 if (PyErr_Occurred()) SWIG_fail
;
17315 resultobj
= SWIG_Py_Void();
17330 SWIGINTERN PyObject
*_wrap_FileDialog_SetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17331 PyObject
*resultobj
= 0;
17332 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17333 wxString
*arg2
= 0 ;
17336 bool temp2
= false ;
17337 PyObject
* obj0
= 0 ;
17338 PyObject
* obj1
= 0 ;
17339 char * kwnames
[] = {
17340 (char *) "self",(char *) "name", NULL
17343 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilename",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17344 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17345 if (!SWIG_IsOK(res1
)) {
17346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetFilename" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17348 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17350 arg2
= wxString_in_helper(obj1
);
17351 if (arg2
== NULL
) SWIG_fail
;
17355 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17356 (arg1
)->SetFilename((wxString
const &)*arg2
);
17357 wxPyEndAllowThreads(__tstate
);
17358 if (PyErr_Occurred()) SWIG_fail
;
17360 resultobj
= SWIG_Py_Void();
17375 SWIGINTERN PyObject
*_wrap_FileDialog_SetWildcard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17376 PyObject
*resultobj
= 0;
17377 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17378 wxString
*arg2
= 0 ;
17381 bool temp2
= false ;
17382 PyObject
* obj0
= 0 ;
17383 PyObject
* obj1
= 0 ;
17384 char * kwnames
[] = {
17385 (char *) "self",(char *) "wildCard", NULL
17388 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetWildcard",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17389 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17390 if (!SWIG_IsOK(res1
)) {
17391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetWildcard" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17393 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17395 arg2
= wxString_in_helper(obj1
);
17396 if (arg2
== NULL
) SWIG_fail
;
17400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17401 (arg1
)->SetWildcard((wxString
const &)*arg2
);
17402 wxPyEndAllowThreads(__tstate
);
17403 if (PyErr_Occurred()) SWIG_fail
;
17405 resultobj
= SWIG_Py_Void();
17420 SWIGINTERN PyObject
*_wrap_FileDialog_SetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17421 PyObject
*resultobj
= 0;
17422 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17428 PyObject
* obj0
= 0 ;
17429 PyObject
* obj1
= 0 ;
17430 char * kwnames
[] = {
17431 (char *) "self",(char *) "style", NULL
17434 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17435 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17436 if (!SWIG_IsOK(res1
)) {
17437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetStyle" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17439 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17440 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
17441 if (!SWIG_IsOK(ecode2
)) {
17442 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDialog_SetStyle" "', expected argument " "2"" of type '" "long""'");
17444 arg2
= static_cast< long >(val2
);
17446 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17447 (arg1
)->SetStyle(arg2
);
17448 wxPyEndAllowThreads(__tstate
);
17449 if (PyErr_Occurred()) SWIG_fail
;
17451 resultobj
= SWIG_Py_Void();
17458 SWIGINTERN PyObject
*_wrap_FileDialog_SetFilterIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17459 PyObject
*resultobj
= 0;
17460 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17466 PyObject
* obj0
= 0 ;
17467 PyObject
* obj1
= 0 ;
17468 char * kwnames
[] = {
17469 (char *) "self",(char *) "filterIndex", NULL
17472 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilterIndex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17473 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17474 if (!SWIG_IsOK(res1
)) {
17475 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_SetFilterIndex" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17477 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17478 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17479 if (!SWIG_IsOK(ecode2
)) {
17480 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FileDialog_SetFilterIndex" "', expected argument " "2"" of type '" "int""'");
17482 arg2
= static_cast< int >(val2
);
17484 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17485 (arg1
)->SetFilterIndex(arg2
);
17486 wxPyEndAllowThreads(__tstate
);
17487 if (PyErr_Occurred()) SWIG_fail
;
17489 resultobj
= SWIG_Py_Void();
17496 SWIGINTERN PyObject
*_wrap_FileDialog_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17497 PyObject
*resultobj
= 0;
17498 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17502 PyObject
*swig_obj
[1] ;
17504 if (!args
) SWIG_fail
;
17505 swig_obj
[0] = args
;
17506 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17507 if (!SWIG_IsOK(res1
)) {
17508 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetMessage" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17510 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17513 result
= ((wxFileDialog
const *)arg1
)->GetMessage();
17514 wxPyEndAllowThreads(__tstate
);
17515 if (PyErr_Occurred()) SWIG_fail
;
17519 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17521 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17530 SWIGINTERN PyObject
*_wrap_FileDialog_GetPath(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17531 PyObject
*resultobj
= 0;
17532 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17536 PyObject
*swig_obj
[1] ;
17538 if (!args
) SWIG_fail
;
17539 swig_obj
[0] = args
;
17540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17541 if (!SWIG_IsOK(res1
)) {
17542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetPath" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17544 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17547 result
= ((wxFileDialog
const *)arg1
)->GetPath();
17548 wxPyEndAllowThreads(__tstate
);
17549 if (PyErr_Occurred()) SWIG_fail
;
17553 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17555 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17564 SWIGINTERN PyObject
*_wrap_FileDialog_GetDirectory(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17565 PyObject
*resultobj
= 0;
17566 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17570 PyObject
*swig_obj
[1] ;
17572 if (!args
) SWIG_fail
;
17573 swig_obj
[0] = args
;
17574 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17575 if (!SWIG_IsOK(res1
)) {
17576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetDirectory" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17578 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17581 result
= ((wxFileDialog
const *)arg1
)->GetDirectory();
17582 wxPyEndAllowThreads(__tstate
);
17583 if (PyErr_Occurred()) SWIG_fail
;
17587 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17589 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17598 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17599 PyObject
*resultobj
= 0;
17600 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17604 PyObject
*swig_obj
[1] ;
17606 if (!args
) SWIG_fail
;
17607 swig_obj
[0] = args
;
17608 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17609 if (!SWIG_IsOK(res1
)) {
17610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilename" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17612 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17615 result
= ((wxFileDialog
const *)arg1
)->GetFilename();
17616 wxPyEndAllowThreads(__tstate
);
17617 if (PyErr_Occurred()) SWIG_fail
;
17621 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17623 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17632 SWIGINTERN PyObject
*_wrap_FileDialog_GetWildcard(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17633 PyObject
*resultobj
= 0;
17634 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17638 PyObject
*swig_obj
[1] ;
17640 if (!args
) SWIG_fail
;
17641 swig_obj
[0] = args
;
17642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17643 if (!SWIG_IsOK(res1
)) {
17644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetWildcard" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17646 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17649 result
= ((wxFileDialog
const *)arg1
)->GetWildcard();
17650 wxPyEndAllowThreads(__tstate
);
17651 if (PyErr_Occurred()) SWIG_fail
;
17655 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17657 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17666 SWIGINTERN PyObject
*_wrap_FileDialog_GetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17667 PyObject
*resultobj
= 0;
17668 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17672 PyObject
*swig_obj
[1] ;
17674 if (!args
) SWIG_fail
;
17675 swig_obj
[0] = args
;
17676 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17677 if (!SWIG_IsOK(res1
)) {
17678 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetStyle" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17680 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17682 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17683 result
= (long)((wxFileDialog
const *)arg1
)->GetStyle();
17684 wxPyEndAllowThreads(__tstate
);
17685 if (PyErr_Occurred()) SWIG_fail
;
17687 resultobj
= SWIG_From_long(static_cast< long >(result
));
17694 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilterIndex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17695 PyObject
*resultobj
= 0;
17696 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17700 PyObject
*swig_obj
[1] ;
17702 if (!args
) SWIG_fail
;
17703 swig_obj
[0] = args
;
17704 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17705 if (!SWIG_IsOK(res1
)) {
17706 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilterIndex" "', expected argument " "1"" of type '" "wxFileDialog const *""'");
17708 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17711 result
= (int)((wxFileDialog
const *)arg1
)->GetFilterIndex();
17712 wxPyEndAllowThreads(__tstate
);
17713 if (PyErr_Occurred()) SWIG_fail
;
17715 resultobj
= SWIG_From_int(static_cast< int >(result
));
17722 SWIGINTERN PyObject
*_wrap_FileDialog_GetFilenames(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17723 PyObject
*resultobj
= 0;
17724 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17725 PyObject
*result
= 0 ;
17728 PyObject
*swig_obj
[1] ;
17730 if (!args
) SWIG_fail
;
17731 swig_obj
[0] = args
;
17732 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17733 if (!SWIG_IsOK(res1
)) {
17734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetFilenames" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17736 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17738 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17739 result
= (PyObject
*)wxFileDialog_GetFilenames(arg1
);
17740 wxPyEndAllowThreads(__tstate
);
17741 if (PyErr_Occurred()) SWIG_fail
;
17743 resultobj
= result
;
17750 SWIGINTERN PyObject
*_wrap_FileDialog_GetPaths(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17751 PyObject
*resultobj
= 0;
17752 wxFileDialog
*arg1
= (wxFileDialog
*) 0 ;
17753 PyObject
*result
= 0 ;
17756 PyObject
*swig_obj
[1] ;
17758 if (!args
) SWIG_fail
;
17759 swig_obj
[0] = args
;
17760 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFileDialog
, 0 | 0 );
17761 if (!SWIG_IsOK(res1
)) {
17762 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FileDialog_GetPaths" "', expected argument " "1"" of type '" "wxFileDialog *""'");
17764 arg1
= reinterpret_cast< wxFileDialog
* >(argp1
);
17766 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17767 result
= (PyObject
*)wxFileDialog_GetPaths(arg1
);
17768 wxPyEndAllowThreads(__tstate
);
17769 if (PyErr_Occurred()) SWIG_fail
;
17771 resultobj
= result
;
17778 SWIGINTERN PyObject
*FileDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17780 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17781 SWIG_TypeNewClientData(SWIGTYPE_p_wxFileDialog
, SWIG_NewClientData(obj
));
17782 return SWIG_Py_Void();
17785 SWIGINTERN PyObject
*FileDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17786 return SWIG_Python_InitShadowInstance(args
);
17789 SWIGINTERN PyObject
*_wrap_new_MultiChoiceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17790 PyObject
*resultobj
= 0;
17791 wxWindow
*arg1
= (wxWindow
*) 0 ;
17792 wxString
*arg2
= 0 ;
17793 wxString
*arg3
= 0 ;
17794 int arg4
= (int) 0 ;
17795 wxString
*arg5
= (wxString
*) NULL
;
17796 long arg6
= (long) wxCHOICEDLG_STYLE
;
17797 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
17798 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
17799 wxMultiChoiceDialog
*result
= 0 ;
17802 bool temp2
= false ;
17803 bool temp3
= false ;
17807 PyObject
* obj0
= 0 ;
17808 PyObject
* obj1
= 0 ;
17809 PyObject
* obj2
= 0 ;
17810 PyObject
* obj3
= 0 ;
17811 PyObject
* obj4
= 0 ;
17812 PyObject
* obj5
= 0 ;
17813 char * kwnames
[] = {
17814 (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL
17817 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_MultiChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
17818 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
17819 if (!SWIG_IsOK(res1
)) {
17820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MultiChoiceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
17822 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
17824 arg2
= wxString_in_helper(obj1
);
17825 if (arg2
== NULL
) SWIG_fail
;
17829 arg3
= wxString_in_helper(obj2
);
17830 if (arg3
== NULL
) SWIG_fail
;
17835 arg4
= PyList_Size(obj3
);
17836 arg5
= wxString_LIST_helper(obj3
);
17837 if (arg5
== NULL
) SWIG_fail
;
17841 ecode6
= SWIG_AsVal_long(obj4
, &val6
);
17842 if (!SWIG_IsOK(ecode6
)) {
17843 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MultiChoiceDialog" "', expected argument " "6"" of type '" "long""'");
17845 arg6
= static_cast< long >(val6
);
17850 if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
;
17854 if (!wxPyCheckForApp()) SWIG_fail
;
17855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17856 result
= (wxMultiChoiceDialog
*)new wxMultiChoiceDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
);
17857 wxPyEndAllowThreads(__tstate
);
17858 if (PyErr_Occurred()) SWIG_fail
;
17860 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_POINTER_NEW
| 0 );
17870 if (arg5
) delete [] arg5
;
17883 if (arg5
) delete [] arg5
;
17889 SWIGINTERN PyObject
*_wrap_MultiChoiceDialog_SetSelections(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17890 PyObject
*resultobj
= 0;
17891 wxMultiChoiceDialog
*arg1
= (wxMultiChoiceDialog
*) 0 ;
17892 wxArrayInt
*arg2
= 0 ;
17895 bool temp2
= false ;
17896 PyObject
* obj0
= 0 ;
17897 PyObject
* obj1
= 0 ;
17898 char * kwnames
[] = {
17899 (char *) "self",(char *) "selections", NULL
17902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MultiChoiceDialog_SetSelections",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17903 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMultiChoiceDialog
, 0 | 0 );
17904 if (!SWIG_IsOK(res1
)) {
17905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MultiChoiceDialog_SetSelections" "', expected argument " "1"" of type '" "wxMultiChoiceDialog *""'");
17907 arg1
= reinterpret_cast< wxMultiChoiceDialog
* >(argp1
);
17909 if (! PySequence_Check(obj1
)) {
17910 PyErr_SetString(PyExc_TypeError
, "Sequence of integers expected.");
17913 arg2
= new wxArrayInt
;
17915 int i
, len
=PySequence_Length(obj1
);
17916 for (i
=0; i
<len
; i
++) {
17917 PyObject
* item
= PySequence_GetItem(obj1
, i
);
17918 PyObject
* number
= PyNumber_Int(item
);
17919 arg2
->Add(PyInt_AS_LONG(number
));
17925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17926 (arg1
)->SetSelections((wxArrayInt
const &)*arg2
);
17927 wxPyEndAllowThreads(__tstate
);
17928 if (PyErr_Occurred()) SWIG_fail
;
17930 resultobj
= SWIG_Py_Void();
17932 if (temp2
) delete arg2
;
17937 if (temp2
) delete arg2
;
17943 SWIGINTERN PyObject
*_wrap_MultiChoiceDialog_GetSelections(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17944 PyObject
*resultobj
= 0;
17945 wxMultiChoiceDialog
*arg1
= (wxMultiChoiceDialog
*) 0 ;
17946 PyObject
*result
= 0 ;
17949 PyObject
*swig_obj
[1] ;
17951 if (!args
) SWIG_fail
;
17952 swig_obj
[0] = args
;
17953 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMultiChoiceDialog
, 0 | 0 );
17954 if (!SWIG_IsOK(res1
)) {
17955 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MultiChoiceDialog_GetSelections" "', expected argument " "1"" of type '" "wxMultiChoiceDialog *""'");
17957 arg1
= reinterpret_cast< wxMultiChoiceDialog
* >(argp1
);
17959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17960 result
= (PyObject
*)wxMultiChoiceDialog_GetSelections(arg1
);
17961 wxPyEndAllowThreads(__tstate
);
17962 if (PyErr_Occurred()) SWIG_fail
;
17964 resultobj
= result
;
17971 SWIGINTERN PyObject
*MultiChoiceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17973 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
17974 SWIG_TypeNewClientData(SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_NewClientData(obj
));
17975 return SWIG_Py_Void();
17978 SWIGINTERN PyObject
*MultiChoiceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17979 return SWIG_Python_InitShadowInstance(args
);
17982 SWIGINTERN PyObject
*_wrap_new_SingleChoiceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17983 PyObject
*resultobj
= 0;
17984 wxWindow
*arg1
= (wxWindow
*) 0 ;
17985 wxString
*arg2
= 0 ;
17986 wxString
*arg3
= 0 ;
17988 wxString
*arg5
= (wxString
*) 0 ;
17989 long arg6
= (long) wxCHOICEDLG_STYLE
;
17990 wxPoint
const &arg7_defvalue
= wxDefaultPosition
;
17991 wxPoint
*arg7
= (wxPoint
*) &arg7_defvalue
;
17992 wxSingleChoiceDialog
*result
= 0 ;
17995 bool temp2
= false ;
17996 bool temp3
= false ;
18000 PyObject
* obj0
= 0 ;
18001 PyObject
* obj1
= 0 ;
18002 PyObject
* obj2
= 0 ;
18003 PyObject
* obj3
= 0 ;
18004 PyObject
* obj4
= 0 ;
18005 PyObject
* obj5
= 0 ;
18006 char * kwnames
[] = {
18007 (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL
18010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:new_SingleChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
18011 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18012 if (!SWIG_IsOK(res1
)) {
18013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_SingleChoiceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18015 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18017 arg2
= wxString_in_helper(obj1
);
18018 if (arg2
== NULL
) SWIG_fail
;
18022 arg3
= wxString_in_helper(obj2
);
18023 if (arg3
== NULL
) SWIG_fail
;
18027 arg4
= PyList_Size(obj3
);
18028 arg5
= wxString_LIST_helper(obj3
);
18029 if (arg5
== NULL
) SWIG_fail
;
18032 ecode6
= SWIG_AsVal_long(obj4
, &val6
);
18033 if (!SWIG_IsOK(ecode6
)) {
18034 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_SingleChoiceDialog" "', expected argument " "6"" of type '" "long""'");
18036 arg6
= static_cast< long >(val6
);
18041 if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
;
18045 if (!wxPyCheckForApp()) SWIG_fail
;
18046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18047 result
= (wxSingleChoiceDialog
*)new_wxSingleChoiceDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint
const &)*arg7
);
18048 wxPyEndAllowThreads(__tstate
);
18049 if (PyErr_Occurred()) SWIG_fail
;
18051 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_POINTER_NEW
| 0 );
18061 if (arg5
) delete [] arg5
;
18074 if (arg5
) delete [] arg5
;
18080 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18081 PyObject
*resultobj
= 0;
18082 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
18086 PyObject
*swig_obj
[1] ;
18088 if (!args
) SWIG_fail
;
18089 swig_obj
[0] = args
;
18090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
18091 if (!SWIG_IsOK(res1
)) {
18092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_GetSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
18094 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
18096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18097 result
= (int)(arg1
)->GetSelection();
18098 wxPyEndAllowThreads(__tstate
);
18099 if (PyErr_Occurred()) SWIG_fail
;
18101 resultobj
= SWIG_From_int(static_cast< int >(result
));
18108 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_GetStringSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18109 PyObject
*resultobj
= 0;
18110 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
18114 PyObject
*swig_obj
[1] ;
18116 if (!args
) SWIG_fail
;
18117 swig_obj
[0] = args
;
18118 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
18119 if (!SWIG_IsOK(res1
)) {
18120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_GetStringSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
18122 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
18124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18125 result
= (arg1
)->GetStringSelection();
18126 wxPyEndAllowThreads(__tstate
);
18127 if (PyErr_Occurred()) SWIG_fail
;
18131 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18133 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18142 SWIGINTERN PyObject
*_wrap_SingleChoiceDialog_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18143 PyObject
*resultobj
= 0;
18144 wxSingleChoiceDialog
*arg1
= (wxSingleChoiceDialog
*) 0 ;
18150 PyObject
* obj0
= 0 ;
18151 PyObject
* obj1
= 0 ;
18152 char * kwnames
[] = {
18153 (char *) "self",(char *) "sel", NULL
18156 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SingleChoiceDialog_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18157 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxSingleChoiceDialog
, 0 | 0 );
18158 if (!SWIG_IsOK(res1
)) {
18159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "SingleChoiceDialog_SetSelection" "', expected argument " "1"" of type '" "wxSingleChoiceDialog *""'");
18161 arg1
= reinterpret_cast< wxSingleChoiceDialog
* >(argp1
);
18162 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18163 if (!SWIG_IsOK(ecode2
)) {
18164 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "SingleChoiceDialog_SetSelection" "', expected argument " "2"" of type '" "int""'");
18166 arg2
= static_cast< int >(val2
);
18168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18169 (arg1
)->SetSelection(arg2
);
18170 wxPyEndAllowThreads(__tstate
);
18171 if (PyErr_Occurred()) SWIG_fail
;
18173 resultobj
= SWIG_Py_Void();
18180 SWIGINTERN PyObject
*SingleChoiceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18182 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18183 SWIG_TypeNewClientData(SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_NewClientData(obj
));
18184 return SWIG_Py_Void();
18187 SWIGINTERN PyObject
*SingleChoiceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18188 return SWIG_Python_InitShadowInstance(args
);
18191 SWIGINTERN PyObject
*_wrap_new_TextEntryDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18192 PyObject
*resultobj
= 0;
18193 wxWindow
*arg1
= (wxWindow
*) 0 ;
18194 wxString
*arg2
= 0 ;
18195 wxString
const &arg3_defvalue
= wxPyGetTextFromUserPromptStr
;
18196 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
18197 wxString
const &arg4_defvalue
= wxPyEmptyString
;
18198 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
18199 long arg5
= (long) wxTextEntryDialogStyle
;
18200 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
18201 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
18202 wxTextEntryDialog
*result
= 0 ;
18205 bool temp2
= false ;
18206 bool temp3
= false ;
18207 bool temp4
= false ;
18211 PyObject
* obj0
= 0 ;
18212 PyObject
* obj1
= 0 ;
18213 PyObject
* obj2
= 0 ;
18214 PyObject
* obj3
= 0 ;
18215 PyObject
* obj4
= 0 ;
18216 PyObject
* obj5
= 0 ;
18217 char * kwnames
[] = {
18218 (char *) "parent",(char *) "message",(char *) "caption",(char *) "defaultValue",(char *) "style",(char *) "pos", NULL
18221 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_TextEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
18222 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18223 if (!SWIG_IsOK(res1
)) {
18224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_TextEntryDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18226 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18228 arg2
= wxString_in_helper(obj1
);
18229 if (arg2
== NULL
) SWIG_fail
;
18234 arg3
= wxString_in_helper(obj2
);
18235 if (arg3
== NULL
) SWIG_fail
;
18241 arg4
= wxString_in_helper(obj3
);
18242 if (arg4
== NULL
) SWIG_fail
;
18247 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
18248 if (!SWIG_IsOK(ecode5
)) {
18249 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_TextEntryDialog" "', expected argument " "5"" of type '" "long""'");
18251 arg5
= static_cast< long >(val5
);
18256 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
18260 if (!wxPyCheckForApp()) SWIG_fail
;
18261 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18262 result
= (wxTextEntryDialog
*)new wxTextEntryDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,(wxPoint
const &)*arg6
);
18263 wxPyEndAllowThreads(__tstate
);
18264 if (PyErr_Occurred()) SWIG_fail
;
18266 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxTextEntryDialog
, SWIG_POINTER_NEW
| 0 );
18297 SWIGINTERN PyObject
*_wrap_TextEntryDialog_GetValue(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18298 PyObject
*resultobj
= 0;
18299 wxTextEntryDialog
*arg1
= (wxTextEntryDialog
*) 0 ;
18303 PyObject
*swig_obj
[1] ;
18305 if (!args
) SWIG_fail
;
18306 swig_obj
[0] = args
;
18307 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxTextEntryDialog
, 0 | 0 );
18308 if (!SWIG_IsOK(res1
)) {
18309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextEntryDialog_GetValue" "', expected argument " "1"" of type '" "wxTextEntryDialog *""'");
18311 arg1
= reinterpret_cast< wxTextEntryDialog
* >(argp1
);
18313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18314 result
= (arg1
)->GetValue();
18315 wxPyEndAllowThreads(__tstate
);
18316 if (PyErr_Occurred()) SWIG_fail
;
18320 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
18322 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
18331 SWIGINTERN PyObject
*_wrap_TextEntryDialog_SetValue(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18332 PyObject
*resultobj
= 0;
18333 wxTextEntryDialog
*arg1
= (wxTextEntryDialog
*) 0 ;
18334 wxString
*arg2
= 0 ;
18337 bool temp2
= false ;
18338 PyObject
* obj0
= 0 ;
18339 PyObject
* obj1
= 0 ;
18340 char * kwnames
[] = {
18341 (char *) "self",(char *) "value", NULL
18344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextEntryDialog_SetValue",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxTextEntryDialog
, 0 | 0 );
18346 if (!SWIG_IsOK(res1
)) {
18347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "TextEntryDialog_SetValue" "', expected argument " "1"" of type '" "wxTextEntryDialog *""'");
18349 arg1
= reinterpret_cast< wxTextEntryDialog
* >(argp1
);
18351 arg2
= wxString_in_helper(obj1
);
18352 if (arg2
== NULL
) SWIG_fail
;
18356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18357 (arg1
)->SetValue((wxString
const &)*arg2
);
18358 wxPyEndAllowThreads(__tstate
);
18359 if (PyErr_Occurred()) SWIG_fail
;
18361 resultobj
= SWIG_Py_Void();
18376 SWIGINTERN PyObject
*TextEntryDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18378 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18379 SWIG_TypeNewClientData(SWIGTYPE_p_wxTextEntryDialog
, SWIG_NewClientData(obj
));
18380 return SWIG_Py_Void();
18383 SWIGINTERN PyObject
*TextEntryDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18384 return SWIG_Python_InitShadowInstance(args
);
18387 SWIGINTERN
int GetPasswordFromUserPromptStr_set(PyObject
*) {
18388 SWIG_Error(SWIG_AttributeError
,"Variable GetPasswordFromUserPromptStr is read-only.");
18393 SWIGINTERN PyObject
*GetPasswordFromUserPromptStr_get(void) {
18394 PyObject
*pyobj
= 0;
18398 pyobj
= PyUnicode_FromWideChar((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len());
18400 pyobj
= PyString_FromStringAndSize((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len());
18407 SWIGINTERN PyObject
*_wrap_new_PasswordEntryDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18408 PyObject
*resultobj
= 0;
18409 wxWindow
*arg1
= (wxWindow
*) 0 ;
18410 wxString
*arg2
= 0 ;
18411 wxString
const &arg3_defvalue
= wxPyGetPasswordFromUserPromptStr
;
18412 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
18413 wxString
const &arg4_defvalue
= wxPyEmptyString
;
18414 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
18415 long arg5
= (long) wxTextEntryDialogStyle
;
18416 wxPoint
const &arg6_defvalue
= wxDefaultPosition
;
18417 wxPoint
*arg6
= (wxPoint
*) &arg6_defvalue
;
18418 wxPasswordEntryDialog
*result
= 0 ;
18421 bool temp2
= false ;
18422 bool temp3
= false ;
18423 bool temp4
= false ;
18427 PyObject
* obj0
= 0 ;
18428 PyObject
* obj1
= 0 ;
18429 PyObject
* obj2
= 0 ;
18430 PyObject
* obj3
= 0 ;
18431 PyObject
* obj4
= 0 ;
18432 PyObject
* obj5
= 0 ;
18433 char * kwnames
[] = {
18434 (char *) "parent",(char *) "message",(char *) "caption",(char *) "value",(char *) "style",(char *) "pos", NULL
18437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PasswordEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
18438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
18439 if (!SWIG_IsOK(res1
)) {
18440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PasswordEntryDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
18442 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
18444 arg2
= wxString_in_helper(obj1
);
18445 if (arg2
== NULL
) SWIG_fail
;
18450 arg3
= wxString_in_helper(obj2
);
18451 if (arg3
== NULL
) SWIG_fail
;
18457 arg4
= wxString_in_helper(obj3
);
18458 if (arg4
== NULL
) SWIG_fail
;
18463 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
18464 if (!SWIG_IsOK(ecode5
)) {
18465 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PasswordEntryDialog" "', expected argument " "5"" of type '" "long""'");
18467 arg5
= static_cast< long >(val5
);
18472 if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
;
18476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18477 result
= (wxPasswordEntryDialog
*)new wxPasswordEntryDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,(wxString
const &)*arg4
,arg5
,(wxPoint
const &)*arg6
);
18478 wxPyEndAllowThreads(__tstate
);
18479 if (PyErr_Occurred()) SWIG_fail
;
18481 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPasswordEntryDialog
, SWIG_POINTER_NEW
| 0 );
18512 SWIGINTERN PyObject
*PasswordEntryDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18514 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
18515 SWIG_TypeNewClientData(SWIGTYPE_p_wxPasswordEntryDialog
, SWIG_NewClientData(obj
));
18516 return SWIG_Py_Void();
18519 SWIGINTERN PyObject
*PasswordEntryDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18520 return SWIG_Python_InitShadowInstance(args
);
18523 SWIGINTERN PyObject
*_wrap_new_FontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18524 PyObject
*resultobj
= 0;
18525 wxFontData
*result
= 0 ;
18527 if (!SWIG_Python_UnpackTuple(args
,"new_FontData",0,0,0)) SWIG_fail
;
18529 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18530 result
= (wxFontData
*)new wxFontData();
18531 wxPyEndAllowThreads(__tstate
);
18532 if (PyErr_Occurred()) SWIG_fail
;
18534 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontData
, SWIG_POINTER_NEW
| 0 );
18541 SWIGINTERN PyObject
*_wrap_delete_FontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18542 PyObject
*resultobj
= 0;
18543 wxFontData
*arg1
= (wxFontData
*) 0 ;
18546 PyObject
*swig_obj
[1] ;
18548 if (!args
) SWIG_fail
;
18549 swig_obj
[0] = args
;
18550 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, SWIG_POINTER_DISOWN
| 0 );
18551 if (!SWIG_IsOK(res1
)) {
18552 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FontData" "', expected argument " "1"" of type '" "wxFontData *""'");
18554 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18559 wxPyEndAllowThreads(__tstate
);
18560 if (PyErr_Occurred()) SWIG_fail
;
18562 resultobj
= SWIG_Py_Void();
18569 SWIGINTERN PyObject
*_wrap_FontData_EnableEffects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18570 PyObject
*resultobj
= 0;
18571 wxFontData
*arg1
= (wxFontData
*) 0 ;
18577 PyObject
* obj0
= 0 ;
18578 PyObject
* obj1
= 0 ;
18579 char * kwnames
[] = {
18580 (char *) "self",(char *) "enable", NULL
18583 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_EnableEffects",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18584 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18585 if (!SWIG_IsOK(res1
)) {
18586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_EnableEffects" "', expected argument " "1"" of type '" "wxFontData *""'");
18588 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18589 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18590 if (!SWIG_IsOK(ecode2
)) {
18591 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_EnableEffects" "', expected argument " "2"" of type '" "bool""'");
18593 arg2
= static_cast< bool >(val2
);
18595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18596 (arg1
)->EnableEffects(arg2
);
18597 wxPyEndAllowThreads(__tstate
);
18598 if (PyErr_Occurred()) SWIG_fail
;
18600 resultobj
= SWIG_Py_Void();
18607 SWIGINTERN PyObject
*_wrap_FontData_GetAllowSymbols(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18608 PyObject
*resultobj
= 0;
18609 wxFontData
*arg1
= (wxFontData
*) 0 ;
18613 PyObject
*swig_obj
[1] ;
18615 if (!args
) SWIG_fail
;
18616 swig_obj
[0] = args
;
18617 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18618 if (!SWIG_IsOK(res1
)) {
18619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetAllowSymbols" "', expected argument " "1"" of type '" "wxFontData *""'");
18621 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18624 result
= (bool)(arg1
)->GetAllowSymbols();
18625 wxPyEndAllowThreads(__tstate
);
18626 if (PyErr_Occurred()) SWIG_fail
;
18629 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18637 SWIGINTERN PyObject
*_wrap_FontData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18638 PyObject
*resultobj
= 0;
18639 wxFontData
*arg1
= (wxFontData
*) 0 ;
18643 PyObject
*swig_obj
[1] ;
18645 if (!args
) SWIG_fail
;
18646 swig_obj
[0] = args
;
18647 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18648 if (!SWIG_IsOK(res1
)) {
18649 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetColour" "', expected argument " "1"" of type '" "wxFontData *""'");
18651 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18653 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18654 result
= (arg1
)->GetColour();
18655 wxPyEndAllowThreads(__tstate
);
18656 if (PyErr_Occurred()) SWIG_fail
;
18658 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
18665 SWIGINTERN PyObject
*_wrap_FontData_GetChosenFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18666 PyObject
*resultobj
= 0;
18667 wxFontData
*arg1
= (wxFontData
*) 0 ;
18671 PyObject
*swig_obj
[1] ;
18673 if (!args
) SWIG_fail
;
18674 swig_obj
[0] = args
;
18675 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18676 if (!SWIG_IsOK(res1
)) {
18677 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetChosenFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18679 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18682 result
= (arg1
)->GetChosenFont();
18683 wxPyEndAllowThreads(__tstate
);
18684 if (PyErr_Occurred()) SWIG_fail
;
18686 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
18693 SWIGINTERN PyObject
*_wrap_FontData_GetEnableEffects(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18694 PyObject
*resultobj
= 0;
18695 wxFontData
*arg1
= (wxFontData
*) 0 ;
18699 PyObject
*swig_obj
[1] ;
18701 if (!args
) SWIG_fail
;
18702 swig_obj
[0] = args
;
18703 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18704 if (!SWIG_IsOK(res1
)) {
18705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetEnableEffects" "', expected argument " "1"" of type '" "wxFontData *""'");
18707 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18710 result
= (bool)(arg1
)->GetEnableEffects();
18711 wxPyEndAllowThreads(__tstate
);
18712 if (PyErr_Occurred()) SWIG_fail
;
18715 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18723 SWIGINTERN PyObject
*_wrap_FontData_GetInitialFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18724 PyObject
*resultobj
= 0;
18725 wxFontData
*arg1
= (wxFontData
*) 0 ;
18729 PyObject
*swig_obj
[1] ;
18731 if (!args
) SWIG_fail
;
18732 swig_obj
[0] = args
;
18733 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18734 if (!SWIG_IsOK(res1
)) {
18735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetInitialFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18737 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18740 result
= (arg1
)->GetInitialFont();
18741 wxPyEndAllowThreads(__tstate
);
18742 if (PyErr_Occurred()) SWIG_fail
;
18744 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
18751 SWIGINTERN PyObject
*_wrap_FontData_GetShowHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18752 PyObject
*resultobj
= 0;
18753 wxFontData
*arg1
= (wxFontData
*) 0 ;
18757 PyObject
*swig_obj
[1] ;
18759 if (!args
) SWIG_fail
;
18760 swig_obj
[0] = args
;
18761 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18762 if (!SWIG_IsOK(res1
)) {
18763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_GetShowHelp" "', expected argument " "1"" of type '" "wxFontData *""'");
18765 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18767 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18768 result
= (bool)(arg1
)->GetShowHelp();
18769 wxPyEndAllowThreads(__tstate
);
18770 if (PyErr_Occurred()) SWIG_fail
;
18773 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18781 SWIGINTERN PyObject
*_wrap_FontData_SetAllowSymbols(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18782 PyObject
*resultobj
= 0;
18783 wxFontData
*arg1
= (wxFontData
*) 0 ;
18789 PyObject
* obj0
= 0 ;
18790 PyObject
* obj1
= 0 ;
18791 char * kwnames
[] = {
18792 (char *) "self",(char *) "allowSymbols", NULL
18795 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetAllowSymbols",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18796 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18797 if (!SWIG_IsOK(res1
)) {
18798 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetAllowSymbols" "', expected argument " "1"" of type '" "wxFontData *""'");
18800 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18801 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18802 if (!SWIG_IsOK(ecode2
)) {
18803 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetAllowSymbols" "', expected argument " "2"" of type '" "bool""'");
18805 arg2
= static_cast< bool >(val2
);
18807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18808 (arg1
)->SetAllowSymbols(arg2
);
18809 wxPyEndAllowThreads(__tstate
);
18810 if (PyErr_Occurred()) SWIG_fail
;
18812 resultobj
= SWIG_Py_Void();
18819 SWIGINTERN PyObject
*_wrap_FontData_SetChosenFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18820 PyObject
*resultobj
= 0;
18821 wxFontData
*arg1
= (wxFontData
*) 0 ;
18827 PyObject
* obj0
= 0 ;
18828 PyObject
* obj1
= 0 ;
18829 char * kwnames
[] = {
18830 (char *) "self",(char *) "font", NULL
18833 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetChosenFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18834 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18835 if (!SWIG_IsOK(res1
)) {
18836 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetChosenFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18838 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18839 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
18840 if (!SWIG_IsOK(res2
)) {
18841 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontData_SetChosenFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18844 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FontData_SetChosenFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18846 arg2
= reinterpret_cast< wxFont
* >(argp2
);
18848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18849 (arg1
)->SetChosenFont((wxFont
const &)*arg2
);
18850 wxPyEndAllowThreads(__tstate
);
18851 if (PyErr_Occurred()) SWIG_fail
;
18853 resultobj
= SWIG_Py_Void();
18860 SWIGINTERN PyObject
*_wrap_FontData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18861 PyObject
*resultobj
= 0;
18862 wxFontData
*arg1
= (wxFontData
*) 0 ;
18863 wxColour
*arg2
= 0 ;
18867 PyObject
* obj0
= 0 ;
18868 PyObject
* obj1
= 0 ;
18869 char * kwnames
[] = {
18870 (char *) "self",(char *) "colour", NULL
18873 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18874 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18875 if (!SWIG_IsOK(res1
)) {
18876 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetColour" "', expected argument " "1"" of type '" "wxFontData *""'");
18878 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18881 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
18884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18885 (arg1
)->SetColour((wxColour
const &)*arg2
);
18886 wxPyEndAllowThreads(__tstate
);
18887 if (PyErr_Occurred()) SWIG_fail
;
18889 resultobj
= SWIG_Py_Void();
18896 SWIGINTERN PyObject
*_wrap_FontData_SetInitialFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18897 PyObject
*resultobj
= 0;
18898 wxFontData
*arg1
= (wxFontData
*) 0 ;
18904 PyObject
* obj0
= 0 ;
18905 PyObject
* obj1
= 0 ;
18906 char * kwnames
[] = {
18907 (char *) "self",(char *) "font", NULL
18910 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetInitialFont",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18911 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18912 if (!SWIG_IsOK(res1
)) {
18913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetInitialFont" "', expected argument " "1"" of type '" "wxFontData *""'");
18915 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18916 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
18917 if (!SWIG_IsOK(res2
)) {
18918 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FontData_SetInitialFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18921 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "FontData_SetInitialFont" "', expected argument " "2"" of type '" "wxFont const &""'");
18923 arg2
= reinterpret_cast< wxFont
* >(argp2
);
18925 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18926 (arg1
)->SetInitialFont((wxFont
const &)*arg2
);
18927 wxPyEndAllowThreads(__tstate
);
18928 if (PyErr_Occurred()) SWIG_fail
;
18930 resultobj
= SWIG_Py_Void();
18937 SWIGINTERN PyObject
*_wrap_FontData_SetRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18938 PyObject
*resultobj
= 0;
18939 wxFontData
*arg1
= (wxFontData
*) 0 ;
18948 PyObject
* obj0
= 0 ;
18949 PyObject
* obj1
= 0 ;
18950 PyObject
* obj2
= 0 ;
18951 char * kwnames
[] = {
18952 (char *) "self",(char *) "min",(char *) "max", NULL
18955 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FontData_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18956 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
18957 if (!SWIG_IsOK(res1
)) {
18958 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetRange" "', expected argument " "1"" of type '" "wxFontData *""'");
18960 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
18961 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18962 if (!SWIG_IsOK(ecode2
)) {
18963 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetRange" "', expected argument " "2"" of type '" "int""'");
18965 arg2
= static_cast< int >(val2
);
18966 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18967 if (!SWIG_IsOK(ecode3
)) {
18968 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "FontData_SetRange" "', expected argument " "3"" of type '" "int""'");
18970 arg3
= static_cast< int >(val3
);
18972 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18973 (arg1
)->SetRange(arg2
,arg3
);
18974 wxPyEndAllowThreads(__tstate
);
18975 if (PyErr_Occurred()) SWIG_fail
;
18977 resultobj
= SWIG_Py_Void();
18984 SWIGINTERN PyObject
*_wrap_FontData_SetShowHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18985 PyObject
*resultobj
= 0;
18986 wxFontData
*arg1
= (wxFontData
*) 0 ;
18992 PyObject
* obj0
= 0 ;
18993 PyObject
* obj1
= 0 ;
18994 char * kwnames
[] = {
18995 (char *) "self",(char *) "showHelp", NULL
18998 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetShowHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18999 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFontData
, 0 | 0 );
19000 if (!SWIG_IsOK(res1
)) {
19001 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontData_SetShowHelp" "', expected argument " "1"" of type '" "wxFontData *""'");
19003 arg1
= reinterpret_cast< wxFontData
* >(argp1
);
19004 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19005 if (!SWIG_IsOK(ecode2
)) {
19006 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FontData_SetShowHelp" "', expected argument " "2"" of type '" "bool""'");
19008 arg2
= static_cast< bool >(val2
);
19010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19011 (arg1
)->SetShowHelp(arg2
);
19012 wxPyEndAllowThreads(__tstate
);
19013 if (PyErr_Occurred()) SWIG_fail
;
19015 resultobj
= SWIG_Py_Void();
19022 SWIGINTERN PyObject
*FontData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19024 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19025 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontData
, SWIG_NewClientData(obj
));
19026 return SWIG_Py_Void();
19029 SWIGINTERN PyObject
*FontData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19030 return SWIG_Python_InitShadowInstance(args
);
19033 SWIGINTERN PyObject
*_wrap_new_FontDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19034 PyObject
*resultobj
= 0;
19035 wxWindow
*arg1
= (wxWindow
*) 0 ;
19036 wxFontData
*arg2
= 0 ;
19037 wxFontDialog
*result
= 0 ;
19042 PyObject
* obj0
= 0 ;
19043 PyObject
* obj1
= 0 ;
19044 char * kwnames
[] = {
19045 (char *) "parent",(char *) "data", NULL
19048 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_FontDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19049 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19050 if (!SWIG_IsOK(res1
)) {
19051 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FontDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
19053 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
19054 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFontData
, 0 | 0);
19055 if (!SWIG_IsOK(res2
)) {
19056 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FontDialog" "', expected argument " "2"" of type '" "wxFontData const &""'");
19059 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_FontDialog" "', expected argument " "2"" of type '" "wxFontData const &""'");
19061 arg2
= reinterpret_cast< wxFontData
* >(argp2
);
19063 if (!wxPyCheckForApp()) SWIG_fail
;
19064 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19065 result
= (wxFontDialog
*)new wxFontDialog(arg1
,(wxFontData
const &)*arg2
);
19066 wxPyEndAllowThreads(__tstate
);
19067 if (PyErr_Occurred()) SWIG_fail
;
19069 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontDialog
, SWIG_POINTER_NEW
| 0 );
19076 SWIGINTERN PyObject
*_wrap_FontDialog_GetFontData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19077 PyObject
*resultobj
= 0;
19078 wxFontDialog
*arg1
= (wxFontDialog
*) 0 ;
19079 wxFontData
*result
= 0 ;
19082 PyObject
*swig_obj
[1] ;
19084 if (!args
) SWIG_fail
;
19085 swig_obj
[0] = args
;
19086 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFontDialog
, 0 | 0 );
19087 if (!SWIG_IsOK(res1
)) {
19088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FontDialog_GetFontData" "', expected argument " "1"" of type '" "wxFontDialog *""'");
19090 arg1
= reinterpret_cast< wxFontDialog
* >(argp1
);
19092 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19094 wxFontData
&_result_ref
= (arg1
)->GetFontData();
19095 result
= (wxFontData
*) &_result_ref
;
19097 wxPyEndAllowThreads(__tstate
);
19098 if (PyErr_Occurred()) SWIG_fail
;
19100 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFontData
, 0 | 0 );
19107 SWIGINTERN PyObject
*FontDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19109 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19110 SWIG_TypeNewClientData(SWIGTYPE_p_wxFontDialog
, SWIG_NewClientData(obj
));
19111 return SWIG_Py_Void();
19114 SWIGINTERN PyObject
*FontDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19115 return SWIG_Python_InitShadowInstance(args
);
19118 SWIGINTERN PyObject
*_wrap_GetFontFromUser(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19119 PyObject
*resultobj
= 0;
19120 wxWindow
*arg1
= (wxWindow
*) NULL
;
19121 wxFont
const &arg2_defvalue
= wxNullFont
;
19122 wxFont
*arg2
= (wxFont
*) &arg2_defvalue
;
19123 wxString
const &arg3_defvalue
= wxPyEmptyString
;
19124 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
19130 bool temp3
= false ;
19131 PyObject
* obj0
= 0 ;
19132 PyObject
* obj1
= 0 ;
19133 PyObject
* obj2
= 0 ;
19134 char * kwnames
[] = {
19135 (char *) "parent",(char *) "fontInit",(char *) "caption", NULL
19138 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OOO:GetFontFromUser",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19140 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19141 if (!SWIG_IsOK(res1
)) {
19142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "GetFontFromUser" "', expected argument " "1"" of type '" "wxWindow *""'");
19144 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
19147 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxFont
, 0 | 0);
19148 if (!SWIG_IsOK(res2
)) {
19149 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "GetFontFromUser" "', expected argument " "2"" of type '" "wxFont const &""'");
19152 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "GetFontFromUser" "', expected argument " "2"" of type '" "wxFont const &""'");
19154 arg2
= reinterpret_cast< wxFont
* >(argp2
);
19158 arg3
= wxString_in_helper(obj2
);
19159 if (arg3
== NULL
) SWIG_fail
;
19164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19165 result
= wxGetFontFromUser(arg1
,(wxFont
const &)*arg2
,(wxString
const &)*arg3
);
19166 wxPyEndAllowThreads(__tstate
);
19167 if (PyErr_Occurred()) SWIG_fail
;
19169 resultobj
= SWIG_NewPointerObj((new wxFont(static_cast< const wxFont
& >(result
))), SWIGTYPE_p_wxFont
, SWIG_POINTER_OWN
| 0 );
19184 SWIGINTERN PyObject
*_wrap_new_MessageDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19185 PyObject
*resultobj
= 0;
19186 wxWindow
*arg1
= (wxWindow
*) 0 ;
19187 wxString
*arg2
= 0 ;
19188 wxString
const &arg3_defvalue
= wxPyMessageBoxCaptionStr
;
19189 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
19190 long arg4
= (long) wxOK
|wxCANCEL
|wxCENTRE
;
19191 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
19192 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
19193 wxMessageDialog
*result
= 0 ;
19196 bool temp2
= false ;
19197 bool temp3
= false ;
19201 PyObject
* obj0
= 0 ;
19202 PyObject
* obj1
= 0 ;
19203 PyObject
* obj2
= 0 ;
19204 PyObject
* obj3
= 0 ;
19205 PyObject
* obj4
= 0 ;
19206 char * kwnames
[] = {
19207 (char *) "parent",(char *) "message",(char *) "caption",(char *) "style",(char *) "pos", NULL
19210 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_MessageDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19211 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19212 if (!SWIG_IsOK(res1
)) {
19213 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MessageDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
19215 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
19217 arg2
= wxString_in_helper(obj1
);
19218 if (arg2
== NULL
) SWIG_fail
;
19223 arg3
= wxString_in_helper(obj2
);
19224 if (arg3
== NULL
) SWIG_fail
;
19229 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
19230 if (!SWIG_IsOK(ecode4
)) {
19231 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_MessageDialog" "', expected argument " "4"" of type '" "long""'");
19233 arg4
= static_cast< long >(val4
);
19238 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
19242 if (!wxPyCheckForApp()) SWIG_fail
;
19243 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19244 result
= (wxMessageDialog
*)new wxMessageDialog(arg1
,(wxString
const &)*arg2
,(wxString
const &)*arg3
,arg4
,(wxPoint
const &)*arg5
);
19245 wxPyEndAllowThreads(__tstate
);
19246 if (PyErr_Occurred()) SWIG_fail
;
19248 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMessageDialog
, SWIG_POINTER_NEW
| 0 );
19271 SWIGINTERN PyObject
*MessageDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19273 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19274 SWIG_TypeNewClientData(SWIGTYPE_p_wxMessageDialog
, SWIG_NewClientData(obj
));
19275 return SWIG_Py_Void();
19278 SWIGINTERN PyObject
*MessageDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19279 return SWIG_Python_InitShadowInstance(args
);
19282 SWIGINTERN PyObject
*_wrap_new_ProgressDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19283 PyObject
*resultobj
= 0;
19284 wxString
*arg1
= 0 ;
19285 wxString
*arg2
= 0 ;
19286 int arg3
= (int) 100 ;
19287 wxWindow
*arg4
= (wxWindow
*) NULL
;
19288 int arg5
= (int) wxPD_AUTO_HIDE
|wxPD_APP_MODAL
;
19289 wxProgressDialog
*result
= 0 ;
19290 bool temp1
= false ;
19291 bool temp2
= false ;
19298 PyObject
* obj0
= 0 ;
19299 PyObject
* obj1
= 0 ;
19300 PyObject
* obj2
= 0 ;
19301 PyObject
* obj3
= 0 ;
19302 PyObject
* obj4
= 0 ;
19303 char * kwnames
[] = {
19304 (char *) "title",(char *) "message",(char *) "maximum",(char *) "parent",(char *) "style", NULL
19307 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_ProgressDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
19309 arg1
= wxString_in_helper(obj0
);
19310 if (arg1
== NULL
) SWIG_fail
;
19314 arg2
= wxString_in_helper(obj1
);
19315 if (arg2
== NULL
) SWIG_fail
;
19319 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19320 if (!SWIG_IsOK(ecode3
)) {
19321 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "new_ProgressDialog" "', expected argument " "3"" of type '" "int""'");
19323 arg3
= static_cast< int >(val3
);
19326 res4
= SWIG_ConvertPtr(obj3
, &argp4
,SWIGTYPE_p_wxWindow
, 0 | 0 );
19327 if (!SWIG_IsOK(res4
)) {
19328 SWIG_exception_fail(SWIG_ArgError(res4
), "in method '" "new_ProgressDialog" "', expected argument " "4"" of type '" "wxWindow *""'");
19330 arg4
= reinterpret_cast< wxWindow
* >(argp4
);
19333 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
19334 if (!SWIG_IsOK(ecode5
)) {
19335 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_ProgressDialog" "', expected argument " "5"" of type '" "int""'");
19337 arg5
= static_cast< int >(val5
);
19340 if (!wxPyCheckForApp()) SWIG_fail
;
19341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19342 result
= (wxProgressDialog
*)new wxProgressDialog((wxString
const &)*arg1
,(wxString
const &)*arg2
,arg3
,arg4
,arg5
);
19343 wxPyEndAllowThreads(__tstate
);
19344 if (PyErr_Occurred()) SWIG_fail
;
19346 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxProgressDialog
, SWIG_POINTER_NEW
| 0 );
19369 SWIGINTERN PyObject
*_wrap_ProgressDialog_Update(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19370 PyObject
*resultobj
= 0;
19371 wxProgressDialog
*arg1
= (wxProgressDialog
*) 0 ;
19373 wxString
const &arg3_defvalue
= wxPyEmptyString
;
19374 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
19375 bool *arg4
= (bool *) 0 ;
19381 bool temp3
= false ;
19383 int res4
= SWIG_TMPOBJ
;
19384 PyObject
* obj0
= 0 ;
19385 PyObject
* obj1
= 0 ;
19386 PyObject
* obj2
= 0 ;
19387 char * kwnames
[] = {
19388 (char *) "self",(char *) "value",(char *) "newmsg", NULL
19392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ProgressDialog_Update",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19393 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxProgressDialog
, 0 | 0 );
19394 if (!SWIG_IsOK(res1
)) {
19395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProgressDialog_Update" "', expected argument " "1"" of type '" "wxProgressDialog *""'");
19397 arg1
= reinterpret_cast< wxProgressDialog
* >(argp1
);
19398 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19399 if (!SWIG_IsOK(ecode2
)) {
19400 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "ProgressDialog_Update" "', expected argument " "2"" of type '" "int""'");
19402 arg2
= static_cast< int >(val2
);
19405 arg3
= wxString_in_helper(obj2
);
19406 if (arg3
== NULL
) SWIG_fail
;
19411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19412 result
= (bool)(arg1
)->Update(arg2
,(wxString
const &)*arg3
,arg4
);
19413 wxPyEndAllowThreads(__tstate
);
19414 if (PyErr_Occurred()) SWIG_fail
;
19417 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19419 if (SWIG_IsTmpObj(res4
)) {
19420 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_bool((*arg4
)));
19422 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
19423 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_bool
, new_flags
));
19439 SWIGINTERN PyObject
*_wrap_ProgressDialog_Resume(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19440 PyObject
*resultobj
= 0;
19441 wxProgressDialog
*arg1
= (wxProgressDialog
*) 0 ;
19444 PyObject
*swig_obj
[1] ;
19446 if (!args
) SWIG_fail
;
19447 swig_obj
[0] = args
;
19448 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxProgressDialog
, 0 | 0 );
19449 if (!SWIG_IsOK(res1
)) {
19450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "ProgressDialog_Resume" "', expected argument " "1"" of type '" "wxProgressDialog *""'");
19452 arg1
= reinterpret_cast< wxProgressDialog
* >(argp1
);
19454 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19456 wxPyEndAllowThreads(__tstate
);
19457 if (PyErr_Occurred()) SWIG_fail
;
19459 resultobj
= SWIG_Py_Void();
19466 SWIGINTERN PyObject
*ProgressDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19468 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19469 SWIG_TypeNewClientData(SWIGTYPE_p_wxProgressDialog
, SWIG_NewClientData(obj
));
19470 return SWIG_Py_Void();
19473 SWIGINTERN PyObject
*ProgressDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19474 return SWIG_Python_InitShadowInstance(args
);
19477 SWIGINTERN PyObject
*_wrap_new_FindDialogEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19478 PyObject
*resultobj
= 0;
19479 wxEventType arg1
= (wxEventType
) wxEVT_NULL
;
19480 int arg2
= (int) 0 ;
19481 wxFindDialogEvent
*result
= 0 ;
19486 PyObject
* obj0
= 0 ;
19487 PyObject
* obj1
= 0 ;
19488 char * kwnames
[] = {
19489 (char *) "commandType",(char *) "id", NULL
19492 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FindDialogEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19494 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19495 if (!SWIG_IsOK(ecode1
)) {
19496 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FindDialogEvent" "', expected argument " "1"" of type '" "wxEventType""'");
19498 arg1
= static_cast< wxEventType
>(val1
);
19501 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19502 if (!SWIG_IsOK(ecode2
)) {
19503 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_FindDialogEvent" "', expected argument " "2"" of type '" "int""'");
19505 arg2
= static_cast< int >(val2
);
19508 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19509 result
= (wxFindDialogEvent
*)new wxFindDialogEvent(arg1
,arg2
);
19510 wxPyEndAllowThreads(__tstate
);
19511 if (PyErr_Occurred()) SWIG_fail
;
19513 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_NEW
| 0 );
19520 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19521 PyObject
*resultobj
= 0;
19522 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19526 PyObject
*swig_obj
[1] ;
19528 if (!args
) SWIG_fail
;
19529 swig_obj
[0] = args
;
19530 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19531 if (!SWIG_IsOK(res1
)) {
19532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetFlags" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19534 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19537 result
= (int)(arg1
)->GetFlags();
19538 wxPyEndAllowThreads(__tstate
);
19539 if (PyErr_Occurred()) SWIG_fail
;
19541 resultobj
= SWIG_From_int(static_cast< int >(result
));
19548 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19549 PyObject
*resultobj
= 0;
19550 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19551 wxString
*result
= 0 ;
19554 PyObject
*swig_obj
[1] ;
19556 if (!args
) SWIG_fail
;
19557 swig_obj
[0] = args
;
19558 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19559 if (!SWIG_IsOK(res1
)) {
19560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetFindString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19562 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19564 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19566 wxString
const &_result_ref
= (arg1
)->GetFindString();
19567 result
= (wxString
*) &_result_ref
;
19569 wxPyEndAllowThreads(__tstate
);
19570 if (PyErr_Occurred()) SWIG_fail
;
19574 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19576 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19585 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19586 PyObject
*resultobj
= 0;
19587 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19588 wxString
*result
= 0 ;
19591 PyObject
*swig_obj
[1] ;
19593 if (!args
) SWIG_fail
;
19594 swig_obj
[0] = args
;
19595 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19596 if (!SWIG_IsOK(res1
)) {
19597 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetReplaceString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19599 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19601 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19603 wxString
const &_result_ref
= (arg1
)->GetReplaceString();
19604 result
= (wxString
*) &_result_ref
;
19606 wxPyEndAllowThreads(__tstate
);
19607 if (PyErr_Occurred()) SWIG_fail
;
19611 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19613 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19622 SWIGINTERN PyObject
*_wrap_FindDialogEvent_GetDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19623 PyObject
*resultobj
= 0;
19624 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19625 wxFindReplaceDialog
*result
= 0 ;
19628 PyObject
*swig_obj
[1] ;
19630 if (!args
) SWIG_fail
;
19631 swig_obj
[0] = args
;
19632 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19633 if (!SWIG_IsOK(res1
)) {
19634 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_GetDialog" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19636 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19639 result
= (wxFindReplaceDialog
*)(arg1
)->GetDialog();
19640 wxPyEndAllowThreads(__tstate
);
19641 if (PyErr_Occurred()) SWIG_fail
;
19643 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
19650 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19651 PyObject
*resultobj
= 0;
19652 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19658 PyObject
* obj0
= 0 ;
19659 PyObject
* obj1
= 0 ;
19660 char * kwnames
[] = {
19661 (char *) "self",(char *) "flags", NULL
19664 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19665 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19666 if (!SWIG_IsOK(res1
)) {
19667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetFlags" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19669 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19670 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19671 if (!SWIG_IsOK(ecode2
)) {
19672 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FindDialogEvent_SetFlags" "', expected argument " "2"" of type '" "int""'");
19674 arg2
= static_cast< int >(val2
);
19676 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19677 (arg1
)->SetFlags(arg2
);
19678 wxPyEndAllowThreads(__tstate
);
19679 if (PyErr_Occurred()) SWIG_fail
;
19681 resultobj
= SWIG_Py_Void();
19688 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19689 PyObject
*resultobj
= 0;
19690 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19691 wxString
*arg2
= 0 ;
19694 bool temp2
= false ;
19695 PyObject
* obj0
= 0 ;
19696 PyObject
* obj1
= 0 ;
19697 char * kwnames
[] = {
19698 (char *) "self",(char *) "str", NULL
19701 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFindString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19702 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19703 if (!SWIG_IsOK(res1
)) {
19704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetFindString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19706 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19708 arg2
= wxString_in_helper(obj1
);
19709 if (arg2
== NULL
) SWIG_fail
;
19713 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19714 (arg1
)->SetFindString((wxString
const &)*arg2
);
19715 wxPyEndAllowThreads(__tstate
);
19716 if (PyErr_Occurred()) SWIG_fail
;
19718 resultobj
= SWIG_Py_Void();
19733 SWIGINTERN PyObject
*_wrap_FindDialogEvent_SetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19734 PyObject
*resultobj
= 0;
19735 wxFindDialogEvent
*arg1
= (wxFindDialogEvent
*) 0 ;
19736 wxString
*arg2
= 0 ;
19739 bool temp2
= false ;
19740 PyObject
* obj0
= 0 ;
19741 PyObject
* obj1
= 0 ;
19742 char * kwnames
[] = {
19743 (char *) "self",(char *) "str", NULL
19746 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetReplaceString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19747 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindDialogEvent
, 0 | 0 );
19748 if (!SWIG_IsOK(res1
)) {
19749 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindDialogEvent_SetReplaceString" "', expected argument " "1"" of type '" "wxFindDialogEvent *""'");
19751 arg1
= reinterpret_cast< wxFindDialogEvent
* >(argp1
);
19753 arg2
= wxString_in_helper(obj1
);
19754 if (arg2
== NULL
) SWIG_fail
;
19758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19759 (arg1
)->SetReplaceString((wxString
const &)*arg2
);
19760 wxPyEndAllowThreads(__tstate
);
19761 if (PyErr_Occurred()) SWIG_fail
;
19763 resultobj
= SWIG_Py_Void();
19778 SWIGINTERN PyObject
*FindDialogEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19780 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19781 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindDialogEvent
, SWIG_NewClientData(obj
));
19782 return SWIG_Py_Void();
19785 SWIGINTERN PyObject
*FindDialogEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19786 return SWIG_Python_InitShadowInstance(args
);
19789 SWIGINTERN PyObject
*_wrap_new_FindReplaceData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19790 PyObject
*resultobj
= 0;
19791 int arg1
= (int) 0 ;
19792 wxFindReplaceData
*result
= 0 ;
19795 PyObject
* obj0
= 0 ;
19796 char * kwnames
[] = {
19797 (char *) "flags", NULL
19800 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FindReplaceData",kwnames
,&obj0
)) SWIG_fail
;
19802 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19803 if (!SWIG_IsOK(ecode1
)) {
19804 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_FindReplaceData" "', expected argument " "1"" of type '" "int""'");
19806 arg1
= static_cast< int >(val1
);
19809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19810 result
= (wxFindReplaceData
*)new wxFindReplaceData(arg1
);
19811 wxPyEndAllowThreads(__tstate
);
19812 if (PyErr_Occurred()) SWIG_fail
;
19814 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_NEW
| 0 );
19821 SWIGINTERN PyObject
*_wrap_delete_FindReplaceData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19822 PyObject
*resultobj
= 0;
19823 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19826 PyObject
*swig_obj
[1] ;
19828 if (!args
) SWIG_fail
;
19829 swig_obj
[0] = args
;
19830 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_DISOWN
| 0 );
19831 if (!SWIG_IsOK(res1
)) {
19832 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_FindReplaceData" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19834 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19836 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19839 wxPyEndAllowThreads(__tstate
);
19840 if (PyErr_Occurred()) SWIG_fail
;
19842 resultobj
= SWIG_Py_Void();
19849 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19850 PyObject
*resultobj
= 0;
19851 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19852 wxString
*result
= 0 ;
19855 PyObject
*swig_obj
[1] ;
19857 if (!args
) SWIG_fail
;
19858 swig_obj
[0] = args
;
19859 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19860 if (!SWIG_IsOK(res1
)) {
19861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetFindString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19863 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19865 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19867 wxString
const &_result_ref
= (arg1
)->GetFindString();
19868 result
= (wxString
*) &_result_ref
;
19870 wxPyEndAllowThreads(__tstate
);
19871 if (PyErr_Occurred()) SWIG_fail
;
19875 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19877 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19886 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19887 PyObject
*resultobj
= 0;
19888 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19889 wxString
*result
= 0 ;
19892 PyObject
*swig_obj
[1] ;
19894 if (!args
) SWIG_fail
;
19895 swig_obj
[0] = args
;
19896 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19897 if (!SWIG_IsOK(res1
)) {
19898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetReplaceString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19900 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19904 wxString
const &_result_ref
= (arg1
)->GetReplaceString();
19905 result
= (wxString
*) &_result_ref
;
19907 wxPyEndAllowThreads(__tstate
);
19908 if (PyErr_Occurred()) SWIG_fail
;
19912 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
19914 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
19923 SWIGINTERN PyObject
*_wrap_FindReplaceData_GetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19924 PyObject
*resultobj
= 0;
19925 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19929 PyObject
*swig_obj
[1] ;
19931 if (!args
) SWIG_fail
;
19932 swig_obj
[0] = args
;
19933 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19934 if (!SWIG_IsOK(res1
)) {
19935 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_GetFlags" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19937 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19940 result
= (int)(arg1
)->GetFlags();
19941 wxPyEndAllowThreads(__tstate
);
19942 if (PyErr_Occurred()) SWIG_fail
;
19944 resultobj
= SWIG_From_int(static_cast< int >(result
));
19951 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19952 PyObject
*resultobj
= 0;
19953 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19959 PyObject
* obj0
= 0 ;
19960 PyObject
* obj1
= 0 ;
19961 char * kwnames
[] = {
19962 (char *) "self",(char *) "flags", NULL
19965 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19966 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
19967 if (!SWIG_IsOK(res1
)) {
19968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetFlags" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
19970 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
19971 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19972 if (!SWIG_IsOK(ecode2
)) {
19973 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "FindReplaceData_SetFlags" "', expected argument " "2"" of type '" "int""'");
19975 arg2
= static_cast< int >(val2
);
19977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19978 (arg1
)->SetFlags(arg2
);
19979 wxPyEndAllowThreads(__tstate
);
19980 if (PyErr_Occurred()) SWIG_fail
;
19982 resultobj
= SWIG_Py_Void();
19989 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetFindString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19990 PyObject
*resultobj
= 0;
19991 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
19992 wxString
*arg2
= 0 ;
19995 bool temp2
= false ;
19996 PyObject
* obj0
= 0 ;
19997 PyObject
* obj1
= 0 ;
19998 char * kwnames
[] = {
19999 (char *) "self",(char *) "str", NULL
20002 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFindString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20003 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20004 if (!SWIG_IsOK(res1
)) {
20005 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetFindString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
20007 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
20009 arg2
= wxString_in_helper(obj1
);
20010 if (arg2
== NULL
) SWIG_fail
;
20014 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20015 (arg1
)->SetFindString((wxString
const &)*arg2
);
20016 wxPyEndAllowThreads(__tstate
);
20017 if (PyErr_Occurred()) SWIG_fail
;
20019 resultobj
= SWIG_Py_Void();
20034 SWIGINTERN PyObject
*_wrap_FindReplaceData_SetReplaceString(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20035 PyObject
*resultobj
= 0;
20036 wxFindReplaceData
*arg1
= (wxFindReplaceData
*) 0 ;
20037 wxString
*arg2
= 0 ;
20040 bool temp2
= false ;
20041 PyObject
* obj0
= 0 ;
20042 PyObject
* obj1
= 0 ;
20043 char * kwnames
[] = {
20044 (char *) "self",(char *) "str", NULL
20047 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetReplaceString",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20048 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20049 if (!SWIG_IsOK(res1
)) {
20050 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceData_SetReplaceString" "', expected argument " "1"" of type '" "wxFindReplaceData *""'");
20052 arg1
= reinterpret_cast< wxFindReplaceData
* >(argp1
);
20054 arg2
= wxString_in_helper(obj1
);
20055 if (arg2
== NULL
) SWIG_fail
;
20059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20060 (arg1
)->SetReplaceString((wxString
const &)*arg2
);
20061 wxPyEndAllowThreads(__tstate
);
20062 if (PyErr_Occurred()) SWIG_fail
;
20064 resultobj
= SWIG_Py_Void();
20079 SWIGINTERN PyObject
*FindReplaceData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20081 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20082 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindReplaceData
, SWIG_NewClientData(obj
));
20083 return SWIG_Py_Void();
20086 SWIGINTERN PyObject
*FindReplaceData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20087 return SWIG_Python_InitShadowInstance(args
);
20090 SWIGINTERN PyObject
*_wrap_new_FindReplaceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20091 PyObject
*resultobj
= 0;
20092 wxWindow
*arg1
= (wxWindow
*) 0 ;
20093 wxFindReplaceData
*arg2
= (wxFindReplaceData
*) 0 ;
20094 wxString
*arg3
= 0 ;
20095 int arg4
= (int) 0 ;
20096 wxFindReplaceDialog
*result
= 0 ;
20101 bool temp3
= false ;
20104 PyObject
* obj0
= 0 ;
20105 PyObject
* obj1
= 0 ;
20106 PyObject
* obj2
= 0 ;
20107 PyObject
* obj3
= 0 ;
20108 char * kwnames
[] = {
20109 (char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL
20112 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FindReplaceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
20113 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20114 if (!SWIG_IsOK(res1
)) {
20115 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_FindReplaceDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
20117 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
20118 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20119 if (!SWIG_IsOK(res2
)) {
20120 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_FindReplaceDialog" "', expected argument " "2"" of type '" "wxFindReplaceData *""'");
20122 arg2
= reinterpret_cast< wxFindReplaceData
* >(argp2
);
20124 arg3
= wxString_in_helper(obj2
);
20125 if (arg3
== NULL
) SWIG_fail
;
20129 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
20130 if (!SWIG_IsOK(ecode4
)) {
20131 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "new_FindReplaceDialog" "', expected argument " "4"" of type '" "int""'");
20133 arg4
= static_cast< int >(val4
);
20136 if (!wxPyCheckForApp()) SWIG_fail
;
20137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20138 result
= (wxFindReplaceDialog
*)new wxFindReplaceDialog(arg1
,arg2
,(wxString
const &)*arg3
,arg4
);
20139 wxPyEndAllowThreads(__tstate
);
20140 if (PyErr_Occurred()) SWIG_fail
;
20142 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_NEW
| 0 );
20157 SWIGINTERN PyObject
*_wrap_new_PreFindReplaceDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20158 PyObject
*resultobj
= 0;
20159 wxFindReplaceDialog
*result
= 0 ;
20161 if (!SWIG_Python_UnpackTuple(args
,"new_PreFindReplaceDialog",0,0,0)) SWIG_fail
;
20163 if (!wxPyCheckForApp()) SWIG_fail
;
20164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20165 result
= (wxFindReplaceDialog
*)new wxFindReplaceDialog();
20166 wxPyEndAllowThreads(__tstate
);
20167 if (PyErr_Occurred()) SWIG_fail
;
20169 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_OWN
| 0 );
20176 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20177 PyObject
*resultobj
= 0;
20178 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
20179 wxWindow
*arg2
= (wxWindow
*) 0 ;
20180 wxFindReplaceData
*arg3
= (wxFindReplaceData
*) 0 ;
20181 wxString
*arg4
= 0 ;
20182 int arg5
= (int) 0 ;
20190 bool temp4
= false ;
20193 PyObject
* obj0
= 0 ;
20194 PyObject
* obj1
= 0 ;
20195 PyObject
* obj2
= 0 ;
20196 PyObject
* obj3
= 0 ;
20197 PyObject
* obj4
= 0 ;
20198 char * kwnames
[] = {
20199 (char *) "self",(char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL
20202 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:FindReplaceDialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
20203 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
20204 if (!SWIG_IsOK(res1
)) {
20205 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_Create" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
20207 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
20208 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20209 if (!SWIG_IsOK(res2
)) {
20210 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FindReplaceDialog_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
20212 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
20213 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20214 if (!SWIG_IsOK(res3
)) {
20215 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "FindReplaceDialog_Create" "', expected argument " "3"" of type '" "wxFindReplaceData *""'");
20217 arg3
= reinterpret_cast< wxFindReplaceData
* >(argp3
);
20219 arg4
= wxString_in_helper(obj3
);
20220 if (arg4
== NULL
) SWIG_fail
;
20224 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
20225 if (!SWIG_IsOK(ecode5
)) {
20226 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "FindReplaceDialog_Create" "', expected argument " "5"" of type '" "int""'");
20228 arg5
= static_cast< int >(val5
);
20231 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20232 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
20233 wxPyEndAllowThreads(__tstate
);
20234 if (PyErr_Occurred()) SWIG_fail
;
20237 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20253 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_GetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20254 PyObject
*resultobj
= 0;
20255 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
20256 wxFindReplaceData
*result
= 0 ;
20259 PyObject
*swig_obj
[1] ;
20261 if (!args
) SWIG_fail
;
20262 swig_obj
[0] = args
;
20263 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
20264 if (!SWIG_IsOK(res1
)) {
20265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_GetData" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
20267 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
20269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20270 result
= (wxFindReplaceData
*)(arg1
)->GetData();
20271 wxPyEndAllowThreads(__tstate
);
20272 if (PyErr_Occurred()) SWIG_fail
;
20274 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20281 SWIGINTERN PyObject
*_wrap_FindReplaceDialog_SetData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20282 PyObject
*resultobj
= 0;
20283 wxFindReplaceDialog
*arg1
= (wxFindReplaceDialog
*) 0 ;
20284 wxFindReplaceData
*arg2
= (wxFindReplaceData
*) 0 ;
20289 PyObject
* obj0
= 0 ;
20290 PyObject
* obj1
= 0 ;
20291 char * kwnames
[] = {
20292 (char *) "self",(char *) "data", NULL
20295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceDialog_SetData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxFindReplaceDialog
, 0 | 0 );
20297 if (!SWIG_IsOK(res1
)) {
20298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "FindReplaceDialog_SetData" "', expected argument " "1"" of type '" "wxFindReplaceDialog *""'");
20300 arg1
= reinterpret_cast< wxFindReplaceDialog
* >(argp1
);
20301 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFindReplaceData
, 0 | 0 );
20302 if (!SWIG_IsOK(res2
)) {
20303 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "FindReplaceDialog_SetData" "', expected argument " "2"" of type '" "wxFindReplaceData *""'");
20305 arg2
= reinterpret_cast< wxFindReplaceData
* >(argp2
);
20307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20308 (arg1
)->SetData(arg2
);
20309 wxPyEndAllowThreads(__tstate
);
20310 if (PyErr_Occurred()) SWIG_fail
;
20312 resultobj
= SWIG_Py_Void();
20319 SWIGINTERN PyObject
*FindReplaceDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20321 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20322 SWIG_TypeNewClientData(SWIGTYPE_p_wxFindReplaceDialog
, SWIG_NewClientData(obj
));
20323 return SWIG_Py_Void();
20326 SWIGINTERN PyObject
*FindReplaceDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20327 return SWIG_Python_InitShadowInstance(args
);
20330 SWIGINTERN PyObject
*_wrap_new_MDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20331 PyObject
*resultobj
= 0;
20332 wxWindow
*arg1
= (wxWindow
*) 0 ;
20333 int arg2
= (int) (int)-1 ;
20334 wxString
const &arg3_defvalue
= wxPyEmptyString
;
20335 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
20336 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
20337 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
20338 wxSize
const &arg5_defvalue
= wxDefaultSize
;
20339 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
20340 long arg6
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
20341 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
20342 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
20343 wxMDIParentFrame
*result
= 0 ;
20348 bool temp3
= false ;
20353 bool temp7
= false ;
20354 PyObject
* obj0
= 0 ;
20355 PyObject
* obj1
= 0 ;
20356 PyObject
* obj2
= 0 ;
20357 PyObject
* obj3
= 0 ;
20358 PyObject
* obj4
= 0 ;
20359 PyObject
* obj5
= 0 ;
20360 PyObject
* obj6
= 0 ;
20361 char * kwnames
[] = {
20362 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20365 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIParentFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
20366 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20367 if (!SWIG_IsOK(res1
)) {
20368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIParentFrame" "', expected argument " "1"" of type '" "wxWindow *""'");
20370 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
20372 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20373 if (!SWIG_IsOK(ecode2
)) {
20374 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIParentFrame" "', expected argument " "2"" of type '" "int""'");
20376 arg2
= static_cast< int >(val2
);
20380 arg3
= wxString_in_helper(obj2
);
20381 if (arg3
== NULL
) SWIG_fail
;
20388 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
20394 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
20398 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
20399 if (!SWIG_IsOK(ecode6
)) {
20400 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MDIParentFrame" "', expected argument " "6"" of type '" "long""'");
20402 arg6
= static_cast< long >(val6
);
20406 arg7
= wxString_in_helper(obj6
);
20407 if (arg7
== NULL
) SWIG_fail
;
20412 if (!wxPyCheckForApp()) SWIG_fail
;
20413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20414 result
= (wxMDIParentFrame
*)new wxMDIParentFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
20415 wxPyEndAllowThreads(__tstate
);
20416 if (PyErr_Occurred()) SWIG_fail
;
20418 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_NEW
| 0 );
20441 SWIGINTERN PyObject
*_wrap_new_PreMDIParentFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20442 PyObject
*resultobj
= 0;
20443 wxMDIParentFrame
*result
= 0 ;
20445 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIParentFrame",0,0,0)) SWIG_fail
;
20447 if (!wxPyCheckForApp()) SWIG_fail
;
20448 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20449 result
= (wxMDIParentFrame
*)new wxMDIParentFrame();
20450 wxPyEndAllowThreads(__tstate
);
20451 if (PyErr_Occurred()) SWIG_fail
;
20453 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_OWN
| 0 );
20460 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20461 PyObject
*resultobj
= 0;
20462 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20463 wxWindow
*arg2
= (wxWindow
*) 0 ;
20464 int arg3
= (int) (int)-1 ;
20465 wxString
const &arg4_defvalue
= wxPyEmptyString
;
20466 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
20467 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
20468 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
20469 wxSize
const &arg6_defvalue
= wxDefaultSize
;
20470 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
20471 long arg7
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL
;
20472 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
20473 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20481 bool temp4
= false ;
20486 bool temp8
= false ;
20487 PyObject
* obj0
= 0 ;
20488 PyObject
* obj1
= 0 ;
20489 PyObject
* obj2
= 0 ;
20490 PyObject
* obj3
= 0 ;
20491 PyObject
* obj4
= 0 ;
20492 PyObject
* obj5
= 0 ;
20493 PyObject
* obj6
= 0 ;
20494 PyObject
* obj7
= 0 ;
20495 char * kwnames
[] = {
20496 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIParentFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
20500 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20501 if (!SWIG_IsOK(res1
)) {
20502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Create" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20504 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20505 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
20506 if (!SWIG_IsOK(res2
)) {
20507 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIParentFrame_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
20509 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
20511 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
20512 if (!SWIG_IsOK(ecode3
)) {
20513 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIParentFrame_Create" "', expected argument " "3"" of type '" "int""'");
20515 arg3
= static_cast< int >(val3
);
20519 arg4
= wxString_in_helper(obj3
);
20520 if (arg4
== NULL
) SWIG_fail
;
20527 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
20533 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
20537 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
20538 if (!SWIG_IsOK(ecode7
)) {
20539 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MDIParentFrame_Create" "', expected argument " "7"" of type '" "long""'");
20541 arg7
= static_cast< long >(val7
);
20545 arg8
= wxString_in_helper(obj7
);
20546 if (arg8
== NULL
) SWIG_fail
;
20551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20552 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
20553 wxPyEndAllowThreads(__tstate
);
20554 if (PyErr_Occurred()) SWIG_fail
;
20557 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20581 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ActivateNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20582 PyObject
*resultobj
= 0;
20583 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20586 PyObject
*swig_obj
[1] ;
20588 if (!args
) SWIG_fail
;
20589 swig_obj
[0] = args
;
20590 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20591 if (!SWIG_IsOK(res1
)) {
20592 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ActivateNext" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20594 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20597 (arg1
)->ActivateNext();
20598 wxPyEndAllowThreads(__tstate
);
20599 if (PyErr_Occurred()) SWIG_fail
;
20601 resultobj
= SWIG_Py_Void();
20608 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ActivatePrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20609 PyObject
*resultobj
= 0;
20610 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20613 PyObject
*swig_obj
[1] ;
20615 if (!args
) SWIG_fail
;
20616 swig_obj
[0] = args
;
20617 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20618 if (!SWIG_IsOK(res1
)) {
20619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ActivatePrevious" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20621 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20624 (arg1
)->ActivatePrevious();
20625 wxPyEndAllowThreads(__tstate
);
20626 if (PyErr_Occurred()) SWIG_fail
;
20628 resultobj
= SWIG_Py_Void();
20635 SWIGINTERN PyObject
*_wrap_MDIParentFrame_ArrangeIcons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20636 PyObject
*resultobj
= 0;
20637 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20640 PyObject
*swig_obj
[1] ;
20642 if (!args
) SWIG_fail
;
20643 swig_obj
[0] = args
;
20644 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20645 if (!SWIG_IsOK(res1
)) {
20646 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_ArrangeIcons" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20648 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20650 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20651 (arg1
)->ArrangeIcons();
20652 wxPyEndAllowThreads(__tstate
);
20653 if (PyErr_Occurred()) SWIG_fail
;
20655 resultobj
= SWIG_Py_Void();
20662 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Cascade(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20663 PyObject
*resultobj
= 0;
20664 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20667 PyObject
*swig_obj
[1] ;
20669 if (!args
) SWIG_fail
;
20670 swig_obj
[0] = args
;
20671 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20672 if (!SWIG_IsOK(res1
)) {
20673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Cascade" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20675 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20679 wxPyEndAllowThreads(__tstate
);
20680 if (PyErr_Occurred()) SWIG_fail
;
20682 resultobj
= SWIG_Py_Void();
20689 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetActiveChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20690 PyObject
*resultobj
= 0;
20691 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20692 wxMDIChildFrame
*result
= 0 ;
20695 PyObject
*swig_obj
[1] ;
20697 if (!args
) SWIG_fail
;
20698 swig_obj
[0] = args
;
20699 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20700 if (!SWIG_IsOK(res1
)) {
20701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetActiveChild" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20703 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20705 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20706 result
= (wxMDIChildFrame
*)(arg1
)->GetActiveChild();
20707 wxPyEndAllowThreads(__tstate
);
20708 if (PyErr_Occurred()) SWIG_fail
;
20711 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20719 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20720 PyObject
*resultobj
= 0;
20721 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20722 wxMDIClientWindow
*result
= 0 ;
20725 PyObject
*swig_obj
[1] ;
20727 if (!args
) SWIG_fail
;
20728 swig_obj
[0] = args
;
20729 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20730 if (!SWIG_IsOK(res1
)) {
20731 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetClientWindow" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20733 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20735 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20736 result
= (wxMDIClientWindow
*)(arg1
)->GetClientWindow();
20737 wxPyEndAllowThreads(__tstate
);
20738 if (PyErr_Occurred()) SWIG_fail
;
20741 resultobj
= wxPyMake_wxObject(result
, (bool)0);
20749 SWIGINTERN PyObject
*_wrap_MDIParentFrame_GetToolBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20750 PyObject
*resultobj
= 0;
20751 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20752 wxWindow
*result
= 0 ;
20755 PyObject
*swig_obj
[1] ;
20757 if (!args
) SWIG_fail
;
20758 swig_obj
[0] = args
;
20759 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20760 if (!SWIG_IsOK(res1
)) {
20761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_GetToolBar" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20763 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20765 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20766 result
= (wxWindow
*)(arg1
)->GetToolBar();
20767 wxPyEndAllowThreads(__tstate
);
20768 if (PyErr_Occurred()) SWIG_fail
;
20771 resultobj
= wxPyMake_wxObject(result
, 0);
20779 SWIGINTERN PyObject
*_wrap_MDIParentFrame_Tile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20780 PyObject
*resultobj
= 0;
20781 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20782 wxOrientation arg2
= (wxOrientation
) wxHORIZONTAL
;
20787 PyObject
* obj0
= 0 ;
20788 PyObject
* obj1
= 0 ;
20789 char * kwnames
[] = {
20790 (char *) "self",(char *) "orient", NULL
20793 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:MDIParentFrame_Tile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20794 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20795 if (!SWIG_IsOK(res1
)) {
20796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIParentFrame_Tile" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20798 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20800 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20801 if (!SWIG_IsOK(ecode2
)) {
20802 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "MDIParentFrame_Tile" "', expected argument " "2"" of type '" "wxOrientation""'");
20804 arg2
= static_cast< wxOrientation
>(val2
);
20807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20808 (arg1
)->Tile(arg2
);
20809 wxPyEndAllowThreads(__tstate
);
20810 if (PyErr_Occurred()) SWIG_fail
;
20812 resultobj
= SWIG_Py_Void();
20819 SWIGINTERN PyObject
*MDIParentFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20821 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20822 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIParentFrame
, SWIG_NewClientData(obj
));
20823 return SWIG_Py_Void();
20826 SWIGINTERN PyObject
*MDIParentFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20827 return SWIG_Python_InitShadowInstance(args
);
20830 SWIGINTERN PyObject
*_wrap_new_MDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20831 PyObject
*resultobj
= 0;
20832 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
20833 int arg2
= (int) (int)-1 ;
20834 wxString
const &arg3_defvalue
= wxPyEmptyString
;
20835 wxString
*arg3
= (wxString
*) &arg3_defvalue
;
20836 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
20837 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
20838 wxSize
const &arg5_defvalue
= wxDefaultSize
;
20839 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
20840 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
20841 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
20842 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
20843 wxMDIChildFrame
*result
= 0 ;
20848 bool temp3
= false ;
20853 bool temp7
= false ;
20854 PyObject
* obj0
= 0 ;
20855 PyObject
* obj1
= 0 ;
20856 PyObject
* obj2
= 0 ;
20857 PyObject
* obj3
= 0 ;
20858 PyObject
* obj4
= 0 ;
20859 PyObject
* obj5
= 0 ;
20860 PyObject
* obj6
= 0 ;
20861 char * kwnames
[] = {
20862 (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20865 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIChildFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
20866 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
20867 if (!SWIG_IsOK(res1
)) {
20868 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIChildFrame" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
20870 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
20872 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20873 if (!SWIG_IsOK(ecode2
)) {
20874 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIChildFrame" "', expected argument " "2"" of type '" "int""'");
20876 arg2
= static_cast< int >(val2
);
20880 arg3
= wxString_in_helper(obj2
);
20881 if (arg3
== NULL
) SWIG_fail
;
20888 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
20894 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
20898 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
20899 if (!SWIG_IsOK(ecode6
)) {
20900 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_MDIChildFrame" "', expected argument " "6"" of type '" "long""'");
20902 arg6
= static_cast< long >(val6
);
20906 arg7
= wxString_in_helper(obj6
);
20907 if (arg7
== NULL
) SWIG_fail
;
20912 if (!wxPyCheckForApp()) SWIG_fail
;
20913 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20914 result
= (wxMDIChildFrame
*)new wxMDIChildFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
20915 wxPyEndAllowThreads(__tstate
);
20916 if (PyErr_Occurred()) SWIG_fail
;
20918 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_NEW
| 0 );
20941 SWIGINTERN PyObject
*_wrap_new_PreMDIChildFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20942 PyObject
*resultobj
= 0;
20943 wxMDIChildFrame
*result
= 0 ;
20945 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIChildFrame",0,0,0)) SWIG_fail
;
20947 if (!wxPyCheckForApp()) SWIG_fail
;
20948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20949 result
= (wxMDIChildFrame
*)new wxMDIChildFrame();
20950 wxPyEndAllowThreads(__tstate
);
20951 if (PyErr_Occurred()) SWIG_fail
;
20953 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_OWN
| 0 );
20960 SWIGINTERN PyObject
*_wrap_MDIChildFrame_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20961 PyObject
*resultobj
= 0;
20962 wxMDIChildFrame
*arg1
= (wxMDIChildFrame
*) 0 ;
20963 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
20964 int arg3
= (int) (int)-1 ;
20965 wxString
const &arg4_defvalue
= wxPyEmptyString
;
20966 wxString
*arg4
= (wxString
*) &arg4_defvalue
;
20967 wxPoint
const &arg5_defvalue
= wxDefaultPosition
;
20968 wxPoint
*arg5
= (wxPoint
*) &arg5_defvalue
;
20969 wxSize
const &arg6_defvalue
= wxDefaultSize
;
20970 wxSize
*arg6
= (wxSize
*) &arg6_defvalue
;
20971 long arg7
= (long) wxDEFAULT_FRAME_STYLE
;
20972 wxString
const &arg8_defvalue
= wxPyFrameNameStr
;
20973 wxString
*arg8
= (wxString
*) &arg8_defvalue
;
20981 bool temp4
= false ;
20986 bool temp8
= false ;
20987 PyObject
* obj0
= 0 ;
20988 PyObject
* obj1
= 0 ;
20989 PyObject
* obj2
= 0 ;
20990 PyObject
* obj3
= 0 ;
20991 PyObject
* obj4
= 0 ;
20992 PyObject
* obj5
= 0 ;
20993 PyObject
* obj6
= 0 ;
20994 PyObject
* obj7
= 0 ;
20995 char * kwnames
[] = {
20996 (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
20999 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIChildFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
21000 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIChildFrame
, 0 | 0 );
21001 if (!SWIG_IsOK(res1
)) {
21002 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIChildFrame_Create" "', expected argument " "1"" of type '" "wxMDIChildFrame *""'");
21004 arg1
= reinterpret_cast< wxMDIChildFrame
* >(argp1
);
21005 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
21006 if (!SWIG_IsOK(res2
)) {
21007 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIChildFrame_Create" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
21009 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
21011 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21012 if (!SWIG_IsOK(ecode3
)) {
21013 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIChildFrame_Create" "', expected argument " "3"" of type '" "int""'");
21015 arg3
= static_cast< int >(val3
);
21019 arg4
= wxString_in_helper(obj3
);
21020 if (arg4
== NULL
) SWIG_fail
;
21027 if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
;
21033 if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
;
21037 ecode7
= SWIG_AsVal_long(obj6
, &val7
);
21038 if (!SWIG_IsOK(ecode7
)) {
21039 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "MDIChildFrame_Create" "', expected argument " "7"" of type '" "long""'");
21041 arg7
= static_cast< long >(val7
);
21045 arg8
= wxString_in_helper(obj7
);
21046 if (arg8
== NULL
) SWIG_fail
;
21051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21052 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString
const &)*arg4
,(wxPoint
const &)*arg5
,(wxSize
const &)*arg6
,arg7
,(wxString
const &)*arg8
);
21053 wxPyEndAllowThreads(__tstate
);
21054 if (PyErr_Occurred()) SWIG_fail
;
21057 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21081 SWIGINTERN PyObject
*_wrap_MDIChildFrame_Activate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21082 PyObject
*resultobj
= 0;
21083 wxMDIChildFrame
*arg1
= (wxMDIChildFrame
*) 0 ;
21086 PyObject
*swig_obj
[1] ;
21088 if (!args
) SWIG_fail
;
21089 swig_obj
[0] = args
;
21090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxMDIChildFrame
, 0 | 0 );
21091 if (!SWIG_IsOK(res1
)) {
21092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIChildFrame_Activate" "', expected argument " "1"" of type '" "wxMDIChildFrame *""'");
21094 arg1
= reinterpret_cast< wxMDIChildFrame
* >(argp1
);
21096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21097 (arg1
)->Activate();
21098 wxPyEndAllowThreads(__tstate
);
21099 if (PyErr_Occurred()) SWIG_fail
;
21101 resultobj
= SWIG_Py_Void();
21108 SWIGINTERN PyObject
*MDIChildFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21110 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21111 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIChildFrame
, SWIG_NewClientData(obj
));
21112 return SWIG_Py_Void();
21115 SWIGINTERN PyObject
*MDIChildFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21116 return SWIG_Python_InitShadowInstance(args
);
21119 SWIGINTERN PyObject
*_wrap_new_MDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21120 PyObject
*resultobj
= 0;
21121 wxMDIParentFrame
*arg1
= (wxMDIParentFrame
*) 0 ;
21122 long arg2
= (long) 0 ;
21123 wxMDIClientWindow
*result
= 0 ;
21128 PyObject
* obj0
= 0 ;
21129 PyObject
* obj1
= 0 ;
21130 char * kwnames
[] = {
21131 (char *) "parent",(char *) "style", NULL
21134 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_MDIClientWindow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21135 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
21136 if (!SWIG_IsOK(res1
)) {
21137 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_MDIClientWindow" "', expected argument " "1"" of type '" "wxMDIParentFrame *""'");
21139 arg1
= reinterpret_cast< wxMDIParentFrame
* >(argp1
);
21141 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
21142 if (!SWIG_IsOK(ecode2
)) {
21143 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_MDIClientWindow" "', expected argument " "2"" of type '" "long""'");
21145 arg2
= static_cast< long >(val2
);
21148 if (!wxPyCheckForApp()) SWIG_fail
;
21149 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21150 result
= (wxMDIClientWindow
*)new wxMDIClientWindow(arg1
,arg2
);
21151 wxPyEndAllowThreads(__tstate
);
21152 if (PyErr_Occurred()) SWIG_fail
;
21154 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIClientWindow
, SWIG_POINTER_NEW
| 0 );
21161 SWIGINTERN PyObject
*_wrap_new_PreMDIClientWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21162 PyObject
*resultobj
= 0;
21163 wxMDIClientWindow
*result
= 0 ;
21165 if (!SWIG_Python_UnpackTuple(args
,"new_PreMDIClientWindow",0,0,0)) SWIG_fail
;
21167 if (!wxPyCheckForApp()) SWIG_fail
;
21168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21169 result
= (wxMDIClientWindow
*)new wxMDIClientWindow();
21170 wxPyEndAllowThreads(__tstate
);
21171 if (PyErr_Occurred()) SWIG_fail
;
21173 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxMDIClientWindow
, SWIG_POINTER_OWN
| 0 );
21180 SWIGINTERN PyObject
*_wrap_MDIClientWindow_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21181 PyObject
*resultobj
= 0;
21182 wxMDIClientWindow
*arg1
= (wxMDIClientWindow
*) 0 ;
21183 wxMDIParentFrame
*arg2
= (wxMDIParentFrame
*) 0 ;
21184 long arg3
= (long) 0 ;
21192 PyObject
* obj0
= 0 ;
21193 PyObject
* obj1
= 0 ;
21194 PyObject
* obj2
= 0 ;
21195 char * kwnames
[] = {
21196 (char *) "self",(char *) "parent",(char *) "style", NULL
21199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:MDIClientWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxMDIClientWindow
, 0 | 0 );
21201 if (!SWIG_IsOK(res1
)) {
21202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "MDIClientWindow_Create" "', expected argument " "1"" of type '" "wxMDIClientWindow *""'");
21204 arg1
= reinterpret_cast< wxMDIClientWindow
* >(argp1
);
21205 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxMDIParentFrame
, 0 | 0 );
21206 if (!SWIG_IsOK(res2
)) {
21207 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "MDIClientWindow_Create" "', expected argument " "2"" of type '" "wxMDIParentFrame *""'");
21209 arg2
= reinterpret_cast< wxMDIParentFrame
* >(argp2
);
21211 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
21212 if (!SWIG_IsOK(ecode3
)) {
21213 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "MDIClientWindow_Create" "', expected argument " "3"" of type '" "long""'");
21215 arg3
= static_cast< long >(val3
);
21218 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21219 result
= (bool)(arg1
)->Create(arg2
,arg3
);
21220 wxPyEndAllowThreads(__tstate
);
21221 if (PyErr_Occurred()) SWIG_fail
;
21224 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21232 SWIGINTERN PyObject
*MDIClientWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21234 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21235 SWIG_TypeNewClientData(SWIGTYPE_p_wxMDIClientWindow
, SWIG_NewClientData(obj
));
21236 return SWIG_Py_Void();
21239 SWIGINTERN PyObject
*MDIClientWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21240 return SWIG_Python_InitShadowInstance(args
);
21243 SWIGINTERN PyObject
*_wrap_new_PyWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21244 PyObject
*resultobj
= 0;
21245 wxWindow
*arg1
= (wxWindow
*) 0 ;
21246 int arg2
= (int) (int)-1 ;
21247 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
21248 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
21249 wxSize
const &arg4_defvalue
= wxDefaultSize
;
21250 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
21251 long arg5
= (long) 0 ;
21252 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
21253 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
21254 wxPyWindow
*result
= 0 ;
21263 bool temp6
= false ;
21264 PyObject
* obj0
= 0 ;
21265 PyObject
* obj1
= 0 ;
21266 PyObject
* obj2
= 0 ;
21267 PyObject
* obj3
= 0 ;
21268 PyObject
* obj4
= 0 ;
21269 PyObject
* obj5
= 0 ;
21270 char * kwnames
[] = {
21271 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
21274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
21276 if (!SWIG_IsOK(res1
)) {
21277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
21279 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
21281 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21282 if (!SWIG_IsOK(ecode2
)) {
21283 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyWindow" "', expected argument " "2"" of type '" "int""'");
21285 arg2
= static_cast< int >(val2
);
21290 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
21296 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
21300 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
21301 if (!SWIG_IsOK(ecode5
)) {
21302 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyWindow" "', expected argument " "5"" of type '" "long""'");
21304 arg5
= static_cast< long >(val5
);
21308 arg6
= wxString_in_helper(obj5
);
21309 if (arg6
== NULL
) SWIG_fail
;
21314 if (!wxPyCheckForApp()) SWIG_fail
;
21315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21316 result
= (wxPyWindow
*)new wxPyWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
21317 wxPyEndAllowThreads(__tstate
);
21318 if (PyErr_Occurred()) SWIG_fail
;
21320 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_NEW
| 0 );
21335 SWIGINTERN PyObject
*_wrap_new_PrePyWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21336 PyObject
*resultobj
= 0;
21337 wxPyWindow
*result
= 0 ;
21339 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyWindow",0,0,0)) SWIG_fail
;
21341 if (!wxPyCheckForApp()) SWIG_fail
;
21342 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21343 result
= (wxPyWindow
*)new wxPyWindow();
21344 wxPyEndAllowThreads(__tstate
);
21345 if (PyErr_Occurred()) SWIG_fail
;
21347 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_OWN
| 0 );
21354 SWIGINTERN PyObject
*_wrap_PyWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21355 PyObject
*resultobj
= 0;
21356 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21357 PyObject
*arg2
= (PyObject
*) 0 ;
21358 PyObject
*arg3
= (PyObject
*) 0 ;
21361 PyObject
* obj0
= 0 ;
21362 PyObject
* obj1
= 0 ;
21363 PyObject
* obj2
= 0 ;
21364 char * kwnames
[] = {
21365 (char *) "self",(char *) "self",(char *) "_class", NULL
21368 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21369 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21370 if (!SWIG_IsOK(res1
)) {
21371 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21373 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21377 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21378 (arg1
)->_setCallbackInfo(arg2
,arg3
);
21379 wxPyEndAllowThreads(__tstate
);
21380 if (PyErr_Occurred()) SWIG_fail
;
21382 resultobj
= SWIG_Py_Void();
21389 SWIGINTERN PyObject
*_wrap_PyWindow_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21390 PyObject
*resultobj
= 0;
21391 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21396 PyObject
* obj0
= 0 ;
21397 PyObject
* obj1
= 0 ;
21398 char * kwnames
[] = {
21399 (char *) "self",(char *) "size", NULL
21402 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21403 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21404 if (!SWIG_IsOK(res1
)) {
21405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_SetBestSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21407 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21410 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
21413 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21414 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
21415 wxPyEndAllowThreads(__tstate
);
21416 if (PyErr_Occurred()) SWIG_fail
;
21418 resultobj
= SWIG_Py_Void();
21425 SWIGINTERN PyObject
*_wrap_PyWindow_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21426 PyObject
*resultobj
= 0;
21427 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21428 wxDC
*arg2
= (wxDC
*) 0 ;
21434 PyObject
* obj0
= 0 ;
21435 PyObject
* obj1
= 0 ;
21436 char * kwnames
[] = {
21437 (char *) "self",(char *) "dc", NULL
21440 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
21441 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21442 if (!SWIG_IsOK(res1
)) {
21443 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21445 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21446 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
21447 if (!SWIG_IsOK(res2
)) {
21448 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyWindow_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
21450 arg2
= reinterpret_cast< wxDC
* >(argp2
);
21452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21453 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
21454 wxPyEndAllowThreads(__tstate
);
21455 if (PyErr_Occurred()) SWIG_fail
;
21458 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
21466 SWIGINTERN PyObject
*_wrap_PyWindow_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21467 PyObject
*resultobj
= 0;
21468 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21483 PyObject
* obj0
= 0 ;
21484 PyObject
* obj1
= 0 ;
21485 PyObject
* obj2
= 0 ;
21486 PyObject
* obj3
= 0 ;
21487 PyObject
* obj4
= 0 ;
21488 char * kwnames
[] = {
21489 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
21492 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyWindow_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
21493 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21494 if (!SWIG_IsOK(res1
)) {
21495 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21497 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21498 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21499 if (!SWIG_IsOK(ecode2
)) {
21500 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
21502 arg2
= static_cast< int >(val2
);
21503 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21504 if (!SWIG_IsOK(ecode3
)) {
21505 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
21507 arg3
= static_cast< int >(val3
);
21508 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21509 if (!SWIG_IsOK(ecode4
)) {
21510 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
21512 arg4
= static_cast< int >(val4
);
21513 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21514 if (!SWIG_IsOK(ecode5
)) {
21515 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyWindow_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
21517 arg5
= static_cast< int >(val5
);
21519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21520 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
21521 wxPyEndAllowThreads(__tstate
);
21522 if (PyErr_Occurred()) SWIG_fail
;
21524 resultobj
= SWIG_Py_Void();
21531 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21532 PyObject
*resultobj
= 0;
21533 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21538 int arg6
= (int) wxSIZE_AUTO
;
21551 PyObject
* obj0
= 0 ;
21552 PyObject
* obj1
= 0 ;
21553 PyObject
* obj2
= 0 ;
21554 PyObject
* obj3
= 0 ;
21555 PyObject
* obj4
= 0 ;
21556 PyObject
* obj5
= 0 ;
21557 char * kwnames
[] = {
21558 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
21561 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyWindow_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21562 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21563 if (!SWIG_IsOK(res1
)) {
21564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21566 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21567 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21568 if (!SWIG_IsOK(ecode2
)) {
21569 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetSize" "', expected argument " "2"" of type '" "int""'");
21571 arg2
= static_cast< int >(val2
);
21572 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21573 if (!SWIG_IsOK(ecode3
)) {
21574 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetSize" "', expected argument " "3"" of type '" "int""'");
21576 arg3
= static_cast< int >(val3
);
21577 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
21578 if (!SWIG_IsOK(ecode4
)) {
21579 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyWindow_DoSetSize" "', expected argument " "4"" of type '" "int""'");
21581 arg4
= static_cast< int >(val4
);
21582 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
21583 if (!SWIG_IsOK(ecode5
)) {
21584 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyWindow_DoSetSize" "', expected argument " "5"" of type '" "int""'");
21586 arg5
= static_cast< int >(val5
);
21588 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
21589 if (!SWIG_IsOK(ecode6
)) {
21590 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyWindow_DoSetSize" "', expected argument " "6"" of type '" "int""'");
21592 arg6
= static_cast< int >(val6
);
21595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21596 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
21597 wxPyEndAllowThreads(__tstate
);
21598 if (PyErr_Occurred()) SWIG_fail
;
21600 resultobj
= SWIG_Py_Void();
21607 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21608 PyObject
*resultobj
= 0;
21609 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21618 PyObject
* obj0
= 0 ;
21619 PyObject
* obj1
= 0 ;
21620 PyObject
* obj2
= 0 ;
21621 char * kwnames
[] = {
21622 (char *) "self",(char *) "width",(char *) "height", NULL
21625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21627 if (!SWIG_IsOK(res1
)) {
21628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21630 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21631 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21632 if (!SWIG_IsOK(ecode2
)) {
21633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
21635 arg2
= static_cast< int >(val2
);
21636 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21637 if (!SWIG_IsOK(ecode3
)) {
21638 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
21640 arg3
= static_cast< int >(val3
);
21642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21643 (arg1
)->DoSetClientSize(arg2
,arg3
);
21644 wxPyEndAllowThreads(__tstate
);
21645 if (PyErr_Occurred()) SWIG_fail
;
21647 resultobj
= SWIG_Py_Void();
21654 SWIGINTERN PyObject
*_wrap_PyWindow_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21655 PyObject
*resultobj
= 0;
21656 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21665 PyObject
* obj0
= 0 ;
21666 PyObject
* obj1
= 0 ;
21667 PyObject
* obj2
= 0 ;
21668 char * kwnames
[] = {
21669 (char *) "self",(char *) "x",(char *) "y", NULL
21672 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
21673 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21674 if (!SWIG_IsOK(res1
)) {
21675 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21677 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21678 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
21679 if (!SWIG_IsOK(ecode2
)) {
21680 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
21682 arg2
= static_cast< int >(val2
);
21683 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
21684 if (!SWIG_IsOK(ecode3
)) {
21685 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyWindow_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
21687 arg3
= static_cast< int >(val3
);
21689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21690 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
21691 wxPyEndAllowThreads(__tstate
);
21692 if (PyErr_Occurred()) SWIG_fail
;
21694 resultobj
= SWIG_Py_Void();
21701 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21702 PyObject
*resultobj
= 0;
21703 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21704 int *arg2
= (int *) 0 ;
21705 int *arg3
= (int *) 0 ;
21709 int res2
= SWIG_TMPOBJ
;
21711 int res3
= SWIG_TMPOBJ
;
21712 PyObject
*swig_obj
[1] ;
21716 if (!args
) SWIG_fail
;
21717 swig_obj
[0] = args
;
21718 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21719 if (!SWIG_IsOK(res1
)) {
21720 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21722 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21725 ((wxPyWindow
const *)arg1
)->DoGetSize(arg2
,arg3
);
21726 wxPyEndAllowThreads(__tstate
);
21727 if (PyErr_Occurred()) SWIG_fail
;
21729 resultobj
= SWIG_Py_Void();
21730 if (SWIG_IsTmpObj(res2
)) {
21731 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21733 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21734 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21736 if (SWIG_IsTmpObj(res3
)) {
21737 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21739 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21740 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21748 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21749 PyObject
*resultobj
= 0;
21750 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21751 int *arg2
= (int *) 0 ;
21752 int *arg3
= (int *) 0 ;
21756 int res2
= SWIG_TMPOBJ
;
21758 int res3
= SWIG_TMPOBJ
;
21759 PyObject
*swig_obj
[1] ;
21763 if (!args
) SWIG_fail
;
21764 swig_obj
[0] = args
;
21765 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21766 if (!SWIG_IsOK(res1
)) {
21767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21769 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21772 ((wxPyWindow
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
21773 wxPyEndAllowThreads(__tstate
);
21774 if (PyErr_Occurred()) SWIG_fail
;
21776 resultobj
= SWIG_Py_Void();
21777 if (SWIG_IsTmpObj(res2
)) {
21778 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21780 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21781 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21783 if (SWIG_IsTmpObj(res3
)) {
21784 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21786 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21787 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21795 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21796 PyObject
*resultobj
= 0;
21797 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21798 int *arg2
= (int *) 0 ;
21799 int *arg3
= (int *) 0 ;
21803 int res2
= SWIG_TMPOBJ
;
21805 int res3
= SWIG_TMPOBJ
;
21806 PyObject
*swig_obj
[1] ;
21810 if (!args
) SWIG_fail
;
21811 swig_obj
[0] = args
;
21812 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21813 if (!SWIG_IsOK(res1
)) {
21814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetPosition" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21816 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21819 ((wxPyWindow
const *)arg1
)->DoGetPosition(arg2
,arg3
);
21820 wxPyEndAllowThreads(__tstate
);
21821 if (PyErr_Occurred()) SWIG_fail
;
21823 resultobj
= SWIG_Py_Void();
21824 if (SWIG_IsTmpObj(res2
)) {
21825 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
21827 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21828 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
21830 if (SWIG_IsTmpObj(res3
)) {
21831 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
21833 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
21834 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
21842 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21843 PyObject
*resultobj
= 0;
21844 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21848 PyObject
*swig_obj
[1] ;
21850 if (!args
) SWIG_fail
;
21851 swig_obj
[0] = args
;
21852 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21853 if (!SWIG_IsOK(res1
)) {
21854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21856 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21858 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21859 result
= ((wxPyWindow
const *)arg1
)->DoGetVirtualSize();
21860 wxPyEndAllowThreads(__tstate
);
21861 if (PyErr_Occurred()) SWIG_fail
;
21863 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21870 SWIGINTERN PyObject
*_wrap_PyWindow_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21871 PyObject
*resultobj
= 0;
21872 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21876 PyObject
*swig_obj
[1] ;
21878 if (!args
) SWIG_fail
;
21879 swig_obj
[0] = args
;
21880 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21881 if (!SWIG_IsOK(res1
)) {
21882 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyWindow const *""'");
21884 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21886 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21887 result
= ((wxPyWindow
const *)arg1
)->DoGetBestSize();
21888 wxPyEndAllowThreads(__tstate
);
21889 if (PyErr_Occurred()) SWIG_fail
;
21891 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
21898 SWIGINTERN PyObject
*_wrap_PyWindow_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21899 PyObject
*resultobj
= 0;
21900 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21901 SwigValueWrapper
<wxVisualAttributes
> result
;
21904 PyObject
*swig_obj
[1] ;
21906 if (!args
) SWIG_fail
;
21907 swig_obj
[0] = args
;
21908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21909 if (!SWIG_IsOK(res1
)) {
21910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21912 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21915 result
= (arg1
)->GetDefaultAttributes();
21916 wxPyEndAllowThreads(__tstate
);
21917 if (PyErr_Occurred()) SWIG_fail
;
21919 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
21926 SWIGINTERN PyObject
*_wrap_PyWindow_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21927 PyObject
*resultobj
= 0;
21928 wxPyWindow
*arg1
= (wxPyWindow
*) 0 ;
21931 PyObject
*swig_obj
[1] ;
21933 if (!args
) SWIG_fail
;
21934 swig_obj
[0] = args
;
21935 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyWindow
, 0 | 0 );
21936 if (!SWIG_IsOK(res1
)) {
21937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyWindow_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyWindow *""'");
21939 arg1
= reinterpret_cast< wxPyWindow
* >(argp1
);
21941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
21942 (arg1
)->OnInternalIdle();
21943 wxPyEndAllowThreads(__tstate
);
21944 if (PyErr_Occurred()) SWIG_fail
;
21946 resultobj
= SWIG_Py_Void();
21953 SWIGINTERN PyObject
*PyWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21955 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
21956 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyWindow
, SWIG_NewClientData(obj
));
21957 return SWIG_Py_Void();
21960 SWIGINTERN PyObject
*PyWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
21961 return SWIG_Python_InitShadowInstance(args
);
21964 SWIGINTERN PyObject
*_wrap_new_PyPanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
21965 PyObject
*resultobj
= 0;
21966 wxWindow
*arg1
= (wxWindow
*) 0 ;
21967 int arg2
= (int) (int)-1 ;
21968 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
21969 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
21970 wxSize
const &arg4_defvalue
= wxDefaultSize
;
21971 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
21972 long arg5
= (long) 0 ;
21973 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
21974 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
21975 wxPyPanel
*result
= 0 ;
21984 bool temp6
= false ;
21985 PyObject
* obj0
= 0 ;
21986 PyObject
* obj1
= 0 ;
21987 PyObject
* obj2
= 0 ;
21988 PyObject
* obj3
= 0 ;
21989 PyObject
* obj4
= 0 ;
21990 PyObject
* obj5
= 0 ;
21991 char * kwnames
[] = {
21992 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
21995 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyPanel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
21996 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
21997 if (!SWIG_IsOK(res1
)) {
21998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPanel" "', expected argument " "1"" of type '" "wxWindow *""'");
22000 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
22002 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22003 if (!SWIG_IsOK(ecode2
)) {
22004 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyPanel" "', expected argument " "2"" of type '" "int""'");
22006 arg2
= static_cast< int >(val2
);
22011 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
22017 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
22021 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
22022 if (!SWIG_IsOK(ecode5
)) {
22023 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyPanel" "', expected argument " "5"" of type '" "long""'");
22025 arg5
= static_cast< long >(val5
);
22029 arg6
= wxString_in_helper(obj5
);
22030 if (arg6
== NULL
) SWIG_fail
;
22035 if (!wxPyCheckForApp()) SWIG_fail
;
22036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22037 result
= (wxPyPanel
*)new wxPyPanel(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
22038 wxPyEndAllowThreads(__tstate
);
22039 if (PyErr_Occurred()) SWIG_fail
;
22041 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_NEW
| 0 );
22056 SWIGINTERN PyObject
*_wrap_new_PrePyPanel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22057 PyObject
*resultobj
= 0;
22058 wxPyPanel
*result
= 0 ;
22060 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyPanel",0,0,0)) SWIG_fail
;
22062 if (!wxPyCheckForApp()) SWIG_fail
;
22063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22064 result
= (wxPyPanel
*)new wxPyPanel();
22065 wxPyEndAllowThreads(__tstate
);
22066 if (PyErr_Occurred()) SWIG_fail
;
22068 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_OWN
| 0 );
22075 SWIGINTERN PyObject
*_wrap_PyPanel__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22076 PyObject
*resultobj
= 0;
22077 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22078 PyObject
*arg2
= (PyObject
*) 0 ;
22079 PyObject
*arg3
= (PyObject
*) 0 ;
22082 PyObject
* obj0
= 0 ;
22083 PyObject
* obj1
= 0 ;
22084 PyObject
* obj2
= 0 ;
22085 char * kwnames
[] = {
22086 (char *) "self",(char *) "self",(char *) "_class", NULL
22089 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22090 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22091 if (!SWIG_IsOK(res1
)) {
22092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22094 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22099 (arg1
)->_setCallbackInfo(arg2
,arg3
);
22100 wxPyEndAllowThreads(__tstate
);
22101 if (PyErr_Occurred()) SWIG_fail
;
22103 resultobj
= SWIG_Py_Void();
22110 SWIGINTERN PyObject
*_wrap_PyPanel_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22111 PyObject
*resultobj
= 0;
22112 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22117 PyObject
* obj0
= 0 ;
22118 PyObject
* obj1
= 0 ;
22119 char * kwnames
[] = {
22120 (char *) "self",(char *) "size", NULL
22123 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22124 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22125 if (!SWIG_IsOK(res1
)) {
22126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_SetBestSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22128 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22131 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
22134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22135 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
22136 wxPyEndAllowThreads(__tstate
);
22137 if (PyErr_Occurred()) SWIG_fail
;
22139 resultobj
= SWIG_Py_Void();
22146 SWIGINTERN PyObject
*_wrap_PyPanel_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22147 PyObject
*resultobj
= 0;
22148 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22149 wxDC
*arg2
= (wxDC
*) 0 ;
22155 PyObject
* obj0
= 0 ;
22156 PyObject
* obj1
= 0 ;
22157 char * kwnames
[] = {
22158 (char *) "self",(char *) "dc", NULL
22161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22163 if (!SWIG_IsOK(res1
)) {
22164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22166 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22167 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
22168 if (!SWIG_IsOK(res2
)) {
22169 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPanel_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
22171 arg2
= reinterpret_cast< wxDC
* >(argp2
);
22173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22174 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
22175 wxPyEndAllowThreads(__tstate
);
22176 if (PyErr_Occurred()) SWIG_fail
;
22179 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22187 SWIGINTERN PyObject
*_wrap_PyPanel_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22188 PyObject
*resultobj
= 0;
22189 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22204 PyObject
* obj0
= 0 ;
22205 PyObject
* obj1
= 0 ;
22206 PyObject
* obj2
= 0 ;
22207 PyObject
* obj3
= 0 ;
22208 PyObject
* obj4
= 0 ;
22209 char * kwnames
[] = {
22210 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
22213 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyPanel_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
22214 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22215 if (!SWIG_IsOK(res1
)) {
22216 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22218 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22219 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22220 if (!SWIG_IsOK(ecode2
)) {
22221 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
22223 arg2
= static_cast< int >(val2
);
22224 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22225 if (!SWIG_IsOK(ecode3
)) {
22226 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
22228 arg3
= static_cast< int >(val3
);
22229 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22230 if (!SWIG_IsOK(ecode4
)) {
22231 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
22233 arg4
= static_cast< int >(val4
);
22234 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22235 if (!SWIG_IsOK(ecode5
)) {
22236 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyPanel_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
22238 arg5
= static_cast< int >(val5
);
22240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22241 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
22242 wxPyEndAllowThreads(__tstate
);
22243 if (PyErr_Occurred()) SWIG_fail
;
22245 resultobj
= SWIG_Py_Void();
22252 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22253 PyObject
*resultobj
= 0;
22254 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22259 int arg6
= (int) wxSIZE_AUTO
;
22272 PyObject
* obj0
= 0 ;
22273 PyObject
* obj1
= 0 ;
22274 PyObject
* obj2
= 0 ;
22275 PyObject
* obj3
= 0 ;
22276 PyObject
* obj4
= 0 ;
22277 PyObject
* obj5
= 0 ;
22278 char * kwnames
[] = {
22279 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
22282 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyPanel_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
22283 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22284 if (!SWIG_IsOK(res1
)) {
22285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22287 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22288 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22289 if (!SWIG_IsOK(ecode2
)) {
22290 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetSize" "', expected argument " "2"" of type '" "int""'");
22292 arg2
= static_cast< int >(val2
);
22293 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22294 if (!SWIG_IsOK(ecode3
)) {
22295 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetSize" "', expected argument " "3"" of type '" "int""'");
22297 arg3
= static_cast< int >(val3
);
22298 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22299 if (!SWIG_IsOK(ecode4
)) {
22300 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyPanel_DoSetSize" "', expected argument " "4"" of type '" "int""'");
22302 arg4
= static_cast< int >(val4
);
22303 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22304 if (!SWIG_IsOK(ecode5
)) {
22305 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyPanel_DoSetSize" "', expected argument " "5"" of type '" "int""'");
22307 arg5
= static_cast< int >(val5
);
22309 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
22310 if (!SWIG_IsOK(ecode6
)) {
22311 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyPanel_DoSetSize" "', expected argument " "6"" of type '" "int""'");
22313 arg6
= static_cast< int >(val6
);
22316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22317 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
22318 wxPyEndAllowThreads(__tstate
);
22319 if (PyErr_Occurred()) SWIG_fail
;
22321 resultobj
= SWIG_Py_Void();
22328 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22329 PyObject
*resultobj
= 0;
22330 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22339 PyObject
* obj0
= 0 ;
22340 PyObject
* obj1
= 0 ;
22341 PyObject
* obj2
= 0 ;
22342 char * kwnames
[] = {
22343 (char *) "self",(char *) "width",(char *) "height", NULL
22346 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22347 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22348 if (!SWIG_IsOK(res1
)) {
22349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22351 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22352 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22353 if (!SWIG_IsOK(ecode2
)) {
22354 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
22356 arg2
= static_cast< int >(val2
);
22357 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22358 if (!SWIG_IsOK(ecode3
)) {
22359 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
22361 arg3
= static_cast< int >(val3
);
22363 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22364 (arg1
)->DoSetClientSize(arg2
,arg3
);
22365 wxPyEndAllowThreads(__tstate
);
22366 if (PyErr_Occurred()) SWIG_fail
;
22368 resultobj
= SWIG_Py_Void();
22375 SWIGINTERN PyObject
*_wrap_PyPanel_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22376 PyObject
*resultobj
= 0;
22377 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22386 PyObject
* obj0
= 0 ;
22387 PyObject
* obj1
= 0 ;
22388 PyObject
* obj2
= 0 ;
22389 char * kwnames
[] = {
22390 (char *) "self",(char *) "x",(char *) "y", NULL
22393 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22394 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22395 if (!SWIG_IsOK(res1
)) {
22396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22398 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22399 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22400 if (!SWIG_IsOK(ecode2
)) {
22401 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
22403 arg2
= static_cast< int >(val2
);
22404 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22405 if (!SWIG_IsOK(ecode3
)) {
22406 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyPanel_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
22408 arg3
= static_cast< int >(val3
);
22410 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22411 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
22412 wxPyEndAllowThreads(__tstate
);
22413 if (PyErr_Occurred()) SWIG_fail
;
22415 resultobj
= SWIG_Py_Void();
22422 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22423 PyObject
*resultobj
= 0;
22424 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22425 int *arg2
= (int *) 0 ;
22426 int *arg3
= (int *) 0 ;
22430 int res2
= SWIG_TMPOBJ
;
22432 int res3
= SWIG_TMPOBJ
;
22433 PyObject
*swig_obj
[1] ;
22437 if (!args
) SWIG_fail
;
22438 swig_obj
[0] = args
;
22439 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22440 if (!SWIG_IsOK(res1
)) {
22441 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22443 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22445 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22446 ((wxPyPanel
const *)arg1
)->DoGetSize(arg2
,arg3
);
22447 wxPyEndAllowThreads(__tstate
);
22448 if (PyErr_Occurred()) SWIG_fail
;
22450 resultobj
= SWIG_Py_Void();
22451 if (SWIG_IsTmpObj(res2
)) {
22452 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22454 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22455 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22457 if (SWIG_IsTmpObj(res3
)) {
22458 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22460 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22461 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22469 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22470 PyObject
*resultobj
= 0;
22471 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22472 int *arg2
= (int *) 0 ;
22473 int *arg3
= (int *) 0 ;
22477 int res2
= SWIG_TMPOBJ
;
22479 int res3
= SWIG_TMPOBJ
;
22480 PyObject
*swig_obj
[1] ;
22484 if (!args
) SWIG_fail
;
22485 swig_obj
[0] = args
;
22486 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22487 if (!SWIG_IsOK(res1
)) {
22488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22490 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22493 ((wxPyPanel
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
22494 wxPyEndAllowThreads(__tstate
);
22495 if (PyErr_Occurred()) SWIG_fail
;
22497 resultobj
= SWIG_Py_Void();
22498 if (SWIG_IsTmpObj(res2
)) {
22499 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22501 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22502 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22504 if (SWIG_IsTmpObj(res3
)) {
22505 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22507 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22508 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22516 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22517 PyObject
*resultobj
= 0;
22518 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22519 int *arg2
= (int *) 0 ;
22520 int *arg3
= (int *) 0 ;
22524 int res2
= SWIG_TMPOBJ
;
22526 int res3
= SWIG_TMPOBJ
;
22527 PyObject
*swig_obj
[1] ;
22531 if (!args
) SWIG_fail
;
22532 swig_obj
[0] = args
;
22533 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22534 if (!SWIG_IsOK(res1
)) {
22535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetPosition" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22537 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22539 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22540 ((wxPyPanel
const *)arg1
)->DoGetPosition(arg2
,arg3
);
22541 wxPyEndAllowThreads(__tstate
);
22542 if (PyErr_Occurred()) SWIG_fail
;
22544 resultobj
= SWIG_Py_Void();
22545 if (SWIG_IsTmpObj(res2
)) {
22546 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
22548 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22549 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
22551 if (SWIG_IsTmpObj(res3
)) {
22552 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
22554 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
22555 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
22563 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22564 PyObject
*resultobj
= 0;
22565 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22569 PyObject
*swig_obj
[1] ;
22571 if (!args
) SWIG_fail
;
22572 swig_obj
[0] = args
;
22573 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22574 if (!SWIG_IsOK(res1
)) {
22575 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22577 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22579 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22580 result
= ((wxPyPanel
const *)arg1
)->DoGetVirtualSize();
22581 wxPyEndAllowThreads(__tstate
);
22582 if (PyErr_Occurred()) SWIG_fail
;
22584 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
22591 SWIGINTERN PyObject
*_wrap_PyPanel_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22592 PyObject
*resultobj
= 0;
22593 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22597 PyObject
*swig_obj
[1] ;
22599 if (!args
) SWIG_fail
;
22600 swig_obj
[0] = args
;
22601 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22602 if (!SWIG_IsOK(res1
)) {
22603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyPanel const *""'");
22605 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22608 result
= ((wxPyPanel
const *)arg1
)->DoGetBestSize();
22609 wxPyEndAllowThreads(__tstate
);
22610 if (PyErr_Occurred()) SWIG_fail
;
22612 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
22619 SWIGINTERN PyObject
*_wrap_PyPanel_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22620 PyObject
*resultobj
= 0;
22621 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22622 SwigValueWrapper
<wxVisualAttributes
> result
;
22625 PyObject
*swig_obj
[1] ;
22627 if (!args
) SWIG_fail
;
22628 swig_obj
[0] = args
;
22629 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22630 if (!SWIG_IsOK(res1
)) {
22631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22633 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22636 result
= (arg1
)->GetDefaultAttributes();
22637 wxPyEndAllowThreads(__tstate
);
22638 if (PyErr_Occurred()) SWIG_fail
;
22640 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
22647 SWIGINTERN PyObject
*_wrap_PyPanel_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22648 PyObject
*resultobj
= 0;
22649 wxPyPanel
*arg1
= (wxPyPanel
*) 0 ;
22652 PyObject
*swig_obj
[1] ;
22654 if (!args
) SWIG_fail
;
22655 swig_obj
[0] = args
;
22656 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPanel
, 0 | 0 );
22657 if (!SWIG_IsOK(res1
)) {
22658 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPanel_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyPanel *""'");
22660 arg1
= reinterpret_cast< wxPyPanel
* >(argp1
);
22662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22663 (arg1
)->OnInternalIdle();
22664 wxPyEndAllowThreads(__tstate
);
22665 if (PyErr_Occurred()) SWIG_fail
;
22667 resultobj
= SWIG_Py_Void();
22674 SWIGINTERN PyObject
*PyPanel_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22676 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
22677 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPanel
, SWIG_NewClientData(obj
));
22678 return SWIG_Py_Void();
22681 SWIGINTERN PyObject
*PyPanel_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22682 return SWIG_Python_InitShadowInstance(args
);
22685 SWIGINTERN PyObject
*_wrap_new_PyScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22686 PyObject
*resultobj
= 0;
22687 wxWindow
*arg1
= (wxWindow
*) 0 ;
22688 int arg2
= (int) (int)-1 ;
22689 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
22690 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
22691 wxSize
const &arg4_defvalue
= wxDefaultSize
;
22692 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
22693 long arg5
= (long) 0 ;
22694 wxString
const &arg6_defvalue
= wxPyPanelNameStr
;
22695 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
22696 wxPyScrolledWindow
*result
= 0 ;
22705 bool temp6
= false ;
22706 PyObject
* obj0
= 0 ;
22707 PyObject
* obj1
= 0 ;
22708 PyObject
* obj2
= 0 ;
22709 PyObject
* obj3
= 0 ;
22710 PyObject
* obj4
= 0 ;
22711 PyObject
* obj5
= 0 ;
22712 char * kwnames
[] = {
22713 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
22716 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
22717 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
22718 if (!SWIG_IsOK(res1
)) {
22719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyScrolledWindow" "', expected argument " "1"" of type '" "wxWindow *""'");
22721 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
22723 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22724 if (!SWIG_IsOK(ecode2
)) {
22725 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyScrolledWindow" "', expected argument " "2"" of type '" "int""'");
22727 arg2
= static_cast< int >(val2
);
22732 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
22738 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
22742 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
22743 if (!SWIG_IsOK(ecode5
)) {
22744 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PyScrolledWindow" "', expected argument " "5"" of type '" "long""'");
22746 arg5
= static_cast< long >(val5
);
22750 arg6
= wxString_in_helper(obj5
);
22751 if (arg6
== NULL
) SWIG_fail
;
22756 if (!wxPyCheckForApp()) SWIG_fail
;
22757 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22758 result
= (wxPyScrolledWindow
*)new wxPyScrolledWindow(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
22759 wxPyEndAllowThreads(__tstate
);
22760 if (PyErr_Occurred()) SWIG_fail
;
22762 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_NEW
| 0 );
22777 SWIGINTERN PyObject
*_wrap_new_PrePyScrolledWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
22778 PyObject
*resultobj
= 0;
22779 wxPyScrolledWindow
*result
= 0 ;
22781 if (!SWIG_Python_UnpackTuple(args
,"new_PrePyScrolledWindow",0,0,0)) SWIG_fail
;
22783 if (!wxPyCheckForApp()) SWIG_fail
;
22784 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22785 result
= (wxPyScrolledWindow
*)new wxPyScrolledWindow();
22786 wxPyEndAllowThreads(__tstate
);
22787 if (PyErr_Occurred()) SWIG_fail
;
22789 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_OWN
| 0 );
22796 SWIGINTERN PyObject
*_wrap_PyScrolledWindow__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22797 PyObject
*resultobj
= 0;
22798 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22799 PyObject
*arg2
= (PyObject
*) 0 ;
22800 PyObject
*arg3
= (PyObject
*) 0 ;
22803 PyObject
* obj0
= 0 ;
22804 PyObject
* obj1
= 0 ;
22805 PyObject
* obj2
= 0 ;
22806 char * kwnames
[] = {
22807 (char *) "self",(char *) "self",(char *) "_class", NULL
22810 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
22811 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22812 if (!SWIG_IsOK(res1
)) {
22813 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22815 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22819 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22820 (arg1
)->_setCallbackInfo(arg2
,arg3
);
22821 wxPyEndAllowThreads(__tstate
);
22822 if (PyErr_Occurred()) SWIG_fail
;
22824 resultobj
= SWIG_Py_Void();
22831 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_SetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22832 PyObject
*resultobj
= 0;
22833 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22838 PyObject
* obj0
= 0 ;
22839 PyObject
* obj1
= 0 ;
22840 char * kwnames
[] = {
22841 (char *) "self",(char *) "size", NULL
22844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22846 if (!SWIG_IsOK(res1
)) {
22847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_SetBestSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22849 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22852 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
22855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22856 (arg1
)->SetBestSize((wxSize
const &)*arg2
);
22857 wxPyEndAllowThreads(__tstate
);
22858 if (PyErr_Occurred()) SWIG_fail
;
22860 resultobj
= SWIG_Py_Void();
22867 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoEraseBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22868 PyObject
*resultobj
= 0;
22869 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22870 wxDC
*arg2
= (wxDC
*) 0 ;
22876 PyObject
* obj0
= 0 ;
22877 PyObject
* obj1
= 0 ;
22878 char * kwnames
[] = {
22879 (char *) "self",(char *) "dc", NULL
22882 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
22883 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22884 if (!SWIG_IsOK(res1
)) {
22885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoEraseBackground" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22887 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22888 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
22889 if (!SWIG_IsOK(res2
)) {
22890 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyScrolledWindow_DoEraseBackground" "', expected argument " "2"" of type '" "wxDC *""'");
22892 arg2
= reinterpret_cast< wxDC
* >(argp2
);
22894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22895 result
= (bool)(arg1
)->DoEraseBackground(arg2
);
22896 wxPyEndAllowThreads(__tstate
);
22897 if (PyErr_Occurred()) SWIG_fail
;
22900 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
22908 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoMoveWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22909 PyObject
*resultobj
= 0;
22910 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22925 PyObject
* obj0
= 0 ;
22926 PyObject
* obj1
= 0 ;
22927 PyObject
* obj2
= 0 ;
22928 PyObject
* obj3
= 0 ;
22929 PyObject
* obj4
= 0 ;
22930 char * kwnames
[] = {
22931 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL
22934 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyScrolledWindow_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
22935 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
22936 if (!SWIG_IsOK(res1
)) {
22937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
22939 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
22940 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
22941 if (!SWIG_IsOK(ecode2
)) {
22942 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "2"" of type '" "int""'");
22944 arg2
= static_cast< int >(val2
);
22945 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
22946 if (!SWIG_IsOK(ecode3
)) {
22947 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "3"" of type '" "int""'");
22949 arg3
= static_cast< int >(val3
);
22950 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
22951 if (!SWIG_IsOK(ecode4
)) {
22952 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "4"" of type '" "int""'");
22954 arg4
= static_cast< int >(val4
);
22955 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
22956 if (!SWIG_IsOK(ecode5
)) {
22957 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyScrolledWindow_DoMoveWindow" "', expected argument " "5"" of type '" "int""'");
22959 arg5
= static_cast< int >(val5
);
22961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
22962 (arg1
)->DoMoveWindow(arg2
,arg3
,arg4
,arg5
);
22963 wxPyEndAllowThreads(__tstate
);
22964 if (PyErr_Occurred()) SWIG_fail
;
22966 resultobj
= SWIG_Py_Void();
22973 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
22974 PyObject
*resultobj
= 0;
22975 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
22980 int arg6
= (int) wxSIZE_AUTO
;
22993 PyObject
* obj0
= 0 ;
22994 PyObject
* obj1
= 0 ;
22995 PyObject
* obj2
= 0 ;
22996 PyObject
* obj3
= 0 ;
22997 PyObject
* obj4
= 0 ;
22998 PyObject
* obj5
= 0 ;
22999 char * kwnames
[] = {
23000 (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL
23003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyScrolledWindow_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
23004 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23005 if (!SWIG_IsOK(res1
)) {
23006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23008 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23009 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23010 if (!SWIG_IsOK(ecode2
)) {
23011 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "2"" of type '" "int""'");
23013 arg2
= static_cast< int >(val2
);
23014 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23015 if (!SWIG_IsOK(ecode3
)) {
23016 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "3"" of type '" "int""'");
23018 arg3
= static_cast< int >(val3
);
23019 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
23020 if (!SWIG_IsOK(ecode4
)) {
23021 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "4"" of type '" "int""'");
23023 arg4
= static_cast< int >(val4
);
23024 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
23025 if (!SWIG_IsOK(ecode5
)) {
23026 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "5"" of type '" "int""'");
23028 arg5
= static_cast< int >(val5
);
23030 ecode6
= SWIG_AsVal_int(obj5
, &val6
);
23031 if (!SWIG_IsOK(ecode6
)) {
23032 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "PyScrolledWindow_DoSetSize" "', expected argument " "6"" of type '" "int""'");
23034 arg6
= static_cast< int >(val6
);
23037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23038 (arg1
)->DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
);
23039 wxPyEndAllowThreads(__tstate
);
23040 if (PyErr_Occurred()) SWIG_fail
;
23042 resultobj
= SWIG_Py_Void();
23049 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23050 PyObject
*resultobj
= 0;
23051 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23060 PyObject
* obj0
= 0 ;
23061 PyObject
* obj1
= 0 ;
23062 PyObject
* obj2
= 0 ;
23063 char * kwnames
[] = {
23064 (char *) "self",(char *) "width",(char *) "height", NULL
23067 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23068 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23069 if (!SWIG_IsOK(res1
)) {
23070 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23072 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23073 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23074 if (!SWIG_IsOK(ecode2
)) {
23075 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "2"" of type '" "int""'");
23077 arg2
= static_cast< int >(val2
);
23078 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23079 if (!SWIG_IsOK(ecode3
)) {
23080 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetClientSize" "', expected argument " "3"" of type '" "int""'");
23082 arg3
= static_cast< int >(val3
);
23084 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23085 (arg1
)->DoSetClientSize(arg2
,arg3
);
23086 wxPyEndAllowThreads(__tstate
);
23087 if (PyErr_Occurred()) SWIG_fail
;
23089 resultobj
= SWIG_Py_Void();
23096 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoSetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
23097 PyObject
*resultobj
= 0;
23098 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23107 PyObject
* obj0
= 0 ;
23108 PyObject
* obj1
= 0 ;
23109 PyObject
* obj2
= 0 ;
23110 char * kwnames
[] = {
23111 (char *) "self",(char *) "x",(char *) "y", NULL
23114 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
23115 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23116 if (!SWIG_IsOK(res1
)) {
23117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23119 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23120 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
23121 if (!SWIG_IsOK(ecode2
)) {
23122 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "2"" of type '" "int""'");
23124 arg2
= static_cast< int >(val2
);
23125 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
23126 if (!SWIG_IsOK(ecode3
)) {
23127 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "PyScrolledWindow_DoSetVirtualSize" "', expected argument " "3"" of type '" "int""'");
23129 arg3
= static_cast< int >(val3
);
23131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23132 (arg1
)->DoSetVirtualSize(arg2
,arg3
);
23133 wxPyEndAllowThreads(__tstate
);
23134 if (PyErr_Occurred()) SWIG_fail
;
23136 resultobj
= SWIG_Py_Void();
23143 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23144 PyObject
*resultobj
= 0;
23145 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23146 int *arg2
= (int *) 0 ;
23147 int *arg3
= (int *) 0 ;
23151 int res2
= SWIG_TMPOBJ
;
23153 int res3
= SWIG_TMPOBJ
;
23154 PyObject
*swig_obj
[1] ;
23158 if (!args
) SWIG_fail
;
23159 swig_obj
[0] = args
;
23160 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23161 if (!SWIG_IsOK(res1
)) {
23162 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23164 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23166 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23167 ((wxPyScrolledWindow
const *)arg1
)->DoGetSize(arg2
,arg3
);
23168 wxPyEndAllowThreads(__tstate
);
23169 if (PyErr_Occurred()) SWIG_fail
;
23171 resultobj
= SWIG_Py_Void();
23172 if (SWIG_IsTmpObj(res2
)) {
23173 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
23175 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23176 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
23178 if (SWIG_IsTmpObj(res3
)) {
23179 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
23181 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23182 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
23190 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetClientSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23191 PyObject
*resultobj
= 0;
23192 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23193 int *arg2
= (int *) 0 ;
23194 int *arg3
= (int *) 0 ;
23198 int res2
= SWIG_TMPOBJ
;
23200 int res3
= SWIG_TMPOBJ
;
23201 PyObject
*swig_obj
[1] ;
23205 if (!args
) SWIG_fail
;
23206 swig_obj
[0] = args
;
23207 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23208 if (!SWIG_IsOK(res1
)) {
23209 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetClientSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23211 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23213 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23214 ((wxPyScrolledWindow
const *)arg1
)->DoGetClientSize(arg2
,arg3
);
23215 wxPyEndAllowThreads(__tstate
);
23216 if (PyErr_Occurred()) SWIG_fail
;
23218 resultobj
= SWIG_Py_Void();
23219 if (SWIG_IsTmpObj(res2
)) {
23220 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
23222 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23223 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
23225 if (SWIG_IsTmpObj(res3
)) {
23226 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
23228 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23229 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
23237 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23238 PyObject
*resultobj
= 0;
23239 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23240 int *arg2
= (int *) 0 ;
23241 int *arg3
= (int *) 0 ;
23245 int res2
= SWIG_TMPOBJ
;
23247 int res3
= SWIG_TMPOBJ
;
23248 PyObject
*swig_obj
[1] ;
23252 if (!args
) SWIG_fail
;
23253 swig_obj
[0] = args
;
23254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23255 if (!SWIG_IsOK(res1
)) {
23256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetPosition" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23258 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23261 ((wxPyScrolledWindow
const *)arg1
)->DoGetPosition(arg2
,arg3
);
23262 wxPyEndAllowThreads(__tstate
);
23263 if (PyErr_Occurred()) SWIG_fail
;
23265 resultobj
= SWIG_Py_Void();
23266 if (SWIG_IsTmpObj(res2
)) {
23267 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
23269 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23270 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
23272 if (SWIG_IsTmpObj(res3
)) {
23273 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
23275 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
23276 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
23284 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetVirtualSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23285 PyObject
*resultobj
= 0;
23286 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23290 PyObject
*swig_obj
[1] ;
23292 if (!args
) SWIG_fail
;
23293 swig_obj
[0] = args
;
23294 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23295 if (!SWIG_IsOK(res1
)) {
23296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetVirtualSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23298 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23300 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23301 result
= ((wxPyScrolledWindow
const *)arg1
)->DoGetVirtualSize();
23302 wxPyEndAllowThreads(__tstate
);
23303 if (PyErr_Occurred()) SWIG_fail
;
23305 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
23312 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_DoGetBestSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23313 PyObject
*resultobj
= 0;
23314 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23318 PyObject
*swig_obj
[1] ;
23320 if (!args
) SWIG_fail
;
23321 swig_obj
[0] = args
;
23322 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23323 if (!SWIG_IsOK(res1
)) {
23324 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_DoGetBestSize" "', expected argument " "1"" of type '" "wxPyScrolledWindow const *""'");
23326 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23328 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23329 result
= ((wxPyScrolledWindow
const *)arg1
)->DoGetBestSize();
23330 wxPyEndAllowThreads(__tstate
);
23331 if (PyErr_Occurred()) SWIG_fail
;
23333 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
23340 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_GetDefaultAttributes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23341 PyObject
*resultobj
= 0;
23342 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23343 SwigValueWrapper
<wxVisualAttributes
> result
;
23346 PyObject
*swig_obj
[1] ;
23348 if (!args
) SWIG_fail
;
23349 swig_obj
[0] = args
;
23350 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23351 if (!SWIG_IsOK(res1
)) {
23352 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_GetDefaultAttributes" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23354 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23356 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23357 result
= (arg1
)->GetDefaultAttributes();
23358 wxPyEndAllowThreads(__tstate
);
23359 if (PyErr_Occurred()) SWIG_fail
;
23361 resultobj
= SWIG_NewPointerObj((new wxVisualAttributes(static_cast< const wxVisualAttributes
& >(result
))), SWIGTYPE_p_wxVisualAttributes
, SWIG_POINTER_OWN
| 0 );
23368 SWIGINTERN PyObject
*_wrap_PyScrolledWindow_OnInternalIdle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23369 PyObject
*resultobj
= 0;
23370 wxPyScrolledWindow
*arg1
= (wxPyScrolledWindow
*) 0 ;
23373 PyObject
*swig_obj
[1] ;
23375 if (!args
) SWIG_fail
;
23376 swig_obj
[0] = args
;
23377 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyScrolledWindow
, 0 | 0 );
23378 if (!SWIG_IsOK(res1
)) {
23379 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyScrolledWindow_OnInternalIdle" "', expected argument " "1"" of type '" "wxPyScrolledWindow *""'");
23381 arg1
= reinterpret_cast< wxPyScrolledWindow
* >(argp1
);
23383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23384 (arg1
)->OnInternalIdle();
23385 wxPyEndAllowThreads(__tstate
);
23386 if (PyErr_Occurred()) SWIG_fail
;
23388 resultobj
= SWIG_Py_Void();
23395 SWIGINTERN PyObject
*PyScrolledWindow_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23397 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
23398 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyScrolledWindow
, SWIG_NewClientData(obj
));
23399 return SWIG_Py_Void();
23402 SWIGINTERN PyObject
*PyScrolledWindow_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23403 return SWIG_Python_InitShadowInstance(args
);
23406 SWIGINTERN
int PrintoutTitleStr_set(PyObject
*) {
23407 SWIG_Error(SWIG_AttributeError
,"Variable PrintoutTitleStr is read-only.");
23412 SWIGINTERN PyObject
*PrintoutTitleStr_get(void) {
23413 PyObject
*pyobj
= 0;
23417 pyobj
= PyUnicode_FromWideChar((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len());
23419 pyobj
= PyString_FromStringAndSize((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len());
23426 SWIGINTERN
int PreviewCanvasNameStr_set(PyObject
*) {
23427 SWIG_Error(SWIG_AttributeError
,"Variable PreviewCanvasNameStr is read-only.");
23432 SWIGINTERN PyObject
*PreviewCanvasNameStr_get(void) {
23433 PyObject
*pyobj
= 0;
23437 pyobj
= PyUnicode_FromWideChar((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len());
23439 pyobj
= PyString_FromStringAndSize((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len());
23446 SWIGINTERN PyObject
*_wrap_new_PrintData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
23447 PyObject
*resultobj
= 0;
23448 wxPrintData
*result
= 0 ;
23450 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
23452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23453 result
= (wxPrintData
*)new wxPrintData();
23454 wxPyEndAllowThreads(__tstate
);
23455 if (PyErr_Occurred()) SWIG_fail
;
23457 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, SWIG_POINTER_NEW
| 0 );
23464 SWIGINTERN PyObject
*_wrap_new_PrintData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
23465 PyObject
*resultobj
= 0;
23466 wxPrintData
*arg1
= 0 ;
23467 wxPrintData
*result
= 0 ;
23471 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
23472 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
23473 if (!SWIG_IsOK(res1
)) {
23474 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23477 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
23479 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23481 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23482 result
= (wxPrintData
*)new wxPrintData((wxPrintData
const &)*arg1
);
23483 wxPyEndAllowThreads(__tstate
);
23484 if (PyErr_Occurred()) SWIG_fail
;
23486 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, SWIG_POINTER_NEW
| 0 );
23493 SWIGINTERN PyObject
*_wrap_new_PrintData(PyObject
*self
, PyObject
*args
) {
23497 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintData",0,1,argv
))) SWIG_fail
;
23500 return _wrap_new_PrintData__SWIG_0(self
, argc
, argv
);
23503 return _wrap_new_PrintData__SWIG_1(self
, argc
, argv
);
23507 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintData'");
23512 SWIGINTERN PyObject
*_wrap_delete_PrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23513 PyObject
*resultobj
= 0;
23514 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23517 PyObject
*swig_obj
[1] ;
23519 if (!args
) SWIG_fail
;
23520 swig_obj
[0] = args
;
23521 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, SWIG_POINTER_DISOWN
| 0 );
23522 if (!SWIG_IsOK(res1
)) {
23523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintData" "', expected argument " "1"" of type '" "wxPrintData *""'");
23525 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23530 wxPyEndAllowThreads(__tstate
);
23531 if (PyErr_Occurred()) SWIG_fail
;
23533 resultobj
= SWIG_Py_Void();
23540 SWIGINTERN PyObject
*_wrap_PrintData_GetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23541 PyObject
*resultobj
= 0;
23542 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23546 PyObject
*swig_obj
[1] ;
23548 if (!args
) SWIG_fail
;
23549 swig_obj
[0] = args
;
23550 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23551 if (!SWIG_IsOK(res1
)) {
23552 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetNoCopies" "', expected argument " "1"" of type '" "wxPrintData *""'");
23554 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23557 result
= (int)(arg1
)->GetNoCopies();
23558 wxPyEndAllowThreads(__tstate
);
23559 if (PyErr_Occurred()) SWIG_fail
;
23561 resultobj
= SWIG_From_int(static_cast< int >(result
));
23568 SWIGINTERN PyObject
*_wrap_PrintData_GetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23569 PyObject
*resultobj
= 0;
23570 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23574 PyObject
*swig_obj
[1] ;
23576 if (!args
) SWIG_fail
;
23577 swig_obj
[0] = args
;
23578 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23579 if (!SWIG_IsOK(res1
)) {
23580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetCollate" "', expected argument " "1"" of type '" "wxPrintData *""'");
23582 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23585 result
= (bool)(arg1
)->GetCollate();
23586 wxPyEndAllowThreads(__tstate
);
23587 if (PyErr_Occurred()) SWIG_fail
;
23590 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23598 SWIGINTERN PyObject
*_wrap_PrintData_GetOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23599 PyObject
*resultobj
= 0;
23600 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23604 PyObject
*swig_obj
[1] ;
23606 if (!args
) SWIG_fail
;
23607 swig_obj
[0] = args
;
23608 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23609 if (!SWIG_IsOK(res1
)) {
23610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetOrientation" "', expected argument " "1"" of type '" "wxPrintData *""'");
23612 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23615 result
= (int)(arg1
)->GetOrientation();
23616 wxPyEndAllowThreads(__tstate
);
23617 if (PyErr_Occurred()) SWIG_fail
;
23619 resultobj
= SWIG_From_int(static_cast< int >(result
));
23626 SWIGINTERN PyObject
*_wrap_PrintData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23627 PyObject
*resultobj
= 0;
23628 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23632 PyObject
*swig_obj
[1] ;
23634 if (!args
) SWIG_fail
;
23635 swig_obj
[0] = args
;
23636 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23637 if (!SWIG_IsOK(res1
)) {
23638 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_Ok" "', expected argument " "1"" of type '" "wxPrintData *""'");
23640 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23642 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23643 result
= (bool)(arg1
)->Ok();
23644 wxPyEndAllowThreads(__tstate
);
23645 if (PyErr_Occurred()) SWIG_fail
;
23648 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23656 SWIGINTERN PyObject
*_wrap_PrintData_GetPrinterName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23657 PyObject
*resultobj
= 0;
23658 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23659 wxString
*result
= 0 ;
23662 PyObject
*swig_obj
[1] ;
23664 if (!args
) SWIG_fail
;
23665 swig_obj
[0] = args
;
23666 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23667 if (!SWIG_IsOK(res1
)) {
23668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrinterName" "', expected argument " "1"" of type '" "wxPrintData *""'");
23670 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23674 wxString
const &_result_ref
= (arg1
)->GetPrinterName();
23675 result
= (wxString
*) &_result_ref
;
23677 wxPyEndAllowThreads(__tstate
);
23678 if (PyErr_Occurred()) SWIG_fail
;
23682 resultobj
= PyUnicode_FromWideChar(result
->c_str(), result
->Len());
23684 resultobj
= PyString_FromStringAndSize(result
->c_str(), result
->Len());
23693 SWIGINTERN PyObject
*_wrap_PrintData_GetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23694 PyObject
*resultobj
= 0;
23695 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23699 PyObject
*swig_obj
[1] ;
23701 if (!args
) SWIG_fail
;
23702 swig_obj
[0] = args
;
23703 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23704 if (!SWIG_IsOK(res1
)) {
23705 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetColour" "', expected argument " "1"" of type '" "wxPrintData *""'");
23707 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23710 result
= (bool)(arg1
)->GetColour();
23711 wxPyEndAllowThreads(__tstate
);
23712 if (PyErr_Occurred()) SWIG_fail
;
23715 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
23723 SWIGINTERN PyObject
*_wrap_PrintData_GetDuplex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23724 PyObject
*resultobj
= 0;
23725 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23726 wxDuplexMode result
;
23729 PyObject
*swig_obj
[1] ;
23731 if (!args
) SWIG_fail
;
23732 swig_obj
[0] = args
;
23733 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23734 if (!SWIG_IsOK(res1
)) {
23735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetDuplex" "', expected argument " "1"" of type '" "wxPrintData *""'");
23737 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23739 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23740 result
= (wxDuplexMode
)(arg1
)->GetDuplex();
23741 wxPyEndAllowThreads(__tstate
);
23742 if (PyErr_Occurred()) SWIG_fail
;
23744 resultobj
= SWIG_From_int(static_cast< int >(result
));
23751 SWIGINTERN PyObject
*_wrap_PrintData_GetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23752 PyObject
*resultobj
= 0;
23753 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23754 wxPaperSize result
;
23757 PyObject
*swig_obj
[1] ;
23759 if (!args
) SWIG_fail
;
23760 swig_obj
[0] = args
;
23761 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23762 if (!SWIG_IsOK(res1
)) {
23763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPaperId" "', expected argument " "1"" of type '" "wxPrintData *""'");
23765 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23767 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23768 result
= (wxPaperSize
)(arg1
)->GetPaperId();
23769 wxPyEndAllowThreads(__tstate
);
23770 if (PyErr_Occurred()) SWIG_fail
;
23772 resultobj
= SWIG_From_int(static_cast< int >(result
));
23779 SWIGINTERN PyObject
*_wrap_PrintData_GetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23780 PyObject
*resultobj
= 0;
23781 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23782 wxSize
*result
= 0 ;
23785 PyObject
*swig_obj
[1] ;
23787 if (!args
) SWIG_fail
;
23788 swig_obj
[0] = args
;
23789 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23790 if (!SWIG_IsOK(res1
)) {
23791 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPaperSize" "', expected argument " "1"" of type '" "wxPrintData *""'");
23793 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23795 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23797 wxSize
const &_result_ref
= (arg1
)->GetPaperSize();
23798 result
= (wxSize
*) &_result_ref
;
23800 wxPyEndAllowThreads(__tstate
);
23801 if (PyErr_Occurred()) SWIG_fail
;
23803 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxSize
, 0 | 0 );
23810 SWIGINTERN PyObject
*_wrap_PrintData_GetQuality(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23811 PyObject
*resultobj
= 0;
23812 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23816 PyObject
*swig_obj
[1] ;
23818 if (!args
) SWIG_fail
;
23819 swig_obj
[0] = args
;
23820 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23821 if (!SWIG_IsOK(res1
)) {
23822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetQuality" "', expected argument " "1"" of type '" "wxPrintData *""'");
23824 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23827 result
= (int)(arg1
)->GetQuality();
23828 wxPyEndAllowThreads(__tstate
);
23829 if (PyErr_Occurred()) SWIG_fail
;
23831 resultobj
= SWIG_From_int(static_cast< int >(result
));
23838 SWIGINTERN PyObject
*_wrap_PrintData_GetBin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23839 PyObject
*resultobj
= 0;
23840 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23844 PyObject
*swig_obj
[1] ;
23846 if (!args
) SWIG_fail
;
23847 swig_obj
[0] = args
;
23848 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23849 if (!SWIG_IsOK(res1
)) {
23850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetBin" "', expected argument " "1"" of type '" "wxPrintData *""'");
23852 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23855 result
= (wxPrintBin
)(arg1
)->GetBin();
23856 wxPyEndAllowThreads(__tstate
);
23857 if (PyErr_Occurred()) SWIG_fail
;
23859 resultobj
= SWIG_From_int(static_cast< int >(result
));
23866 SWIGINTERN PyObject
*_wrap_PrintData_GetPrintMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
23867 PyObject
*resultobj
= 0;
23868 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
23869 wxPrintMode result
;
23872 PyObject
*swig_obj
[1] ;
23874 if (!args
) SWIG_fail
;
23875 swig_obj
[0] = args
;
23876 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
23877 if (!SWIG_IsOK(res1
)) {
23878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrintMode" "', expected argument " "1"" of type '" "wxPrintData const *""'");
23880 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23883 result
= (wxPrintMode
)((wxPrintData
const *)arg1
)->GetPrintMode();
23884 wxPyEndAllowThreads(__tstate
);
23885 if (PyErr_Occurred()) SWIG_fail
;
23887 resultobj
= SWIG_From_int(static_cast< int >(result
));
23894 SWIGINTERN PyObject
*_wrap_PrintData_SetNoCopies(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 *) "v", NULL
23908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetNoCopies",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_SetNoCopies" "', 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_SetNoCopies" "', expected argument " "2"" of type '" "int""'");
23918 arg2
= static_cast< int >(val2
);
23920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23921 (arg1
)->SetNoCopies(arg2
);
23922 wxPyEndAllowThreads(__tstate
);
23923 if (PyErr_Occurred()) SWIG_fail
;
23925 resultobj
= SWIG_Py_Void();
23932 SWIGINTERN PyObject
*_wrap_PrintData_SetCollate(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 *) "flag", NULL
23946 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetCollate",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_SetCollate" "', expected argument " "1"" of type '" "wxPrintData *""'");
23951 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
23952 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
23953 if (!SWIG_IsOK(ecode2
)) {
23954 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetCollate" "', expected argument " "2"" of type '" "bool""'");
23956 arg2
= static_cast< bool >(val2
);
23958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23959 (arg1
)->SetCollate(arg2
);
23960 wxPyEndAllowThreads(__tstate
);
23961 if (PyErr_Occurred()) SWIG_fail
;
23963 resultobj
= SWIG_Py_Void();
23970 SWIGINTERN PyObject
*_wrap_PrintData_SetOrientation(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 *) "orient", NULL
23984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetOrientation",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_SetOrientation" "', 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_SetOrientation" "', expected argument " "2"" of type '" "int""'");
23994 arg2
= static_cast< int >(val2
);
23996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
23997 (arg1
)->SetOrientation(arg2
);
23998 wxPyEndAllowThreads(__tstate
);
23999 if (PyErr_Occurred()) SWIG_fail
;
24001 resultobj
= SWIG_Py_Void();
24008 SWIGINTERN PyObject
*_wrap_PrintData_SetPrinterName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24009 PyObject
*resultobj
= 0;
24010 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24011 wxString
*arg2
= 0 ;
24014 bool temp2
= false ;
24015 PyObject
* obj0
= 0 ;
24016 PyObject
* obj1
= 0 ;
24017 char * kwnames
[] = {
24018 (char *) "self",(char *) "name", NULL
24021 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterName",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24022 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24023 if (!SWIG_IsOK(res1
)) {
24024 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrinterName" "', expected argument " "1"" of type '" "wxPrintData *""'");
24026 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24028 arg2
= wxString_in_helper(obj1
);
24029 if (arg2
== NULL
) SWIG_fail
;
24033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24034 (arg1
)->SetPrinterName((wxString
const &)*arg2
);
24035 wxPyEndAllowThreads(__tstate
);
24036 if (PyErr_Occurred()) SWIG_fail
;
24038 resultobj
= SWIG_Py_Void();
24053 SWIGINTERN PyObject
*_wrap_PrintData_SetColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24054 PyObject
*resultobj
= 0;
24055 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24061 PyObject
* obj0
= 0 ;
24062 PyObject
* obj1
= 0 ;
24063 char * kwnames
[] = {
24064 (char *) "self",(char *) "colour", NULL
24067 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24068 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24069 if (!SWIG_IsOK(res1
)) {
24070 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetColour" "', expected argument " "1"" of type '" "wxPrintData *""'");
24072 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24073 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24074 if (!SWIG_IsOK(ecode2
)) {
24075 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetColour" "', expected argument " "2"" of type '" "bool""'");
24077 arg2
= static_cast< bool >(val2
);
24079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24080 (arg1
)->SetColour(arg2
);
24081 wxPyEndAllowThreads(__tstate
);
24082 if (PyErr_Occurred()) SWIG_fail
;
24084 resultobj
= SWIG_Py_Void();
24091 SWIGINTERN PyObject
*_wrap_PrintData_SetDuplex(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24092 PyObject
*resultobj
= 0;
24093 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24094 wxDuplexMode arg2
;
24099 PyObject
* obj0
= 0 ;
24100 PyObject
* obj1
= 0 ;
24101 char * kwnames
[] = {
24102 (char *) "self",(char *) "duplex", NULL
24105 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetDuplex",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24106 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24107 if (!SWIG_IsOK(res1
)) {
24108 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetDuplex" "', expected argument " "1"" of type '" "wxPrintData *""'");
24110 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24111 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24112 if (!SWIG_IsOK(ecode2
)) {
24113 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetDuplex" "', expected argument " "2"" of type '" "wxDuplexMode""'");
24115 arg2
= static_cast< wxDuplexMode
>(val2
);
24117 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24118 (arg1
)->SetDuplex(arg2
);
24119 wxPyEndAllowThreads(__tstate
);
24120 if (PyErr_Occurred()) SWIG_fail
;
24122 resultobj
= SWIG_Py_Void();
24129 SWIGINTERN PyObject
*_wrap_PrintData_SetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24130 PyObject
*resultobj
= 0;
24131 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24137 PyObject
* obj0
= 0 ;
24138 PyObject
* obj1
= 0 ;
24139 char * kwnames
[] = {
24140 (char *) "self",(char *) "sizeId", NULL
24143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24144 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24145 if (!SWIG_IsOK(res1
)) {
24146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPaperId" "', expected argument " "1"" of type '" "wxPrintData *""'");
24148 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24149 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24150 if (!SWIG_IsOK(ecode2
)) {
24151 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetPaperId" "', expected argument " "2"" of type '" "wxPaperSize""'");
24153 arg2
= static_cast< wxPaperSize
>(val2
);
24155 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24156 (arg1
)->SetPaperId(arg2
);
24157 wxPyEndAllowThreads(__tstate
);
24158 if (PyErr_Occurred()) SWIG_fail
;
24160 resultobj
= SWIG_Py_Void();
24167 SWIGINTERN PyObject
*_wrap_PrintData_SetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24168 PyObject
*resultobj
= 0;
24169 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24174 PyObject
* obj0
= 0 ;
24175 PyObject
* obj1
= 0 ;
24176 char * kwnames
[] = {
24177 (char *) "self",(char *) "sz", NULL
24180 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24181 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24182 if (!SWIG_IsOK(res1
)) {
24183 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPaperSize" "', expected argument " "1"" of type '" "wxPrintData *""'");
24185 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24188 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
24191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24192 (arg1
)->SetPaperSize((wxSize
const &)*arg2
);
24193 wxPyEndAllowThreads(__tstate
);
24194 if (PyErr_Occurred()) SWIG_fail
;
24196 resultobj
= SWIG_Py_Void();
24203 SWIGINTERN PyObject
*_wrap_PrintData_SetQuality(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24204 PyObject
*resultobj
= 0;
24205 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24211 PyObject
* obj0
= 0 ;
24212 PyObject
* obj1
= 0 ;
24213 char * kwnames
[] = {
24214 (char *) "self",(char *) "quality", NULL
24217 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetQuality",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24218 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24219 if (!SWIG_IsOK(res1
)) {
24220 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetQuality" "', expected argument " "1"" of type '" "wxPrintData *""'");
24222 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24223 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24224 if (!SWIG_IsOK(ecode2
)) {
24225 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetQuality" "', expected argument " "2"" of type '" "int""'");
24227 arg2
= static_cast< int >(val2
);
24229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24230 (arg1
)->SetQuality(arg2
);
24231 wxPyEndAllowThreads(__tstate
);
24232 if (PyErr_Occurred()) SWIG_fail
;
24234 resultobj
= SWIG_Py_Void();
24241 SWIGINTERN PyObject
*_wrap_PrintData_SetBin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24242 PyObject
*resultobj
= 0;
24243 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24249 PyObject
* obj0
= 0 ;
24250 PyObject
* obj1
= 0 ;
24251 char * kwnames
[] = {
24252 (char *) "self",(char *) "bin", NULL
24255 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetBin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24256 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24257 if (!SWIG_IsOK(res1
)) {
24258 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetBin" "', expected argument " "1"" of type '" "wxPrintData *""'");
24260 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24261 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24262 if (!SWIG_IsOK(ecode2
)) {
24263 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetBin" "', expected argument " "2"" of type '" "wxPrintBin""'");
24265 arg2
= static_cast< wxPrintBin
>(val2
);
24267 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24268 (arg1
)->SetBin(arg2
);
24269 wxPyEndAllowThreads(__tstate
);
24270 if (PyErr_Occurred()) SWIG_fail
;
24272 resultobj
= SWIG_Py_Void();
24279 SWIGINTERN PyObject
*_wrap_PrintData_SetPrintMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24280 PyObject
*resultobj
= 0;
24281 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24287 PyObject
* obj0
= 0 ;
24288 PyObject
* obj1
= 0 ;
24289 char * kwnames
[] = {
24290 (char *) "self",(char *) "printMode", NULL
24293 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrintMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24294 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24295 if (!SWIG_IsOK(res1
)) {
24296 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrintMode" "', expected argument " "1"" of type '" "wxPrintData *""'");
24298 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24299 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
24300 if (!SWIG_IsOK(ecode2
)) {
24301 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintData_SetPrintMode" "', expected argument " "2"" of type '" "wxPrintMode""'");
24303 arg2
= static_cast< wxPrintMode
>(val2
);
24305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24306 (arg1
)->SetPrintMode(arg2
);
24307 wxPyEndAllowThreads(__tstate
);
24308 if (PyErr_Occurred()) SWIG_fail
;
24310 resultobj
= SWIG_Py_Void();
24317 SWIGINTERN PyObject
*_wrap_PrintData_GetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24318 PyObject
*resultobj
= 0;
24319 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24323 PyObject
*swig_obj
[1] ;
24325 if (!args
) SWIG_fail
;
24326 swig_obj
[0] = args
;
24327 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24328 if (!SWIG_IsOK(res1
)) {
24329 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetFilename" "', expected argument " "1"" of type '" "wxPrintData const *""'");
24331 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24334 result
= ((wxPrintData
const *)arg1
)->GetFilename();
24335 wxPyEndAllowThreads(__tstate
);
24336 if (PyErr_Occurred()) SWIG_fail
;
24340 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
24342 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
24351 SWIGINTERN PyObject
*_wrap_PrintData_SetFilename(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24352 PyObject
*resultobj
= 0;
24353 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24354 wxString
*arg2
= 0 ;
24357 bool temp2
= false ;
24358 PyObject
* obj0
= 0 ;
24359 PyObject
* obj1
= 0 ;
24360 char * kwnames
[] = {
24361 (char *) "self",(char *) "filename", NULL
24364 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetFilename",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24365 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24366 if (!SWIG_IsOK(res1
)) {
24367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetFilename" "', expected argument " "1"" of type '" "wxPrintData *""'");
24369 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24371 arg2
= wxString_in_helper(obj1
);
24372 if (arg2
== NULL
) SWIG_fail
;
24376 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24377 (arg1
)->SetFilename((wxString
const &)*arg2
);
24378 wxPyEndAllowThreads(__tstate
);
24379 if (PyErr_Occurred()) SWIG_fail
;
24381 resultobj
= SWIG_Py_Void();
24396 SWIGINTERN PyObject
*_wrap_PrintData_GetPrivData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24397 PyObject
*resultobj
= 0;
24398 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24399 PyObject
*result
= 0 ;
24402 PyObject
*swig_obj
[1] ;
24404 if (!args
) SWIG_fail
;
24405 swig_obj
[0] = args
;
24406 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24407 if (!SWIG_IsOK(res1
)) {
24408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_GetPrivData" "', expected argument " "1"" of type '" "wxPrintData *""'");
24410 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24412 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24413 result
= (PyObject
*)wxPrintData_GetPrivData(arg1
);
24414 wxPyEndAllowThreads(__tstate
);
24415 if (PyErr_Occurred()) SWIG_fail
;
24417 resultobj
= result
;
24424 SWIGINTERN PyObject
*_wrap_PrintData_SetPrivData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24425 PyObject
*resultobj
= 0;
24426 wxPrintData
*arg1
= (wxPrintData
*) 0 ;
24427 PyObject
*arg2
= (PyObject
*) 0 ;
24430 PyObject
* obj0
= 0 ;
24431 PyObject
* obj1
= 0 ;
24432 char * kwnames
[] = {
24433 (char *) "self",(char *) "data", NULL
24436 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrivData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24437 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
24438 if (!SWIG_IsOK(res1
)) {
24439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintData_SetPrivData" "', expected argument " "1"" of type '" "wxPrintData *""'");
24441 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24444 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24445 wxPrintData_SetPrivData(arg1
,arg2
);
24446 wxPyEndAllowThreads(__tstate
);
24447 if (PyErr_Occurred()) SWIG_fail
;
24449 resultobj
= SWIG_Py_Void();
24456 SWIGINTERN PyObject
*PrintData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24458 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
24459 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintData
, SWIG_NewClientData(obj
));
24460 return SWIG_Py_Void();
24463 SWIGINTERN PyObject
*PrintData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24464 return SWIG_Python_InitShadowInstance(args
);
24467 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
24468 PyObject
*resultobj
= 0;
24469 wxPageSetupDialogData
*result
= 0 ;
24471 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
24473 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24474 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData();
24475 wxPyEndAllowThreads(__tstate
);
24476 if (PyErr_Occurred()) SWIG_fail
;
24478 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24485 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
24486 PyObject
*resultobj
= 0;
24487 wxPageSetupDialogData
*arg1
= 0 ;
24488 wxPageSetupDialogData
*result
= 0 ;
24492 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
24493 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0);
24494 if (!SWIG_IsOK(res1
)) {
24495 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData const &""'");
24498 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData const &""'");
24500 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24502 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24503 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData((wxPageSetupDialogData
const &)*arg1
);
24504 wxPyEndAllowThreads(__tstate
);
24505 if (PyErr_Occurred()) SWIG_fail
;
24507 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24514 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
24515 PyObject
*resultobj
= 0;
24516 wxPrintData
*arg1
= 0 ;
24517 wxPageSetupDialogData
*result
= 0 ;
24521 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
24522 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
24523 if (!SWIG_IsOK(res1
)) {
24524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24527 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
24529 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
24531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24532 result
= (wxPageSetupDialogData
*)new wxPageSetupDialogData((wxPrintData
const &)*arg1
);
24533 wxPyEndAllowThreads(__tstate
);
24534 if (PyErr_Occurred()) SWIG_fail
;
24536 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_NEW
| 0 );
24543 SWIGINTERN PyObject
*_wrap_new_PageSetupDialogData(PyObject
*self
, PyObject
*args
) {
24547 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PageSetupDialogData",0,1,argv
))) SWIG_fail
;
24550 return _wrap_new_PageSetupDialogData__SWIG_0(self
, argc
, argv
);
24555 int res
= SWIG_ConvertPtr(argv
[0], 0, SWIGTYPE_p_wxPageSetupDialogData
, 0);
24556 _v
= SWIG_CheckState(res
);
24558 if (!_v
) goto check_2
;
24559 return _wrap_new_PageSetupDialogData__SWIG_1(self
, argc
, argv
);
24564 return _wrap_new_PageSetupDialogData__SWIG_2(self
, argc
, argv
);
24568 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PageSetupDialogData'");
24573 SWIGINTERN PyObject
*_wrap_delete_PageSetupDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24574 PyObject
*resultobj
= 0;
24575 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
, SWIG_POINTER_DISOWN
| 0 );
24583 if (!SWIG_IsOK(res1
)) {
24584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24586 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24588 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24591 wxPyEndAllowThreads(__tstate
);
24592 if (PyErr_Occurred()) SWIG_fail
;
24594 resultobj
= SWIG_Py_Void();
24601 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24602 PyObject
*resultobj
= 0;
24603 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24609 PyObject
* obj0
= 0 ;
24610 PyObject
* obj1
= 0 ;
24611 char * kwnames
[] = {
24612 (char *) "self",(char *) "flag", NULL
24615 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24616 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24617 if (!SWIG_IsOK(res1
)) {
24618 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableHelp" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24620 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24621 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24622 if (!SWIG_IsOK(ecode2
)) {
24623 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableHelp" "', expected argument " "2"" of type '" "bool""'");
24625 arg2
= static_cast< bool >(val2
);
24627 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24628 (arg1
)->EnableHelp(arg2
);
24629 wxPyEndAllowThreads(__tstate
);
24630 if (PyErr_Occurred()) SWIG_fail
;
24632 resultobj
= SWIG_Py_Void();
24639 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24640 PyObject
*resultobj
= 0;
24641 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24647 PyObject
* obj0
= 0 ;
24648 PyObject
* obj1
= 0 ;
24649 char * kwnames
[] = {
24650 (char *) "self",(char *) "flag", NULL
24653 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24654 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24655 if (!SWIG_IsOK(res1
)) {
24656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24658 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24659 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24660 if (!SWIG_IsOK(ecode2
)) {
24661 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableMargins" "', expected argument " "2"" of type '" "bool""'");
24663 arg2
= static_cast< bool >(val2
);
24665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24666 (arg1
)->EnableMargins(arg2
);
24667 wxPyEndAllowThreads(__tstate
);
24668 if (PyErr_Occurred()) SWIG_fail
;
24670 resultobj
= SWIG_Py_Void();
24677 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnableOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24678 PyObject
*resultobj
= 0;
24679 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24685 PyObject
* obj0
= 0 ;
24686 PyObject
* obj1
= 0 ;
24687 char * kwnames
[] = {
24688 (char *) "self",(char *) "flag", NULL
24691 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableOrientation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24692 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24693 if (!SWIG_IsOK(res1
)) {
24694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnableOrientation" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24696 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24697 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24698 if (!SWIG_IsOK(ecode2
)) {
24699 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnableOrientation" "', expected argument " "2"" of type '" "bool""'");
24701 arg2
= static_cast< bool >(val2
);
24703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24704 (arg1
)->EnableOrientation(arg2
);
24705 wxPyEndAllowThreads(__tstate
);
24706 if (PyErr_Occurred()) SWIG_fail
;
24708 resultobj
= SWIG_Py_Void();
24715 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnablePaper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24716 PyObject
*resultobj
= 0;
24717 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24723 PyObject
* obj0
= 0 ;
24724 PyObject
* obj1
= 0 ;
24725 char * kwnames
[] = {
24726 (char *) "self",(char *) "flag", NULL
24729 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePaper",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24730 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24731 if (!SWIG_IsOK(res1
)) {
24732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnablePaper" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24734 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24735 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24736 if (!SWIG_IsOK(ecode2
)) {
24737 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnablePaper" "', expected argument " "2"" of type '" "bool""'");
24739 arg2
= static_cast< bool >(val2
);
24741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24742 (arg1
)->EnablePaper(arg2
);
24743 wxPyEndAllowThreads(__tstate
);
24744 if (PyErr_Occurred()) SWIG_fail
;
24746 resultobj
= SWIG_Py_Void();
24753 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_EnablePrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
24754 PyObject
*resultobj
= 0;
24755 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24761 PyObject
* obj0
= 0 ;
24762 PyObject
* obj1
= 0 ;
24763 char * kwnames
[] = {
24764 (char *) "self",(char *) "flag", NULL
24767 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePrinter",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
24768 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24769 if (!SWIG_IsOK(res1
)) {
24770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_EnablePrinter" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24772 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24773 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
24774 if (!SWIG_IsOK(ecode2
)) {
24775 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_EnablePrinter" "', expected argument " "2"" of type '" "bool""'");
24777 arg2
= static_cast< bool >(val2
);
24779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24780 (arg1
)->EnablePrinter(arg2
);
24781 wxPyEndAllowThreads(__tstate
);
24782 if (PyErr_Occurred()) SWIG_fail
;
24784 resultobj
= SWIG_Py_Void();
24791 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetDefaultMinMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24792 PyObject
*resultobj
= 0;
24793 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24797 PyObject
*swig_obj
[1] ;
24799 if (!args
) SWIG_fail
;
24800 swig_obj
[0] = args
;
24801 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24802 if (!SWIG_IsOK(res1
)) {
24803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetDefaultMinMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24805 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24808 result
= (bool)(arg1
)->GetDefaultMinMargins();
24809 wxPyEndAllowThreads(__tstate
);
24810 if (PyErr_Occurred()) SWIG_fail
;
24813 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24821 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24822 PyObject
*resultobj
= 0;
24823 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24827 PyObject
*swig_obj
[1] ;
24829 if (!args
) SWIG_fail
;
24830 swig_obj
[0] = args
;
24831 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24832 if (!SWIG_IsOK(res1
)) {
24833 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24835 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24837 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24838 result
= (bool)(arg1
)->GetEnableMargins();
24839 wxPyEndAllowThreads(__tstate
);
24840 if (PyErr_Occurred()) SWIG_fail
;
24843 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24851 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableOrientation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24852 PyObject
*resultobj
= 0;
24853 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24857 PyObject
*swig_obj
[1] ;
24859 if (!args
) SWIG_fail
;
24860 swig_obj
[0] = args
;
24861 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24862 if (!SWIG_IsOK(res1
)) {
24863 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableOrientation" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24865 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24867 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24868 result
= (bool)(arg1
)->GetEnableOrientation();
24869 wxPyEndAllowThreads(__tstate
);
24870 if (PyErr_Occurred()) SWIG_fail
;
24873 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24881 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnablePaper(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24882 PyObject
*resultobj
= 0;
24883 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24887 PyObject
*swig_obj
[1] ;
24889 if (!args
) SWIG_fail
;
24890 swig_obj
[0] = args
;
24891 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24892 if (!SWIG_IsOK(res1
)) {
24893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnablePaper" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24895 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24897 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24898 result
= (bool)(arg1
)->GetEnablePaper();
24899 wxPyEndAllowThreads(__tstate
);
24900 if (PyErr_Occurred()) SWIG_fail
;
24903 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24911 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnablePrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24912 PyObject
*resultobj
= 0;
24913 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24917 PyObject
*swig_obj
[1] ;
24919 if (!args
) SWIG_fail
;
24920 swig_obj
[0] = args
;
24921 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24922 if (!SWIG_IsOK(res1
)) {
24923 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnablePrinter" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24925 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24927 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24928 result
= (bool)(arg1
)->GetEnablePrinter();
24929 wxPyEndAllowThreads(__tstate
);
24930 if (PyErr_Occurred()) SWIG_fail
;
24933 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24941 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetEnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24942 PyObject
*resultobj
= 0;
24943 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24947 PyObject
*swig_obj
[1] ;
24949 if (!args
) SWIG_fail
;
24950 swig_obj
[0] = args
;
24951 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24952 if (!SWIG_IsOK(res1
)) {
24953 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetEnableHelp" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24955 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24957 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24958 result
= (bool)(arg1
)->GetEnableHelp();
24959 wxPyEndAllowThreads(__tstate
);
24960 if (PyErr_Occurred()) SWIG_fail
;
24963 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
24971 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetDefaultInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
24972 PyObject
*resultobj
= 0;
24973 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
24977 PyObject
*swig_obj
[1] ;
24979 if (!args
) SWIG_fail
;
24980 swig_obj
[0] = args
;
24981 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
24982 if (!SWIG_IsOK(res1
)) {
24983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetDefaultInfo" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
24985 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
24987 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
24988 result
= (bool)(arg1
)->GetDefaultInfo();
24989 wxPyEndAllowThreads(__tstate
);
24990 if (PyErr_Occurred()) SWIG_fail
;
24993 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25001 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25002 PyObject
*resultobj
= 0;
25003 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25007 PyObject
*swig_obj
[1] ;
25009 if (!args
) SWIG_fail
;
25010 swig_obj
[0] = args
;
25011 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25012 if (!SWIG_IsOK(res1
)) {
25013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25015 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25018 result
= (arg1
)->GetMarginTopLeft();
25019 wxPyEndAllowThreads(__tstate
);
25020 if (PyErr_Occurred()) SWIG_fail
;
25022 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
25029 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25030 PyObject
*resultobj
= 0;
25031 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25035 PyObject
*swig_obj
[1] ;
25037 if (!args
) SWIG_fail
;
25038 swig_obj
[0] = args
;
25039 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25040 if (!SWIG_IsOK(res1
)) {
25041 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25043 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25046 result
= (arg1
)->GetMarginBottomRight();
25047 wxPyEndAllowThreads(__tstate
);
25048 if (PyErr_Occurred()) SWIG_fail
;
25050 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
25057 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMinMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25058 PyObject
*resultobj
= 0;
25059 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25063 PyObject
*swig_obj
[1] ;
25065 if (!args
) SWIG_fail
;
25066 swig_obj
[0] = args
;
25067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25068 if (!SWIG_IsOK(res1
)) {
25069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMinMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25071 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25073 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25074 result
= (arg1
)->GetMinMarginTopLeft();
25075 wxPyEndAllowThreads(__tstate
);
25076 if (PyErr_Occurred()) SWIG_fail
;
25078 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
25085 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetMinMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25086 PyObject
*resultobj
= 0;
25087 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25091 PyObject
*swig_obj
[1] ;
25093 if (!args
) SWIG_fail
;
25094 swig_obj
[0] = args
;
25095 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25096 if (!SWIG_IsOK(res1
)) {
25097 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetMinMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25099 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25101 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25102 result
= (arg1
)->GetMinMarginBottomRight();
25103 wxPyEndAllowThreads(__tstate
);
25104 if (PyErr_Occurred()) SWIG_fail
;
25106 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
25113 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25114 PyObject
*resultobj
= 0;
25115 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25116 wxPaperSize result
;
25119 PyObject
*swig_obj
[1] ;
25121 if (!args
) SWIG_fail
;
25122 swig_obj
[0] = args
;
25123 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25124 if (!SWIG_IsOK(res1
)) {
25125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPaperId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25127 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25130 result
= (wxPaperSize
)(arg1
)->GetPaperId();
25131 wxPyEndAllowThreads(__tstate
);
25132 if (PyErr_Occurred()) SWIG_fail
;
25134 resultobj
= SWIG_From_int(static_cast< int >(result
));
25141 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25142 PyObject
*resultobj
= 0;
25143 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25147 PyObject
*swig_obj
[1] ;
25149 if (!args
) SWIG_fail
;
25150 swig_obj
[0] = args
;
25151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25152 if (!SWIG_IsOK(res1
)) {
25153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25155 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25158 result
= (arg1
)->GetPaperSize();
25159 wxPyEndAllowThreads(__tstate
);
25160 if (PyErr_Occurred()) SWIG_fail
;
25162 resultobj
= SWIG_NewPointerObj((new wxSize(static_cast< const wxSize
& >(result
))), SWIGTYPE_p_wxSize
, SWIG_POINTER_OWN
| 0 );
25169 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25170 PyObject
*resultobj
= 0;
25171 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25172 wxPrintData
*result
= 0 ;
25175 PyObject
*swig_obj
[1] ;
25177 if (!args
) SWIG_fail
;
25178 swig_obj
[0] = args
;
25179 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25180 if (!SWIG_IsOK(res1
)) {
25181 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_GetPrintData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25183 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25187 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
25188 result
= (wxPrintData
*) &_result_ref
;
25190 wxPyEndAllowThreads(__tstate
);
25191 if (PyErr_Occurred()) SWIG_fail
;
25193 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
25200 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25201 PyObject
*resultobj
= 0;
25202 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25206 PyObject
*swig_obj
[1] ;
25208 if (!args
) SWIG_fail
;
25209 swig_obj
[0] = args
;
25210 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25211 if (!SWIG_IsOK(res1
)) {
25212 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_Ok" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25214 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25217 result
= (bool)(arg1
)->Ok();
25218 wxPyEndAllowThreads(__tstate
);
25219 if (PyErr_Occurred()) SWIG_fail
;
25222 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
25230 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetDefaultInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25231 PyObject
*resultobj
= 0;
25232 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25238 PyObject
* obj0
= 0 ;
25239 PyObject
* obj1
= 0 ;
25240 char * kwnames
[] = {
25241 (char *) "self",(char *) "flag", NULL
25244 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultInfo",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25245 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25246 if (!SWIG_IsOK(res1
)) {
25247 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetDefaultInfo" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25249 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25250 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
25251 if (!SWIG_IsOK(ecode2
)) {
25252 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetDefaultInfo" "', expected argument " "2"" of type '" "bool""'");
25254 arg2
= static_cast< bool >(val2
);
25256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25257 (arg1
)->SetDefaultInfo(arg2
);
25258 wxPyEndAllowThreads(__tstate
);
25259 if (PyErr_Occurred()) SWIG_fail
;
25261 resultobj
= SWIG_Py_Void();
25268 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetDefaultMinMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25269 PyObject
*resultobj
= 0;
25270 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25276 PyObject
* obj0
= 0 ;
25277 PyObject
* obj1
= 0 ;
25278 char * kwnames
[] = {
25279 (char *) "self",(char *) "flag", NULL
25282 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultMinMargins",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25283 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25284 if (!SWIG_IsOK(res1
)) {
25285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetDefaultMinMargins" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25287 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25288 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
25289 if (!SWIG_IsOK(ecode2
)) {
25290 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetDefaultMinMargins" "', expected argument " "2"" of type '" "bool""'");
25292 arg2
= static_cast< bool >(val2
);
25294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25295 (arg1
)->SetDefaultMinMargins(arg2
);
25296 wxPyEndAllowThreads(__tstate
);
25297 if (PyErr_Occurred()) SWIG_fail
;
25299 resultobj
= SWIG_Py_Void();
25306 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25307 PyObject
*resultobj
= 0;
25308 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25309 wxPoint
*arg2
= 0 ;
25313 PyObject
* obj0
= 0 ;
25314 PyObject
* obj1
= 0 ;
25315 char * kwnames
[] = {
25316 (char *) "self",(char *) "pt", NULL
25319 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginTopLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25320 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25321 if (!SWIG_IsOK(res1
)) {
25322 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25324 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25327 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25331 (arg1
)->SetMarginTopLeft((wxPoint
const &)*arg2
);
25332 wxPyEndAllowThreads(__tstate
);
25333 if (PyErr_Occurred()) SWIG_fail
;
25335 resultobj
= SWIG_Py_Void();
25342 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25343 PyObject
*resultobj
= 0;
25344 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25345 wxPoint
*arg2
= 0 ;
25349 PyObject
* obj0
= 0 ;
25350 PyObject
* obj1
= 0 ;
25351 char * kwnames
[] = {
25352 (char *) "self",(char *) "pt", NULL
25355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginBottomRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25357 if (!SWIG_IsOK(res1
)) {
25358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25360 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25363 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25367 (arg1
)->SetMarginBottomRight((wxPoint
const &)*arg2
);
25368 wxPyEndAllowThreads(__tstate
);
25369 if (PyErr_Occurred()) SWIG_fail
;
25371 resultobj
= SWIG_Py_Void();
25378 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMinMarginTopLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25379 PyObject
*resultobj
= 0;
25380 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25381 wxPoint
*arg2
= 0 ;
25385 PyObject
* obj0
= 0 ;
25386 PyObject
* obj1
= 0 ;
25387 char * kwnames
[] = {
25388 (char *) "self",(char *) "pt", NULL
25391 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginTopLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25392 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25393 if (!SWIG_IsOK(res1
)) {
25394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMinMarginTopLeft" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25396 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25399 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25403 (arg1
)->SetMinMarginTopLeft((wxPoint
const &)*arg2
);
25404 wxPyEndAllowThreads(__tstate
);
25405 if (PyErr_Occurred()) SWIG_fail
;
25407 resultobj
= SWIG_Py_Void();
25414 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetMinMarginBottomRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25415 PyObject
*resultobj
= 0;
25416 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25417 wxPoint
*arg2
= 0 ;
25421 PyObject
* obj0
= 0 ;
25422 PyObject
* obj1
= 0 ;
25423 char * kwnames
[] = {
25424 (char *) "self",(char *) "pt", NULL
25427 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginBottomRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25428 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25429 if (!SWIG_IsOK(res1
)) {
25430 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetMinMarginBottomRight" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25432 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25435 if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
;
25438 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25439 (arg1
)->SetMinMarginBottomRight((wxPoint
const &)*arg2
);
25440 wxPyEndAllowThreads(__tstate
);
25441 if (PyErr_Occurred()) SWIG_fail
;
25443 resultobj
= SWIG_Py_Void();
25450 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPaperId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25451 PyObject
*resultobj
= 0;
25452 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25458 PyObject
* obj0
= 0 ;
25459 PyObject
* obj1
= 0 ;
25460 char * kwnames
[] = {
25461 (char *) "self",(char *) "id", NULL
25464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperId",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25466 if (!SWIG_IsOK(res1
)) {
25467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPaperId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25469 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25470 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
25471 if (!SWIG_IsOK(ecode2
)) {
25472 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PageSetupDialogData_SetPaperId" "', expected argument " "2"" of type '" "wxPaperSize""'");
25474 arg2
= static_cast< wxPaperSize
>(val2
);
25476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25477 (arg1
)->SetPaperId(arg2
);
25478 wxPyEndAllowThreads(__tstate
);
25479 if (PyErr_Occurred()) SWIG_fail
;
25481 resultobj
= SWIG_Py_Void();
25488 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25489 PyObject
*resultobj
= 0;
25490 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25495 PyObject
* obj0
= 0 ;
25496 PyObject
* obj1
= 0 ;
25497 char * kwnames
[] = {
25498 (char *) "self",(char *) "size", NULL
25501 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperSize",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25502 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25503 if (!SWIG_IsOK(res1
)) {
25504 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25506 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25509 if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
;
25512 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25513 (arg1
)->SetPaperSize((wxSize
const &)*arg2
);
25514 wxPyEndAllowThreads(__tstate
);
25515 if (PyErr_Occurred()) SWIG_fail
;
25517 resultobj
= SWIG_Py_Void();
25524 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_SetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25525 PyObject
*resultobj
= 0;
25526 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25527 wxPrintData
*arg2
= 0 ;
25532 PyObject
* obj0
= 0 ;
25533 PyObject
* obj1
= 0 ;
25534 char * kwnames
[] = {
25535 (char *) "self",(char *) "printData", NULL
25538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25540 if (!SWIG_IsOK(res1
)) {
25541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25543 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25544 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPrintData
, 0 | 0);
25545 if (!SWIG_IsOK(res2
)) {
25546 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
25549 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PageSetupDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
25551 arg2
= reinterpret_cast< wxPrintData
* >(argp2
);
25553 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25554 (arg1
)->SetPrintData((wxPrintData
const &)*arg2
);
25555 wxPyEndAllowThreads(__tstate
);
25556 if (PyErr_Occurred()) SWIG_fail
;
25558 resultobj
= SWIG_Py_Void();
25565 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_CalculateIdFromPaperSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25566 PyObject
*resultobj
= 0;
25567 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25570 PyObject
*swig_obj
[1] ;
25572 if (!args
) SWIG_fail
;
25573 swig_obj
[0] = args
;
25574 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25575 if (!SWIG_IsOK(res1
)) {
25576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_CalculateIdFromPaperSize" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25578 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25581 (arg1
)->CalculateIdFromPaperSize();
25582 wxPyEndAllowThreads(__tstate
);
25583 if (PyErr_Occurred()) SWIG_fail
;
25585 resultobj
= SWIG_Py_Void();
25592 SWIGINTERN PyObject
*_wrap_PageSetupDialogData_CalculatePaperSizeFromId(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25593 PyObject
*resultobj
= 0;
25594 wxPageSetupDialogData
*arg1
= (wxPageSetupDialogData
*) 0 ;
25597 PyObject
*swig_obj
[1] ;
25599 if (!args
) SWIG_fail
;
25600 swig_obj
[0] = args
;
25601 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25602 if (!SWIG_IsOK(res1
)) {
25603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialogData_CalculatePaperSizeFromId" "', expected argument " "1"" of type '" "wxPageSetupDialogData *""'");
25605 arg1
= reinterpret_cast< wxPageSetupDialogData
* >(argp1
);
25607 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25608 (arg1
)->CalculatePaperSizeFromId();
25609 wxPyEndAllowThreads(__tstate
);
25610 if (PyErr_Occurred()) SWIG_fail
;
25612 resultobj
= SWIG_Py_Void();
25619 SWIGINTERN PyObject
*PageSetupDialogData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25621 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
25622 SWIG_TypeNewClientData(SWIGTYPE_p_wxPageSetupDialogData
, SWIG_NewClientData(obj
));
25623 return SWIG_Py_Void();
25626 SWIGINTERN PyObject
*PageSetupDialogData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25627 return SWIG_Python_InitShadowInstance(args
);
25630 SWIGINTERN PyObject
*_wrap_new_PageSetupDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
25631 PyObject
*resultobj
= 0;
25632 wxWindow
*arg1
= (wxWindow
*) 0 ;
25633 wxPageSetupDialogData
*arg2
= (wxPageSetupDialogData
*) NULL
;
25634 wxPageSetupDialog
*result
= 0 ;
25639 PyObject
* obj0
= 0 ;
25640 PyObject
* obj1
= 0 ;
25641 char * kwnames
[] = {
25642 (char *) "parent",(char *) "data", NULL
25645 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PageSetupDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
25646 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
25647 if (!SWIG_IsOK(res1
)) {
25648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PageSetupDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
25650 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
25652 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25653 if (!SWIG_IsOK(res2
)) {
25654 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PageSetupDialog" "', expected argument " "2"" of type '" "wxPageSetupDialogData *""'");
25656 arg2
= reinterpret_cast< wxPageSetupDialogData
* >(argp2
);
25659 if (!wxPyCheckForApp()) SWIG_fail
;
25660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25661 result
= (wxPageSetupDialog
*)new wxPageSetupDialog(arg1
,arg2
);
25662 wxPyEndAllowThreads(__tstate
);
25663 if (PyErr_Occurred()) SWIG_fail
;
25665 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialog
, SWIG_POINTER_NEW
| 0 );
25672 SWIGINTERN PyObject
*_wrap_PageSetupDialog_GetPageSetupData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25673 PyObject
*resultobj
= 0;
25674 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25675 wxPageSetupDialogData
*result
= 0 ;
25678 PyObject
*swig_obj
[1] ;
25680 if (!args
) SWIG_fail
;
25681 swig_obj
[0] = args
;
25682 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25683 if (!SWIG_IsOK(res1
)) {
25684 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_GetPageSetupData" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25686 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25688 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25690 wxPageSetupDialogData
&_result_ref
= (arg1
)->GetPageSetupData();
25691 result
= (wxPageSetupDialogData
*) &_result_ref
;
25693 wxPyEndAllowThreads(__tstate
);
25694 if (PyErr_Occurred()) SWIG_fail
;
25696 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25703 SWIGINTERN PyObject
*_wrap_PageSetupDialog_GetPageSetupDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25704 PyObject
*resultobj
= 0;
25705 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25706 wxPageSetupDialogData
*result
= 0 ;
25709 PyObject
*swig_obj
[1] ;
25711 if (!args
) SWIG_fail
;
25712 swig_obj
[0] = args
;
25713 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25714 if (!SWIG_IsOK(res1
)) {
25715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_GetPageSetupDialogData" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25717 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25721 wxPageSetupDialogData
&_result_ref
= (arg1
)->GetPageSetupDialogData();
25722 result
= (wxPageSetupDialogData
*) &_result_ref
;
25724 wxPyEndAllowThreads(__tstate
);
25725 if (PyErr_Occurred()) SWIG_fail
;
25727 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0 | 0 );
25734 SWIGINTERN PyObject
*_wrap_PageSetupDialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25735 PyObject
*resultobj
= 0;
25736 wxPageSetupDialog
*arg1
= (wxPageSetupDialog
*) 0 ;
25740 PyObject
*swig_obj
[1] ;
25742 if (!args
) SWIG_fail
;
25743 swig_obj
[0] = args
;
25744 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPageSetupDialog
, 0 | 0 );
25745 if (!SWIG_IsOK(res1
)) {
25746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PageSetupDialog_ShowModal" "', expected argument " "1"" of type '" "wxPageSetupDialog *""'");
25748 arg1
= reinterpret_cast< wxPageSetupDialog
* >(argp1
);
25750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25751 result
= (int)(arg1
)->ShowModal();
25752 wxPyEndAllowThreads(__tstate
);
25753 if (PyErr_Occurred()) SWIG_fail
;
25755 resultobj
= SWIG_From_int(static_cast< int >(result
));
25762 SWIGINTERN PyObject
*PageSetupDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25764 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
25765 SWIG_TypeNewClientData(SWIGTYPE_p_wxPageSetupDialog
, SWIG_NewClientData(obj
));
25766 return SWIG_Py_Void();
25769 SWIGINTERN PyObject
*PageSetupDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25770 return SWIG_Python_InitShadowInstance(args
);
25773 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**SWIGUNUSEDPARM(swig_obj
)) {
25774 PyObject
*resultobj
= 0;
25775 wxPrintDialogData
*result
= 0 ;
25777 if ((nobjs
< 0) || (nobjs
> 0)) SWIG_fail
;
25779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25780 result
= (wxPrintDialogData
*)new wxPrintDialogData();
25781 wxPyEndAllowThreads(__tstate
);
25782 if (PyErr_Occurred()) SWIG_fail
;
25784 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25791 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25792 PyObject
*resultobj
= 0;
25793 wxPrintData
*arg1
= 0 ;
25794 wxPrintDialogData
*result
= 0 ;
25798 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25799 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintData
, 0 | 0);
25800 if (!SWIG_IsOK(res1
)) {
25801 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
25804 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintData const &""'");
25806 arg1
= reinterpret_cast< wxPrintData
* >(argp1
);
25808 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25809 result
= (wxPrintDialogData
*)new wxPrintDialogData((wxPrintData
const &)*arg1
);
25810 wxPyEndAllowThreads(__tstate
);
25811 if (PyErr_Occurred()) SWIG_fail
;
25813 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25820 SWIGINTERN PyObject
*_wrap_new_PrintDialogData__SWIG_2(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
25821 PyObject
*resultobj
= 0;
25822 wxPrintDialogData
*arg1
= 0 ;
25823 wxPrintDialogData
*result
= 0 ;
25827 if ((nobjs
< 1) || (nobjs
> 1)) SWIG_fail
;
25828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
, SWIGTYPE_p_wxPrintDialogData
, 0 | 0);
25829 if (!SWIG_IsOK(res1
)) {
25830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData const &""'");
25833 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "new_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData const &""'");
25835 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25837 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25838 result
= (wxPrintDialogData
*)new wxPrintDialogData((wxPrintDialogData
const &)*arg1
);
25839 wxPyEndAllowThreads(__tstate
);
25840 if (PyErr_Occurred()) SWIG_fail
;
25842 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_NEW
| 0 );
25849 SWIGINTERN PyObject
*_wrap_new_PrintDialogData(PyObject
*self
, PyObject
*args
) {
25853 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintDialogData",0,1,argv
))) SWIG_fail
;
25856 return _wrap_new_PrintDialogData__SWIG_0(self
, argc
, argv
);
25861 int res
= SWIG_ConvertPtr(argv
[0], 0, SWIGTYPE_p_wxPrintData
, 0);
25862 _v
= SWIG_CheckState(res
);
25864 if (!_v
) goto check_2
;
25865 return _wrap_new_PrintDialogData__SWIG_1(self
, argc
, argv
);
25870 return _wrap_new_PrintDialogData__SWIG_2(self
, argc
, argv
);
25874 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintDialogData'");
25879 SWIGINTERN PyObject
*_wrap_delete_PrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25880 PyObject
*resultobj
= 0;
25881 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25884 PyObject
*swig_obj
[1] ;
25886 if (!args
) SWIG_fail
;
25887 swig_obj
[0] = args
;
25888 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_DISOWN
| 0 );
25889 if (!SWIG_IsOK(res1
)) {
25890 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
25892 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25897 wxPyEndAllowThreads(__tstate
);
25898 if (PyErr_Occurred()) SWIG_fail
;
25900 resultobj
= SWIG_Py_Void();
25907 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetFromPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25908 PyObject
*resultobj
= 0;
25909 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25913 PyObject
*swig_obj
[1] ;
25915 if (!args
) SWIG_fail
;
25916 swig_obj
[0] = args
;
25917 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25918 if (!SWIG_IsOK(res1
)) {
25919 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetFromPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25921 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25923 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25924 result
= (int)((wxPrintDialogData
const *)arg1
)->GetFromPage();
25925 wxPyEndAllowThreads(__tstate
);
25926 if (PyErr_Occurred()) SWIG_fail
;
25928 resultobj
= SWIG_From_int(static_cast< int >(result
));
25935 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetToPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25936 PyObject
*resultobj
= 0;
25937 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25941 PyObject
*swig_obj
[1] ;
25943 if (!args
) SWIG_fail
;
25944 swig_obj
[0] = args
;
25945 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25946 if (!SWIG_IsOK(res1
)) {
25947 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetToPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25949 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25951 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25952 result
= (int)((wxPrintDialogData
const *)arg1
)->GetToPage();
25953 wxPyEndAllowThreads(__tstate
);
25954 if (PyErr_Occurred()) SWIG_fail
;
25956 resultobj
= SWIG_From_int(static_cast< int >(result
));
25963 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25964 PyObject
*resultobj
= 0;
25965 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25969 PyObject
*swig_obj
[1] ;
25971 if (!args
) SWIG_fail
;
25972 swig_obj
[0] = args
;
25973 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
25974 if (!SWIG_IsOK(res1
)) {
25975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetMinPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
25977 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
25979 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
25980 result
= (int)((wxPrintDialogData
const *)arg1
)->GetMinPage();
25981 wxPyEndAllowThreads(__tstate
);
25982 if (PyErr_Occurred()) SWIG_fail
;
25984 resultobj
= SWIG_From_int(static_cast< int >(result
));
25991 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
25992 PyObject
*resultobj
= 0;
25993 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
25997 PyObject
*swig_obj
[1] ;
25999 if (!args
) SWIG_fail
;
26000 swig_obj
[0] = args
;
26001 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26002 if (!SWIG_IsOK(res1
)) {
26003 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetMaxPage" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26005 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26008 result
= (int)((wxPrintDialogData
const *)arg1
)->GetMaxPage();
26009 wxPyEndAllowThreads(__tstate
);
26010 if (PyErr_Occurred()) SWIG_fail
;
26012 resultobj
= SWIG_From_int(static_cast< int >(result
));
26019 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26020 PyObject
*resultobj
= 0;
26021 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26025 PyObject
*swig_obj
[1] ;
26027 if (!args
) SWIG_fail
;
26028 swig_obj
[0] = args
;
26029 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26030 if (!SWIG_IsOK(res1
)) {
26031 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetNoCopies" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26033 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26036 result
= (int)((wxPrintDialogData
const *)arg1
)->GetNoCopies();
26037 wxPyEndAllowThreads(__tstate
);
26038 if (PyErr_Occurred()) SWIG_fail
;
26040 resultobj
= SWIG_From_int(static_cast< int >(result
));
26047 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetAllPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26048 PyObject
*resultobj
= 0;
26049 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26053 PyObject
*swig_obj
[1] ;
26055 if (!args
) SWIG_fail
;
26056 swig_obj
[0] = args
;
26057 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26058 if (!SWIG_IsOK(res1
)) {
26059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetAllPages" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26061 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26063 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26064 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetAllPages();
26065 wxPyEndAllowThreads(__tstate
);
26066 if (PyErr_Occurred()) SWIG_fail
;
26069 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26077 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26078 PyObject
*resultobj
= 0;
26079 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26083 PyObject
*swig_obj
[1] ;
26085 if (!args
) SWIG_fail
;
26086 swig_obj
[0] = args
;
26087 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26088 if (!SWIG_IsOK(res1
)) {
26089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetSelection" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26091 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26093 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26094 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetSelection();
26095 wxPyEndAllowThreads(__tstate
);
26096 if (PyErr_Occurred()) SWIG_fail
;
26099 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26107 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26108 PyObject
*resultobj
= 0;
26109 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26113 PyObject
*swig_obj
[1] ;
26115 if (!args
) SWIG_fail
;
26116 swig_obj
[0] = args
;
26117 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26118 if (!SWIG_IsOK(res1
)) {
26119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetCollate" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26121 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26123 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26124 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetCollate();
26125 wxPyEndAllowThreads(__tstate
);
26126 if (PyErr_Occurred()) SWIG_fail
;
26129 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26137 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetPrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26138 PyObject
*resultobj
= 0;
26139 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26143 PyObject
*swig_obj
[1] ;
26145 if (!args
) SWIG_fail
;
26146 swig_obj
[0] = args
;
26147 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26148 if (!SWIG_IsOK(res1
)) {
26149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetPrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26151 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26153 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26154 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetPrintToFile();
26155 wxPyEndAllowThreads(__tstate
);
26156 if (PyErr_Occurred()) SWIG_fail
;
26159 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26167 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetFromPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26168 PyObject
*resultobj
= 0;
26169 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26175 PyObject
* obj0
= 0 ;
26176 PyObject
* obj1
= 0 ;
26177 char * kwnames
[] = {
26178 (char *) "self",(char *) "v", NULL
26181 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetFromPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26182 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26183 if (!SWIG_IsOK(res1
)) {
26184 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetFromPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26186 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26187 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26188 if (!SWIG_IsOK(ecode2
)) {
26189 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetFromPage" "', expected argument " "2"" of type '" "int""'");
26191 arg2
= static_cast< int >(val2
);
26193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26194 (arg1
)->SetFromPage(arg2
);
26195 wxPyEndAllowThreads(__tstate
);
26196 if (PyErr_Occurred()) SWIG_fail
;
26198 resultobj
= SWIG_Py_Void();
26205 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetToPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26206 PyObject
*resultobj
= 0;
26207 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26213 PyObject
* obj0
= 0 ;
26214 PyObject
* obj1
= 0 ;
26215 char * kwnames
[] = {
26216 (char *) "self",(char *) "v", NULL
26219 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetToPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26220 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26221 if (!SWIG_IsOK(res1
)) {
26222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetToPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26224 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26225 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26226 if (!SWIG_IsOK(ecode2
)) {
26227 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetToPage" "', expected argument " "2"" of type '" "int""'");
26229 arg2
= static_cast< int >(val2
);
26231 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26232 (arg1
)->SetToPage(arg2
);
26233 wxPyEndAllowThreads(__tstate
);
26234 if (PyErr_Occurred()) SWIG_fail
;
26236 resultobj
= SWIG_Py_Void();
26243 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26244 PyObject
*resultobj
= 0;
26245 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26251 PyObject
* obj0
= 0 ;
26252 PyObject
* obj1
= 0 ;
26253 char * kwnames
[] = {
26254 (char *) "self",(char *) "v", NULL
26257 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMinPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26258 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26259 if (!SWIG_IsOK(res1
)) {
26260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetMinPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26262 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26263 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26264 if (!SWIG_IsOK(ecode2
)) {
26265 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetMinPage" "', expected argument " "2"" of type '" "int""'");
26267 arg2
= static_cast< int >(val2
);
26269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26270 (arg1
)->SetMinPage(arg2
);
26271 wxPyEndAllowThreads(__tstate
);
26272 if (PyErr_Occurred()) SWIG_fail
;
26274 resultobj
= SWIG_Py_Void();
26281 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26282 PyObject
*resultobj
= 0;
26283 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26289 PyObject
* obj0
= 0 ;
26290 PyObject
* obj1
= 0 ;
26291 char * kwnames
[] = {
26292 (char *) "self",(char *) "v", NULL
26295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMaxPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26297 if (!SWIG_IsOK(res1
)) {
26298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetMaxPage" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26300 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26301 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26302 if (!SWIG_IsOK(ecode2
)) {
26303 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetMaxPage" "', expected argument " "2"" of type '" "int""'");
26305 arg2
= static_cast< int >(val2
);
26307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26308 (arg1
)->SetMaxPage(arg2
);
26309 wxPyEndAllowThreads(__tstate
);
26310 if (PyErr_Occurred()) SWIG_fail
;
26312 resultobj
= SWIG_Py_Void();
26319 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetNoCopies(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26320 PyObject
*resultobj
= 0;
26321 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26327 PyObject
* obj0
= 0 ;
26328 PyObject
* obj1
= 0 ;
26329 char * kwnames
[] = {
26330 (char *) "self",(char *) "v", NULL
26333 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetNoCopies",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26334 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26335 if (!SWIG_IsOK(res1
)) {
26336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetNoCopies" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26338 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26339 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
26340 if (!SWIG_IsOK(ecode2
)) {
26341 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetNoCopies" "', expected argument " "2"" of type '" "int""'");
26343 arg2
= static_cast< int >(val2
);
26345 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26346 (arg1
)->SetNoCopies(arg2
);
26347 wxPyEndAllowThreads(__tstate
);
26348 if (PyErr_Occurred()) SWIG_fail
;
26350 resultobj
= SWIG_Py_Void();
26357 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetAllPages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26358 PyObject
*resultobj
= 0;
26359 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26365 PyObject
* obj0
= 0 ;
26366 PyObject
* obj1
= 0 ;
26367 char * kwnames
[] = {
26368 (char *) "self",(char *) "flag", NULL
26371 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetAllPages",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26372 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26373 if (!SWIG_IsOK(res1
)) {
26374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetAllPages" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26376 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26377 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26378 if (!SWIG_IsOK(ecode2
)) {
26379 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetAllPages" "', expected argument " "2"" of type '" "bool""'");
26381 arg2
= static_cast< bool >(val2
);
26383 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26384 (arg1
)->SetAllPages(arg2
);
26385 wxPyEndAllowThreads(__tstate
);
26386 if (PyErr_Occurred()) SWIG_fail
;
26388 resultobj
= SWIG_Py_Void();
26395 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26396 PyObject
*resultobj
= 0;
26397 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26403 PyObject
* obj0
= 0 ;
26404 PyObject
* obj1
= 0 ;
26405 char * kwnames
[] = {
26406 (char *) "self",(char *) "flag", NULL
26409 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26410 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26411 if (!SWIG_IsOK(res1
)) {
26412 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetSelection" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26414 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26415 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26416 if (!SWIG_IsOK(ecode2
)) {
26417 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetSelection" "', expected argument " "2"" of type '" "bool""'");
26419 arg2
= static_cast< bool >(val2
);
26421 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26422 (arg1
)->SetSelection(arg2
);
26423 wxPyEndAllowThreads(__tstate
);
26424 if (PyErr_Occurred()) SWIG_fail
;
26426 resultobj
= SWIG_Py_Void();
26433 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetCollate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26434 PyObject
*resultobj
= 0;
26435 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26441 PyObject
* obj0
= 0 ;
26442 PyObject
* obj1
= 0 ;
26443 char * kwnames
[] = {
26444 (char *) "self",(char *) "flag", NULL
26447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetCollate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26449 if (!SWIG_IsOK(res1
)) {
26450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetCollate" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26452 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26453 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26454 if (!SWIG_IsOK(ecode2
)) {
26455 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetCollate" "', expected argument " "2"" of type '" "bool""'");
26457 arg2
= static_cast< bool >(val2
);
26459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26460 (arg1
)->SetCollate(arg2
);
26461 wxPyEndAllowThreads(__tstate
);
26462 if (PyErr_Occurred()) SWIG_fail
;
26464 resultobj
= SWIG_Py_Void();
26471 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetPrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26472 PyObject
*resultobj
= 0;
26473 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26479 PyObject
* obj0
= 0 ;
26480 PyObject
* obj1
= 0 ;
26481 char * kwnames
[] = {
26482 (char *) "self",(char *) "flag", NULL
26485 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintToFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26486 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26487 if (!SWIG_IsOK(res1
)) {
26488 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetPrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26490 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26491 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26492 if (!SWIG_IsOK(ecode2
)) {
26493 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_SetPrintToFile" "', expected argument " "2"" of type '" "bool""'");
26495 arg2
= static_cast< bool >(val2
);
26497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26498 (arg1
)->SetPrintToFile(arg2
);
26499 wxPyEndAllowThreads(__tstate
);
26500 if (PyErr_Occurred()) SWIG_fail
;
26502 resultobj
= SWIG_Py_Void();
26509 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnablePrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26510 PyObject
*resultobj
= 0;
26511 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26517 PyObject
* obj0
= 0 ;
26518 PyObject
* obj1
= 0 ;
26519 char * kwnames
[] = {
26520 (char *) "self",(char *) "flag", NULL
26523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePrintToFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26524 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26525 if (!SWIG_IsOK(res1
)) {
26526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnablePrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26528 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26529 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26530 if (!SWIG_IsOK(ecode2
)) {
26531 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnablePrintToFile" "', expected argument " "2"" of type '" "bool""'");
26533 arg2
= static_cast< bool >(val2
);
26535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26536 (arg1
)->EnablePrintToFile(arg2
);
26537 wxPyEndAllowThreads(__tstate
);
26538 if (PyErr_Occurred()) SWIG_fail
;
26540 resultobj
= SWIG_Py_Void();
26547 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnableSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26548 PyObject
*resultobj
= 0;
26549 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26555 PyObject
* obj0
= 0 ;
26556 PyObject
* obj1
= 0 ;
26557 char * kwnames
[] = {
26558 (char *) "self",(char *) "flag", NULL
26561 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26562 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26563 if (!SWIG_IsOK(res1
)) {
26564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnableSelection" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26566 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26567 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26568 if (!SWIG_IsOK(ecode2
)) {
26569 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnableSelection" "', expected argument " "2"" of type '" "bool""'");
26571 arg2
= static_cast< bool >(val2
);
26573 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26574 (arg1
)->EnableSelection(arg2
);
26575 wxPyEndAllowThreads(__tstate
);
26576 if (PyErr_Occurred()) SWIG_fail
;
26578 resultobj
= SWIG_Py_Void();
26585 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnablePageNumbers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26586 PyObject
*resultobj
= 0;
26587 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26593 PyObject
* obj0
= 0 ;
26594 PyObject
* obj1
= 0 ;
26595 char * kwnames
[] = {
26596 (char *) "self",(char *) "flag", NULL
26599 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePageNumbers",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26600 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26601 if (!SWIG_IsOK(res1
)) {
26602 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnablePageNumbers" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26604 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26605 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26606 if (!SWIG_IsOK(ecode2
)) {
26607 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnablePageNumbers" "', expected argument " "2"" of type '" "bool""'");
26609 arg2
= static_cast< bool >(val2
);
26611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26612 (arg1
)->EnablePageNumbers(arg2
);
26613 wxPyEndAllowThreads(__tstate
);
26614 if (PyErr_Occurred()) SWIG_fail
;
26616 resultobj
= SWIG_Py_Void();
26623 SWIGINTERN PyObject
*_wrap_PrintDialogData_EnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26624 PyObject
*resultobj
= 0;
26625 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26631 PyObject
* obj0
= 0 ;
26632 PyObject
* obj1
= 0 ;
26633 char * kwnames
[] = {
26634 (char *) "self",(char *) "flag", NULL
26637 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26638 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26639 if (!SWIG_IsOK(res1
)) {
26640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_EnableHelp" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26642 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26643 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
26644 if (!SWIG_IsOK(ecode2
)) {
26645 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintDialogData_EnableHelp" "', expected argument " "2"" of type '" "bool""'");
26647 arg2
= static_cast< bool >(val2
);
26649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26650 (arg1
)->EnableHelp(arg2
);
26651 wxPyEndAllowThreads(__tstate
);
26652 if (PyErr_Occurred()) SWIG_fail
;
26654 resultobj
= SWIG_Py_Void();
26661 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnablePrintToFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26662 PyObject
*resultobj
= 0;
26663 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26667 PyObject
*swig_obj
[1] ;
26669 if (!args
) SWIG_fail
;
26670 swig_obj
[0] = args
;
26671 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26672 if (!SWIG_IsOK(res1
)) {
26673 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnablePrintToFile" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26675 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26678 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnablePrintToFile();
26679 wxPyEndAllowThreads(__tstate
);
26680 if (PyErr_Occurred()) SWIG_fail
;
26683 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26691 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnableSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26692 PyObject
*resultobj
= 0;
26693 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26697 PyObject
*swig_obj
[1] ;
26699 if (!args
) SWIG_fail
;
26700 swig_obj
[0] = args
;
26701 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26702 if (!SWIG_IsOK(res1
)) {
26703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnableSelection" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26705 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26708 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnableSelection();
26709 wxPyEndAllowThreads(__tstate
);
26710 if (PyErr_Occurred()) SWIG_fail
;
26713 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26721 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnablePageNumbers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26722 PyObject
*resultobj
= 0;
26723 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26727 PyObject
*swig_obj
[1] ;
26729 if (!args
) SWIG_fail
;
26730 swig_obj
[0] = args
;
26731 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26732 if (!SWIG_IsOK(res1
)) {
26733 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnablePageNumbers" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26735 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26738 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnablePageNumbers();
26739 wxPyEndAllowThreads(__tstate
);
26740 if (PyErr_Occurred()) SWIG_fail
;
26743 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26751 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetEnableHelp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26752 PyObject
*resultobj
= 0;
26753 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26757 PyObject
*swig_obj
[1] ;
26759 if (!args
) SWIG_fail
;
26760 swig_obj
[0] = args
;
26761 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26762 if (!SWIG_IsOK(res1
)) {
26763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetEnableHelp" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26765 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26767 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26768 result
= (bool)((wxPrintDialogData
const *)arg1
)->GetEnableHelp();
26769 wxPyEndAllowThreads(__tstate
);
26770 if (PyErr_Occurred()) SWIG_fail
;
26773 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26781 SWIGINTERN PyObject
*_wrap_PrintDialogData_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26782 PyObject
*resultobj
= 0;
26783 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26787 PyObject
*swig_obj
[1] ;
26789 if (!args
) SWIG_fail
;
26790 swig_obj
[0] = args
;
26791 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26792 if (!SWIG_IsOK(res1
)) {
26793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_Ok" "', expected argument " "1"" of type '" "wxPrintDialogData const *""'");
26795 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26798 result
= (bool)((wxPrintDialogData
const *)arg1
)->Ok();
26799 wxPyEndAllowThreads(__tstate
);
26800 if (PyErr_Occurred()) SWIG_fail
;
26803 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
26811 SWIGINTERN PyObject
*_wrap_PrintDialogData_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26812 PyObject
*resultobj
= 0;
26813 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26814 wxPrintData
*result
= 0 ;
26817 PyObject
*swig_obj
[1] ;
26819 if (!args
) SWIG_fail
;
26820 swig_obj
[0] = args
;
26821 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26822 if (!SWIG_IsOK(res1
)) {
26823 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_GetPrintData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26825 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26829 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
26830 result
= (wxPrintData
*) &_result_ref
;
26832 wxPyEndAllowThreads(__tstate
);
26833 if (PyErr_Occurred()) SWIG_fail
;
26835 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
26842 SWIGINTERN PyObject
*_wrap_PrintDialogData_SetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26843 PyObject
*resultobj
= 0;
26844 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) 0 ;
26845 wxPrintData
*arg2
= 0 ;
26850 PyObject
* obj0
= 0 ;
26851 PyObject
* obj1
= 0 ;
26852 char * kwnames
[] = {
26853 (char *) "self",(char *) "printData", NULL
26856 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26857 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26858 if (!SWIG_IsOK(res1
)) {
26859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialogData_SetPrintData" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
26861 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
26862 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPrintData
, 0 | 0);
26863 if (!SWIG_IsOK(res2
)) {
26864 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
26867 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintDialogData_SetPrintData" "', expected argument " "2"" of type '" "wxPrintData const &""'");
26869 arg2
= reinterpret_cast< wxPrintData
* >(argp2
);
26871 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26872 (arg1
)->SetPrintData((wxPrintData
const &)*arg2
);
26873 wxPyEndAllowThreads(__tstate
);
26874 if (PyErr_Occurred()) SWIG_fail
;
26876 resultobj
= SWIG_Py_Void();
26883 SWIGINTERN PyObject
*PrintDialogData_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26885 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
26886 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintDialogData
, SWIG_NewClientData(obj
));
26887 return SWIG_Py_Void();
26890 SWIGINTERN PyObject
*PrintDialogData_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26891 return SWIG_Python_InitShadowInstance(args
);
26894 SWIGINTERN PyObject
*_wrap_new_PrintDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
26895 PyObject
*resultobj
= 0;
26896 wxWindow
*arg1
= (wxWindow
*) 0 ;
26897 wxPrintDialogData
*arg2
= (wxPrintDialogData
*) NULL
;
26898 wxPrintDialog
*result
= 0 ;
26903 PyObject
* obj0
= 0 ;
26904 PyObject
* obj1
= 0 ;
26905 char * kwnames
[] = {
26906 (char *) "parent",(char *) "data", NULL
26909 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PrintDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
26910 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
26911 if (!SWIG_IsOK(res1
)) {
26912 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintDialog" "', expected argument " "1"" of type '" "wxWindow *""'");
26914 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
26916 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26917 if (!SWIG_IsOK(res2
)) {
26918 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintDialog" "', expected argument " "2"" of type '" "wxPrintDialogData *""'");
26920 arg2
= reinterpret_cast< wxPrintDialogData
* >(argp2
);
26923 if (!wxPyCheckForApp()) SWIG_fail
;
26924 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26925 result
= (wxPrintDialog
*)new wxPrintDialog(arg1
,arg2
);
26926 wxPyEndAllowThreads(__tstate
);
26927 if (PyErr_Occurred()) SWIG_fail
;
26929 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_NEW
| 0 );
26936 SWIGINTERN PyObject
*_wrap_PrintDialog_ShowModal(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26937 PyObject
*resultobj
= 0;
26938 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26942 PyObject
*swig_obj
[1] ;
26944 if (!args
) SWIG_fail
;
26945 swig_obj
[0] = args
;
26946 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26947 if (!SWIG_IsOK(res1
)) {
26948 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_ShowModal" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26950 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26952 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26953 result
= (int)(arg1
)->ShowModal();
26954 wxPyEndAllowThreads(__tstate
);
26955 if (PyErr_Occurred()) SWIG_fail
;
26957 resultobj
= SWIG_From_int(static_cast< int >(result
));
26964 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26965 PyObject
*resultobj
= 0;
26966 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26967 wxPrintDialogData
*result
= 0 ;
26970 PyObject
*swig_obj
[1] ;
26972 if (!args
) SWIG_fail
;
26973 swig_obj
[0] = args
;
26974 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
26975 if (!SWIG_IsOK(res1
)) {
26976 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
26978 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
26980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
26982 wxPrintDialogData
&_result_ref
= (arg1
)->GetPrintDialogData();
26983 result
= (wxPrintDialogData
*) &_result_ref
;
26985 wxPyEndAllowThreads(__tstate
);
26986 if (PyErr_Occurred()) SWIG_fail
;
26988 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
26995 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
26996 PyObject
*resultobj
= 0;
26997 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
26998 wxPrintData
*result
= 0 ;
27001 PyObject
*swig_obj
[1] ;
27003 if (!args
) SWIG_fail
;
27004 swig_obj
[0] = args
;
27005 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
27006 if (!SWIG_IsOK(res1
)) {
27007 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintData" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
27009 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
27011 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27013 wxPrintData
&_result_ref
= (arg1
)->GetPrintData();
27014 result
= (wxPrintData
*) &_result_ref
;
27016 wxPyEndAllowThreads(__tstate
);
27017 if (PyErr_Occurred()) SWIG_fail
;
27019 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintData
, 0 | 0 );
27026 SWIGINTERN PyObject
*_wrap_PrintDialog_GetPrintDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27027 PyObject
*resultobj
= 0;
27028 wxPrintDialog
*arg1
= (wxPrintDialog
*) 0 ;
27032 PyObject
*swig_obj
[1] ;
27034 if (!args
) SWIG_fail
;
27035 swig_obj
[0] = args
;
27036 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintDialog
, 0 | 0 );
27037 if (!SWIG_IsOK(res1
)) {
27038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintDialog_GetPrintDC" "', expected argument " "1"" of type '" "wxPrintDialog *""'");
27040 arg1
= reinterpret_cast< wxPrintDialog
* >(argp1
);
27042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27043 result
= (wxDC
*)(arg1
)->GetPrintDC();
27044 wxPyEndAllowThreads(__tstate
);
27045 if (PyErr_Occurred()) SWIG_fail
;
27048 resultobj
= wxPyMake_wxObject(result
, (bool)SWIG_POINTER_OWN
);
27056 SWIGINTERN PyObject
*PrintDialog_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27058 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27059 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintDialog
, SWIG_NewClientData(obj
));
27060 return SWIG_Py_Void();
27063 SWIGINTERN PyObject
*PrintDialog_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27064 return SWIG_Python_InitShadowInstance(args
);
27067 SWIGINTERN PyObject
*_wrap_new_Printer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27068 PyObject
*resultobj
= 0;
27069 wxPrintDialogData
*arg1
= (wxPrintDialogData
*) NULL
;
27070 wxPrinter
*result
= 0 ;
27073 PyObject
* obj0
= 0 ;
27074 char * kwnames
[] = {
27075 (char *) "data", NULL
27078 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printer",kwnames
,&obj0
)) SWIG_fail
;
27080 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
27081 if (!SWIG_IsOK(res1
)) {
27082 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_Printer" "', expected argument " "1"" of type '" "wxPrintDialogData *""'");
27084 arg1
= reinterpret_cast< wxPrintDialogData
* >(argp1
);
27087 if (!wxPyCheckForApp()) SWIG_fail
;
27088 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27089 result
= (wxPrinter
*)new wxPrinter(arg1
);
27090 wxPyEndAllowThreads(__tstate
);
27091 if (PyErr_Occurred()) SWIG_fail
;
27093 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrinter
, SWIG_POINTER_NEW
| 0 );
27100 SWIGINTERN PyObject
*_wrap_delete_Printer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27101 PyObject
*resultobj
= 0;
27102 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27105 PyObject
*swig_obj
[1] ;
27107 if (!args
) SWIG_fail
;
27108 swig_obj
[0] = args
;
27109 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, SWIG_POINTER_DISOWN
| 0 );
27110 if (!SWIG_IsOK(res1
)) {
27111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Printer" "', expected argument " "1"" of type '" "wxPrinter *""'");
27113 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27115 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27118 wxPyEndAllowThreads(__tstate
);
27119 if (PyErr_Occurred()) SWIG_fail
;
27121 resultobj
= SWIG_Py_Void();
27128 SWIGINTERN PyObject
*_wrap_Printer_CreateAbortWindow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27129 PyObject
*resultobj
= 0;
27130 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27131 wxWindow
*arg2
= (wxWindow
*) 0 ;
27132 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
27133 wxWindow
*result
= 0 ;
27140 PyObject
* obj0
= 0 ;
27141 PyObject
* obj1
= 0 ;
27142 PyObject
* obj2
= 0 ;
27143 char * kwnames
[] = {
27144 (char *) "self",(char *) "parent",(char *) "printout", NULL
27147 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printer_CreateAbortWindow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27148 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27149 if (!SWIG_IsOK(res1
)) {
27150 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "1"" of type '" "wxPrinter *""'");
27152 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27153 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27154 if (!SWIG_IsOK(res2
)) {
27155 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "2"" of type '" "wxWindow *""'");
27157 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27158 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27159 if (!SWIG_IsOK(res3
)) {
27160 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_CreateAbortWindow" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
27162 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
27164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27165 result
= (wxWindow
*)(arg1
)->CreateAbortWindow(arg2
,arg3
);
27166 wxPyEndAllowThreads(__tstate
);
27167 if (PyErr_Occurred()) SWIG_fail
;
27170 resultobj
= wxPyMake_wxObject(result
, 0);
27178 SWIGINTERN PyObject
*_wrap_Printer_ReportError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27179 PyObject
*resultobj
= 0;
27180 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27181 wxWindow
*arg2
= (wxWindow
*) 0 ;
27182 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
27183 wxString
*arg4
= 0 ;
27190 bool temp4
= false ;
27191 PyObject
* obj0
= 0 ;
27192 PyObject
* obj1
= 0 ;
27193 PyObject
* obj2
= 0 ;
27194 PyObject
* obj3
= 0 ;
27195 char * kwnames
[] = {
27196 (char *) "self",(char *) "parent",(char *) "printout",(char *) "message", NULL
27199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:Printer_ReportError",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
27200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27201 if (!SWIG_IsOK(res1
)) {
27202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_ReportError" "', expected argument " "1"" of type '" "wxPrinter *""'");
27204 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27205 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27206 if (!SWIG_IsOK(res2
)) {
27207 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_ReportError" "', expected argument " "2"" of type '" "wxWindow *""'");
27209 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27210 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27211 if (!SWIG_IsOK(res3
)) {
27212 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_ReportError" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
27214 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
27216 arg4
= wxString_in_helper(obj3
);
27217 if (arg4
== NULL
) SWIG_fail
;
27221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27222 (arg1
)->ReportError(arg2
,arg3
,(wxString
const &)*arg4
);
27223 wxPyEndAllowThreads(__tstate
);
27224 if (PyErr_Occurred()) SWIG_fail
;
27226 resultobj
= SWIG_Py_Void();
27241 SWIGINTERN PyObject
*_wrap_Printer_Setup(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27242 PyObject
*resultobj
= 0;
27243 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27244 wxWindow
*arg2
= (wxWindow
*) 0 ;
27250 PyObject
* obj0
= 0 ;
27251 PyObject
* obj1
= 0 ;
27252 char * kwnames
[] = {
27253 (char *) "self",(char *) "parent", NULL
27256 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_Setup",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27257 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27258 if (!SWIG_IsOK(res1
)) {
27259 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_Setup" "', expected argument " "1"" of type '" "wxPrinter *""'");
27261 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27262 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27263 if (!SWIG_IsOK(res2
)) {
27264 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_Setup" "', expected argument " "2"" of type '" "wxWindow *""'");
27266 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27269 result
= (bool)(arg1
)->Setup(arg2
);
27270 wxPyEndAllowThreads(__tstate
);
27271 if (PyErr_Occurred()) SWIG_fail
;
27274 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27282 SWIGINTERN PyObject
*_wrap_Printer_Print(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27283 PyObject
*resultobj
= 0;
27284 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27285 wxWindow
*arg2
= (wxWindow
*) 0 ;
27286 wxPyPrintout
*arg3
= (wxPyPrintout
*) 0 ;
27287 bool arg4
= (bool) true ;
27297 PyObject
* obj0
= 0 ;
27298 PyObject
* obj1
= 0 ;
27299 PyObject
* obj2
= 0 ;
27300 PyObject
* obj3
= 0 ;
27301 char * kwnames
[] = {
27302 (char *) "self",(char *) "parent",(char *) "printout",(char *) "prompt", NULL
27305 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Printer_Print",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
27306 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27307 if (!SWIG_IsOK(res1
)) {
27308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_Print" "', expected argument " "1"" of type '" "wxPrinter *""'");
27310 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27311 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27312 if (!SWIG_IsOK(res2
)) {
27313 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_Print" "', expected argument " "2"" of type '" "wxWindow *""'");
27315 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27316 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27317 if (!SWIG_IsOK(res3
)) {
27318 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "Printer_Print" "', expected argument " "3"" of type '" "wxPyPrintout *""'");
27320 arg3
= reinterpret_cast< wxPyPrintout
* >(argp3
);
27322 ecode4
= SWIG_AsVal_bool(obj3
, &val4
);
27323 if (!SWIG_IsOK(ecode4
)) {
27324 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "Printer_Print" "', expected argument " "4"" of type '" "bool""'");
27326 arg4
= static_cast< bool >(val4
);
27329 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27330 result
= (bool)(arg1
)->Print(arg2
,arg3
,arg4
);
27331 wxPyEndAllowThreads(__tstate
);
27332 if (PyErr_Occurred()) SWIG_fail
;
27335 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27343 SWIGINTERN PyObject
*_wrap_Printer_PrintDialog(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27344 PyObject
*resultobj
= 0;
27345 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27346 wxWindow
*arg2
= (wxWindow
*) 0 ;
27352 PyObject
* obj0
= 0 ;
27353 PyObject
* obj1
= 0 ;
27354 char * kwnames
[] = {
27355 (char *) "self",(char *) "parent", NULL
27358 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_PrintDialog",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27359 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27360 if (!SWIG_IsOK(res1
)) {
27361 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_PrintDialog" "', expected argument " "1"" of type '" "wxPrinter *""'");
27363 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27364 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
27365 if (!SWIG_IsOK(res2
)) {
27366 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printer_PrintDialog" "', expected argument " "2"" of type '" "wxWindow *""'");
27368 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
27370 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27371 result
= (wxDC
*)(arg1
)->PrintDialog(arg2
);
27372 wxPyEndAllowThreads(__tstate
);
27373 if (PyErr_Occurred()) SWIG_fail
;
27376 resultobj
= wxPyMake_wxObject(result
, (bool)0);
27384 SWIGINTERN PyObject
*_wrap_Printer_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27385 PyObject
*resultobj
= 0;
27386 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27387 wxPrintDialogData
*result
= 0 ;
27390 PyObject
*swig_obj
[1] ;
27392 if (!args
) SWIG_fail
;
27393 swig_obj
[0] = args
;
27394 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27395 if (!SWIG_IsOK(res1
)) {
27396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrinter const *""'");
27398 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27402 wxPrintDialogData
&_result_ref
= ((wxPrinter
const *)arg1
)->GetPrintDialogData();
27403 result
= (wxPrintDialogData
*) &_result_ref
;
27405 wxPyEndAllowThreads(__tstate
);
27406 if (PyErr_Occurred()) SWIG_fail
;
27408 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
27415 SWIGINTERN PyObject
*_wrap_Printer_GetAbort(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27416 PyObject
*resultobj
= 0;
27417 wxPrinter
*arg1
= (wxPrinter
*) 0 ;
27421 PyObject
*swig_obj
[1] ;
27423 if (!args
) SWIG_fail
;
27424 swig_obj
[0] = args
;
27425 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrinter
, 0 | 0 );
27426 if (!SWIG_IsOK(res1
)) {
27427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printer_GetAbort" "', expected argument " "1"" of type '" "wxPrinter *""'");
27429 arg1
= reinterpret_cast< wxPrinter
* >(argp1
);
27431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27432 result
= (bool)(arg1
)->GetAbort();
27433 wxPyEndAllowThreads(__tstate
);
27434 if (PyErr_Occurred()) SWIG_fail
;
27437 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
27445 SWIGINTERN PyObject
*_wrap_Printer_GetLastError(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27446 PyObject
*resultobj
= 0;
27447 wxPrinterError result
;
27449 if (!SWIG_Python_UnpackTuple(args
,"Printer_GetLastError",0,0,0)) SWIG_fail
;
27451 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27452 result
= (wxPrinterError
)wxPrinter::GetLastError();
27453 wxPyEndAllowThreads(__tstate
);
27454 if (PyErr_Occurred()) SWIG_fail
;
27456 resultobj
= SWIG_From_int(static_cast< int >(result
));
27463 SWIGINTERN PyObject
*Printer_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27465 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
27466 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrinter
, SWIG_NewClientData(obj
));
27467 return SWIG_Py_Void();
27470 SWIGINTERN PyObject
*Printer_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27471 return SWIG_Python_InitShadowInstance(args
);
27474 SWIGINTERN PyObject
*_wrap_new_Printout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27475 PyObject
*resultobj
= 0;
27476 wxString
const &arg1_defvalue
= wxPyPrintoutTitleStr
;
27477 wxString
*arg1
= (wxString
*) &arg1_defvalue
;
27478 wxPyPrintout
*result
= 0 ;
27479 bool temp1
= false ;
27480 PyObject
* obj0
= 0 ;
27481 char * kwnames
[] = {
27482 (char *) "title", NULL
27485 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printout",kwnames
,&obj0
)) SWIG_fail
;
27488 arg1
= wxString_in_helper(obj0
);
27489 if (arg1
== NULL
) SWIG_fail
;
27494 if (!wxPyCheckForApp()) SWIG_fail
;
27495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27496 result
= (wxPyPrintout
*)new wxPyPrintout((wxString
const &)*arg1
);
27497 wxPyEndAllowThreads(__tstate
);
27498 if (PyErr_Occurred()) SWIG_fail
;
27500 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_NEW
| 0 );
27515 SWIGINTERN PyObject
*_wrap_delete_Printout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27516 PyObject
*resultobj
= 0;
27517 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27520 PyObject
*swig_obj
[1] ;
27522 if (!args
) SWIG_fail
;
27523 swig_obj
[0] = args
;
27524 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
27525 if (!SWIG_IsOK(res1
)) {
27526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_Printout" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27528 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27533 wxPyEndAllowThreads(__tstate
);
27534 if (PyErr_Occurred()) SWIG_fail
;
27536 resultobj
= SWIG_Py_Void();
27543 SWIGINTERN PyObject
*_wrap_Printout__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27544 PyObject
*resultobj
= 0;
27545 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27546 PyObject
*arg2
= (PyObject
*) 0 ;
27547 PyObject
*arg3
= (PyObject
*) 0 ;
27550 PyObject
* obj0
= 0 ;
27551 PyObject
* obj1
= 0 ;
27552 PyObject
* obj2
= 0 ;
27553 char * kwnames
[] = {
27554 (char *) "self",(char *) "self",(char *) "_class", NULL
27557 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27558 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27559 if (!SWIG_IsOK(res1
)) {
27560 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27562 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27567 (arg1
)->_setCallbackInfo(arg2
,arg3
);
27568 wxPyEndAllowThreads(__tstate
);
27569 if (PyErr_Occurred()) SWIG_fail
;
27571 resultobj
= SWIG_Py_Void();
27578 SWIGINTERN PyObject
*_wrap_Printout_GetTitle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27579 PyObject
*resultobj
= 0;
27580 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27584 PyObject
*swig_obj
[1] ;
27586 if (!args
) SWIG_fail
;
27587 swig_obj
[0] = args
;
27588 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27589 if (!SWIG_IsOK(res1
)) {
27590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetTitle" "', expected argument " "1"" of type '" "wxPyPrintout const *""'");
27592 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27595 result
= ((wxPyPrintout
const *)arg1
)->GetTitle();
27596 wxPyEndAllowThreads(__tstate
);
27597 if (PyErr_Occurred()) SWIG_fail
;
27601 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
27603 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
27612 SWIGINTERN PyObject
*_wrap_Printout_GetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27613 PyObject
*resultobj
= 0;
27614 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27618 PyObject
*swig_obj
[1] ;
27620 if (!args
) SWIG_fail
;
27621 swig_obj
[0] = args
;
27622 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27623 if (!SWIG_IsOK(res1
)) {
27624 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetDC" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27626 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27629 result
= (wxDC
*)(arg1
)->GetDC();
27630 wxPyEndAllowThreads(__tstate
);
27631 if (PyErr_Occurred()) SWIG_fail
;
27634 resultobj
= wxPyMake_wxObject(result
, (bool)0);
27642 SWIGINTERN PyObject
*_wrap_Printout_SetDC(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27643 PyObject
*resultobj
= 0;
27644 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27645 wxDC
*arg2
= (wxDC
*) 0 ;
27650 PyObject
* obj0
= 0 ;
27651 PyObject
* obj1
= 0 ;
27652 char * kwnames
[] = {
27653 (char *) "self",(char *) "dc", NULL
27656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetDC",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
27657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27658 if (!SWIG_IsOK(res1
)) {
27659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetDC" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27661 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27662 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxDC
, 0 | 0 );
27663 if (!SWIG_IsOK(res2
)) {
27664 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "Printout_SetDC" "', expected argument " "2"" of type '" "wxDC *""'");
27666 arg2
= reinterpret_cast< wxDC
* >(argp2
);
27668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27669 (arg1
)->SetDC(arg2
);
27670 wxPyEndAllowThreads(__tstate
);
27671 if (PyErr_Occurred()) SWIG_fail
;
27673 resultobj
= SWIG_Py_Void();
27680 SWIGINTERN PyObject
*_wrap_Printout_SetPageSizePixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27681 PyObject
*resultobj
= 0;
27682 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27691 PyObject
* obj0
= 0 ;
27692 PyObject
* obj1
= 0 ;
27693 PyObject
* obj2
= 0 ;
27694 char * kwnames
[] = {
27695 (char *) "self",(char *) "w",(char *) "h", NULL
27698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizePixels",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27700 if (!SWIG_IsOK(res1
)) {
27701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27703 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27704 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27705 if (!SWIG_IsOK(ecode2
)) {
27706 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "2"" of type '" "int""'");
27708 arg2
= static_cast< int >(val2
);
27709 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27710 if (!SWIG_IsOK(ecode3
)) {
27711 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPageSizePixels" "', expected argument " "3"" of type '" "int""'");
27713 arg3
= static_cast< int >(val3
);
27715 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27716 (arg1
)->SetPageSizePixels(arg2
,arg3
);
27717 wxPyEndAllowThreads(__tstate
);
27718 if (PyErr_Occurred()) SWIG_fail
;
27720 resultobj
= SWIG_Py_Void();
27727 SWIGINTERN PyObject
*_wrap_Printout_GetPageSizePixels(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27728 PyObject
*resultobj
= 0;
27729 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27730 int *arg2
= (int *) 0 ;
27731 int *arg3
= (int *) 0 ;
27735 int res2
= SWIG_TMPOBJ
;
27737 int res3
= SWIG_TMPOBJ
;
27738 PyObject
*swig_obj
[1] ;
27742 if (!args
) SWIG_fail
;
27743 swig_obj
[0] = args
;
27744 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27745 if (!SWIG_IsOK(res1
)) {
27746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageSizePixels" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27748 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27750 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27751 (arg1
)->GetPageSizePixels(arg2
,arg3
);
27752 wxPyEndAllowThreads(__tstate
);
27753 if (PyErr_Occurred()) SWIG_fail
;
27755 resultobj
= SWIG_Py_Void();
27756 if (SWIG_IsTmpObj(res2
)) {
27757 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27759 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27760 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27762 if (SWIG_IsTmpObj(res3
)) {
27763 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27765 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27766 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27774 SWIGINTERN PyObject
*_wrap_Printout_SetPageSizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27775 PyObject
*resultobj
= 0;
27776 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27785 PyObject
* obj0
= 0 ;
27786 PyObject
* obj1
= 0 ;
27787 PyObject
* obj2
= 0 ;
27788 char * kwnames
[] = {
27789 (char *) "self",(char *) "w",(char *) "h", NULL
27792 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizeMM",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27793 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27794 if (!SWIG_IsOK(res1
)) {
27795 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27797 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27798 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27799 if (!SWIG_IsOK(ecode2
)) {
27800 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "2"" of type '" "int""'");
27802 arg2
= static_cast< int >(val2
);
27803 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27804 if (!SWIG_IsOK(ecode3
)) {
27805 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPageSizeMM" "', expected argument " "3"" of type '" "int""'");
27807 arg3
= static_cast< int >(val3
);
27809 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27810 (arg1
)->SetPageSizeMM(arg2
,arg3
);
27811 wxPyEndAllowThreads(__tstate
);
27812 if (PyErr_Occurred()) SWIG_fail
;
27814 resultobj
= SWIG_Py_Void();
27821 SWIGINTERN PyObject
*_wrap_Printout_GetPageSizeMM(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27822 PyObject
*resultobj
= 0;
27823 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27824 int *arg2
= (int *) 0 ;
27825 int *arg3
= (int *) 0 ;
27829 int res2
= SWIG_TMPOBJ
;
27831 int res3
= SWIG_TMPOBJ
;
27832 PyObject
*swig_obj
[1] ;
27836 if (!args
) SWIG_fail
;
27837 swig_obj
[0] = args
;
27838 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27839 if (!SWIG_IsOK(res1
)) {
27840 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageSizeMM" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27842 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27844 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27845 (arg1
)->GetPageSizeMM(arg2
,arg3
);
27846 wxPyEndAllowThreads(__tstate
);
27847 if (PyErr_Occurred()) SWIG_fail
;
27849 resultobj
= SWIG_Py_Void();
27850 if (SWIG_IsTmpObj(res2
)) {
27851 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27853 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27854 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27856 if (SWIG_IsTmpObj(res3
)) {
27857 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27859 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27860 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27868 SWIGINTERN PyObject
*_wrap_Printout_SetPPIScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27869 PyObject
*resultobj
= 0;
27870 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27879 PyObject
* obj0
= 0 ;
27880 PyObject
* obj1
= 0 ;
27881 PyObject
* obj2
= 0 ;
27882 char * kwnames
[] = {
27883 (char *) "self",(char *) "x",(char *) "y", NULL
27886 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIScreen",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27887 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27888 if (!SWIG_IsOK(res1
)) {
27889 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPPIScreen" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27891 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27892 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27893 if (!SWIG_IsOK(ecode2
)) {
27894 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPPIScreen" "', expected argument " "2"" of type '" "int""'");
27896 arg2
= static_cast< int >(val2
);
27897 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27898 if (!SWIG_IsOK(ecode3
)) {
27899 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPPIScreen" "', expected argument " "3"" of type '" "int""'");
27901 arg3
= static_cast< int >(val3
);
27903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27904 (arg1
)->SetPPIScreen(arg2
,arg3
);
27905 wxPyEndAllowThreads(__tstate
);
27906 if (PyErr_Occurred()) SWIG_fail
;
27908 resultobj
= SWIG_Py_Void();
27915 SWIGINTERN PyObject
*_wrap_Printout_GetPPIScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
27916 PyObject
*resultobj
= 0;
27917 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27918 int *arg2
= (int *) 0 ;
27919 int *arg3
= (int *) 0 ;
27923 int res2
= SWIG_TMPOBJ
;
27925 int res3
= SWIG_TMPOBJ
;
27926 PyObject
*swig_obj
[1] ;
27930 if (!args
) SWIG_fail
;
27931 swig_obj
[0] = args
;
27932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27933 if (!SWIG_IsOK(res1
)) {
27934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPPIScreen" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27936 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27938 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27939 (arg1
)->GetPPIScreen(arg2
,arg3
);
27940 wxPyEndAllowThreads(__tstate
);
27941 if (PyErr_Occurred()) SWIG_fail
;
27943 resultobj
= SWIG_Py_Void();
27944 if (SWIG_IsTmpObj(res2
)) {
27945 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
27947 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27948 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
27950 if (SWIG_IsTmpObj(res3
)) {
27951 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
27953 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
27954 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
27962 SWIGINTERN PyObject
*_wrap_Printout_SetPPIPrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
27963 PyObject
*resultobj
= 0;
27964 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
27973 PyObject
* obj0
= 0 ;
27974 PyObject
* obj1
= 0 ;
27975 PyObject
* obj2
= 0 ;
27976 char * kwnames
[] = {
27977 (char *) "self",(char *) "x",(char *) "y", NULL
27980 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIPrinter",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
27981 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
27982 if (!SWIG_IsOK(res1
)) {
27983 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
27985 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
27986 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
27987 if (!SWIG_IsOK(ecode2
)) {
27988 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "2"" of type '" "int""'");
27990 arg2
= static_cast< int >(val2
);
27991 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
27992 if (!SWIG_IsOK(ecode3
)) {
27993 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_SetPPIPrinter" "', expected argument " "3"" of type '" "int""'");
27995 arg3
= static_cast< int >(val3
);
27997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
27998 (arg1
)->SetPPIPrinter(arg2
,arg3
);
27999 wxPyEndAllowThreads(__tstate
);
28000 if (PyErr_Occurred()) SWIG_fail
;
28002 resultobj
= SWIG_Py_Void();
28009 SWIGINTERN PyObject
*_wrap_Printout_GetPPIPrinter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28010 PyObject
*resultobj
= 0;
28011 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28012 int *arg2
= (int *) 0 ;
28013 int *arg3
= (int *) 0 ;
28017 int res2
= SWIG_TMPOBJ
;
28019 int res3
= SWIG_TMPOBJ
;
28020 PyObject
*swig_obj
[1] ;
28024 if (!args
) SWIG_fail
;
28025 swig_obj
[0] = args
;
28026 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28027 if (!SWIG_IsOK(res1
)) {
28028 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPPIPrinter" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28030 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28033 (arg1
)->GetPPIPrinter(arg2
,arg3
);
28034 wxPyEndAllowThreads(__tstate
);
28035 if (PyErr_Occurred()) SWIG_fail
;
28037 resultobj
= SWIG_Py_Void();
28038 if (SWIG_IsTmpObj(res2
)) {
28039 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
28041 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28042 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
28044 if (SWIG_IsTmpObj(res3
)) {
28045 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
28047 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28048 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
28056 SWIGINTERN PyObject
*_wrap_Printout_IsPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28057 PyObject
*resultobj
= 0;
28058 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28062 PyObject
*swig_obj
[1] ;
28064 if (!args
) SWIG_fail
;
28065 swig_obj
[0] = args
;
28066 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28067 if (!SWIG_IsOK(res1
)) {
28068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_IsPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28070 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28073 result
= (bool)(arg1
)->IsPreview();
28074 wxPyEndAllowThreads(__tstate
);
28075 if (PyErr_Occurred()) SWIG_fail
;
28078 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28086 SWIGINTERN PyObject
*_wrap_Printout_SetIsPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28087 PyObject
*resultobj
= 0;
28088 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28094 PyObject
* obj0
= 0 ;
28095 PyObject
* obj1
= 0 ;
28096 char * kwnames
[] = {
28097 (char *) "self",(char *) "p", NULL
28100 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetIsPreview",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28101 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28102 if (!SWIG_IsOK(res1
)) {
28103 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_SetIsPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28105 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28106 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
28107 if (!SWIG_IsOK(ecode2
)) {
28108 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_SetIsPreview" "', expected argument " "2"" of type '" "bool""'");
28110 arg2
= static_cast< bool >(val2
);
28112 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28113 (arg1
)->SetIsPreview(arg2
);
28114 wxPyEndAllowThreads(__tstate
);
28115 if (PyErr_Occurred()) SWIG_fail
;
28117 resultobj
= SWIG_Py_Void();
28124 SWIGINTERN PyObject
*_wrap_Printout_OnBeginDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28125 PyObject
*resultobj
= 0;
28126 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28136 PyObject
* obj0
= 0 ;
28137 PyObject
* obj1
= 0 ;
28138 PyObject
* obj2
= 0 ;
28139 char * kwnames
[] = {
28140 (char *) "self",(char *) "startPage",(char *) "endPage", NULL
28143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_OnBeginDocument",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
28144 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28145 if (!SWIG_IsOK(res1
)) {
28146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnBeginDocument" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28148 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28149 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28150 if (!SWIG_IsOK(ecode2
)) {
28151 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_OnBeginDocument" "', expected argument " "2"" of type '" "int""'");
28153 arg2
= static_cast< int >(val2
);
28154 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
28155 if (!SWIG_IsOK(ecode3
)) {
28156 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "Printout_OnBeginDocument" "', expected argument " "3"" of type '" "int""'");
28158 arg3
= static_cast< int >(val3
);
28160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28161 result
= (bool)(arg1
)->OnBeginDocument(arg2
,arg3
);
28162 wxPyEndAllowThreads(__tstate
);
28163 if (PyErr_Occurred()) SWIG_fail
;
28166 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28174 SWIGINTERN PyObject
*_wrap_Printout_OnEndDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28175 PyObject
*resultobj
= 0;
28176 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28179 PyObject
*swig_obj
[1] ;
28181 if (!args
) SWIG_fail
;
28182 swig_obj
[0] = args
;
28183 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28184 if (!SWIG_IsOK(res1
)) {
28185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnEndDocument" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28187 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28189 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28190 (arg1
)->OnEndDocument();
28191 wxPyEndAllowThreads(__tstate
);
28192 if (PyErr_Occurred()) SWIG_fail
;
28194 resultobj
= SWIG_Py_Void();
28201 SWIGINTERN PyObject
*_wrap_Printout_OnBeginPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28202 PyObject
*resultobj
= 0;
28203 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28206 PyObject
*swig_obj
[1] ;
28208 if (!args
) SWIG_fail
;
28209 swig_obj
[0] = args
;
28210 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28211 if (!SWIG_IsOK(res1
)) {
28212 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnBeginPrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28214 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28216 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28217 (arg1
)->OnBeginPrinting();
28218 wxPyEndAllowThreads(__tstate
);
28219 if (PyErr_Occurred()) SWIG_fail
;
28221 resultobj
= SWIG_Py_Void();
28228 SWIGINTERN PyObject
*_wrap_Printout_OnEndPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28229 PyObject
*resultobj
= 0;
28230 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28233 PyObject
*swig_obj
[1] ;
28235 if (!args
) SWIG_fail
;
28236 swig_obj
[0] = args
;
28237 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28238 if (!SWIG_IsOK(res1
)) {
28239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnEndPrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28241 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28243 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28244 (arg1
)->OnEndPrinting();
28245 wxPyEndAllowThreads(__tstate
);
28246 if (PyErr_Occurred()) SWIG_fail
;
28248 resultobj
= SWIG_Py_Void();
28255 SWIGINTERN PyObject
*_wrap_Printout_OnPreparePrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28256 PyObject
*resultobj
= 0;
28257 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28260 PyObject
*swig_obj
[1] ;
28262 if (!args
) SWIG_fail
;
28263 swig_obj
[0] = args
;
28264 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28265 if (!SWIG_IsOK(res1
)) {
28266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_OnPreparePrinting" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28268 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28270 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28271 (arg1
)->OnPreparePrinting();
28272 wxPyEndAllowThreads(__tstate
);
28273 if (PyErr_Occurred()) SWIG_fail
;
28275 resultobj
= SWIG_Py_Void();
28282 SWIGINTERN PyObject
*_wrap_Printout_HasPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28283 PyObject
*resultobj
= 0;
28284 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28291 PyObject
* obj0
= 0 ;
28292 PyObject
* obj1
= 0 ;
28293 char * kwnames
[] = {
28294 (char *) "self",(char *) "page", NULL
28297 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_HasPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28298 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28299 if (!SWIG_IsOK(res1
)) {
28300 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_HasPage" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28302 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28303 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28304 if (!SWIG_IsOK(ecode2
)) {
28305 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "Printout_HasPage" "', expected argument " "2"" of type '" "int""'");
28307 arg2
= static_cast< int >(val2
);
28309 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28310 result
= (bool)(arg1
)->HasPage(arg2
);
28311 wxPyEndAllowThreads(__tstate
);
28312 if (PyErr_Occurred()) SWIG_fail
;
28315 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
28323 SWIGINTERN PyObject
*_wrap_Printout_GetPageInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28324 PyObject
*resultobj
= 0;
28325 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
28326 int *arg2
= (int *) 0 ;
28327 int *arg3
= (int *) 0 ;
28328 int *arg4
= (int *) 0 ;
28329 int *arg5
= (int *) 0 ;
28333 int res2
= SWIG_TMPOBJ
;
28335 int res3
= SWIG_TMPOBJ
;
28337 int res4
= SWIG_TMPOBJ
;
28339 int res5
= SWIG_TMPOBJ
;
28340 PyObject
*swig_obj
[1] ;
28346 if (!args
) SWIG_fail
;
28347 swig_obj
[0] = args
;
28348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPrintout
, 0 | 0 );
28349 if (!SWIG_IsOK(res1
)) {
28350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "Printout_GetPageInfo" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
28352 arg1
= reinterpret_cast< wxPyPrintout
* >(argp1
);
28354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28355 (arg1
)->GetPageInfo(arg2
,arg3
,arg4
,arg5
);
28356 wxPyEndAllowThreads(__tstate
);
28357 if (PyErr_Occurred()) SWIG_fail
;
28359 resultobj
= SWIG_Py_Void();
28360 if (SWIG_IsTmpObj(res2
)) {
28361 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
28363 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28364 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
28366 if (SWIG_IsTmpObj(res3
)) {
28367 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
28369 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28370 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
28372 if (SWIG_IsTmpObj(res4
)) {
28373 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg4
)));
28375 int new_flags
= SWIG_IsNewObj(res4
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28376 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, new_flags
));
28378 if (SWIG_IsTmpObj(res5
)) {
28379 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg5
)));
28381 int new_flags
= SWIG_IsNewObj(res5
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
28382 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, new_flags
));
28390 SWIGINTERN PyObject
*Printout_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28392 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28393 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPrintout
, SWIG_NewClientData(obj
));
28394 return SWIG_Py_Void();
28397 SWIGINTERN PyObject
*Printout_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28398 return SWIG_Python_InitShadowInstance(args
);
28401 SWIGINTERN PyObject
*_wrap_new_PreviewCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28402 PyObject
*resultobj
= 0;
28403 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28404 wxWindow
*arg2
= (wxWindow
*) 0 ;
28405 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
28406 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
28407 wxSize
const &arg4_defvalue
= wxDefaultSize
;
28408 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
28409 long arg5
= (long) 0 ;
28410 wxString
const &arg6_defvalue
= wxPyPreviewCanvasNameStr
;
28411 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
28412 wxPreviewCanvas
*result
= 0 ;
28421 bool temp6
= false ;
28422 PyObject
* obj0
= 0 ;
28423 PyObject
* obj1
= 0 ;
28424 PyObject
* obj2
= 0 ;
28425 PyObject
* obj3
= 0 ;
28426 PyObject
* obj4
= 0 ;
28427 PyObject
* obj5
= 0 ;
28428 char * kwnames
[] = {
28429 (char *) "preview",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28432 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PreviewCanvas",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
28433 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28434 if (!SWIG_IsOK(res1
)) {
28435 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28437 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28438 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
28439 if (!SWIG_IsOK(res2
)) {
28440 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PreviewCanvas" "', expected argument " "2"" of type '" "wxWindow *""'");
28442 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
28446 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
28452 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
28456 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
28457 if (!SWIG_IsOK(ecode5
)) {
28458 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_PreviewCanvas" "', expected argument " "5"" of type '" "long""'");
28460 arg5
= static_cast< long >(val5
);
28464 arg6
= wxString_in_helper(obj5
);
28465 if (arg6
== NULL
) SWIG_fail
;
28470 if (!wxPyCheckForApp()) SWIG_fail
;
28471 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28472 result
= (wxPreviewCanvas
*)new wxPreviewCanvas(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
28473 wxPyEndAllowThreads(__tstate
);
28474 if (PyErr_Occurred()) SWIG_fail
;
28476 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_NEW
| 0 );
28491 SWIGINTERN PyObject
*PreviewCanvas_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28493 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28494 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewCanvas
, SWIG_NewClientData(obj
));
28495 return SWIG_Py_Void();
28498 SWIGINTERN PyObject
*PreviewCanvas_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28499 return SWIG_Python_InitShadowInstance(args
);
28502 SWIGINTERN PyObject
*_wrap_new_PreviewFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28503 PyObject
*resultobj
= 0;
28504 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28505 wxFrame
*arg2
= (wxFrame
*) 0 ;
28506 wxString
*arg3
= 0 ;
28507 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
28508 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
28509 wxSize
const &arg5_defvalue
= wxDefaultSize
;
28510 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
28511 long arg6
= (long) wxDEFAULT_FRAME_STYLE
;
28512 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
28513 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28514 wxPreviewFrame
*result
= 0 ;
28518 bool temp3
= false ;
28523 bool temp7
= false ;
28524 PyObject
* obj0
= 0 ;
28525 PyObject
* obj1
= 0 ;
28526 PyObject
* obj2
= 0 ;
28527 PyObject
* obj3
= 0 ;
28528 PyObject
* obj4
= 0 ;
28529 PyObject
* obj5
= 0 ;
28530 PyObject
* obj6
= 0 ;
28531 char * kwnames
[] = {
28532 (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
28536 res1
= SWIG_ConvertPtr(obj0
, SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_DISOWN
| 0 );
28537 if (!SWIG_IsOK(res1
)) {
28538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28540 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
28541 if (!SWIG_IsOK(res2
)) {
28542 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PreviewFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
28544 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
28546 arg3
= wxString_in_helper(obj2
);
28547 if (arg3
== NULL
) SWIG_fail
;
28553 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
28559 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
28563 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
28564 if (!SWIG_IsOK(ecode6
)) {
28565 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PreviewFrame" "', expected argument " "6"" of type '" "long""'");
28567 arg6
= static_cast< long >(val6
);
28571 arg7
= wxString_in_helper(obj6
);
28572 if (arg7
== NULL
) SWIG_fail
;
28577 if (!wxPyCheckForApp()) SWIG_fail
;
28578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28579 result
= (wxPreviewFrame
*)new wxPreviewFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
28580 wxPyEndAllowThreads(__tstate
);
28581 if (PyErr_Occurred()) SWIG_fail
;
28583 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_NEW
| 0 );
28606 SWIGINTERN PyObject
*_wrap_PreviewFrame_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28607 PyObject
*resultobj
= 0;
28608 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28611 PyObject
*swig_obj
[1] ;
28613 if (!args
) SWIG_fail
;
28614 swig_obj
[0] = args
;
28615 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28616 if (!SWIG_IsOK(res1
)) {
28617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_Initialize" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28619 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28622 (arg1
)->Initialize();
28623 wxPyEndAllowThreads(__tstate
);
28624 if (PyErr_Occurred()) SWIG_fail
;
28626 resultobj
= SWIG_Py_Void();
28633 SWIGINTERN PyObject
*_wrap_PreviewFrame_CreateControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28634 PyObject
*resultobj
= 0;
28635 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28638 PyObject
*swig_obj
[1] ;
28640 if (!args
) SWIG_fail
;
28641 swig_obj
[0] = args
;
28642 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28643 if (!SWIG_IsOK(res1
)) {
28644 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_CreateControlBar" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28646 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28648 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28649 (arg1
)->CreateControlBar();
28650 wxPyEndAllowThreads(__tstate
);
28651 if (PyErr_Occurred()) SWIG_fail
;
28653 resultobj
= SWIG_Py_Void();
28660 SWIGINTERN PyObject
*_wrap_PreviewFrame_CreateCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28661 PyObject
*resultobj
= 0;
28662 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28665 PyObject
*swig_obj
[1] ;
28667 if (!args
) SWIG_fail
;
28668 swig_obj
[0] = args
;
28669 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28670 if (!SWIG_IsOK(res1
)) {
28671 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_CreateCanvas" "', expected argument " "1"" of type '" "wxPreviewFrame *""'");
28673 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28676 (arg1
)->CreateCanvas();
28677 wxPyEndAllowThreads(__tstate
);
28678 if (PyErr_Occurred()) SWIG_fail
;
28680 resultobj
= SWIG_Py_Void();
28687 SWIGINTERN PyObject
*_wrap_PreviewFrame_GetControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28688 PyObject
*resultobj
= 0;
28689 wxPreviewFrame
*arg1
= (wxPreviewFrame
*) 0 ;
28690 wxPreviewControlBar
*result
= 0 ;
28693 PyObject
*swig_obj
[1] ;
28695 if (!args
) SWIG_fail
;
28696 swig_obj
[0] = args
;
28697 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewFrame
, 0 | 0 );
28698 if (!SWIG_IsOK(res1
)) {
28699 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewFrame_GetControlBar" "', expected argument " "1"" of type '" "wxPreviewFrame const *""'");
28701 arg1
= reinterpret_cast< wxPreviewFrame
* >(argp1
);
28703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28704 result
= (wxPreviewControlBar
*)((wxPreviewFrame
const *)arg1
)->GetControlBar();
28705 wxPyEndAllowThreads(__tstate
);
28706 if (PyErr_Occurred()) SWIG_fail
;
28708 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28715 SWIGINTERN PyObject
*PreviewFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28717 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
28718 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewFrame
, SWIG_NewClientData(obj
));
28719 return SWIG_Py_Void();
28722 SWIGINTERN PyObject
*PreviewFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28723 return SWIG_Python_InitShadowInstance(args
);
28726 SWIGINTERN PyObject
*_wrap_new_PreviewControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28727 PyObject
*resultobj
= 0;
28728 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
28730 wxWindow
*arg3
= (wxWindow
*) 0 ;
28731 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
28732 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
28733 wxSize
const &arg5_defvalue
= wxDefaultSize
;
28734 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
28735 long arg6
= (long) wxTAB_TRAVERSAL
;
28736 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
28737 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
28738 wxPreviewControlBar
*result
= 0 ;
28749 bool temp7
= false ;
28750 PyObject
* obj0
= 0 ;
28751 PyObject
* obj1
= 0 ;
28752 PyObject
* obj2
= 0 ;
28753 PyObject
* obj3
= 0 ;
28754 PyObject
* obj4
= 0 ;
28755 PyObject
* obj5
= 0 ;
28756 PyObject
* obj6
= 0 ;
28757 char * kwnames
[] = {
28758 (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
28761 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
28762 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28763 if (!SWIG_IsOK(res1
)) {
28764 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PreviewControlBar" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
28766 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
28767 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
28768 if (!SWIG_IsOK(ecode2
)) {
28769 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PreviewControlBar" "', expected argument " "2"" of type '" "long""'");
28771 arg2
= static_cast< long >(val2
);
28772 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
28773 if (!SWIG_IsOK(res3
)) {
28774 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PreviewControlBar" "', expected argument " "3"" of type '" "wxWindow *""'");
28776 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
28780 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
28786 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
28790 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
28791 if (!SWIG_IsOK(ecode6
)) {
28792 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PreviewControlBar" "', expected argument " "6"" of type '" "long""'");
28794 arg6
= static_cast< long >(val6
);
28798 arg7
= wxString_in_helper(obj6
);
28799 if (arg7
== NULL
) SWIG_fail
;
28804 if (!wxPyCheckForApp()) SWIG_fail
;
28805 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28806 result
= (wxPreviewControlBar
*)new wxPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
28807 wxPyEndAllowThreads(__tstate
);
28808 if (PyErr_Occurred()) SWIG_fail
;
28810 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_NEW
| 0 );
28825 SWIGINTERN PyObject
*_wrap_PreviewControlBar_GetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28826 PyObject
*resultobj
= 0;
28827 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28831 PyObject
*swig_obj
[1] ;
28833 if (!args
) SWIG_fail
;
28834 swig_obj
[0] = args
;
28835 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28836 if (!SWIG_IsOK(res1
)) {
28837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_GetZoomControl" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28839 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28842 result
= (int)(arg1
)->GetZoomControl();
28843 wxPyEndAllowThreads(__tstate
);
28844 if (PyErr_Occurred()) SWIG_fail
;
28846 resultobj
= SWIG_From_int(static_cast< int >(result
));
28853 SWIGINTERN PyObject
*_wrap_PreviewControlBar_SetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
28854 PyObject
*resultobj
= 0;
28855 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28861 PyObject
* obj0
= 0 ;
28862 PyObject
* obj1
= 0 ;
28863 char * kwnames
[] = {
28864 (char *) "self",(char *) "zoom", NULL
28867 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PreviewControlBar_SetZoomControl",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
28868 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28869 if (!SWIG_IsOK(res1
)) {
28870 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_SetZoomControl" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28872 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28873 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
28874 if (!SWIG_IsOK(ecode2
)) {
28875 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PreviewControlBar_SetZoomControl" "', expected argument " "2"" of type '" "int""'");
28877 arg2
= static_cast< int >(val2
);
28879 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28880 (arg1
)->SetZoomControl(arg2
);
28881 wxPyEndAllowThreads(__tstate
);
28882 if (PyErr_Occurred()) SWIG_fail
;
28884 resultobj
= SWIG_Py_Void();
28891 SWIGINTERN PyObject
*_wrap_PreviewControlBar_GetPrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28892 PyObject
*resultobj
= 0;
28893 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28894 wxPrintPreview
*result
= 0 ;
28897 PyObject
*swig_obj
[1] ;
28899 if (!args
) SWIG_fail
;
28900 swig_obj
[0] = args
;
28901 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28902 if (!SWIG_IsOK(res1
)) {
28903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_GetPrintPreview" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28905 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28908 result
= (wxPrintPreview
*)(arg1
)->GetPrintPreview();
28909 wxPyEndAllowThreads(__tstate
);
28910 if (PyErr_Occurred()) SWIG_fail
;
28912 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
28919 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28920 PyObject
*resultobj
= 0;
28921 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28924 PyObject
*swig_obj
[1] ;
28926 if (!args
) SWIG_fail
;
28927 swig_obj
[0] = args
;
28928 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28929 if (!SWIG_IsOK(res1
)) {
28930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnNext" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28932 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28936 wxPyEndAllowThreads(__tstate
);
28937 if (PyErr_Occurred()) SWIG_fail
;
28939 resultobj
= SWIG_Py_Void();
28946 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnPrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28947 PyObject
*resultobj
= 0;
28948 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28951 PyObject
*swig_obj
[1] ;
28953 if (!args
) SWIG_fail
;
28954 swig_obj
[0] = args
;
28955 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28956 if (!SWIG_IsOK(res1
)) {
28957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnPrevious" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28959 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28961 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28962 (arg1
)->OnPrevious();
28963 wxPyEndAllowThreads(__tstate
);
28964 if (PyErr_Occurred()) SWIG_fail
;
28966 resultobj
= SWIG_Py_Void();
28973 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnFirst(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
28974 PyObject
*resultobj
= 0;
28975 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
28978 PyObject
*swig_obj
[1] ;
28980 if (!args
) SWIG_fail
;
28981 swig_obj
[0] = args
;
28982 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
28983 if (!SWIG_IsOK(res1
)) {
28984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnFirst" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
28986 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
28988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
28990 wxPyEndAllowThreads(__tstate
);
28991 if (PyErr_Occurred()) SWIG_fail
;
28993 resultobj
= SWIG_Py_Void();
29000 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnLast(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29001 PyObject
*resultobj
= 0;
29002 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 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_wxPreviewControlBar
, 0 | 0 );
29010 if (!SWIG_IsOK(res1
)) {
29011 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnLast" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
29013 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
29015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29017 wxPyEndAllowThreads(__tstate
);
29018 if (PyErr_Occurred()) SWIG_fail
;
29020 resultobj
= SWIG_Py_Void();
29027 SWIGINTERN PyObject
*_wrap_PreviewControlBar_OnGoto(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29028 PyObject
*resultobj
= 0;
29029 wxPreviewControlBar
*arg1
= (wxPreviewControlBar
*) 0 ;
29032 PyObject
*swig_obj
[1] ;
29034 if (!args
) SWIG_fail
;
29035 swig_obj
[0] = args
;
29036 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
29037 if (!SWIG_IsOK(res1
)) {
29038 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PreviewControlBar_OnGoto" "', expected argument " "1"" of type '" "wxPreviewControlBar *""'");
29040 arg1
= reinterpret_cast< wxPreviewControlBar
* >(argp1
);
29042 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29044 wxPyEndAllowThreads(__tstate
);
29045 if (PyErr_Occurred()) SWIG_fail
;
29047 resultobj
= SWIG_Py_Void();
29054 SWIGINTERN PyObject
*PreviewControlBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29056 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29057 SWIG_TypeNewClientData(SWIGTYPE_p_wxPreviewControlBar
, SWIG_NewClientData(obj
));
29058 return SWIG_Py_Void();
29061 SWIGINTERN PyObject
*PreviewControlBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29062 return SWIG_Python_InitShadowInstance(args
);
29065 SWIGINTERN PyObject
*_wrap_new_PrintPreview__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
29066 PyObject
*resultobj
= 0;
29067 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
29068 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29069 wxPrintDialogData
*arg3
= (wxPrintDialogData
*) NULL
;
29070 wxPrintPreview
*result
= 0 ;
29076 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
29077 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29078 if (!SWIG_IsOK(res1
)) {
29079 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
29081 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29082 if (!SWIG_IsOK(res2
)) {
29083 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
29086 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
29087 if (!SWIG_IsOK(res3
)) {
29088 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PrintPreview" "', expected argument " "3"" of type '" "wxPrintDialogData *""'");
29090 arg3
= reinterpret_cast< wxPrintDialogData
* >(argp3
);
29093 if (!wxPyCheckForApp()) SWIG_fail
;
29094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29095 result
= (wxPrintPreview
*)new wxPrintPreview(arg1
,arg2
,arg3
);
29096 wxPyEndAllowThreads(__tstate
);
29097 if (PyErr_Occurred()) SWIG_fail
;
29099 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_NEW
| 0 );
29106 SWIGINTERN PyObject
*_wrap_new_PrintPreview__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
29107 PyObject
*resultobj
= 0;
29108 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
29109 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29110 wxPrintData
*arg3
= (wxPrintData
*) 0 ;
29111 wxPrintPreview
*result
= 0 ;
29117 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
29118 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29119 if (!SWIG_IsOK(res1
)) {
29120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
29122 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29123 if (!SWIG_IsOK(res2
)) {
29124 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
29126 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
29127 if (!SWIG_IsOK(res3
)) {
29128 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PrintPreview" "', expected argument " "3"" of type '" "wxPrintData *""'");
29130 arg3
= reinterpret_cast< wxPrintData
* >(argp3
);
29132 if (!wxPyCheckForApp()) SWIG_fail
;
29133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29134 result
= (wxPrintPreview
*)new wxPrintPreview(arg1
,arg2
,arg3
);
29135 wxPyEndAllowThreads(__tstate
);
29136 if (PyErr_Occurred()) SWIG_fail
;
29138 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_NEW
| 0 );
29145 SWIGINTERN PyObject
*_wrap_new_PrintPreview(PyObject
*self
, PyObject
*args
) {
29149 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PrintPreview",0,3,argv
))) SWIG_fail
;
29151 if ((argc
>= 2) && (argc
<= 3)) {
29156 int res
= SWIG_ConvertPtr(argv
[2], &vptr
, SWIGTYPE_p_wxPrintDialogData
, 0);
29157 _v
= SWIG_CheckState(res
);
29159 if (!_v
) goto check_1
;
29161 return _wrap_new_PrintPreview__SWIG_0(self
, argc
, argv
);
29166 return _wrap_new_PrintPreview__SWIG_1(self
, argc
, argv
);
29170 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintPreview'");
29175 SWIGINTERN PyObject
*_wrap_delete_PrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29176 PyObject
*resultobj
= 0;
29177 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29180 PyObject
*swig_obj
[1] ;
29182 if (!args
) SWIG_fail
;
29183 swig_obj
[0] = args
;
29184 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_DISOWN
| 0 );
29185 if (!SWIG_IsOK(res1
)) {
29186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_PrintPreview" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29188 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29190 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29193 wxPyEndAllowThreads(__tstate
);
29194 if (PyErr_Occurred()) SWIG_fail
;
29196 resultobj
= SWIG_Py_Void();
29203 SWIGINTERN PyObject
*_wrap_PrintPreview_SetCurrentPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29204 PyObject
*resultobj
= 0;
29205 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29212 PyObject
* obj0
= 0 ;
29213 PyObject
* obj1
= 0 ;
29214 char * kwnames
[] = {
29215 (char *) "self",(char *) "pageNum", NULL
29218 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCurrentPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29219 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29220 if (!SWIG_IsOK(res1
)) {
29221 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetCurrentPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29223 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29224 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29225 if (!SWIG_IsOK(ecode2
)) {
29226 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetCurrentPage" "', expected argument " "2"" of type '" "int""'");
29228 arg2
= static_cast< int >(val2
);
29230 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29231 result
= (bool)(arg1
)->SetCurrentPage(arg2
);
29232 wxPyEndAllowThreads(__tstate
);
29233 if (PyErr_Occurred()) SWIG_fail
;
29236 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29244 SWIGINTERN PyObject
*_wrap_PrintPreview_GetCurrentPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29245 PyObject
*resultobj
= 0;
29246 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29250 PyObject
*swig_obj
[1] ;
29252 if (!args
) SWIG_fail
;
29253 swig_obj
[0] = args
;
29254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29255 if (!SWIG_IsOK(res1
)) {
29256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetCurrentPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29258 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29261 result
= (int)(arg1
)->GetCurrentPage();
29262 wxPyEndAllowThreads(__tstate
);
29263 if (PyErr_Occurred()) SWIG_fail
;
29265 resultobj
= SWIG_From_int(static_cast< int >(result
));
29272 SWIGINTERN PyObject
*_wrap_PrintPreview_SetPrintout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29273 PyObject
*resultobj
= 0;
29274 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29275 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29279 PyObject
* obj0
= 0 ;
29280 PyObject
* obj1
= 0 ;
29281 char * kwnames
[] = {
29282 (char *) "self",(char *) "printout", NULL
29285 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetPrintout",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29286 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29287 if (!SWIG_IsOK(res1
)) {
29288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetPrintout" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29290 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29291 res2
= SWIG_ConvertPtr(obj1
, SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
29292 if (!SWIG_IsOK(res2
)) {
29293 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetPrintout" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
29296 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29297 (arg1
)->SetPrintout(arg2
);
29298 wxPyEndAllowThreads(__tstate
);
29299 if (PyErr_Occurred()) SWIG_fail
;
29301 resultobj
= SWIG_Py_Void();
29308 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintout(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29309 PyObject
*resultobj
= 0;
29310 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29311 wxPyPrintout
*result
= 0 ;
29314 PyObject
*swig_obj
[1] ;
29316 if (!args
) SWIG_fail
;
29317 swig_obj
[0] = args
;
29318 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29319 if (!SWIG_IsOK(res1
)) {
29320 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintout" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29322 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29325 result
= (wxPyPrintout
*)(arg1
)->GetPrintout();
29326 wxPyEndAllowThreads(__tstate
);
29327 if (PyErr_Occurred()) SWIG_fail
;
29330 resultobj
= wxPyMake_wxObject(result
, 0);
29338 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintoutForPrinting(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29339 PyObject
*resultobj
= 0;
29340 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29341 wxPyPrintout
*result
= 0 ;
29344 PyObject
*swig_obj
[1] ;
29346 if (!args
) SWIG_fail
;
29347 swig_obj
[0] = args
;
29348 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29349 if (!SWIG_IsOK(res1
)) {
29350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintoutForPrinting" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29352 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29355 result
= (wxPyPrintout
*)(arg1
)->GetPrintoutForPrinting();
29356 wxPyEndAllowThreads(__tstate
);
29357 if (PyErr_Occurred()) SWIG_fail
;
29360 resultobj
= wxPyMake_wxObject(result
, 0);
29368 SWIGINTERN PyObject
*_wrap_PrintPreview_SetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29369 PyObject
*resultobj
= 0;
29370 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29371 wxFrame
*arg2
= (wxFrame
*) 0 ;
29376 PyObject
* obj0
= 0 ;
29377 PyObject
* obj1
= 0 ;
29378 char * kwnames
[] = {
29379 (char *) "self",(char *) "frame", NULL
29382 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetFrame",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29383 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29384 if (!SWIG_IsOK(res1
)) {
29385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29387 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29388 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
29389 if (!SWIG_IsOK(res2
)) {
29390 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
29392 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
29394 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29395 (arg1
)->SetFrame(arg2
);
29396 wxPyEndAllowThreads(__tstate
);
29397 if (PyErr_Occurred()) SWIG_fail
;
29399 resultobj
= SWIG_Py_Void();
29406 SWIGINTERN PyObject
*_wrap_PrintPreview_SetCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29407 PyObject
*resultobj
= 0;
29408 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29409 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29414 PyObject
* obj0
= 0 ;
29415 PyObject
* obj1
= 0 ;
29416 char * kwnames
[] = {
29417 (char *) "self",(char *) "canvas", NULL
29420 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCanvas",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29421 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29422 if (!SWIG_IsOK(res1
)) {
29423 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29425 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29426 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29427 if (!SWIG_IsOK(res2
)) {
29428 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_SetCanvas" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29430 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29432 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29433 (arg1
)->SetCanvas(arg2
);
29434 wxPyEndAllowThreads(__tstate
);
29435 if (PyErr_Occurred()) SWIG_fail
;
29437 resultobj
= SWIG_Py_Void();
29444 SWIGINTERN PyObject
*_wrap_PrintPreview_GetFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29445 PyObject
*resultobj
= 0;
29446 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29447 wxFrame
*result
= 0 ;
29450 PyObject
*swig_obj
[1] ;
29452 if (!args
) SWIG_fail
;
29453 swig_obj
[0] = args
;
29454 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29455 if (!SWIG_IsOK(res1
)) {
29456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29458 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29461 result
= (wxFrame
*)(arg1
)->GetFrame();
29462 wxPyEndAllowThreads(__tstate
);
29463 if (PyErr_Occurred()) SWIG_fail
;
29466 resultobj
= wxPyMake_wxObject(result
, 0);
29474 SWIGINTERN PyObject
*_wrap_PrintPreview_GetCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29475 PyObject
*resultobj
= 0;
29476 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29477 wxPreviewCanvas
*result
= 0 ;
29480 PyObject
*swig_obj
[1] ;
29482 if (!args
) SWIG_fail
;
29483 swig_obj
[0] = args
;
29484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29485 if (!SWIG_IsOK(res1
)) {
29486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetCanvas" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29488 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29491 result
= (wxPreviewCanvas
*)(arg1
)->GetCanvas();
29492 wxPyEndAllowThreads(__tstate
);
29493 if (PyErr_Occurred()) SWIG_fail
;
29495 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29502 SWIGINTERN PyObject
*_wrap_PrintPreview_PaintPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29503 PyObject
*resultobj
= 0;
29504 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29505 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29514 PyObject
* obj0
= 0 ;
29515 PyObject
* obj1
= 0 ;
29516 PyObject
* obj2
= 0 ;
29517 char * kwnames
[] = {
29518 (char *) "self",(char *) "canvas",(char *) "dc", NULL
29521 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_PaintPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29522 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29523 if (!SWIG_IsOK(res1
)) {
29524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_PaintPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29526 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29527 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29528 if (!SWIG_IsOK(res2
)) {
29529 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_PaintPage" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29531 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29532 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
29533 if (!SWIG_IsOK(res3
)) {
29534 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PrintPreview_PaintPage" "', expected argument " "3"" of type '" "wxDC &""'");
29537 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintPreview_PaintPage" "', expected argument " "3"" of type '" "wxDC &""'");
29539 arg3
= reinterpret_cast< wxDC
* >(argp3
);
29541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29542 result
= (bool)(arg1
)->PaintPage(arg2
,*arg3
);
29543 wxPyEndAllowThreads(__tstate
);
29544 if (PyErr_Occurred()) SWIG_fail
;
29547 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29555 SWIGINTERN PyObject
*_wrap_PrintPreview_DrawBlankPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29556 PyObject
*resultobj
= 0;
29557 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29558 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29567 PyObject
* obj0
= 0 ;
29568 PyObject
* obj1
= 0 ;
29569 PyObject
* obj2
= 0 ;
29570 char * kwnames
[] = {
29571 (char *) "self",(char *) "canvas",(char *) "dc", NULL
29574 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_DrawBlankPage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
29575 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29576 if (!SWIG_IsOK(res1
)) {
29577 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29579 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29580 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29581 if (!SWIG_IsOK(res2
)) {
29582 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29584 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29585 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxDC
, 0 );
29586 if (!SWIG_IsOK(res3
)) {
29587 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "3"" of type '" "wxDC &""'");
29590 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "PrintPreview_DrawBlankPage" "', expected argument " "3"" of type '" "wxDC &""'");
29592 arg3
= reinterpret_cast< wxDC
* >(argp3
);
29594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29595 result
= (bool)(arg1
)->DrawBlankPage(arg2
,*arg3
);
29596 wxPyEndAllowThreads(__tstate
);
29597 if (PyErr_Occurred()) SWIG_fail
;
29600 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29608 SWIGINTERN PyObject
*_wrap_PrintPreview_RenderPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29609 PyObject
*resultobj
= 0;
29610 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29617 PyObject
* obj0
= 0 ;
29618 PyObject
* obj1
= 0 ;
29619 char * kwnames
[] = {
29620 (char *) "self",(char *) "pageNum", NULL
29623 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_RenderPage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29624 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29625 if (!SWIG_IsOK(res1
)) {
29626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_RenderPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29628 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29629 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29630 if (!SWIG_IsOK(ecode2
)) {
29631 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_RenderPage" "', expected argument " "2"" of type '" "int""'");
29633 arg2
= static_cast< int >(val2
);
29635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29636 result
= (bool)(arg1
)->RenderPage(arg2
);
29637 wxPyEndAllowThreads(__tstate
);
29638 if (PyErr_Occurred()) SWIG_fail
;
29641 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29649 SWIGINTERN PyObject
*_wrap_PrintPreview_AdjustScrollbars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29650 PyObject
*resultobj
= 0;
29651 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29652 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
29657 PyObject
* obj0
= 0 ;
29658 PyObject
* obj1
= 0 ;
29659 char * kwnames
[] = {
29660 (char *) "self",(char *) "canvas", NULL
29663 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_AdjustScrollbars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29664 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29665 if (!SWIG_IsOK(res1
)) {
29666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_AdjustScrollbars" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29668 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29669 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
29670 if (!SWIG_IsOK(res2
)) {
29671 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PrintPreview_AdjustScrollbars" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
29673 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
29675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29676 (arg1
)->AdjustScrollbars(arg2
);
29677 wxPyEndAllowThreads(__tstate
);
29678 if (PyErr_Occurred()) SWIG_fail
;
29680 resultobj
= SWIG_Py_Void();
29687 SWIGINTERN PyObject
*_wrap_PrintPreview_GetPrintDialogData(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29688 PyObject
*resultobj
= 0;
29689 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29690 wxPrintDialogData
*result
= 0 ;
29693 PyObject
*swig_obj
[1] ;
29695 if (!args
) SWIG_fail
;
29696 swig_obj
[0] = args
;
29697 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29698 if (!SWIG_IsOK(res1
)) {
29699 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetPrintDialogData" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29701 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29705 wxPrintDialogData
&_result_ref
= (arg1
)->GetPrintDialogData();
29706 result
= (wxPrintDialogData
*) &_result_ref
;
29708 wxPyEndAllowThreads(__tstate
);
29709 if (PyErr_Occurred()) SWIG_fail
;
29711 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
29718 SWIGINTERN PyObject
*_wrap_PrintPreview_SetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29719 PyObject
*resultobj
= 0;
29720 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29726 PyObject
* obj0
= 0 ;
29727 PyObject
* obj1
= 0 ;
29728 char * kwnames
[] = {
29729 (char *) "self",(char *) "percent", NULL
29732 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29733 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29734 if (!SWIG_IsOK(res1
)) {
29735 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetZoom" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29737 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29738 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
29739 if (!SWIG_IsOK(ecode2
)) {
29740 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetZoom" "', expected argument " "2"" of type '" "int""'");
29742 arg2
= static_cast< int >(val2
);
29744 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29745 (arg1
)->SetZoom(arg2
);
29746 wxPyEndAllowThreads(__tstate
);
29747 if (PyErr_Occurred()) SWIG_fail
;
29749 resultobj
= SWIG_Py_Void();
29756 SWIGINTERN PyObject
*_wrap_PrintPreview_GetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29757 PyObject
*resultobj
= 0;
29758 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29762 PyObject
*swig_obj
[1] ;
29764 if (!args
) SWIG_fail
;
29765 swig_obj
[0] = args
;
29766 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29767 if (!SWIG_IsOK(res1
)) {
29768 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetZoom" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29770 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29772 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29773 result
= (int)(arg1
)->GetZoom();
29774 wxPyEndAllowThreads(__tstate
);
29775 if (PyErr_Occurred()) SWIG_fail
;
29777 resultobj
= SWIG_From_int(static_cast< int >(result
));
29784 SWIGINTERN PyObject
*_wrap_PrintPreview_GetMaxPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29785 PyObject
*resultobj
= 0;
29786 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29790 PyObject
*swig_obj
[1] ;
29792 if (!args
) SWIG_fail
;
29793 swig_obj
[0] = args
;
29794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29795 if (!SWIG_IsOK(res1
)) {
29796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetMaxPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29798 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29801 result
= (int)(arg1
)->GetMaxPage();
29802 wxPyEndAllowThreads(__tstate
);
29803 if (PyErr_Occurred()) SWIG_fail
;
29805 resultobj
= SWIG_From_int(static_cast< int >(result
));
29812 SWIGINTERN PyObject
*_wrap_PrintPreview_GetMinPage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29813 PyObject
*resultobj
= 0;
29814 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29818 PyObject
*swig_obj
[1] ;
29820 if (!args
) SWIG_fail
;
29821 swig_obj
[0] = args
;
29822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29823 if (!SWIG_IsOK(res1
)) {
29824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_GetMinPage" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29826 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29829 result
= (int)(arg1
)->GetMinPage();
29830 wxPyEndAllowThreads(__tstate
);
29831 if (PyErr_Occurred()) SWIG_fail
;
29833 resultobj
= SWIG_From_int(static_cast< int >(result
));
29840 SWIGINTERN PyObject
*_wrap_PrintPreview_Ok(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29841 PyObject
*resultobj
= 0;
29842 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29846 PyObject
*swig_obj
[1] ;
29848 if (!args
) SWIG_fail
;
29849 swig_obj
[0] = args
;
29850 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29851 if (!SWIG_IsOK(res1
)) {
29852 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_Ok" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29854 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29857 result
= (bool)(arg1
)->Ok();
29858 wxPyEndAllowThreads(__tstate
);
29859 if (PyErr_Occurred()) SWIG_fail
;
29862 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29870 SWIGINTERN PyObject
*_wrap_PrintPreview_SetOk(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29871 PyObject
*resultobj
= 0;
29872 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29878 PyObject
* obj0
= 0 ;
29879 PyObject
* obj1
= 0 ;
29880 char * kwnames
[] = {
29881 (char *) "self",(char *) "ok", NULL
29884 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetOk",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29885 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29886 if (!SWIG_IsOK(res1
)) {
29887 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_SetOk" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29889 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29890 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
29891 if (!SWIG_IsOK(ecode2
)) {
29892 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_SetOk" "', expected argument " "2"" of type '" "bool""'");
29894 arg2
= static_cast< bool >(val2
);
29896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29897 (arg1
)->SetOk(arg2
);
29898 wxPyEndAllowThreads(__tstate
);
29899 if (PyErr_Occurred()) SWIG_fail
;
29901 resultobj
= SWIG_Py_Void();
29908 SWIGINTERN PyObject
*_wrap_PrintPreview_Print(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
29909 PyObject
*resultobj
= 0;
29910 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29917 PyObject
* obj0
= 0 ;
29918 PyObject
* obj1
= 0 ;
29919 char * kwnames
[] = {
29920 (char *) "self",(char *) "interactive", NULL
29923 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_Print",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
29924 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29925 if (!SWIG_IsOK(res1
)) {
29926 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_Print" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29928 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29929 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
29930 if (!SWIG_IsOK(ecode2
)) {
29931 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PrintPreview_Print" "', expected argument " "2"" of type '" "bool""'");
29933 arg2
= static_cast< bool >(val2
);
29935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29936 result
= (bool)(arg1
)->Print(arg2
);
29937 wxPyEndAllowThreads(__tstate
);
29938 if (PyErr_Occurred()) SWIG_fail
;
29941 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
29949 SWIGINTERN PyObject
*_wrap_PrintPreview_DetermineScaling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29950 PyObject
*resultobj
= 0;
29951 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
29954 PyObject
*swig_obj
[1] ;
29956 if (!args
) SWIG_fail
;
29957 swig_obj
[0] = args
;
29958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
29959 if (!SWIG_IsOK(res1
)) {
29960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PrintPreview_DetermineScaling" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
29962 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
29964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
29965 (arg1
)->DetermineScaling();
29966 wxPyEndAllowThreads(__tstate
);
29967 if (PyErr_Occurred()) SWIG_fail
;
29969 resultobj
= SWIG_Py_Void();
29976 SWIGINTERN PyObject
*PrintPreview_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29978 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
29979 SWIG_TypeNewClientData(SWIGTYPE_p_wxPrintPreview
, SWIG_NewClientData(obj
));
29980 return SWIG_Py_Void();
29983 SWIGINTERN PyObject
*PrintPreview_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
29984 return SWIG_Python_InitShadowInstance(args
);
29987 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview__SWIG_0(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
29988 PyObject
*resultobj
= 0;
29989 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
29990 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
29991 wxPrintDialogData
*arg3
= (wxPrintDialogData
*) NULL
;
29992 wxPyPrintPreview
*result
= 0 ;
29998 if ((nobjs
< 2) || (nobjs
> 3)) SWIG_fail
;
29999 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
30000 if (!SWIG_IsOK(res1
)) {
30001 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
30003 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
30004 if (!SWIG_IsOK(res2
)) {
30005 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
30008 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintDialogData
, 0 | 0 );
30009 if (!SWIG_IsOK(res3
)) {
30010 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPrintPreview" "', expected argument " "3"" of type '" "wxPrintDialogData *""'");
30012 arg3
= reinterpret_cast< wxPrintDialogData
* >(argp3
);
30015 if (!wxPyCheckForApp()) SWIG_fail
;
30016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30017 result
= (wxPyPrintPreview
*)new wxPyPrintPreview(arg1
,arg2
,arg3
);
30018 wxPyEndAllowThreads(__tstate
);
30019 if (PyErr_Occurred()) SWIG_fail
;
30021 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_NEW
| 0 );
30028 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview__SWIG_1(PyObject
*SWIGUNUSEDPARM(self
), int nobjs
, PyObject
**swig_obj
) {
30029 PyObject
*resultobj
= 0;
30030 wxPyPrintout
*arg1
= (wxPyPrintout
*) 0 ;
30031 wxPyPrintout
*arg2
= (wxPyPrintout
*) 0 ;
30032 wxPrintData
*arg3
= (wxPrintData
*) 0 ;
30033 wxPyPrintPreview
*result
= 0 ;
30039 if ((nobjs
< 3) || (nobjs
> 3)) SWIG_fail
;
30040 res1
= SWIG_ConvertPtr(swig_obj
[0], SWIG_as_voidptrptr(&arg1
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
30041 if (!SWIG_IsOK(res1
)) {
30042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPrintPreview" "', expected argument " "1"" of type '" "wxPyPrintout *""'");
30044 res2
= SWIG_ConvertPtr(swig_obj
[1], SWIG_as_voidptrptr(&arg2
), SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_DISOWN
| 0 );
30045 if (!SWIG_IsOK(res2
)) {
30046 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPrintPreview" "', expected argument " "2"" of type '" "wxPyPrintout *""'");
30048 res3
= SWIG_ConvertPtr(swig_obj
[2], &argp3
,SWIGTYPE_p_wxPrintData
, 0 | 0 );
30049 if (!SWIG_IsOK(res3
)) {
30050 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPrintPreview" "', expected argument " "3"" of type '" "wxPrintData *""'");
30052 arg3
= reinterpret_cast< wxPrintData
* >(argp3
);
30054 if (!wxPyCheckForApp()) SWIG_fail
;
30055 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30056 result
= (wxPyPrintPreview
*)new wxPyPrintPreview(arg1
,arg2
,arg3
);
30057 wxPyEndAllowThreads(__tstate
);
30058 if (PyErr_Occurred()) SWIG_fail
;
30060 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_NEW
| 0 );
30067 SWIGINTERN PyObject
*_wrap_new_PyPrintPreview(PyObject
*self
, PyObject
*args
) {
30071 if (!(argc
= SWIG_Python_UnpackTuple(args
,"new_PyPrintPreview",0,3,argv
))) SWIG_fail
;
30073 if ((argc
>= 2) && (argc
<= 3)) {
30078 int res
= SWIG_ConvertPtr(argv
[2], &vptr
, SWIGTYPE_p_wxPrintDialogData
, 0);
30079 _v
= SWIG_CheckState(res
);
30081 if (!_v
) goto check_1
;
30083 return _wrap_new_PyPrintPreview__SWIG_0(self
, argc
, argv
);
30088 return _wrap_new_PyPrintPreview__SWIG_1(self
, argc
, argv
);
30092 SWIG_SetErrorMsg(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PyPrintPreview'");
30097 SWIGINTERN PyObject
*_wrap_PyPrintPreview__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30098 PyObject
*resultobj
= 0;
30099 wxPyPrintPreview
*arg1
= (wxPyPrintPreview
*) 0 ;
30100 PyObject
*arg2
= (PyObject
*) 0 ;
30101 PyObject
*arg3
= (PyObject
*) 0 ;
30104 PyObject
* obj0
= 0 ;
30105 PyObject
* obj1
= 0 ;
30106 PyObject
* obj2
= 0 ;
30107 char * kwnames
[] = {
30108 (char *) "self",(char *) "self",(char *) "_class", NULL
30111 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPrintPreview__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30112 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPrintPreview
, 0 | 0 );
30113 if (!SWIG_IsOK(res1
)) {
30114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPrintPreview__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPrintPreview *""'");
30116 arg1
= reinterpret_cast< wxPyPrintPreview
* >(argp1
);
30120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30121 (arg1
)->_setCallbackInfo(arg2
,arg3
);
30122 wxPyEndAllowThreads(__tstate
);
30123 if (PyErr_Occurred()) SWIG_fail
;
30125 resultobj
= SWIG_Py_Void();
30132 SWIGINTERN PyObject
*PyPrintPreview_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30134 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30135 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPrintPreview
, SWIG_NewClientData(obj
));
30136 return SWIG_Py_Void();
30139 SWIGINTERN PyObject
*PyPrintPreview_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30140 return SWIG_Python_InitShadowInstance(args
);
30143 SWIGINTERN PyObject
*_wrap_new_PyPreviewFrame(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30144 PyObject
*resultobj
= 0;
30145 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
30146 wxFrame
*arg2
= (wxFrame
*) 0 ;
30147 wxString
*arg3
= 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) wxDEFAULT_FRAME_STYLE
;
30153 wxString
const &arg7_defvalue
= wxPyFrameNameStr
;
30154 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
30155 wxPyPreviewFrame
*result
= 0 ;
30160 bool temp3
= false ;
30165 bool temp7
= false ;
30166 PyObject
* obj0
= 0 ;
30167 PyObject
* obj1
= 0 ;
30168 PyObject
* obj2
= 0 ;
30169 PyObject
* obj3
= 0 ;
30170 PyObject
* obj4
= 0 ;
30171 PyObject
* obj5
= 0 ;
30172 PyObject
* obj6
= 0 ;
30173 char * kwnames
[] = {
30174 (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
30177 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30178 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
30179 if (!SWIG_IsOK(res1
)) {
30180 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPreviewFrame" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
30182 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
30183 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxFrame
, 0 | 0 );
30184 if (!SWIG_IsOK(res2
)) {
30185 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "new_PyPreviewFrame" "', expected argument " "2"" of type '" "wxFrame *""'");
30187 arg2
= reinterpret_cast< wxFrame
* >(argp2
);
30189 arg3
= wxString_in_helper(obj2
);
30190 if (arg3
== NULL
) SWIG_fail
;
30196 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
30202 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
30206 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
30207 if (!SWIG_IsOK(ecode6
)) {
30208 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PyPreviewFrame" "', expected argument " "6"" of type '" "long""'");
30210 arg6
= static_cast< long >(val6
);
30214 arg7
= wxString_in_helper(obj6
);
30215 if (arg7
== NULL
) SWIG_fail
;
30220 if (!wxPyCheckForApp()) SWIG_fail
;
30221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30222 result
= (wxPyPreviewFrame
*)new wxPyPreviewFrame(arg1
,arg2
,(wxString
const &)*arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
30223 wxPyEndAllowThreads(__tstate
);
30224 if (PyErr_Occurred()) SWIG_fail
;
30226 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_NEW
| 0 );
30249 SWIGINTERN PyObject
*_wrap_PyPreviewFrame__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30250 PyObject
*resultobj
= 0;
30251 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30252 PyObject
*arg2
= (PyObject
*) 0 ;
30253 PyObject
*arg3
= (PyObject
*) 0 ;
30256 PyObject
* obj0
= 0 ;
30257 PyObject
* obj1
= 0 ;
30258 PyObject
* obj2
= 0 ;
30259 char * kwnames
[] = {
30260 (char *) "self",(char *) "self",(char *) "_class", NULL
30263 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewFrame__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30264 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30265 if (!SWIG_IsOK(res1
)) {
30266 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30268 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30273 (arg1
)->_setCallbackInfo(arg2
,arg3
);
30274 wxPyEndAllowThreads(__tstate
);
30275 if (PyErr_Occurred()) SWIG_fail
;
30277 resultobj
= SWIG_Py_Void();
30284 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_SetPreviewCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30285 PyObject
*resultobj
= 0;
30286 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30287 wxPreviewCanvas
*arg2
= (wxPreviewCanvas
*) 0 ;
30292 PyObject
* obj0
= 0 ;
30293 PyObject
* obj1
= 0 ;
30294 char * kwnames
[] = {
30295 (char *) "self",(char *) "canvas", NULL
30298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetPreviewCanvas",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30300 if (!SWIG_IsOK(res1
)) {
30301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_SetPreviewCanvas" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30303 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30304 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewCanvas
, 0 | 0 );
30305 if (!SWIG_IsOK(res2
)) {
30306 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewFrame_SetPreviewCanvas" "', expected argument " "2"" of type '" "wxPreviewCanvas *""'");
30308 arg2
= reinterpret_cast< wxPreviewCanvas
* >(argp2
);
30310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30311 (arg1
)->SetPreviewCanvas(arg2
);
30312 wxPyEndAllowThreads(__tstate
);
30313 if (PyErr_Occurred()) SWIG_fail
;
30315 resultobj
= SWIG_Py_Void();
30322 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_SetControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30323 PyObject
*resultobj
= 0;
30324 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30325 wxPreviewControlBar
*arg2
= (wxPreviewControlBar
*) 0 ;
30330 PyObject
* obj0
= 0 ;
30331 PyObject
* obj1
= 0 ;
30332 char * kwnames
[] = {
30333 (char *) "self",(char *) "bar", NULL
30336 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetControlBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30337 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30338 if (!SWIG_IsOK(res1
)) {
30339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_SetControlBar" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30341 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30342 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPreviewControlBar
, 0 | 0 );
30343 if (!SWIG_IsOK(res2
)) {
30344 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewFrame_SetControlBar" "', expected argument " "2"" of type '" "wxPreviewControlBar *""'");
30346 arg2
= reinterpret_cast< wxPreviewControlBar
* >(argp2
);
30348 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30349 (arg1
)->SetControlBar(arg2
);
30350 wxPyEndAllowThreads(__tstate
);
30351 if (PyErr_Occurred()) SWIG_fail
;
30353 resultobj
= SWIG_Py_Void();
30360 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_Initialize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30361 PyObject
*resultobj
= 0;
30362 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30365 PyObject
*swig_obj
[1] ;
30367 if (!args
) SWIG_fail
;
30368 swig_obj
[0] = args
;
30369 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30370 if (!SWIG_IsOK(res1
)) {
30371 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_Initialize" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30373 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30376 (arg1
)->Initialize();
30377 wxPyEndAllowThreads(__tstate
);
30378 if (PyErr_Occurred()) SWIG_fail
;
30380 resultobj
= SWIG_Py_Void();
30387 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_CreateCanvas(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30388 PyObject
*resultobj
= 0;
30389 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30392 PyObject
*swig_obj
[1] ;
30394 if (!args
) SWIG_fail
;
30395 swig_obj
[0] = args
;
30396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30397 if (!SWIG_IsOK(res1
)) {
30398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_CreateCanvas" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30400 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30403 (arg1
)->CreateCanvas();
30404 wxPyEndAllowThreads(__tstate
);
30405 if (PyErr_Occurred()) SWIG_fail
;
30407 resultobj
= SWIG_Py_Void();
30414 SWIGINTERN PyObject
*_wrap_PyPreviewFrame_CreateControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30415 PyObject
*resultobj
= 0;
30416 wxPyPreviewFrame
*arg1
= (wxPyPreviewFrame
*) 0 ;
30419 PyObject
*swig_obj
[1] ;
30421 if (!args
) SWIG_fail
;
30422 swig_obj
[0] = args
;
30423 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewFrame
, 0 | 0 );
30424 if (!SWIG_IsOK(res1
)) {
30425 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewFrame_CreateControlBar" "', expected argument " "1"" of type '" "wxPyPreviewFrame *""'");
30427 arg1
= reinterpret_cast< wxPyPreviewFrame
* >(argp1
);
30429 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30430 (arg1
)->CreateControlBar();
30431 wxPyEndAllowThreads(__tstate
);
30432 if (PyErr_Occurred()) SWIG_fail
;
30434 resultobj
= SWIG_Py_Void();
30441 SWIGINTERN PyObject
*PyPreviewFrame_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30443 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30444 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPreviewFrame
, SWIG_NewClientData(obj
));
30445 return SWIG_Py_Void();
30448 SWIGINTERN PyObject
*PyPreviewFrame_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30449 return SWIG_Python_InitShadowInstance(args
);
30452 SWIGINTERN PyObject
*_wrap_new_PyPreviewControlBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30453 PyObject
*resultobj
= 0;
30454 wxPrintPreview
*arg1
= (wxPrintPreview
*) 0 ;
30456 wxWindow
*arg3
= (wxWindow
*) 0 ;
30457 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
30458 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
30459 wxSize
const &arg5_defvalue
= wxDefaultSize
;
30460 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
30461 long arg6
= (long) 0 ;
30462 wxString
const &arg7_defvalue
= wxPyPanelNameStr
;
30463 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
30464 wxPyPreviewControlBar
*result
= 0 ;
30475 bool temp7
= false ;
30476 PyObject
* obj0
= 0 ;
30477 PyObject
* obj1
= 0 ;
30478 PyObject
* obj2
= 0 ;
30479 PyObject
* obj3
= 0 ;
30480 PyObject
* obj4
= 0 ;
30481 PyObject
* obj5
= 0 ;
30482 PyObject
* obj6
= 0 ;
30483 char * kwnames
[] = {
30484 (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
30487 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
30488 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
30489 if (!SWIG_IsOK(res1
)) {
30490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_PyPreviewControlBar" "', expected argument " "1"" of type '" "wxPrintPreview *""'");
30492 arg1
= reinterpret_cast< wxPrintPreview
* >(argp1
);
30493 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
30494 if (!SWIG_IsOK(ecode2
)) {
30495 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_PyPreviewControlBar" "', expected argument " "2"" of type '" "long""'");
30497 arg2
= static_cast< long >(val2
);
30498 res3
= SWIG_ConvertPtr(obj2
, &argp3
,SWIGTYPE_p_wxWindow
, 0 | 0 );
30499 if (!SWIG_IsOK(res3
)) {
30500 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "new_PyPreviewControlBar" "', expected argument " "3"" of type '" "wxWindow *""'");
30502 arg3
= reinterpret_cast< wxWindow
* >(argp3
);
30506 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
30512 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
30516 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
30517 if (!SWIG_IsOK(ecode6
)) {
30518 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "new_PyPreviewControlBar" "', expected argument " "6"" of type '" "long""'");
30520 arg6
= static_cast< long >(val6
);
30524 arg7
= wxString_in_helper(obj6
);
30525 if (arg7
== NULL
) SWIG_fail
;
30530 if (!wxPyCheckForApp()) SWIG_fail
;
30531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30532 result
= (wxPyPreviewControlBar
*)new wxPyPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
30533 wxPyEndAllowThreads(__tstate
);
30534 if (PyErr_Occurred()) SWIG_fail
;
30536 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_NEW
| 0 );
30551 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar__setCallbackInfo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30552 PyObject
*resultobj
= 0;
30553 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30554 PyObject
*arg2
= (PyObject
*) 0 ;
30555 PyObject
*arg3
= (PyObject
*) 0 ;
30558 PyObject
* obj0
= 0 ;
30559 PyObject
* obj1
= 0 ;
30560 PyObject
* obj2
= 0 ;
30561 char * kwnames
[] = {
30562 (char *) "self",(char *) "self",(char *) "_class", NULL
30565 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewControlBar__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
30566 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30567 if (!SWIG_IsOK(res1
)) {
30568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar__setCallbackInfo" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30570 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30575 (arg1
)->_setCallbackInfo(arg2
,arg3
);
30576 wxPyEndAllowThreads(__tstate
);
30577 if (PyErr_Occurred()) SWIG_fail
;
30579 resultobj
= SWIG_Py_Void();
30586 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_SetPrintPreview(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30587 PyObject
*resultobj
= 0;
30588 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30589 wxPrintPreview
*arg2
= (wxPrintPreview
*) 0 ;
30594 PyObject
* obj0
= 0 ;
30595 PyObject
* obj1
= 0 ;
30596 char * kwnames
[] = {
30597 (char *) "self",(char *) "preview", NULL
30600 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_SetPrintPreview",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30601 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30602 if (!SWIG_IsOK(res1
)) {
30603 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_SetPrintPreview" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30605 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30606 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxPrintPreview
, 0 | 0 );
30607 if (!SWIG_IsOK(res2
)) {
30608 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "PyPreviewControlBar_SetPrintPreview" "', expected argument " "2"" of type '" "wxPrintPreview *""'");
30610 arg2
= reinterpret_cast< wxPrintPreview
* >(argp2
);
30612 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30613 (arg1
)->SetPrintPreview(arg2
);
30614 wxPyEndAllowThreads(__tstate
);
30615 if (PyErr_Occurred()) SWIG_fail
;
30617 resultobj
= SWIG_Py_Void();
30624 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_CreateButtons(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30625 PyObject
*resultobj
= 0;
30626 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30629 PyObject
*swig_obj
[1] ;
30631 if (!args
) SWIG_fail
;
30632 swig_obj
[0] = args
;
30633 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30634 if (!SWIG_IsOK(res1
)) {
30635 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_CreateButtons" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30637 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30639 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30640 (arg1
)->CreateButtons();
30641 wxPyEndAllowThreads(__tstate
);
30642 if (PyErr_Occurred()) SWIG_fail
;
30644 resultobj
= SWIG_Py_Void();
30651 SWIGINTERN PyObject
*_wrap_PyPreviewControlBar_SetZoomControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
30652 PyObject
*resultobj
= 0;
30653 wxPyPreviewControlBar
*arg1
= (wxPyPreviewControlBar
*) 0 ;
30659 PyObject
* obj0
= 0 ;
30660 PyObject
* obj1
= 0 ;
30661 char * kwnames
[] = {
30662 (char *) "self",(char *) "zoom", NULL
30665 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_SetZoomControl",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
30666 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxPyPreviewControlBar
, 0 | 0 );
30667 if (!SWIG_IsOK(res1
)) {
30668 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "PyPreviewControlBar_SetZoomControl" "', expected argument " "1"" of type '" "wxPyPreviewControlBar *""'");
30670 arg1
= reinterpret_cast< wxPyPreviewControlBar
* >(argp1
);
30671 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
30672 if (!SWIG_IsOK(ecode2
)) {
30673 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "PyPreviewControlBar_SetZoomControl" "', expected argument " "2"" of type '" "int""'");
30675 arg2
= static_cast< int >(val2
);
30677 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
30678 (arg1
)->SetZoomControl(arg2
);
30679 wxPyEndAllowThreads(__tstate
);
30680 if (PyErr_Occurred()) SWIG_fail
;
30682 resultobj
= SWIG_Py_Void();
30689 SWIGINTERN PyObject
*PyPreviewControlBar_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30691 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
30692 SWIG_TypeNewClientData(SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_NewClientData(obj
));
30693 return SWIG_Py_Void();
30696 SWIGINTERN PyObject
*PyPreviewControlBar_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
30697 return SWIG_Python_InitShadowInstance(args
);
30700 static PyMethodDef SwigMethods
[] = {
30701 { (char *)"new_Panel", (PyCFunction
) _wrap_new_Panel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30702 { (char *)"new_PrePanel", (PyCFunction
)_wrap_new_PrePanel
, METH_NOARGS
, NULL
},
30703 { (char *)"Panel_Create", (PyCFunction
) _wrap_Panel_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30704 { (char *)"Panel_SetFocusIgnoringChildren", (PyCFunction
)_wrap_Panel_SetFocusIgnoringChildren
, METH_O
, NULL
},
30705 { (char *)"Panel_GetClassDefaultAttributes", (PyCFunction
) _wrap_Panel_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30706 { (char *)"Panel_swigregister", Panel_swigregister
, METH_VARARGS
, NULL
},
30707 { (char *)"Panel_swiginit", Panel_swiginit
, METH_VARARGS
, NULL
},
30708 { (char *)"new_ScrolledWindow", (PyCFunction
) _wrap_new_ScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30709 { (char *)"new_PreScrolledWindow", (PyCFunction
)_wrap_new_PreScrolledWindow
, METH_NOARGS
, NULL
},
30710 { (char *)"ScrolledWindow_Create", (PyCFunction
) _wrap_ScrolledWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30711 { (char *)"ScrolledWindow_SetScrollbars", (PyCFunction
) _wrap_ScrolledWindow_SetScrollbars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30712 { (char *)"ScrolledWindow_Scroll", (PyCFunction
) _wrap_ScrolledWindow_Scroll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30713 { (char *)"ScrolledWindow_GetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_GetScrollPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30714 { (char *)"ScrolledWindow_SetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_SetScrollPageSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30715 { (char *)"ScrolledWindow_SetScrollRate", (PyCFunction
) _wrap_ScrolledWindow_SetScrollRate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30716 { (char *)"ScrolledWindow_GetScrollPixelsPerUnit", (PyCFunction
)_wrap_ScrolledWindow_GetScrollPixelsPerUnit
, METH_O
, NULL
},
30717 { (char *)"ScrolledWindow_EnableScrolling", (PyCFunction
) _wrap_ScrolledWindow_EnableScrolling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30718 { (char *)"ScrolledWindow_GetViewStart", (PyCFunction
)_wrap_ScrolledWindow_GetViewStart
, METH_O
, NULL
},
30719 { (char *)"ScrolledWindow_SetScale", (PyCFunction
) _wrap_ScrolledWindow_SetScale
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30720 { (char *)"ScrolledWindow_GetScaleX", (PyCFunction
)_wrap_ScrolledWindow_GetScaleX
, METH_O
, NULL
},
30721 { (char *)"ScrolledWindow_GetScaleY", (PyCFunction
)_wrap_ScrolledWindow_GetScaleY
, METH_O
, NULL
},
30722 { (char *)"ScrolledWindow_CalcScrolledPosition", _wrap_ScrolledWindow_CalcScrolledPosition
, METH_VARARGS
, NULL
},
30723 { (char *)"ScrolledWindow_CalcUnscrolledPosition", _wrap_ScrolledWindow_CalcUnscrolledPosition
, METH_VARARGS
, NULL
},
30724 { (char *)"ScrolledWindow_AdjustScrollbars", (PyCFunction
)_wrap_ScrolledWindow_AdjustScrollbars
, METH_O
, NULL
},
30725 { (char *)"ScrolledWindow_CalcScrollInc", (PyCFunction
) _wrap_ScrolledWindow_CalcScrollInc
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30726 { (char *)"ScrolledWindow_SetTargetWindow", (PyCFunction
) _wrap_ScrolledWindow_SetTargetWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30727 { (char *)"ScrolledWindow_GetTargetWindow", (PyCFunction
)_wrap_ScrolledWindow_GetTargetWindow
, METH_O
, NULL
},
30728 { (char *)"ScrolledWindow_DoPrepareDC", (PyCFunction
) _wrap_ScrolledWindow_DoPrepareDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30729 { (char *)"ScrolledWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_ScrolledWindow_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30730 { (char *)"ScrolledWindow_swigregister", ScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
30731 { (char *)"ScrolledWindow_swiginit", ScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
30732 { (char *)"TopLevelWindow_Maximize", (PyCFunction
) _wrap_TopLevelWindow_Maximize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30733 { (char *)"TopLevelWindow_Restore", (PyCFunction
)_wrap_TopLevelWindow_Restore
, METH_O
, NULL
},
30734 { (char *)"TopLevelWindow_Iconize", (PyCFunction
) _wrap_TopLevelWindow_Iconize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30735 { (char *)"TopLevelWindow_IsMaximized", (PyCFunction
)_wrap_TopLevelWindow_IsMaximized
, METH_O
, NULL
},
30736 { (char *)"TopLevelWindow_IsAlwaysMaximized", (PyCFunction
)_wrap_TopLevelWindow_IsAlwaysMaximized
, METH_O
, NULL
},
30737 { (char *)"TopLevelWindow_IsIconized", (PyCFunction
)_wrap_TopLevelWindow_IsIconized
, METH_O
, NULL
},
30738 { (char *)"TopLevelWindow_GetIcon", (PyCFunction
)_wrap_TopLevelWindow_GetIcon
, METH_O
, NULL
},
30739 { (char *)"TopLevelWindow_SetIcon", (PyCFunction
) _wrap_TopLevelWindow_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30740 { (char *)"TopLevelWindow_SetIcons", (PyCFunction
) _wrap_TopLevelWindow_SetIcons
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30741 { (char *)"TopLevelWindow_ShowFullScreen", (PyCFunction
) _wrap_TopLevelWindow_ShowFullScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30742 { (char *)"TopLevelWindow_IsFullScreen", (PyCFunction
)_wrap_TopLevelWindow_IsFullScreen
, METH_O
, NULL
},
30743 { (char *)"TopLevelWindow_SetTitle", (PyCFunction
) _wrap_TopLevelWindow_SetTitle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30744 { (char *)"TopLevelWindow_GetTitle", (PyCFunction
)_wrap_TopLevelWindow_GetTitle
, METH_O
, NULL
},
30745 { (char *)"TopLevelWindow_SetShape", (PyCFunction
) _wrap_TopLevelWindow_SetShape
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30746 { (char *)"TopLevelWindow_RequestUserAttention", (PyCFunction
) _wrap_TopLevelWindow_RequestUserAttention
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30747 { (char *)"TopLevelWindow_IsActive", (PyCFunction
)_wrap_TopLevelWindow_IsActive
, METH_O
, NULL
},
30748 { (char *)"TopLevelWindow_MacSetMetalAppearance", (PyCFunction
) _wrap_TopLevelWindow_MacSetMetalAppearance
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30749 { (char *)"TopLevelWindow_MacGetMetalAppearance", (PyCFunction
)_wrap_TopLevelWindow_MacGetMetalAppearance
, METH_O
, NULL
},
30750 { (char *)"TopLevelWindow_CenterOnScreen", (PyCFunction
) _wrap_TopLevelWindow_CenterOnScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30751 { (char *)"TopLevelWindow_swigregister", TopLevelWindow_swigregister
, METH_VARARGS
, NULL
},
30752 { (char *)"new_Frame", (PyCFunction
) _wrap_new_Frame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30753 { (char *)"new_PreFrame", (PyCFunction
)_wrap_new_PreFrame
, METH_NOARGS
, NULL
},
30754 { (char *)"Frame_Create", (PyCFunction
) _wrap_Frame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30755 { (char *)"Frame_SendSizeEvent", (PyCFunction
)_wrap_Frame_SendSizeEvent
, METH_O
, NULL
},
30756 { (char *)"Frame_SetMenuBar", (PyCFunction
) _wrap_Frame_SetMenuBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30757 { (char *)"Frame_GetMenuBar", (PyCFunction
)_wrap_Frame_GetMenuBar
, METH_O
, NULL
},
30758 { (char *)"Frame_ProcessCommand", (PyCFunction
) _wrap_Frame_ProcessCommand
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30759 { (char *)"Frame_CreateStatusBar", (PyCFunction
) _wrap_Frame_CreateStatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30760 { (char *)"Frame_GetStatusBar", (PyCFunction
)_wrap_Frame_GetStatusBar
, METH_O
, NULL
},
30761 { (char *)"Frame_SetStatusBar", (PyCFunction
) _wrap_Frame_SetStatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30762 { (char *)"Frame_SetStatusText", (PyCFunction
) _wrap_Frame_SetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30763 { (char *)"Frame_SetStatusWidths", (PyCFunction
) _wrap_Frame_SetStatusWidths
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30764 { (char *)"Frame_PushStatusText", (PyCFunction
) _wrap_Frame_PushStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30765 { (char *)"Frame_PopStatusText", (PyCFunction
) _wrap_Frame_PopStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30766 { (char *)"Frame_SetStatusBarPane", (PyCFunction
) _wrap_Frame_SetStatusBarPane
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30767 { (char *)"Frame_GetStatusBarPane", (PyCFunction
)_wrap_Frame_GetStatusBarPane
, METH_O
, NULL
},
30768 { (char *)"Frame_CreateToolBar", (PyCFunction
) _wrap_Frame_CreateToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30769 { (char *)"Frame_GetToolBar", (PyCFunction
)_wrap_Frame_GetToolBar
, METH_O
, NULL
},
30770 { (char *)"Frame_SetToolBar", (PyCFunction
) _wrap_Frame_SetToolBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30771 { (char *)"Frame_DoGiveHelp", (PyCFunction
) _wrap_Frame_DoGiveHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30772 { (char *)"Frame_DoMenuUpdates", (PyCFunction
) _wrap_Frame_DoMenuUpdates
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30773 { (char *)"Frame_GetClassDefaultAttributes", (PyCFunction
) _wrap_Frame_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30774 { (char *)"Frame_swigregister", Frame_swigregister
, METH_VARARGS
, NULL
},
30775 { (char *)"Frame_swiginit", Frame_swiginit
, METH_VARARGS
, NULL
},
30776 { (char *)"new_Dialog", (PyCFunction
) _wrap_new_Dialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30777 { (char *)"new_PreDialog", (PyCFunction
)_wrap_new_PreDialog
, METH_NOARGS
, NULL
},
30778 { (char *)"Dialog_Create", (PyCFunction
) _wrap_Dialog_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30779 { (char *)"Dialog_SetReturnCode", (PyCFunction
) _wrap_Dialog_SetReturnCode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30780 { (char *)"Dialog_GetReturnCode", (PyCFunction
)_wrap_Dialog_GetReturnCode
, METH_O
, NULL
},
30781 { (char *)"Dialog_SetAffirmativeId", (PyCFunction
) _wrap_Dialog_SetAffirmativeId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30782 { (char *)"Dialog_GetAffirmativeId", (PyCFunction
)_wrap_Dialog_GetAffirmativeId
, METH_O
, NULL
},
30783 { (char *)"Dialog_SetEscapeId", (PyCFunction
) _wrap_Dialog_SetEscapeId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30784 { (char *)"Dialog_GetEscapeId", (PyCFunction
)_wrap_Dialog_GetEscapeId
, METH_O
, NULL
},
30785 { (char *)"Dialog_CreateTextSizer", (PyCFunction
) _wrap_Dialog_CreateTextSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30786 { (char *)"Dialog_CreateButtonSizer", (PyCFunction
) _wrap_Dialog_CreateButtonSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30787 { (char *)"Dialog_CreateStdDialogButtonSizer", (PyCFunction
) _wrap_Dialog_CreateStdDialogButtonSizer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30788 { (char *)"Dialog_IsModal", (PyCFunction
)_wrap_Dialog_IsModal
, METH_O
, NULL
},
30789 { (char *)"Dialog_ShowModal", (PyCFunction
)_wrap_Dialog_ShowModal
, METH_O
, NULL
},
30790 { (char *)"Dialog_EndModal", (PyCFunction
) _wrap_Dialog_EndModal
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30791 { (char *)"Dialog_GetClassDefaultAttributes", (PyCFunction
) _wrap_Dialog_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30792 { (char *)"Dialog_swigregister", Dialog_swigregister
, METH_VARARGS
, NULL
},
30793 { (char *)"Dialog_swiginit", Dialog_swiginit
, METH_VARARGS
, NULL
},
30794 { (char *)"new_MiniFrame", (PyCFunction
) _wrap_new_MiniFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30795 { (char *)"new_PreMiniFrame", (PyCFunction
)_wrap_new_PreMiniFrame
, METH_NOARGS
, NULL
},
30796 { (char *)"MiniFrame_Create", (PyCFunction
) _wrap_MiniFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30797 { (char *)"MiniFrame_swigregister", MiniFrame_swigregister
, METH_VARARGS
, NULL
},
30798 { (char *)"MiniFrame_swiginit", MiniFrame_swiginit
, METH_VARARGS
, NULL
},
30799 { (char *)"new_SplashScreenWindow", (PyCFunction
) _wrap_new_SplashScreenWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30800 { (char *)"SplashScreenWindow_SetBitmap", (PyCFunction
) _wrap_SplashScreenWindow_SetBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30801 { (char *)"SplashScreenWindow_GetBitmap", (PyCFunction
)_wrap_SplashScreenWindow_GetBitmap
, METH_O
, NULL
},
30802 { (char *)"SplashScreenWindow_swigregister", SplashScreenWindow_swigregister
, METH_VARARGS
, NULL
},
30803 { (char *)"SplashScreenWindow_swiginit", SplashScreenWindow_swiginit
, METH_VARARGS
, NULL
},
30804 { (char *)"new_SplashScreen", (PyCFunction
) _wrap_new_SplashScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30805 { (char *)"SplashScreen_GetSplashStyle", (PyCFunction
)_wrap_SplashScreen_GetSplashStyle
, METH_O
, NULL
},
30806 { (char *)"SplashScreen_GetSplashWindow", (PyCFunction
)_wrap_SplashScreen_GetSplashWindow
, METH_O
, NULL
},
30807 { (char *)"SplashScreen_GetTimeout", (PyCFunction
)_wrap_SplashScreen_GetTimeout
, METH_O
, NULL
},
30808 { (char *)"SplashScreen_swigregister", SplashScreen_swigregister
, METH_VARARGS
, NULL
},
30809 { (char *)"SplashScreen_swiginit", SplashScreen_swiginit
, METH_VARARGS
, NULL
},
30810 { (char *)"new_StatusBar", (PyCFunction
) _wrap_new_StatusBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30811 { (char *)"new_PreStatusBar", (PyCFunction
)_wrap_new_PreStatusBar
, METH_NOARGS
, NULL
},
30812 { (char *)"StatusBar_Create", (PyCFunction
) _wrap_StatusBar_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30813 { (char *)"StatusBar_SetFieldsCount", (PyCFunction
) _wrap_StatusBar_SetFieldsCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30814 { (char *)"StatusBar_GetFieldsCount", (PyCFunction
)_wrap_StatusBar_GetFieldsCount
, METH_O
, NULL
},
30815 { (char *)"StatusBar_SetStatusText", (PyCFunction
) _wrap_StatusBar_SetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30816 { (char *)"StatusBar_GetStatusText", (PyCFunction
) _wrap_StatusBar_GetStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30817 { (char *)"StatusBar_PushStatusText", (PyCFunction
) _wrap_StatusBar_PushStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30818 { (char *)"StatusBar_PopStatusText", (PyCFunction
) _wrap_StatusBar_PopStatusText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30819 { (char *)"StatusBar_SetStatusWidths", (PyCFunction
) _wrap_StatusBar_SetStatusWidths
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30820 { (char *)"StatusBar_SetStatusStyles", (PyCFunction
) _wrap_StatusBar_SetStatusStyles
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30821 { (char *)"StatusBar_GetFieldRect", (PyCFunction
) _wrap_StatusBar_GetFieldRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30822 { (char *)"StatusBar_SetMinHeight", (PyCFunction
) _wrap_StatusBar_SetMinHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30823 { (char *)"StatusBar_GetBorderX", (PyCFunction
)_wrap_StatusBar_GetBorderX
, METH_O
, NULL
},
30824 { (char *)"StatusBar_GetBorderY", (PyCFunction
)_wrap_StatusBar_GetBorderY
, METH_O
, NULL
},
30825 { (char *)"StatusBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_StatusBar_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30826 { (char *)"StatusBar_swigregister", StatusBar_swigregister
, METH_VARARGS
, NULL
},
30827 { (char *)"StatusBar_swiginit", StatusBar_swiginit
, METH_VARARGS
, NULL
},
30828 { (char *)"new_SplitterWindow", (PyCFunction
) _wrap_new_SplitterWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30829 { (char *)"new_PreSplitterWindow", (PyCFunction
)_wrap_new_PreSplitterWindow
, METH_NOARGS
, NULL
},
30830 { (char *)"SplitterWindow_Create", (PyCFunction
) _wrap_SplitterWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30831 { (char *)"SplitterWindow_GetWindow1", (PyCFunction
)_wrap_SplitterWindow_GetWindow1
, METH_O
, NULL
},
30832 { (char *)"SplitterWindow_GetWindow2", (PyCFunction
)_wrap_SplitterWindow_GetWindow2
, METH_O
, NULL
},
30833 { (char *)"SplitterWindow_SetSplitMode", (PyCFunction
) _wrap_SplitterWindow_SetSplitMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30834 { (char *)"SplitterWindow_GetSplitMode", (PyCFunction
)_wrap_SplitterWindow_GetSplitMode
, METH_O
, NULL
},
30835 { (char *)"SplitterWindow_Initialize", (PyCFunction
) _wrap_SplitterWindow_Initialize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30836 { (char *)"SplitterWindow_SplitVertically", (PyCFunction
) _wrap_SplitterWindow_SplitVertically
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30837 { (char *)"SplitterWindow_SplitHorizontally", (PyCFunction
) _wrap_SplitterWindow_SplitHorizontally
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30838 { (char *)"SplitterWindow_Unsplit", (PyCFunction
) _wrap_SplitterWindow_Unsplit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30839 { (char *)"SplitterWindow_ReplaceWindow", (PyCFunction
) _wrap_SplitterWindow_ReplaceWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30840 { (char *)"SplitterWindow_UpdateSize", (PyCFunction
)_wrap_SplitterWindow_UpdateSize
, METH_O
, NULL
},
30841 { (char *)"SplitterWindow_IsSplit", (PyCFunction
)_wrap_SplitterWindow_IsSplit
, METH_O
, NULL
},
30842 { (char *)"SplitterWindow_SetSashSize", (PyCFunction
) _wrap_SplitterWindow_SetSashSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30843 { (char *)"SplitterWindow_SetBorderSize", (PyCFunction
) _wrap_SplitterWindow_SetBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30844 { (char *)"SplitterWindow_GetSashSize", (PyCFunction
)_wrap_SplitterWindow_GetSashSize
, METH_O
, NULL
},
30845 { (char *)"SplitterWindow_GetBorderSize", (PyCFunction
)_wrap_SplitterWindow_GetBorderSize
, METH_O
, NULL
},
30846 { (char *)"SplitterWindow_SetSashPosition", (PyCFunction
) _wrap_SplitterWindow_SetSashPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30847 { (char *)"SplitterWindow_GetSashPosition", (PyCFunction
)_wrap_SplitterWindow_GetSashPosition
, METH_O
, NULL
},
30848 { (char *)"SplitterWindow_SetSashGravity", (PyCFunction
) _wrap_SplitterWindow_SetSashGravity
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30849 { (char *)"SplitterWindow_GetSashGravity", (PyCFunction
)_wrap_SplitterWindow_GetSashGravity
, METH_O
, NULL
},
30850 { (char *)"SplitterWindow_SetMinimumPaneSize", (PyCFunction
) _wrap_SplitterWindow_SetMinimumPaneSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30851 { (char *)"SplitterWindow_GetMinimumPaneSize", (PyCFunction
)_wrap_SplitterWindow_GetMinimumPaneSize
, METH_O
, NULL
},
30852 { (char *)"SplitterWindow_SashHitTest", (PyCFunction
) _wrap_SplitterWindow_SashHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30853 { (char *)"SplitterWindow_SizeWindows", (PyCFunction
)_wrap_SplitterWindow_SizeWindows
, METH_O
, NULL
},
30854 { (char *)"SplitterWindow_SetNeedUpdating", (PyCFunction
) _wrap_SplitterWindow_SetNeedUpdating
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30855 { (char *)"SplitterWindow_GetNeedUpdating", (PyCFunction
)_wrap_SplitterWindow_GetNeedUpdating
, METH_O
, NULL
},
30856 { (char *)"SplitterWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_SplitterWindow_GetClassDefaultAttributes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30857 { (char *)"SplitterWindow_swigregister", SplitterWindow_swigregister
, METH_VARARGS
, NULL
},
30858 { (char *)"SplitterWindow_swiginit", SplitterWindow_swiginit
, METH_VARARGS
, NULL
},
30859 { (char *)"new_SplitterEvent", (PyCFunction
) _wrap_new_SplitterEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30860 { (char *)"SplitterEvent_SetSashPosition", (PyCFunction
) _wrap_SplitterEvent_SetSashPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30861 { (char *)"SplitterEvent_GetSashPosition", (PyCFunction
)_wrap_SplitterEvent_GetSashPosition
, METH_O
, NULL
},
30862 { (char *)"SplitterEvent_GetWindowBeingRemoved", (PyCFunction
)_wrap_SplitterEvent_GetWindowBeingRemoved
, METH_O
, NULL
},
30863 { (char *)"SplitterEvent_GetX", (PyCFunction
)_wrap_SplitterEvent_GetX
, METH_O
, NULL
},
30864 { (char *)"SplitterEvent_GetY", (PyCFunction
)_wrap_SplitterEvent_GetY
, METH_O
, NULL
},
30865 { (char *)"SplitterEvent_swigregister", SplitterEvent_swigregister
, METH_VARARGS
, NULL
},
30866 { (char *)"SplitterEvent_swiginit", SplitterEvent_swiginit
, METH_VARARGS
, NULL
},
30867 { (char *)"new_SashWindow", (PyCFunction
) _wrap_new_SashWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30868 { (char *)"new_PreSashWindow", (PyCFunction
)_wrap_new_PreSashWindow
, METH_NOARGS
, NULL
},
30869 { (char *)"SashWindow_Create", (PyCFunction
) _wrap_SashWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30870 { (char *)"SashWindow_SetSashVisible", (PyCFunction
) _wrap_SashWindow_SetSashVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30871 { (char *)"SashWindow_GetSashVisible", (PyCFunction
) _wrap_SashWindow_GetSashVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30872 { (char *)"SashWindow_SetSashBorder", (PyCFunction
) _wrap_SashWindow_SetSashBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30873 { (char *)"SashWindow_HasBorder", (PyCFunction
) _wrap_SashWindow_HasBorder
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30874 { (char *)"SashWindow_GetEdgeMargin", (PyCFunction
) _wrap_SashWindow_GetEdgeMargin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30875 { (char *)"SashWindow_SetDefaultBorderSize", (PyCFunction
) _wrap_SashWindow_SetDefaultBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30876 { (char *)"SashWindow_GetDefaultBorderSize", (PyCFunction
)_wrap_SashWindow_GetDefaultBorderSize
, METH_O
, NULL
},
30877 { (char *)"SashWindow_SetExtraBorderSize", (PyCFunction
) _wrap_SashWindow_SetExtraBorderSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30878 { (char *)"SashWindow_GetExtraBorderSize", (PyCFunction
)_wrap_SashWindow_GetExtraBorderSize
, METH_O
, NULL
},
30879 { (char *)"SashWindow_SetMinimumSizeX", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30880 { (char *)"SashWindow_SetMinimumSizeY", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30881 { (char *)"SashWindow_GetMinimumSizeX", (PyCFunction
)_wrap_SashWindow_GetMinimumSizeX
, METH_O
, NULL
},
30882 { (char *)"SashWindow_GetMinimumSizeY", (PyCFunction
)_wrap_SashWindow_GetMinimumSizeY
, METH_O
, NULL
},
30883 { (char *)"SashWindow_SetMaximumSizeX", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30884 { (char *)"SashWindow_SetMaximumSizeY", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30885 { (char *)"SashWindow_GetMaximumSizeX", (PyCFunction
)_wrap_SashWindow_GetMaximumSizeX
, METH_O
, NULL
},
30886 { (char *)"SashWindow_GetMaximumSizeY", (PyCFunction
)_wrap_SashWindow_GetMaximumSizeY
, METH_O
, NULL
},
30887 { (char *)"SashWindow_SashHitTest", (PyCFunction
) _wrap_SashWindow_SashHitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30888 { (char *)"SashWindow_SizeWindows", (PyCFunction
)_wrap_SashWindow_SizeWindows
, METH_O
, NULL
},
30889 { (char *)"SashWindow_swigregister", SashWindow_swigregister
, METH_VARARGS
, NULL
},
30890 { (char *)"SashWindow_swiginit", SashWindow_swiginit
, METH_VARARGS
, NULL
},
30891 { (char *)"new_SashEvent", (PyCFunction
) _wrap_new_SashEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30892 { (char *)"SashEvent_SetEdge", (PyCFunction
) _wrap_SashEvent_SetEdge
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30893 { (char *)"SashEvent_GetEdge", (PyCFunction
)_wrap_SashEvent_GetEdge
, METH_O
, NULL
},
30894 { (char *)"SashEvent_SetDragRect", (PyCFunction
) _wrap_SashEvent_SetDragRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30895 { (char *)"SashEvent_GetDragRect", (PyCFunction
)_wrap_SashEvent_GetDragRect
, METH_O
, NULL
},
30896 { (char *)"SashEvent_SetDragStatus", (PyCFunction
) _wrap_SashEvent_SetDragStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30897 { (char *)"SashEvent_GetDragStatus", (PyCFunction
)_wrap_SashEvent_GetDragStatus
, METH_O
, NULL
},
30898 { (char *)"SashEvent_swigregister", SashEvent_swigregister
, METH_VARARGS
, NULL
},
30899 { (char *)"SashEvent_swiginit", SashEvent_swiginit
, METH_VARARGS
, NULL
},
30900 { (char *)"new_QueryLayoutInfoEvent", (PyCFunction
) _wrap_new_QueryLayoutInfoEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30901 { (char *)"QueryLayoutInfoEvent_SetRequestedLength", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetRequestedLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30902 { (char *)"QueryLayoutInfoEvent_GetRequestedLength", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetRequestedLength
, METH_O
, NULL
},
30903 { (char *)"QueryLayoutInfoEvent_SetFlags", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30904 { (char *)"QueryLayoutInfoEvent_GetFlags", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetFlags
, METH_O
, NULL
},
30905 { (char *)"QueryLayoutInfoEvent_SetSize", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30906 { (char *)"QueryLayoutInfoEvent_GetSize", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetSize
, METH_O
, NULL
},
30907 { (char *)"QueryLayoutInfoEvent_SetOrientation", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30908 { (char *)"QueryLayoutInfoEvent_GetOrientation", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetOrientation
, METH_O
, NULL
},
30909 { (char *)"QueryLayoutInfoEvent_SetAlignment", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30910 { (char *)"QueryLayoutInfoEvent_GetAlignment", (PyCFunction
)_wrap_QueryLayoutInfoEvent_GetAlignment
, METH_O
, NULL
},
30911 { (char *)"QueryLayoutInfoEvent_swigregister", QueryLayoutInfoEvent_swigregister
, METH_VARARGS
, NULL
},
30912 { (char *)"QueryLayoutInfoEvent_swiginit", QueryLayoutInfoEvent_swiginit
, METH_VARARGS
, NULL
},
30913 { (char *)"new_CalculateLayoutEvent", (PyCFunction
) _wrap_new_CalculateLayoutEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30914 { (char *)"CalculateLayoutEvent_SetFlags", (PyCFunction
) _wrap_CalculateLayoutEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30915 { (char *)"CalculateLayoutEvent_GetFlags", (PyCFunction
)_wrap_CalculateLayoutEvent_GetFlags
, METH_O
, NULL
},
30916 { (char *)"CalculateLayoutEvent_SetRect", (PyCFunction
) _wrap_CalculateLayoutEvent_SetRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30917 { (char *)"CalculateLayoutEvent_GetRect", (PyCFunction
)_wrap_CalculateLayoutEvent_GetRect
, METH_O
, NULL
},
30918 { (char *)"CalculateLayoutEvent_swigregister", CalculateLayoutEvent_swigregister
, METH_VARARGS
, NULL
},
30919 { (char *)"CalculateLayoutEvent_swiginit", CalculateLayoutEvent_swiginit
, METH_VARARGS
, NULL
},
30920 { (char *)"new_SashLayoutWindow", (PyCFunction
) _wrap_new_SashLayoutWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30921 { (char *)"new_PreSashLayoutWindow", (PyCFunction
)_wrap_new_PreSashLayoutWindow
, METH_NOARGS
, NULL
},
30922 { (char *)"SashLayoutWindow_Create", (PyCFunction
) _wrap_SashLayoutWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30923 { (char *)"SashLayoutWindow_GetAlignment", (PyCFunction
)_wrap_SashLayoutWindow_GetAlignment
, METH_O
, NULL
},
30924 { (char *)"SashLayoutWindow_GetOrientation", (PyCFunction
)_wrap_SashLayoutWindow_GetOrientation
, METH_O
, NULL
},
30925 { (char *)"SashLayoutWindow_SetAlignment", (PyCFunction
) _wrap_SashLayoutWindow_SetAlignment
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30926 { (char *)"SashLayoutWindow_SetDefaultSize", (PyCFunction
) _wrap_SashLayoutWindow_SetDefaultSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30927 { (char *)"SashLayoutWindow_SetOrientation", (PyCFunction
) _wrap_SashLayoutWindow_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30928 { (char *)"SashLayoutWindow_swigregister", SashLayoutWindow_swigregister
, METH_VARARGS
, NULL
},
30929 { (char *)"SashLayoutWindow_swiginit", SashLayoutWindow_swiginit
, METH_VARARGS
, NULL
},
30930 { (char *)"new_LayoutAlgorithm", (PyCFunction
)_wrap_new_LayoutAlgorithm
, METH_NOARGS
, NULL
},
30931 { (char *)"delete_LayoutAlgorithm", (PyCFunction
)_wrap_delete_LayoutAlgorithm
, METH_O
, NULL
},
30932 { (char *)"LayoutAlgorithm_LayoutMDIFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutMDIFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30933 { (char *)"LayoutAlgorithm_LayoutFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30934 { (char *)"LayoutAlgorithm_LayoutWindow", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30935 { (char *)"LayoutAlgorithm_swigregister", LayoutAlgorithm_swigregister
, METH_VARARGS
, NULL
},
30936 { (char *)"LayoutAlgorithm_swiginit", LayoutAlgorithm_swiginit
, METH_VARARGS
, NULL
},
30937 { (char *)"new_PopupWindow", (PyCFunction
) _wrap_new_PopupWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30938 { (char *)"new_PrePopupWindow", (PyCFunction
)_wrap_new_PrePopupWindow
, METH_NOARGS
, NULL
},
30939 { (char *)"PopupWindow_Create", (PyCFunction
) _wrap_PopupWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30940 { (char *)"PopupWindow_Position", (PyCFunction
) _wrap_PopupWindow_Position
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30941 { (char *)"PopupWindow_swigregister", PopupWindow_swigregister
, METH_VARARGS
, NULL
},
30942 { (char *)"PopupWindow_swiginit", PopupWindow_swiginit
, METH_VARARGS
, NULL
},
30943 { (char *)"new_PopupTransientWindow", (PyCFunction
) _wrap_new_PopupTransientWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30944 { (char *)"new_PrePopupTransientWindow", (PyCFunction
)_wrap_new_PrePopupTransientWindow
, METH_NOARGS
, NULL
},
30945 { (char *)"PopupTransientWindow__setCallbackInfo", (PyCFunction
) _wrap_PopupTransientWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30946 { (char *)"PopupTransientWindow_Popup", (PyCFunction
) _wrap_PopupTransientWindow_Popup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30947 { (char *)"PopupTransientWindow_Dismiss", (PyCFunction
)_wrap_PopupTransientWindow_Dismiss
, METH_O
, NULL
},
30948 { (char *)"PopupTransientWindow_swigregister", PopupTransientWindow_swigregister
, METH_VARARGS
, NULL
},
30949 { (char *)"PopupTransientWindow_swiginit", PopupTransientWindow_swiginit
, METH_VARARGS
, NULL
},
30950 { (char *)"new_TipWindow", (PyCFunction
) _wrap_new_TipWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30951 { (char *)"TipWindow_SetBoundingRect", (PyCFunction
) _wrap_TipWindow_SetBoundingRect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30952 { (char *)"TipWindow_Close", (PyCFunction
)_wrap_TipWindow_Close
, METH_O
, NULL
},
30953 { (char *)"TipWindow_swigregister", TipWindow_swigregister
, METH_VARARGS
, NULL
},
30954 { (char *)"TipWindow_swiginit", TipWindow_swiginit
, METH_VARARGS
, NULL
},
30955 { (char *)"new_VScrolledWindow", (PyCFunction
) _wrap_new_VScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30956 { (char *)"new_PreVScrolledWindow", (PyCFunction
)_wrap_new_PreVScrolledWindow
, METH_NOARGS
, NULL
},
30957 { (char *)"VScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_VScrolledWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30958 { (char *)"VScrolledWindow_Create", (PyCFunction
) _wrap_VScrolledWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30959 { (char *)"VScrolledWindow_SetLineCount", (PyCFunction
) _wrap_VScrolledWindow_SetLineCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30960 { (char *)"VScrolledWindow_ScrollToLine", (PyCFunction
) _wrap_VScrolledWindow_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30961 { (char *)"VScrolledWindow_RefreshLine", (PyCFunction
) _wrap_VScrolledWindow_RefreshLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30962 { (char *)"VScrolledWindow_RefreshLines", (PyCFunction
) _wrap_VScrolledWindow_RefreshLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30963 { (char *)"VScrolledWindow_HitTestXY", (PyCFunction
) _wrap_VScrolledWindow_HitTestXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30964 { (char *)"VScrolledWindow_HitTest", (PyCFunction
) _wrap_VScrolledWindow_HitTest
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30965 { (char *)"VScrolledWindow_RefreshAll", (PyCFunction
)_wrap_VScrolledWindow_RefreshAll
, METH_O
, NULL
},
30966 { (char *)"VScrolledWindow_GetLineCount", (PyCFunction
)_wrap_VScrolledWindow_GetLineCount
, METH_O
, NULL
},
30967 { (char *)"VScrolledWindow_GetVisibleBegin", (PyCFunction
)_wrap_VScrolledWindow_GetVisibleBegin
, METH_O
, NULL
},
30968 { (char *)"VScrolledWindow_GetVisibleEnd", (PyCFunction
)_wrap_VScrolledWindow_GetVisibleEnd
, METH_O
, NULL
},
30969 { (char *)"VScrolledWindow_IsVisible", (PyCFunction
) _wrap_VScrolledWindow_IsVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30970 { (char *)"VScrolledWindow_GetFirstVisibleLine", (PyCFunction
)_wrap_VScrolledWindow_GetFirstVisibleLine
, METH_O
, NULL
},
30971 { (char *)"VScrolledWindow_GetLastVisibleLine", (PyCFunction
)_wrap_VScrolledWindow_GetLastVisibleLine
, METH_O
, NULL
},
30972 { (char *)"VScrolledWindow_FindFirstFromBottom", (PyCFunction
) _wrap_VScrolledWindow_FindFirstFromBottom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30973 { (char *)"VScrolledWindow_GetLinesHeight", (PyCFunction
) _wrap_VScrolledWindow_GetLinesHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30974 { (char *)"VScrolledWindow_swigregister", VScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
30975 { (char *)"VScrolledWindow_swiginit", VScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
30976 { (char *)"new_VListBox", (PyCFunction
) _wrap_new_VListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30977 { (char *)"new_PreVListBox", (PyCFunction
)_wrap_new_PreVListBox
, METH_NOARGS
, NULL
},
30978 { (char *)"VListBox__setCallbackInfo", (PyCFunction
) _wrap_VListBox__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30979 { (char *)"VListBox_Create", (PyCFunction
) _wrap_VListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30980 { (char *)"VListBox_GetItemCount", (PyCFunction
)_wrap_VListBox_GetItemCount
, METH_O
, NULL
},
30981 { (char *)"VListBox_HasMultipleSelection", (PyCFunction
)_wrap_VListBox_HasMultipleSelection
, METH_O
, NULL
},
30982 { (char *)"VListBox_GetSelection", (PyCFunction
)_wrap_VListBox_GetSelection
, METH_O
, NULL
},
30983 { (char *)"VListBox_IsCurrent", (PyCFunction
) _wrap_VListBox_IsCurrent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30984 { (char *)"VListBox_IsSelected", (PyCFunction
) _wrap_VListBox_IsSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30985 { (char *)"VListBox_GetSelectedCount", (PyCFunction
)_wrap_VListBox_GetSelectedCount
, METH_O
, NULL
},
30986 { (char *)"VListBox_GetFirstSelected", (PyCFunction
)_wrap_VListBox_GetFirstSelected
, METH_O
, NULL
},
30987 { (char *)"VListBox_GetNextSelected", (PyCFunction
) _wrap_VListBox_GetNextSelected
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30988 { (char *)"VListBox_GetMargins", (PyCFunction
)_wrap_VListBox_GetMargins
, METH_O
, NULL
},
30989 { (char *)"VListBox_GetSelectionBackground", (PyCFunction
)_wrap_VListBox_GetSelectionBackground
, METH_O
, NULL
},
30990 { (char *)"VListBox_SetItemCount", (PyCFunction
) _wrap_VListBox_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30991 { (char *)"VListBox_Clear", (PyCFunction
)_wrap_VListBox_Clear
, METH_O
, NULL
},
30992 { (char *)"VListBox_SetSelection", (PyCFunction
) _wrap_VListBox_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30993 { (char *)"VListBox_Select", (PyCFunction
) _wrap_VListBox_Select
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30994 { (char *)"VListBox_SelectRange", (PyCFunction
) _wrap_VListBox_SelectRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30995 { (char *)"VListBox_Toggle", (PyCFunction
) _wrap_VListBox_Toggle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30996 { (char *)"VListBox_SelectAll", (PyCFunction
)_wrap_VListBox_SelectAll
, METH_O
, NULL
},
30997 { (char *)"VListBox_DeselectAll", (PyCFunction
)_wrap_VListBox_DeselectAll
, METH_O
, NULL
},
30998 { (char *)"VListBox_SetMargins", (PyCFunction
) _wrap_VListBox_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
30999 { (char *)"VListBox_SetMarginsXY", (PyCFunction
) _wrap_VListBox_SetMarginsXY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31000 { (char *)"VListBox_SetSelectionBackground", (PyCFunction
) _wrap_VListBox_SetSelectionBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31001 { (char *)"VListBox_OnDrawSeparator", (PyCFunction
) _wrap_VListBox_OnDrawSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31002 { (char *)"VListBox_OnDrawBackground", (PyCFunction
) _wrap_VListBox_OnDrawBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31003 { (char *)"VListBox_swigregister", VListBox_swigregister
, METH_VARARGS
, NULL
},
31004 { (char *)"VListBox_swiginit", VListBox_swiginit
, METH_VARARGS
, NULL
},
31005 { (char *)"new_HtmlListBox", (PyCFunction
) _wrap_new_HtmlListBox
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31006 { (char *)"new_PreHtmlListBox", (PyCFunction
)_wrap_new_PreHtmlListBox
, METH_NOARGS
, NULL
},
31007 { (char *)"HtmlListBox__setCallbackInfo", (PyCFunction
) _wrap_HtmlListBox__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31008 { (char *)"HtmlListBox_Create", (PyCFunction
) _wrap_HtmlListBox_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31009 { (char *)"HtmlListBox_SetItemCount", (PyCFunction
) _wrap_HtmlListBox_SetItemCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31010 { (char *)"HtmlListBox_GetFileSystem", (PyCFunction
)_wrap_HtmlListBox_GetFileSystem
, METH_O
, NULL
},
31011 { (char *)"HtmlListBox_OnLinkClicked", (PyCFunction
) _wrap_HtmlListBox_OnLinkClicked
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31012 { (char *)"HtmlListBox_swigregister", HtmlListBox_swigregister
, METH_VARARGS
, NULL
},
31013 { (char *)"HtmlListBox_swiginit", HtmlListBox_swiginit
, METH_VARARGS
, NULL
},
31014 { (char *)"new_TaskBarIcon", (PyCFunction
)_wrap_new_TaskBarIcon
, METH_NOARGS
, NULL
},
31015 { (char *)"delete_TaskBarIcon", (PyCFunction
)_wrap_delete_TaskBarIcon
, METH_O
, NULL
},
31016 { (char *)"TaskBarIcon__setCallbackInfo", (PyCFunction
) _wrap_TaskBarIcon__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31017 { (char *)"TaskBarIcon_Destroy", (PyCFunction
)_wrap_TaskBarIcon_Destroy
, METH_O
, NULL
},
31018 { (char *)"TaskBarIcon_IsOk", (PyCFunction
)_wrap_TaskBarIcon_IsOk
, METH_O
, NULL
},
31019 { (char *)"TaskBarIcon_IsIconInstalled", (PyCFunction
)_wrap_TaskBarIcon_IsIconInstalled
, METH_O
, NULL
},
31020 { (char *)"TaskBarIcon_SetIcon", (PyCFunction
) _wrap_TaskBarIcon_SetIcon
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31021 { (char *)"TaskBarIcon_RemoveIcon", (PyCFunction
)_wrap_TaskBarIcon_RemoveIcon
, METH_O
, NULL
},
31022 { (char *)"TaskBarIcon_PopupMenu", (PyCFunction
) _wrap_TaskBarIcon_PopupMenu
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31023 { (char *)"TaskBarIcon_swigregister", TaskBarIcon_swigregister
, METH_VARARGS
, NULL
},
31024 { (char *)"TaskBarIcon_swiginit", TaskBarIcon_swiginit
, METH_VARARGS
, NULL
},
31025 { (char *)"new_TaskBarIconEvent", (PyCFunction
) _wrap_new_TaskBarIconEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31026 { (char *)"TaskBarIconEvent_swigregister", TaskBarIconEvent_swigregister
, METH_VARARGS
, NULL
},
31027 { (char *)"TaskBarIconEvent_swiginit", TaskBarIconEvent_swiginit
, METH_VARARGS
, NULL
},
31028 { (char *)"new_ColourData", (PyCFunction
)_wrap_new_ColourData
, METH_NOARGS
, NULL
},
31029 { (char *)"delete_ColourData", (PyCFunction
)_wrap_delete_ColourData
, METH_O
, NULL
},
31030 { (char *)"ColourData_GetChooseFull", (PyCFunction
)_wrap_ColourData_GetChooseFull
, METH_O
, NULL
},
31031 { (char *)"ColourData_GetColour", (PyCFunction
)_wrap_ColourData_GetColour
, METH_O
, NULL
},
31032 { (char *)"ColourData_GetCustomColour", (PyCFunction
) _wrap_ColourData_GetCustomColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31033 { (char *)"ColourData_SetChooseFull", (PyCFunction
) _wrap_ColourData_SetChooseFull
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31034 { (char *)"ColourData_SetColour", (PyCFunction
) _wrap_ColourData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31035 { (char *)"ColourData_SetCustomColour", (PyCFunction
) _wrap_ColourData_SetCustomColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31036 { (char *)"ColourData_swigregister", ColourData_swigregister
, METH_VARARGS
, NULL
},
31037 { (char *)"ColourData_swiginit", ColourData_swiginit
, METH_VARARGS
, NULL
},
31038 { (char *)"new_ColourDialog", (PyCFunction
) _wrap_new_ColourDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31039 { (char *)"ColourDialog_GetColourData", (PyCFunction
)_wrap_ColourDialog_GetColourData
, METH_O
, NULL
},
31040 { (char *)"ColourDialog_swigregister", ColourDialog_swigregister
, METH_VARARGS
, NULL
},
31041 { (char *)"ColourDialog_swiginit", ColourDialog_swiginit
, METH_VARARGS
, NULL
},
31042 { (char *)"GetColourFromUser", (PyCFunction
) _wrap_GetColourFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31043 { (char *)"new_DirDialog", (PyCFunction
) _wrap_new_DirDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31044 { (char *)"new_PreDirDialog", (PyCFunction
)_wrap_new_PreDirDialog
, METH_NOARGS
, NULL
},
31045 { (char *)"DirDialog_Create", (PyCFunction
) _wrap_DirDialog_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31046 { (char *)"DirDialog_GetPath", (PyCFunction
)_wrap_DirDialog_GetPath
, METH_O
, NULL
},
31047 { (char *)"DirDialog_GetMessage", (PyCFunction
)_wrap_DirDialog_GetMessage
, METH_O
, NULL
},
31048 { (char *)"DirDialog_SetMessage", (PyCFunction
) _wrap_DirDialog_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31049 { (char *)"DirDialog_SetPath", (PyCFunction
) _wrap_DirDialog_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31050 { (char *)"DirDialog_swigregister", DirDialog_swigregister
, METH_VARARGS
, NULL
},
31051 { (char *)"DirDialog_swiginit", DirDialog_swiginit
, METH_VARARGS
, NULL
},
31052 { (char *)"new_FileDialog", (PyCFunction
) _wrap_new_FileDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31053 { (char *)"FileDialog_SetMessage", (PyCFunction
) _wrap_FileDialog_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31054 { (char *)"FileDialog_SetPath", (PyCFunction
) _wrap_FileDialog_SetPath
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31055 { (char *)"FileDialog_SetDirectory", (PyCFunction
) _wrap_FileDialog_SetDirectory
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31056 { (char *)"FileDialog_SetFilename", (PyCFunction
) _wrap_FileDialog_SetFilename
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31057 { (char *)"FileDialog_SetWildcard", (PyCFunction
) _wrap_FileDialog_SetWildcard
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31058 { (char *)"FileDialog_SetStyle", (PyCFunction
) _wrap_FileDialog_SetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31059 { (char *)"FileDialog_SetFilterIndex", (PyCFunction
) _wrap_FileDialog_SetFilterIndex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31060 { (char *)"FileDialog_GetMessage", (PyCFunction
)_wrap_FileDialog_GetMessage
, METH_O
, NULL
},
31061 { (char *)"FileDialog_GetPath", (PyCFunction
)_wrap_FileDialog_GetPath
, METH_O
, NULL
},
31062 { (char *)"FileDialog_GetDirectory", (PyCFunction
)_wrap_FileDialog_GetDirectory
, METH_O
, NULL
},
31063 { (char *)"FileDialog_GetFilename", (PyCFunction
)_wrap_FileDialog_GetFilename
, METH_O
, NULL
},
31064 { (char *)"FileDialog_GetWildcard", (PyCFunction
)_wrap_FileDialog_GetWildcard
, METH_O
, NULL
},
31065 { (char *)"FileDialog_GetStyle", (PyCFunction
)_wrap_FileDialog_GetStyle
, METH_O
, NULL
},
31066 { (char *)"FileDialog_GetFilterIndex", (PyCFunction
)_wrap_FileDialog_GetFilterIndex
, METH_O
, NULL
},
31067 { (char *)"FileDialog_GetFilenames", (PyCFunction
)_wrap_FileDialog_GetFilenames
, METH_O
, NULL
},
31068 { (char *)"FileDialog_GetPaths", (PyCFunction
)_wrap_FileDialog_GetPaths
, METH_O
, NULL
},
31069 { (char *)"FileDialog_swigregister", FileDialog_swigregister
, METH_VARARGS
, NULL
},
31070 { (char *)"FileDialog_swiginit", FileDialog_swiginit
, METH_VARARGS
, NULL
},
31071 { (char *)"new_MultiChoiceDialog", (PyCFunction
) _wrap_new_MultiChoiceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31072 { (char *)"MultiChoiceDialog_SetSelections", (PyCFunction
) _wrap_MultiChoiceDialog_SetSelections
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31073 { (char *)"MultiChoiceDialog_GetSelections", (PyCFunction
)_wrap_MultiChoiceDialog_GetSelections
, METH_O
, NULL
},
31074 { (char *)"MultiChoiceDialog_swigregister", MultiChoiceDialog_swigregister
, METH_VARARGS
, NULL
},
31075 { (char *)"MultiChoiceDialog_swiginit", MultiChoiceDialog_swiginit
, METH_VARARGS
, NULL
},
31076 { (char *)"new_SingleChoiceDialog", (PyCFunction
) _wrap_new_SingleChoiceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31077 { (char *)"SingleChoiceDialog_GetSelection", (PyCFunction
)_wrap_SingleChoiceDialog_GetSelection
, METH_O
, NULL
},
31078 { (char *)"SingleChoiceDialog_GetStringSelection", (PyCFunction
)_wrap_SingleChoiceDialog_GetStringSelection
, METH_O
, NULL
},
31079 { (char *)"SingleChoiceDialog_SetSelection", (PyCFunction
) _wrap_SingleChoiceDialog_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31080 { (char *)"SingleChoiceDialog_swigregister", SingleChoiceDialog_swigregister
, METH_VARARGS
, NULL
},
31081 { (char *)"SingleChoiceDialog_swiginit", SingleChoiceDialog_swiginit
, METH_VARARGS
, NULL
},
31082 { (char *)"new_TextEntryDialog", (PyCFunction
) _wrap_new_TextEntryDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31083 { (char *)"TextEntryDialog_GetValue", (PyCFunction
)_wrap_TextEntryDialog_GetValue
, METH_O
, NULL
},
31084 { (char *)"TextEntryDialog_SetValue", (PyCFunction
) _wrap_TextEntryDialog_SetValue
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31085 { (char *)"TextEntryDialog_swigregister", TextEntryDialog_swigregister
, METH_VARARGS
, NULL
},
31086 { (char *)"TextEntryDialog_swiginit", TextEntryDialog_swiginit
, METH_VARARGS
, NULL
},
31087 { (char *)"new_PasswordEntryDialog", (PyCFunction
) _wrap_new_PasswordEntryDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31088 { (char *)"PasswordEntryDialog_swigregister", PasswordEntryDialog_swigregister
, METH_VARARGS
, NULL
},
31089 { (char *)"PasswordEntryDialog_swiginit", PasswordEntryDialog_swiginit
, METH_VARARGS
, NULL
},
31090 { (char *)"new_FontData", (PyCFunction
)_wrap_new_FontData
, METH_NOARGS
, NULL
},
31091 { (char *)"delete_FontData", (PyCFunction
)_wrap_delete_FontData
, METH_O
, NULL
},
31092 { (char *)"FontData_EnableEffects", (PyCFunction
) _wrap_FontData_EnableEffects
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31093 { (char *)"FontData_GetAllowSymbols", (PyCFunction
)_wrap_FontData_GetAllowSymbols
, METH_O
, NULL
},
31094 { (char *)"FontData_GetColour", (PyCFunction
)_wrap_FontData_GetColour
, METH_O
, NULL
},
31095 { (char *)"FontData_GetChosenFont", (PyCFunction
)_wrap_FontData_GetChosenFont
, METH_O
, NULL
},
31096 { (char *)"FontData_GetEnableEffects", (PyCFunction
)_wrap_FontData_GetEnableEffects
, METH_O
, NULL
},
31097 { (char *)"FontData_GetInitialFont", (PyCFunction
)_wrap_FontData_GetInitialFont
, METH_O
, NULL
},
31098 { (char *)"FontData_GetShowHelp", (PyCFunction
)_wrap_FontData_GetShowHelp
, METH_O
, NULL
},
31099 { (char *)"FontData_SetAllowSymbols", (PyCFunction
) _wrap_FontData_SetAllowSymbols
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31100 { (char *)"FontData_SetChosenFont", (PyCFunction
) _wrap_FontData_SetChosenFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31101 { (char *)"FontData_SetColour", (PyCFunction
) _wrap_FontData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31102 { (char *)"FontData_SetInitialFont", (PyCFunction
) _wrap_FontData_SetInitialFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31103 { (char *)"FontData_SetRange", (PyCFunction
) _wrap_FontData_SetRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31104 { (char *)"FontData_SetShowHelp", (PyCFunction
) _wrap_FontData_SetShowHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31105 { (char *)"FontData_swigregister", FontData_swigregister
, METH_VARARGS
, NULL
},
31106 { (char *)"FontData_swiginit", FontData_swiginit
, METH_VARARGS
, NULL
},
31107 { (char *)"new_FontDialog", (PyCFunction
) _wrap_new_FontDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31108 { (char *)"FontDialog_GetFontData", (PyCFunction
)_wrap_FontDialog_GetFontData
, METH_O
, NULL
},
31109 { (char *)"FontDialog_swigregister", FontDialog_swigregister
, METH_VARARGS
, NULL
},
31110 { (char *)"FontDialog_swiginit", FontDialog_swiginit
, METH_VARARGS
, NULL
},
31111 { (char *)"GetFontFromUser", (PyCFunction
) _wrap_GetFontFromUser
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31112 { (char *)"new_MessageDialog", (PyCFunction
) _wrap_new_MessageDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31113 { (char *)"MessageDialog_swigregister", MessageDialog_swigregister
, METH_VARARGS
, NULL
},
31114 { (char *)"MessageDialog_swiginit", MessageDialog_swiginit
, METH_VARARGS
, NULL
},
31115 { (char *)"new_ProgressDialog", (PyCFunction
) _wrap_new_ProgressDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31116 { (char *)"ProgressDialog_Update", (PyCFunction
) _wrap_ProgressDialog_Update
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31117 { (char *)"ProgressDialog_Resume", (PyCFunction
)_wrap_ProgressDialog_Resume
, METH_O
, NULL
},
31118 { (char *)"ProgressDialog_swigregister", ProgressDialog_swigregister
, METH_VARARGS
, NULL
},
31119 { (char *)"ProgressDialog_swiginit", ProgressDialog_swiginit
, METH_VARARGS
, NULL
},
31120 { (char *)"new_FindDialogEvent", (PyCFunction
) _wrap_new_FindDialogEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31121 { (char *)"FindDialogEvent_GetFlags", (PyCFunction
)_wrap_FindDialogEvent_GetFlags
, METH_O
, NULL
},
31122 { (char *)"FindDialogEvent_GetFindString", (PyCFunction
)_wrap_FindDialogEvent_GetFindString
, METH_O
, NULL
},
31123 { (char *)"FindDialogEvent_GetReplaceString", (PyCFunction
)_wrap_FindDialogEvent_GetReplaceString
, METH_O
, NULL
},
31124 { (char *)"FindDialogEvent_GetDialog", (PyCFunction
)_wrap_FindDialogEvent_GetDialog
, METH_O
, NULL
},
31125 { (char *)"FindDialogEvent_SetFlags", (PyCFunction
) _wrap_FindDialogEvent_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31126 { (char *)"FindDialogEvent_SetFindString", (PyCFunction
) _wrap_FindDialogEvent_SetFindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31127 { (char *)"FindDialogEvent_SetReplaceString", (PyCFunction
) _wrap_FindDialogEvent_SetReplaceString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31128 { (char *)"FindDialogEvent_swigregister", FindDialogEvent_swigregister
, METH_VARARGS
, NULL
},
31129 { (char *)"FindDialogEvent_swiginit", FindDialogEvent_swiginit
, METH_VARARGS
, NULL
},
31130 { (char *)"new_FindReplaceData", (PyCFunction
) _wrap_new_FindReplaceData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31131 { (char *)"delete_FindReplaceData", (PyCFunction
)_wrap_delete_FindReplaceData
, METH_O
, NULL
},
31132 { (char *)"FindReplaceData_GetFindString", (PyCFunction
)_wrap_FindReplaceData_GetFindString
, METH_O
, NULL
},
31133 { (char *)"FindReplaceData_GetReplaceString", (PyCFunction
)_wrap_FindReplaceData_GetReplaceString
, METH_O
, NULL
},
31134 { (char *)"FindReplaceData_GetFlags", (PyCFunction
)_wrap_FindReplaceData_GetFlags
, METH_O
, NULL
},
31135 { (char *)"FindReplaceData_SetFlags", (PyCFunction
) _wrap_FindReplaceData_SetFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31136 { (char *)"FindReplaceData_SetFindString", (PyCFunction
) _wrap_FindReplaceData_SetFindString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31137 { (char *)"FindReplaceData_SetReplaceString", (PyCFunction
) _wrap_FindReplaceData_SetReplaceString
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31138 { (char *)"FindReplaceData_swigregister", FindReplaceData_swigregister
, METH_VARARGS
, NULL
},
31139 { (char *)"FindReplaceData_swiginit", FindReplaceData_swiginit
, METH_VARARGS
, NULL
},
31140 { (char *)"new_FindReplaceDialog", (PyCFunction
) _wrap_new_FindReplaceDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31141 { (char *)"new_PreFindReplaceDialog", (PyCFunction
)_wrap_new_PreFindReplaceDialog
, METH_NOARGS
, NULL
},
31142 { (char *)"FindReplaceDialog_Create", (PyCFunction
) _wrap_FindReplaceDialog_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31143 { (char *)"FindReplaceDialog_GetData", (PyCFunction
)_wrap_FindReplaceDialog_GetData
, METH_O
, NULL
},
31144 { (char *)"FindReplaceDialog_SetData", (PyCFunction
) _wrap_FindReplaceDialog_SetData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31145 { (char *)"FindReplaceDialog_swigregister", FindReplaceDialog_swigregister
, METH_VARARGS
, NULL
},
31146 { (char *)"FindReplaceDialog_swiginit", FindReplaceDialog_swiginit
, METH_VARARGS
, NULL
},
31147 { (char *)"new_MDIParentFrame", (PyCFunction
) _wrap_new_MDIParentFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31148 { (char *)"new_PreMDIParentFrame", (PyCFunction
)_wrap_new_PreMDIParentFrame
, METH_NOARGS
, NULL
},
31149 { (char *)"MDIParentFrame_Create", (PyCFunction
) _wrap_MDIParentFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31150 { (char *)"MDIParentFrame_ActivateNext", (PyCFunction
)_wrap_MDIParentFrame_ActivateNext
, METH_O
, NULL
},
31151 { (char *)"MDIParentFrame_ActivatePrevious", (PyCFunction
)_wrap_MDIParentFrame_ActivatePrevious
, METH_O
, NULL
},
31152 { (char *)"MDIParentFrame_ArrangeIcons", (PyCFunction
)_wrap_MDIParentFrame_ArrangeIcons
, METH_O
, NULL
},
31153 { (char *)"MDIParentFrame_Cascade", (PyCFunction
)_wrap_MDIParentFrame_Cascade
, METH_O
, NULL
},
31154 { (char *)"MDIParentFrame_GetActiveChild", (PyCFunction
)_wrap_MDIParentFrame_GetActiveChild
, METH_O
, NULL
},
31155 { (char *)"MDIParentFrame_GetClientWindow", (PyCFunction
)_wrap_MDIParentFrame_GetClientWindow
, METH_O
, NULL
},
31156 { (char *)"MDIParentFrame_GetToolBar", (PyCFunction
)_wrap_MDIParentFrame_GetToolBar
, METH_O
, NULL
},
31157 { (char *)"MDIParentFrame_Tile", (PyCFunction
) _wrap_MDIParentFrame_Tile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31158 { (char *)"MDIParentFrame_swigregister", MDIParentFrame_swigregister
, METH_VARARGS
, NULL
},
31159 { (char *)"MDIParentFrame_swiginit", MDIParentFrame_swiginit
, METH_VARARGS
, NULL
},
31160 { (char *)"new_MDIChildFrame", (PyCFunction
) _wrap_new_MDIChildFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31161 { (char *)"new_PreMDIChildFrame", (PyCFunction
)_wrap_new_PreMDIChildFrame
, METH_NOARGS
, NULL
},
31162 { (char *)"MDIChildFrame_Create", (PyCFunction
) _wrap_MDIChildFrame_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31163 { (char *)"MDIChildFrame_Activate", (PyCFunction
)_wrap_MDIChildFrame_Activate
, METH_O
, NULL
},
31164 { (char *)"MDIChildFrame_swigregister", MDIChildFrame_swigregister
, METH_VARARGS
, NULL
},
31165 { (char *)"MDIChildFrame_swiginit", MDIChildFrame_swiginit
, METH_VARARGS
, NULL
},
31166 { (char *)"new_MDIClientWindow", (PyCFunction
) _wrap_new_MDIClientWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31167 { (char *)"new_PreMDIClientWindow", (PyCFunction
)_wrap_new_PreMDIClientWindow
, METH_NOARGS
, NULL
},
31168 { (char *)"MDIClientWindow_Create", (PyCFunction
) _wrap_MDIClientWindow_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31169 { (char *)"MDIClientWindow_swigregister", MDIClientWindow_swigregister
, METH_VARARGS
, NULL
},
31170 { (char *)"MDIClientWindow_swiginit", MDIClientWindow_swiginit
, METH_VARARGS
, NULL
},
31171 { (char *)"new_PyWindow", (PyCFunction
) _wrap_new_PyWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31172 { (char *)"new_PrePyWindow", (PyCFunction
)_wrap_new_PrePyWindow
, METH_NOARGS
, NULL
},
31173 { (char *)"PyWindow__setCallbackInfo", (PyCFunction
) _wrap_PyWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31174 { (char *)"PyWindow_SetBestSize", (PyCFunction
) _wrap_PyWindow_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31175 { (char *)"PyWindow_DoEraseBackground", (PyCFunction
) _wrap_PyWindow_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31176 { (char *)"PyWindow_DoMoveWindow", (PyCFunction
) _wrap_PyWindow_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31177 { (char *)"PyWindow_DoSetSize", (PyCFunction
) _wrap_PyWindow_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31178 { (char *)"PyWindow_DoSetClientSize", (PyCFunction
) _wrap_PyWindow_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31179 { (char *)"PyWindow_DoSetVirtualSize", (PyCFunction
) _wrap_PyWindow_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31180 { (char *)"PyWindow_DoGetSize", (PyCFunction
)_wrap_PyWindow_DoGetSize
, METH_O
, NULL
},
31181 { (char *)"PyWindow_DoGetClientSize", (PyCFunction
)_wrap_PyWindow_DoGetClientSize
, METH_O
, NULL
},
31182 { (char *)"PyWindow_DoGetPosition", (PyCFunction
)_wrap_PyWindow_DoGetPosition
, METH_O
, NULL
},
31183 { (char *)"PyWindow_DoGetVirtualSize", (PyCFunction
)_wrap_PyWindow_DoGetVirtualSize
, METH_O
, NULL
},
31184 { (char *)"PyWindow_DoGetBestSize", (PyCFunction
)_wrap_PyWindow_DoGetBestSize
, METH_O
, NULL
},
31185 { (char *)"PyWindow_GetDefaultAttributes", (PyCFunction
)_wrap_PyWindow_GetDefaultAttributes
, METH_O
, NULL
},
31186 { (char *)"PyWindow_OnInternalIdle", (PyCFunction
)_wrap_PyWindow_OnInternalIdle
, METH_O
, NULL
},
31187 { (char *)"PyWindow_swigregister", PyWindow_swigregister
, METH_VARARGS
, NULL
},
31188 { (char *)"PyWindow_swiginit", PyWindow_swiginit
, METH_VARARGS
, NULL
},
31189 { (char *)"new_PyPanel", (PyCFunction
) _wrap_new_PyPanel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31190 { (char *)"new_PrePyPanel", (PyCFunction
)_wrap_new_PrePyPanel
, METH_NOARGS
, NULL
},
31191 { (char *)"PyPanel__setCallbackInfo", (PyCFunction
) _wrap_PyPanel__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31192 { (char *)"PyPanel_SetBestSize", (PyCFunction
) _wrap_PyPanel_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31193 { (char *)"PyPanel_DoEraseBackground", (PyCFunction
) _wrap_PyPanel_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31194 { (char *)"PyPanel_DoMoveWindow", (PyCFunction
) _wrap_PyPanel_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31195 { (char *)"PyPanel_DoSetSize", (PyCFunction
) _wrap_PyPanel_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31196 { (char *)"PyPanel_DoSetClientSize", (PyCFunction
) _wrap_PyPanel_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31197 { (char *)"PyPanel_DoSetVirtualSize", (PyCFunction
) _wrap_PyPanel_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31198 { (char *)"PyPanel_DoGetSize", (PyCFunction
)_wrap_PyPanel_DoGetSize
, METH_O
, NULL
},
31199 { (char *)"PyPanel_DoGetClientSize", (PyCFunction
)_wrap_PyPanel_DoGetClientSize
, METH_O
, NULL
},
31200 { (char *)"PyPanel_DoGetPosition", (PyCFunction
)_wrap_PyPanel_DoGetPosition
, METH_O
, NULL
},
31201 { (char *)"PyPanel_DoGetVirtualSize", (PyCFunction
)_wrap_PyPanel_DoGetVirtualSize
, METH_O
, NULL
},
31202 { (char *)"PyPanel_DoGetBestSize", (PyCFunction
)_wrap_PyPanel_DoGetBestSize
, METH_O
, NULL
},
31203 { (char *)"PyPanel_GetDefaultAttributes", (PyCFunction
)_wrap_PyPanel_GetDefaultAttributes
, METH_O
, NULL
},
31204 { (char *)"PyPanel_OnInternalIdle", (PyCFunction
)_wrap_PyPanel_OnInternalIdle
, METH_O
, NULL
},
31205 { (char *)"PyPanel_swigregister", PyPanel_swigregister
, METH_VARARGS
, NULL
},
31206 { (char *)"PyPanel_swiginit", PyPanel_swiginit
, METH_VARARGS
, NULL
},
31207 { (char *)"new_PyScrolledWindow", (PyCFunction
) _wrap_new_PyScrolledWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31208 { (char *)"new_PrePyScrolledWindow", (PyCFunction
)_wrap_new_PrePyScrolledWindow
, METH_NOARGS
, NULL
},
31209 { (char *)"PyScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_PyScrolledWindow__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31210 { (char *)"PyScrolledWindow_SetBestSize", (PyCFunction
) _wrap_PyScrolledWindow_SetBestSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31211 { (char *)"PyScrolledWindow_DoEraseBackground", (PyCFunction
) _wrap_PyScrolledWindow_DoEraseBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31212 { (char *)"PyScrolledWindow_DoMoveWindow", (PyCFunction
) _wrap_PyScrolledWindow_DoMoveWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31213 { (char *)"PyScrolledWindow_DoSetSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31214 { (char *)"PyScrolledWindow_DoSetClientSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetClientSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31215 { (char *)"PyScrolledWindow_DoSetVirtualSize", (PyCFunction
) _wrap_PyScrolledWindow_DoSetVirtualSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31216 { (char *)"PyScrolledWindow_DoGetSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetSize
, METH_O
, NULL
},
31217 { (char *)"PyScrolledWindow_DoGetClientSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetClientSize
, METH_O
, NULL
},
31218 { (char *)"PyScrolledWindow_DoGetPosition", (PyCFunction
)_wrap_PyScrolledWindow_DoGetPosition
, METH_O
, NULL
},
31219 { (char *)"PyScrolledWindow_DoGetVirtualSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetVirtualSize
, METH_O
, NULL
},
31220 { (char *)"PyScrolledWindow_DoGetBestSize", (PyCFunction
)_wrap_PyScrolledWindow_DoGetBestSize
, METH_O
, NULL
},
31221 { (char *)"PyScrolledWindow_GetDefaultAttributes", (PyCFunction
)_wrap_PyScrolledWindow_GetDefaultAttributes
, METH_O
, NULL
},
31222 { (char *)"PyScrolledWindow_OnInternalIdle", (PyCFunction
)_wrap_PyScrolledWindow_OnInternalIdle
, METH_O
, NULL
},
31223 { (char *)"PyScrolledWindow_swigregister", PyScrolledWindow_swigregister
, METH_VARARGS
, NULL
},
31224 { (char *)"PyScrolledWindow_swiginit", PyScrolledWindow_swiginit
, METH_VARARGS
, NULL
},
31225 { (char *)"new_PrintData", _wrap_new_PrintData
, METH_VARARGS
, NULL
},
31226 { (char *)"delete_PrintData", (PyCFunction
)_wrap_delete_PrintData
, METH_O
, NULL
},
31227 { (char *)"PrintData_GetNoCopies", (PyCFunction
)_wrap_PrintData_GetNoCopies
, METH_O
, NULL
},
31228 { (char *)"PrintData_GetCollate", (PyCFunction
)_wrap_PrintData_GetCollate
, METH_O
, NULL
},
31229 { (char *)"PrintData_GetOrientation", (PyCFunction
)_wrap_PrintData_GetOrientation
, METH_O
, NULL
},
31230 { (char *)"PrintData_Ok", (PyCFunction
)_wrap_PrintData_Ok
, METH_O
, NULL
},
31231 { (char *)"PrintData_GetPrinterName", (PyCFunction
)_wrap_PrintData_GetPrinterName
, METH_O
, NULL
},
31232 { (char *)"PrintData_GetColour", (PyCFunction
)_wrap_PrintData_GetColour
, METH_O
, NULL
},
31233 { (char *)"PrintData_GetDuplex", (PyCFunction
)_wrap_PrintData_GetDuplex
, METH_O
, NULL
},
31234 { (char *)"PrintData_GetPaperId", (PyCFunction
)_wrap_PrintData_GetPaperId
, METH_O
, NULL
},
31235 { (char *)"PrintData_GetPaperSize", (PyCFunction
)_wrap_PrintData_GetPaperSize
, METH_O
, NULL
},
31236 { (char *)"PrintData_GetQuality", (PyCFunction
)_wrap_PrintData_GetQuality
, METH_O
, NULL
},
31237 { (char *)"PrintData_GetBin", (PyCFunction
)_wrap_PrintData_GetBin
, METH_O
, NULL
},
31238 { (char *)"PrintData_GetPrintMode", (PyCFunction
)_wrap_PrintData_GetPrintMode
, METH_O
, NULL
},
31239 { (char *)"PrintData_SetNoCopies", (PyCFunction
) _wrap_PrintData_SetNoCopies
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31240 { (char *)"PrintData_SetCollate", (PyCFunction
) _wrap_PrintData_SetCollate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31241 { (char *)"PrintData_SetOrientation", (PyCFunction
) _wrap_PrintData_SetOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31242 { (char *)"PrintData_SetPrinterName", (PyCFunction
) _wrap_PrintData_SetPrinterName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31243 { (char *)"PrintData_SetColour", (PyCFunction
) _wrap_PrintData_SetColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31244 { (char *)"PrintData_SetDuplex", (PyCFunction
) _wrap_PrintData_SetDuplex
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31245 { (char *)"PrintData_SetPaperId", (PyCFunction
) _wrap_PrintData_SetPaperId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31246 { (char *)"PrintData_SetPaperSize", (PyCFunction
) _wrap_PrintData_SetPaperSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31247 { (char *)"PrintData_SetQuality", (PyCFunction
) _wrap_PrintData_SetQuality
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31248 { (char *)"PrintData_SetBin", (PyCFunction
) _wrap_PrintData_SetBin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31249 { (char *)"PrintData_SetPrintMode", (PyCFunction
) _wrap_PrintData_SetPrintMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31250 { (char *)"PrintData_GetFilename", (PyCFunction
)_wrap_PrintData_GetFilename
, METH_O
, NULL
},
31251 { (char *)"PrintData_SetFilename", (PyCFunction
) _wrap_PrintData_SetFilename
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31252 { (char *)"PrintData_GetPrivData", (PyCFunction
)_wrap_PrintData_GetPrivData
, METH_O
, NULL
},
31253 { (char *)"PrintData_SetPrivData", (PyCFunction
) _wrap_PrintData_SetPrivData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31254 { (char *)"PrintData_swigregister", PrintData_swigregister
, METH_VARARGS
, NULL
},
31255 { (char *)"PrintData_swiginit", PrintData_swiginit
, METH_VARARGS
, NULL
},
31256 { (char *)"new_PageSetupDialogData", _wrap_new_PageSetupDialogData
, METH_VARARGS
, NULL
},
31257 { (char *)"delete_PageSetupDialogData", (PyCFunction
)_wrap_delete_PageSetupDialogData
, METH_O
, NULL
},
31258 { (char *)"PageSetupDialogData_EnableHelp", (PyCFunction
) _wrap_PageSetupDialogData_EnableHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31259 { (char *)"PageSetupDialogData_EnableMargins", (PyCFunction
) _wrap_PageSetupDialogData_EnableMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31260 { (char *)"PageSetupDialogData_EnableOrientation", (PyCFunction
) _wrap_PageSetupDialogData_EnableOrientation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31261 { (char *)"PageSetupDialogData_EnablePaper", (PyCFunction
) _wrap_PageSetupDialogData_EnablePaper
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31262 { (char *)"PageSetupDialogData_EnablePrinter", (PyCFunction
) _wrap_PageSetupDialogData_EnablePrinter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31263 { (char *)"PageSetupDialogData_GetDefaultMinMargins", (PyCFunction
)_wrap_PageSetupDialogData_GetDefaultMinMargins
, METH_O
, NULL
},
31264 { (char *)"PageSetupDialogData_GetEnableMargins", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableMargins
, METH_O
, NULL
},
31265 { (char *)"PageSetupDialogData_GetEnableOrientation", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableOrientation
, METH_O
, NULL
},
31266 { (char *)"PageSetupDialogData_GetEnablePaper", (PyCFunction
)_wrap_PageSetupDialogData_GetEnablePaper
, METH_O
, NULL
},
31267 { (char *)"PageSetupDialogData_GetEnablePrinter", (PyCFunction
)_wrap_PageSetupDialogData_GetEnablePrinter
, METH_O
, NULL
},
31268 { (char *)"PageSetupDialogData_GetEnableHelp", (PyCFunction
)_wrap_PageSetupDialogData_GetEnableHelp
, METH_O
, NULL
},
31269 { (char *)"PageSetupDialogData_GetDefaultInfo", (PyCFunction
)_wrap_PageSetupDialogData_GetDefaultInfo
, METH_O
, NULL
},
31270 { (char *)"PageSetupDialogData_GetMarginTopLeft", (PyCFunction
)_wrap_PageSetupDialogData_GetMarginTopLeft
, METH_O
, NULL
},
31271 { (char *)"PageSetupDialogData_GetMarginBottomRight", (PyCFunction
)_wrap_PageSetupDialogData_GetMarginBottomRight
, METH_O
, NULL
},
31272 { (char *)"PageSetupDialogData_GetMinMarginTopLeft", (PyCFunction
)_wrap_PageSetupDialogData_GetMinMarginTopLeft
, METH_O
, NULL
},
31273 { (char *)"PageSetupDialogData_GetMinMarginBottomRight", (PyCFunction
)_wrap_PageSetupDialogData_GetMinMarginBottomRight
, METH_O
, NULL
},
31274 { (char *)"PageSetupDialogData_GetPaperId", (PyCFunction
)_wrap_PageSetupDialogData_GetPaperId
, METH_O
, NULL
},
31275 { (char *)"PageSetupDialogData_GetPaperSize", (PyCFunction
)_wrap_PageSetupDialogData_GetPaperSize
, METH_O
, NULL
},
31276 { (char *)"PageSetupDialogData_GetPrintData", (PyCFunction
)_wrap_PageSetupDialogData_GetPrintData
, METH_O
, NULL
},
31277 { (char *)"PageSetupDialogData_Ok", (PyCFunction
)_wrap_PageSetupDialogData_Ok
, METH_O
, NULL
},
31278 { (char *)"PageSetupDialogData_SetDefaultInfo", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31279 { (char *)"PageSetupDialogData_SetDefaultMinMargins", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultMinMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31280 { (char *)"PageSetupDialogData_SetMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginTopLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31281 { (char *)"PageSetupDialogData_SetMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginBottomRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31282 { (char *)"PageSetupDialogData_SetMinMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginTopLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31283 { (char *)"PageSetupDialogData_SetMinMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginBottomRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31284 { (char *)"PageSetupDialogData_SetPaperId", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperId
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31285 { (char *)"PageSetupDialogData_SetPaperSize", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31286 { (char *)"PageSetupDialogData_SetPrintData", (PyCFunction
) _wrap_PageSetupDialogData_SetPrintData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31287 { (char *)"PageSetupDialogData_CalculateIdFromPaperSize", (PyCFunction
)_wrap_PageSetupDialogData_CalculateIdFromPaperSize
, METH_O
, NULL
},
31288 { (char *)"PageSetupDialogData_CalculatePaperSizeFromId", (PyCFunction
)_wrap_PageSetupDialogData_CalculatePaperSizeFromId
, METH_O
, NULL
},
31289 { (char *)"PageSetupDialogData_swigregister", PageSetupDialogData_swigregister
, METH_VARARGS
, NULL
},
31290 { (char *)"PageSetupDialogData_swiginit", PageSetupDialogData_swiginit
, METH_VARARGS
, NULL
},
31291 { (char *)"new_PageSetupDialog", (PyCFunction
) _wrap_new_PageSetupDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31292 { (char *)"PageSetupDialog_GetPageSetupData", (PyCFunction
)_wrap_PageSetupDialog_GetPageSetupData
, METH_O
, NULL
},
31293 { (char *)"PageSetupDialog_GetPageSetupDialogData", (PyCFunction
)_wrap_PageSetupDialog_GetPageSetupDialogData
, METH_O
, NULL
},
31294 { (char *)"PageSetupDialog_ShowModal", (PyCFunction
)_wrap_PageSetupDialog_ShowModal
, METH_O
, NULL
},
31295 { (char *)"PageSetupDialog_swigregister", PageSetupDialog_swigregister
, METH_VARARGS
, NULL
},
31296 { (char *)"PageSetupDialog_swiginit", PageSetupDialog_swiginit
, METH_VARARGS
, NULL
},
31297 { (char *)"new_PrintDialogData", _wrap_new_PrintDialogData
, METH_VARARGS
, NULL
},
31298 { (char *)"delete_PrintDialogData", (PyCFunction
)_wrap_delete_PrintDialogData
, METH_O
, NULL
},
31299 { (char *)"PrintDialogData_GetFromPage", (PyCFunction
)_wrap_PrintDialogData_GetFromPage
, METH_O
, NULL
},
31300 { (char *)"PrintDialogData_GetToPage", (PyCFunction
)_wrap_PrintDialogData_GetToPage
, METH_O
, NULL
},
31301 { (char *)"PrintDialogData_GetMinPage", (PyCFunction
)_wrap_PrintDialogData_GetMinPage
, METH_O
, NULL
},
31302 { (char *)"PrintDialogData_GetMaxPage", (PyCFunction
)_wrap_PrintDialogData_GetMaxPage
, METH_O
, NULL
},
31303 { (char *)"PrintDialogData_GetNoCopies", (PyCFunction
)_wrap_PrintDialogData_GetNoCopies
, METH_O
, NULL
},
31304 { (char *)"PrintDialogData_GetAllPages", (PyCFunction
)_wrap_PrintDialogData_GetAllPages
, METH_O
, NULL
},
31305 { (char *)"PrintDialogData_GetSelection", (PyCFunction
)_wrap_PrintDialogData_GetSelection
, METH_O
, NULL
},
31306 { (char *)"PrintDialogData_GetCollate", (PyCFunction
)_wrap_PrintDialogData_GetCollate
, METH_O
, NULL
},
31307 { (char *)"PrintDialogData_GetPrintToFile", (PyCFunction
)_wrap_PrintDialogData_GetPrintToFile
, METH_O
, NULL
},
31308 { (char *)"PrintDialogData_SetFromPage", (PyCFunction
) _wrap_PrintDialogData_SetFromPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31309 { (char *)"PrintDialogData_SetToPage", (PyCFunction
) _wrap_PrintDialogData_SetToPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31310 { (char *)"PrintDialogData_SetMinPage", (PyCFunction
) _wrap_PrintDialogData_SetMinPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31311 { (char *)"PrintDialogData_SetMaxPage", (PyCFunction
) _wrap_PrintDialogData_SetMaxPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31312 { (char *)"PrintDialogData_SetNoCopies", (PyCFunction
) _wrap_PrintDialogData_SetNoCopies
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31313 { (char *)"PrintDialogData_SetAllPages", (PyCFunction
) _wrap_PrintDialogData_SetAllPages
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31314 { (char *)"PrintDialogData_SetSelection", (PyCFunction
) _wrap_PrintDialogData_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31315 { (char *)"PrintDialogData_SetCollate", (PyCFunction
) _wrap_PrintDialogData_SetCollate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31316 { (char *)"PrintDialogData_SetPrintToFile", (PyCFunction
) _wrap_PrintDialogData_SetPrintToFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31317 { (char *)"PrintDialogData_EnablePrintToFile", (PyCFunction
) _wrap_PrintDialogData_EnablePrintToFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31318 { (char *)"PrintDialogData_EnableSelection", (PyCFunction
) _wrap_PrintDialogData_EnableSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31319 { (char *)"PrintDialogData_EnablePageNumbers", (PyCFunction
) _wrap_PrintDialogData_EnablePageNumbers
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31320 { (char *)"PrintDialogData_EnableHelp", (PyCFunction
) _wrap_PrintDialogData_EnableHelp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31321 { (char *)"PrintDialogData_GetEnablePrintToFile", (PyCFunction
)_wrap_PrintDialogData_GetEnablePrintToFile
, METH_O
, NULL
},
31322 { (char *)"PrintDialogData_GetEnableSelection", (PyCFunction
)_wrap_PrintDialogData_GetEnableSelection
, METH_O
, NULL
},
31323 { (char *)"PrintDialogData_GetEnablePageNumbers", (PyCFunction
)_wrap_PrintDialogData_GetEnablePageNumbers
, METH_O
, NULL
},
31324 { (char *)"PrintDialogData_GetEnableHelp", (PyCFunction
)_wrap_PrintDialogData_GetEnableHelp
, METH_O
, NULL
},
31325 { (char *)"PrintDialogData_Ok", (PyCFunction
)_wrap_PrintDialogData_Ok
, METH_O
, NULL
},
31326 { (char *)"PrintDialogData_GetPrintData", (PyCFunction
)_wrap_PrintDialogData_GetPrintData
, METH_O
, NULL
},
31327 { (char *)"PrintDialogData_SetPrintData", (PyCFunction
) _wrap_PrintDialogData_SetPrintData
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31328 { (char *)"PrintDialogData_swigregister", PrintDialogData_swigregister
, METH_VARARGS
, NULL
},
31329 { (char *)"PrintDialogData_swiginit", PrintDialogData_swiginit
, METH_VARARGS
, NULL
},
31330 { (char *)"new_PrintDialog", (PyCFunction
) _wrap_new_PrintDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31331 { (char *)"PrintDialog_ShowModal", (PyCFunction
)_wrap_PrintDialog_ShowModal
, METH_O
, NULL
},
31332 { (char *)"PrintDialog_GetPrintDialogData", (PyCFunction
)_wrap_PrintDialog_GetPrintDialogData
, METH_O
, NULL
},
31333 { (char *)"PrintDialog_GetPrintData", (PyCFunction
)_wrap_PrintDialog_GetPrintData
, METH_O
, NULL
},
31334 { (char *)"PrintDialog_GetPrintDC", (PyCFunction
)_wrap_PrintDialog_GetPrintDC
, METH_O
, NULL
},
31335 { (char *)"PrintDialog_swigregister", PrintDialog_swigregister
, METH_VARARGS
, NULL
},
31336 { (char *)"PrintDialog_swiginit", PrintDialog_swiginit
, METH_VARARGS
, NULL
},
31337 { (char *)"new_Printer", (PyCFunction
) _wrap_new_Printer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31338 { (char *)"delete_Printer", (PyCFunction
)_wrap_delete_Printer
, METH_O
, NULL
},
31339 { (char *)"Printer_CreateAbortWindow", (PyCFunction
) _wrap_Printer_CreateAbortWindow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31340 { (char *)"Printer_ReportError", (PyCFunction
) _wrap_Printer_ReportError
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31341 { (char *)"Printer_Setup", (PyCFunction
) _wrap_Printer_Setup
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31342 { (char *)"Printer_Print", (PyCFunction
) _wrap_Printer_Print
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31343 { (char *)"Printer_PrintDialog", (PyCFunction
) _wrap_Printer_PrintDialog
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31344 { (char *)"Printer_GetPrintDialogData", (PyCFunction
)_wrap_Printer_GetPrintDialogData
, METH_O
, NULL
},
31345 { (char *)"Printer_GetAbort", (PyCFunction
)_wrap_Printer_GetAbort
, METH_O
, NULL
},
31346 { (char *)"Printer_GetLastError", (PyCFunction
)_wrap_Printer_GetLastError
, METH_NOARGS
, NULL
},
31347 { (char *)"Printer_swigregister", Printer_swigregister
, METH_VARARGS
, NULL
},
31348 { (char *)"Printer_swiginit", Printer_swiginit
, METH_VARARGS
, NULL
},
31349 { (char *)"new_Printout", (PyCFunction
) _wrap_new_Printout
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31350 { (char *)"delete_Printout", (PyCFunction
)_wrap_delete_Printout
, METH_O
, NULL
},
31351 { (char *)"Printout__setCallbackInfo", (PyCFunction
) _wrap_Printout__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31352 { (char *)"Printout_GetTitle", (PyCFunction
)_wrap_Printout_GetTitle
, METH_O
, NULL
},
31353 { (char *)"Printout_GetDC", (PyCFunction
)_wrap_Printout_GetDC
, METH_O
, NULL
},
31354 { (char *)"Printout_SetDC", (PyCFunction
) _wrap_Printout_SetDC
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31355 { (char *)"Printout_SetPageSizePixels", (PyCFunction
) _wrap_Printout_SetPageSizePixels
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31356 { (char *)"Printout_GetPageSizePixels", (PyCFunction
)_wrap_Printout_GetPageSizePixels
, METH_O
, NULL
},
31357 { (char *)"Printout_SetPageSizeMM", (PyCFunction
) _wrap_Printout_SetPageSizeMM
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31358 { (char *)"Printout_GetPageSizeMM", (PyCFunction
)_wrap_Printout_GetPageSizeMM
, METH_O
, NULL
},
31359 { (char *)"Printout_SetPPIScreen", (PyCFunction
) _wrap_Printout_SetPPIScreen
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31360 { (char *)"Printout_GetPPIScreen", (PyCFunction
)_wrap_Printout_GetPPIScreen
, METH_O
, NULL
},
31361 { (char *)"Printout_SetPPIPrinter", (PyCFunction
) _wrap_Printout_SetPPIPrinter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31362 { (char *)"Printout_GetPPIPrinter", (PyCFunction
)_wrap_Printout_GetPPIPrinter
, METH_O
, NULL
},
31363 { (char *)"Printout_IsPreview", (PyCFunction
)_wrap_Printout_IsPreview
, METH_O
, NULL
},
31364 { (char *)"Printout_SetIsPreview", (PyCFunction
) _wrap_Printout_SetIsPreview
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31365 { (char *)"Printout_OnBeginDocument", (PyCFunction
) _wrap_Printout_OnBeginDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31366 { (char *)"Printout_OnEndDocument", (PyCFunction
)_wrap_Printout_OnEndDocument
, METH_O
, NULL
},
31367 { (char *)"Printout_OnBeginPrinting", (PyCFunction
)_wrap_Printout_OnBeginPrinting
, METH_O
, NULL
},
31368 { (char *)"Printout_OnEndPrinting", (PyCFunction
)_wrap_Printout_OnEndPrinting
, METH_O
, NULL
},
31369 { (char *)"Printout_OnPreparePrinting", (PyCFunction
)_wrap_Printout_OnPreparePrinting
, METH_O
, NULL
},
31370 { (char *)"Printout_HasPage", (PyCFunction
) _wrap_Printout_HasPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31371 { (char *)"Printout_GetPageInfo", (PyCFunction
)_wrap_Printout_GetPageInfo
, METH_O
, NULL
},
31372 { (char *)"Printout_swigregister", Printout_swigregister
, METH_VARARGS
, NULL
},
31373 { (char *)"Printout_swiginit", Printout_swiginit
, METH_VARARGS
, NULL
},
31374 { (char *)"new_PreviewCanvas", (PyCFunction
) _wrap_new_PreviewCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31375 { (char *)"PreviewCanvas_swigregister", PreviewCanvas_swigregister
, METH_VARARGS
, NULL
},
31376 { (char *)"PreviewCanvas_swiginit", PreviewCanvas_swiginit
, METH_VARARGS
, NULL
},
31377 { (char *)"new_PreviewFrame", (PyCFunction
) _wrap_new_PreviewFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31378 { (char *)"PreviewFrame_Initialize", (PyCFunction
)_wrap_PreviewFrame_Initialize
, METH_O
, NULL
},
31379 { (char *)"PreviewFrame_CreateControlBar", (PyCFunction
)_wrap_PreviewFrame_CreateControlBar
, METH_O
, NULL
},
31380 { (char *)"PreviewFrame_CreateCanvas", (PyCFunction
)_wrap_PreviewFrame_CreateCanvas
, METH_O
, NULL
},
31381 { (char *)"PreviewFrame_GetControlBar", (PyCFunction
)_wrap_PreviewFrame_GetControlBar
, METH_O
, NULL
},
31382 { (char *)"PreviewFrame_swigregister", PreviewFrame_swigregister
, METH_VARARGS
, NULL
},
31383 { (char *)"PreviewFrame_swiginit", PreviewFrame_swiginit
, METH_VARARGS
, NULL
},
31384 { (char *)"new_PreviewControlBar", (PyCFunction
) _wrap_new_PreviewControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31385 { (char *)"PreviewControlBar_GetZoomControl", (PyCFunction
)_wrap_PreviewControlBar_GetZoomControl
, METH_O
, NULL
},
31386 { (char *)"PreviewControlBar_SetZoomControl", (PyCFunction
) _wrap_PreviewControlBar_SetZoomControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31387 { (char *)"PreviewControlBar_GetPrintPreview", (PyCFunction
)_wrap_PreviewControlBar_GetPrintPreview
, METH_O
, NULL
},
31388 { (char *)"PreviewControlBar_OnNext", (PyCFunction
)_wrap_PreviewControlBar_OnNext
, METH_O
, NULL
},
31389 { (char *)"PreviewControlBar_OnPrevious", (PyCFunction
)_wrap_PreviewControlBar_OnPrevious
, METH_O
, NULL
},
31390 { (char *)"PreviewControlBar_OnFirst", (PyCFunction
)_wrap_PreviewControlBar_OnFirst
, METH_O
, NULL
},
31391 { (char *)"PreviewControlBar_OnLast", (PyCFunction
)_wrap_PreviewControlBar_OnLast
, METH_O
, NULL
},
31392 { (char *)"PreviewControlBar_OnGoto", (PyCFunction
)_wrap_PreviewControlBar_OnGoto
, METH_O
, NULL
},
31393 { (char *)"PreviewControlBar_swigregister", PreviewControlBar_swigregister
, METH_VARARGS
, NULL
},
31394 { (char *)"PreviewControlBar_swiginit", PreviewControlBar_swiginit
, METH_VARARGS
, NULL
},
31395 { (char *)"new_PrintPreview", _wrap_new_PrintPreview
, METH_VARARGS
, NULL
},
31396 { (char *)"delete_PrintPreview", (PyCFunction
)_wrap_delete_PrintPreview
, METH_O
, NULL
},
31397 { (char *)"PrintPreview_SetCurrentPage", (PyCFunction
) _wrap_PrintPreview_SetCurrentPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31398 { (char *)"PrintPreview_GetCurrentPage", (PyCFunction
)_wrap_PrintPreview_GetCurrentPage
, METH_O
, NULL
},
31399 { (char *)"PrintPreview_SetPrintout", (PyCFunction
) _wrap_PrintPreview_SetPrintout
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31400 { (char *)"PrintPreview_GetPrintout", (PyCFunction
)_wrap_PrintPreview_GetPrintout
, METH_O
, NULL
},
31401 { (char *)"PrintPreview_GetPrintoutForPrinting", (PyCFunction
)_wrap_PrintPreview_GetPrintoutForPrinting
, METH_O
, NULL
},
31402 { (char *)"PrintPreview_SetFrame", (PyCFunction
) _wrap_PrintPreview_SetFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31403 { (char *)"PrintPreview_SetCanvas", (PyCFunction
) _wrap_PrintPreview_SetCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31404 { (char *)"PrintPreview_GetFrame", (PyCFunction
)_wrap_PrintPreview_GetFrame
, METH_O
, NULL
},
31405 { (char *)"PrintPreview_GetCanvas", (PyCFunction
)_wrap_PrintPreview_GetCanvas
, METH_O
, NULL
},
31406 { (char *)"PrintPreview_PaintPage", (PyCFunction
) _wrap_PrintPreview_PaintPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31407 { (char *)"PrintPreview_DrawBlankPage", (PyCFunction
) _wrap_PrintPreview_DrawBlankPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31408 { (char *)"PrintPreview_RenderPage", (PyCFunction
) _wrap_PrintPreview_RenderPage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31409 { (char *)"PrintPreview_AdjustScrollbars", (PyCFunction
) _wrap_PrintPreview_AdjustScrollbars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31410 { (char *)"PrintPreview_GetPrintDialogData", (PyCFunction
)_wrap_PrintPreview_GetPrintDialogData
, METH_O
, NULL
},
31411 { (char *)"PrintPreview_SetZoom", (PyCFunction
) _wrap_PrintPreview_SetZoom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31412 { (char *)"PrintPreview_GetZoom", (PyCFunction
)_wrap_PrintPreview_GetZoom
, METH_O
, NULL
},
31413 { (char *)"PrintPreview_GetMaxPage", (PyCFunction
)_wrap_PrintPreview_GetMaxPage
, METH_O
, NULL
},
31414 { (char *)"PrintPreview_GetMinPage", (PyCFunction
)_wrap_PrintPreview_GetMinPage
, METH_O
, NULL
},
31415 { (char *)"PrintPreview_Ok", (PyCFunction
)_wrap_PrintPreview_Ok
, METH_O
, NULL
},
31416 { (char *)"PrintPreview_SetOk", (PyCFunction
) _wrap_PrintPreview_SetOk
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31417 { (char *)"PrintPreview_Print", (PyCFunction
) _wrap_PrintPreview_Print
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31418 { (char *)"PrintPreview_DetermineScaling", (PyCFunction
)_wrap_PrintPreview_DetermineScaling
, METH_O
, NULL
},
31419 { (char *)"PrintPreview_swigregister", PrintPreview_swigregister
, METH_VARARGS
, NULL
},
31420 { (char *)"PrintPreview_swiginit", PrintPreview_swiginit
, METH_VARARGS
, NULL
},
31421 { (char *)"new_PyPrintPreview", _wrap_new_PyPrintPreview
, METH_VARARGS
, NULL
},
31422 { (char *)"PyPrintPreview__setCallbackInfo", (PyCFunction
) _wrap_PyPrintPreview__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31423 { (char *)"PyPrintPreview_swigregister", PyPrintPreview_swigregister
, METH_VARARGS
, NULL
},
31424 { (char *)"PyPrintPreview_swiginit", PyPrintPreview_swiginit
, METH_VARARGS
, NULL
},
31425 { (char *)"new_PyPreviewFrame", (PyCFunction
) _wrap_new_PyPreviewFrame
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31426 { (char *)"PyPreviewFrame__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewFrame__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31427 { (char *)"PyPreviewFrame_SetPreviewCanvas", (PyCFunction
) _wrap_PyPreviewFrame_SetPreviewCanvas
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31428 { (char *)"PyPreviewFrame_SetControlBar", (PyCFunction
) _wrap_PyPreviewFrame_SetControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31429 { (char *)"PyPreviewFrame_Initialize", (PyCFunction
)_wrap_PyPreviewFrame_Initialize
, METH_O
, NULL
},
31430 { (char *)"PyPreviewFrame_CreateCanvas", (PyCFunction
)_wrap_PyPreviewFrame_CreateCanvas
, METH_O
, NULL
},
31431 { (char *)"PyPreviewFrame_CreateControlBar", (PyCFunction
)_wrap_PyPreviewFrame_CreateControlBar
, METH_O
, NULL
},
31432 { (char *)"PyPreviewFrame_swigregister", PyPreviewFrame_swigregister
, METH_VARARGS
, NULL
},
31433 { (char *)"PyPreviewFrame_swiginit", PyPreviewFrame_swiginit
, METH_VARARGS
, NULL
},
31434 { (char *)"new_PyPreviewControlBar", (PyCFunction
) _wrap_new_PyPreviewControlBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31435 { (char *)"PyPreviewControlBar__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewControlBar__setCallbackInfo
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31436 { (char *)"PyPreviewControlBar_SetPrintPreview", (PyCFunction
) _wrap_PyPreviewControlBar_SetPrintPreview
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31437 { (char *)"PyPreviewControlBar_CreateButtons", (PyCFunction
)_wrap_PyPreviewControlBar_CreateButtons
, METH_O
, NULL
},
31438 { (char *)"PyPreviewControlBar_SetZoomControl", (PyCFunction
) _wrap_PyPreviewControlBar_SetZoomControl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
31439 { (char *)"PyPreviewControlBar_swigregister", PyPreviewControlBar_swigregister
, METH_VARARGS
, NULL
},
31440 { (char *)"PyPreviewControlBar_swiginit", PyPreviewControlBar_swiginit
, METH_VARARGS
, NULL
},
31441 { NULL
, NULL
, 0, NULL
}
31445 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
31447 static void *_p_wxPyPreviewFrameTo_p_wxPreviewFrame(void *x
) {
31448 return (void *)((wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31450 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
31451 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
31453 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
31454 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
31456 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
31457 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
31459 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
31460 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
31462 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
31463 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
31465 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
31466 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
31468 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) {
31469 return (void *)((wxEvent
*) (wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31471 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
31472 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
31474 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
31475 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
31477 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) {
31478 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
31480 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
31481 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
31483 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
31484 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
31486 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) {
31487 return (void *)((wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
31489 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
31490 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
31492 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
31493 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
31495 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
31496 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
31498 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
31499 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
31501 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
31502 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
31504 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
31505 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
31507 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
31508 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
31510 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
31511 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
31513 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
31514 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
31516 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
31517 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
31519 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
31520 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
31522 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
31523 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
31525 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
31526 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
31528 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
31529 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
31531 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
31532 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
31534 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
31535 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
31537 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
31538 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
31540 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
31541 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
31543 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
31544 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
31546 static void *_p_wxSashEventTo_p_wxEvent(void *x
) {
31547 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxSashEvent
*) x
));
31549 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) {
31550 return (void *)((wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
31552 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
31553 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
31555 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
31556 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
31558 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
31559 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
31561 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
31562 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
31564 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
31565 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
31567 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
31568 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
31570 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
31571 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
31573 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) {
31574 return (void *)((wxEvent
*) ((wxTaskBarIconEvent
*) x
));
31576 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) {
31577 return (void *)((wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31579 static void *_p_wxPasswordEntryDialogTo_p_wxTextEntryDialog(void *x
) {
31580 return (void *)((wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31582 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) {
31583 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
31585 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) {
31586 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
31588 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) {
31589 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
31591 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
31592 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
31594 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
31595 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
31597 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
31598 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
31600 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
31601 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
31603 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) {
31604 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31606 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) {
31607 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
31609 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) {
31610 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31612 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) {
31613 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31615 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) {
31616 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
31618 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) {
31619 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
31621 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) {
31622 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
31624 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) {
31625 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
31627 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) {
31628 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPanel
*) x
));
31630 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) {
31631 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxStatusBar
*) x
));
31633 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) {
31634 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
31636 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) {
31637 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
31639 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) {
31640 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
31642 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) {
31643 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPopupWindow
*) x
));
31645 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) {
31646 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
31648 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) {
31649 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSashWindow
*) x
));
31651 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) {
31652 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplitterWindow
*) x
));
31654 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) {
31655 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxSplashScreenWindow
*) x
));
31657 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
31658 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
31660 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) {
31661 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
31663 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) {
31664 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxTopLevelWindow
*) x
));
31666 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) {
31667 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMDIClientWindow
*) x
));
31669 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) {
31670 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
31672 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
31673 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
31675 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) {
31676 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
31678 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) {
31679 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31681 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) {
31682 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
31684 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
31685 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
31687 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
31688 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
31690 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) {
31691 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxPyWindow
*) x
));
31693 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) {
31694 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
31696 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) {
31697 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31699 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) {
31700 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
31702 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) {
31703 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
31705 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) {
31706 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
31708 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) {
31709 return (void *)((wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
31711 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) {
31712 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
31714 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) {
31715 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
31717 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) {
31718 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
31720 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) {
31721 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
31723 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) {
31724 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
31726 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) {
31727 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
31729 static void *_p_wxPyHtmlListBoxTo_p_wxPyVListBox(void *x
) {
31730 return (void *)((wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31732 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) {
31733 return (void *)((wxFrame
*) ((wxMDIChildFrame
*) x
));
31735 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) {
31736 return (void *)((wxFrame
*) ((wxProgressDialog
*) x
));
31738 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) {
31739 return (void *)((wxFrame
*) ((wxPreviewFrame
*) x
));
31741 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) {
31742 return (void *)((wxFrame
*) (wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31744 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) {
31745 return (void *)((wxFrame
*) ((wxMiniFrame
*) x
));
31747 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) {
31748 return (void *)((wxFrame
*) ((wxSplashScreen
*) x
));
31750 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) {
31751 return (void *)((wxFrame
*) ((wxMDIParentFrame
*) x
));
31753 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
31754 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
31756 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) {
31757 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryLayoutInfoEvent
*) x
));
31759 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) {
31760 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
31762 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) {
31763 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
31765 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
31766 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
31768 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
31769 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
31771 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
31772 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
31774 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
31775 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
31777 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
31778 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
31780 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
31781 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
31783 static void *_p_wxSizerTo_p_wxObject(void *x
) {
31784 return (void *)((wxObject
*) ((wxSizer
*) x
));
31786 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
31787 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
31789 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
31790 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
31792 static void *_p_wxPyPanelTo_p_wxObject(void *x
) {
31793 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyPanel
*) x
));
31795 static void *_p_wxEventTo_p_wxObject(void *x
) {
31796 return (void *)((wxObject
*) ((wxEvent
*) x
));
31798 static void *_p_wxFontDataTo_p_wxObject(void *x
) {
31799 return (void *)((wxObject
*) ((wxFontData
*) x
));
31801 static void *_p_wxPrintDataTo_p_wxObject(void *x
) {
31802 return (void *)((wxObject
*) ((wxPrintData
*) x
));
31804 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
31805 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
31807 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
31808 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
31810 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
31811 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
31813 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) {
31814 return (void *)((wxObject
*) ((wxLayoutAlgorithm
*) x
));
31816 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) {
31817 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTaskBarIcon
*) x
));
31819 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) {
31820 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
31822 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
31823 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
31825 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
31826 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
31828 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
31829 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
31831 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
31832 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
31834 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
31835 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
31837 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
31838 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
31840 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) {
31841 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
31843 static void *_p_wxControlTo_p_wxObject(void *x
) {
31844 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
31846 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
31847 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
31849 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) {
31850 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*)(wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
31852 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
31853 return (void *)((wxObject
*) ((wxFSFile
*) x
));
31855 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) {
31856 return (void *)((wxObject
*) ((wxFindReplaceData
*) x
));
31858 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
31859 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
31861 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) {
31862 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
31864 static void *_p_wxColourDataTo_p_wxObject(void *x
) {
31865 return (void *)((wxObject
*) ((wxColourData
*) x
));
31867 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
31868 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
31870 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
31871 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
31873 static void *_p_wxPyWindowTo_p_wxObject(void *x
) {
31874 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPyWindow
*) x
));
31876 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) {
31877 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
31879 static void *_p_wxFileDialogTo_p_wxObject(void *x
) {
31880 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
31882 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) {
31883 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
31885 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) {
31886 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
31888 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) {
31889 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
31891 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) {
31892 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
31894 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) {
31895 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
31897 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) {
31898 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
31900 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) {
31901 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
31903 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
31904 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
31906 static void *_p_wxPrinterTo_p_wxObject(void *x
) {
31907 return (void *)((wxObject
*) ((wxPrinter
*) x
));
31909 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
31910 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
31912 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
31913 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
31915 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
31916 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
31918 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
31919 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
31921 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
31922 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
31924 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
31925 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
31927 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
31928 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
31930 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
31931 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
31933 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
31934 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
31936 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
31937 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
31939 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
31940 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
31942 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
31943 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
31945 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
31946 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
31948 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
31949 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
31951 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
31952 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
31954 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
31955 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
31957 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
31958 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
31960 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
31961 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
31963 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
31964 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
31966 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
31967 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
31969 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
31970 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
31972 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
31973 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
31975 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
31976 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
31978 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
31979 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
31981 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) {
31982 return (void *)((wxObject
*) (wxEvent
*) ((wxCalculateLayoutEvent
*) x
));
31984 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) {
31985 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
31987 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) {
31988 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
31990 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
31991 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
31993 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
31994 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
31996 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) {
31997 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
31999 static void *_p_wxImageTo_p_wxObject(void *x
) {
32000 return (void *)((wxObject
*) ((wxImage
*) x
));
32002 static void *_p_wxFrameTo_p_wxObject(void *x
) {
32003 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxFrame
*) x
));
32005 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) {
32006 return (void *)((wxObject
*) ((wxPyPrintout
*) x
));
32008 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
32009 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
32011 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) {
32012 return (void *)((wxObject
*) (wxEvent
*) ((wxTaskBarIconEvent
*) x
));
32014 static void *_p_wxStatusBarTo_p_wxObject(void *x
) {
32015 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxStatusBar
*) x
));
32017 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) {
32018 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
32020 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
32021 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
32023 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
32024 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
32026 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
32027 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
32029 static void *_p_wxWindowTo_p_wxObject(void *x
) {
32030 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
32032 static void *_p_wxMenuTo_p_wxObject(void *x
) {
32033 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
32035 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
32036 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
32038 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) {
32039 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxScrolledWindow
*) x
));
32041 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) {
32042 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxTopLevelWindow
*) x
));
32044 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) {
32045 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplashScreenWindow
*) x
));
32047 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) {
32048 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSplitterWindow
*) x
));
32050 static void *_p_wxSashWindowTo_p_wxObject(void *x
) {
32051 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxSashWindow
*) x
));
32053 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) {
32054 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
32056 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) {
32057 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPopupWindow
*) x
));
32059 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) {
32060 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
32062 static void *_p_wxTipWindowTo_p_wxObject(void *x
) {
32063 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
32065 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) {
32066 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPyVScrolledWindow
*) x
));
32068 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) {
32069 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMDIClientWindow
*) x
));
32071 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) {
32072 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32074 static void *_p_wxSashEventTo_p_wxObject(void *x
) {
32075 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxSashEvent
*) x
));
32077 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) {
32078 return (void *)((wxObject
*) ((wxPrintPreview
*) x
));
32080 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) {
32081 return (void *)((wxObject
*) (wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
32083 static void *_p_wxPanelTo_p_wxObject(void *x
) {
32084 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxPanel
*) x
));
32086 static void *_p_wxDialogTo_p_wxObject(void *x
) {
32087 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*) ((wxDialog
*) x
));
32089 static void *_p_wxColourDialogTo_p_wxObject(void *x
) {
32090 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
32092 static void *_p_wxDirDialogTo_p_wxObject(void *x
) {
32093 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
32095 static void *_p_wxFontDialogTo_p_wxObject(void *x
) {
32096 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
32098 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) {
32099 return (void *)((wxObject
*) ((wxPageSetupDialog
*) x
));
32101 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) {
32102 return (void *)((wxObject
*) ((wxPrintDialog
*) x
));
32104 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
32105 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
32107 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
32108 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
32110 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
32111 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
32113 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
32114 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
32116 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
32117 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
32119 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
32120 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
32122 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
32123 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
32125 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
32126 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
32128 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
32129 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
32131 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) {
32132 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*) ((wxPreviewControlBar
*) x
));
32134 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) {
32135 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32137 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
32138 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
32140 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
32141 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
32143 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
32144 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
32146 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
32147 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
32149 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) {
32150 return (void *)((wxObject
*) ((wxPageSetupDialogData
*) x
));
32152 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) {
32153 return (void *)((wxObject
*) ((wxPrintDialogData
*) x
));
32155 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
32156 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
32158 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
32159 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
32161 static void *_p_wxPyVListBoxTo_p_wxPyVScrolledWindow(void *x
) {
32162 return (void *)((wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
32164 static void *_p_wxPyHtmlListBoxTo_p_wxPyVScrolledWindow(void *x
) {
32165 return (void *)((wxPyVScrolledWindow
*) (wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
32167 static void *_p_wxTipWindowTo_p_wxPyPopupTransientWindow(void *x
) {
32168 return (void *)((wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
32170 static void *_p_wxPyPopupTransientWindowTo_p_wxPopupWindow(void *x
) {
32171 return (void *)((wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
32173 static void *_p_wxTipWindowTo_p_wxPopupWindow(void *x
) {
32174 return (void *)((wxPopupWindow
*) (wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
32176 static void *_p_wxSashLayoutWindowTo_p_wxSashWindow(void *x
) {
32177 return (void *)((wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
32179 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) {
32180 return (void *)((wxTopLevelWindow
*) ((wxFrame
*) x
));
32182 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) {
32183 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMiniFrame
*) x
));
32185 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) {
32186 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFontDialog
*) x
));
32188 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) {
32189 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxDirDialog
*) x
));
32191 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) {
32192 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxColourDialog
*) x
));
32194 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) {
32195 return (void *)((wxTopLevelWindow
*) ((wxDialog
*) x
));
32197 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) {
32198 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxSplashScreen
*) x
));
32200 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) {
32201 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIParentFrame
*) x
));
32203 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) {
32204 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxMDIChildFrame
*) x
));
32206 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) {
32207 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxProgressDialog
*) x
));
32209 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) {
32210 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMessageDialog
*) x
));
32212 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) {
32213 return (void *)((wxTopLevelWindow
*) (wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
32215 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) {
32216 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxTextEntryDialog
*) x
));
32218 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
32219 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxSingleChoiceDialog
*) x
));
32221 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) {
32222 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxMultiChoiceDialog
*) x
));
32224 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) {
32225 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFileDialog
*) x
));
32227 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) {
32228 return (void *)((wxTopLevelWindow
*) (wxDialog
*) ((wxFindReplaceDialog
*) x
));
32230 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
32231 return (void *)((wxTopLevelWindow
*) (wxFrame
*) ((wxPreviewFrame
*) x
));
32233 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) {
32234 return (void *)((wxTopLevelWindow
*) (wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
32236 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) {
32237 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxSplashScreen
*) x
));
32239 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) {
32240 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMiniFrame
*) x
));
32242 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) {
32243 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyPanel
*) x
));
32245 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
32246 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
32248 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) {
32249 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFindReplaceDialog
*) x
));
32251 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) {
32252 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxProgressDialog
*) x
));
32254 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) {
32255 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMessageDialog
*) x
));
32257 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) {
32258 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*)(wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
32260 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) {
32261 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxTextEntryDialog
*) x
));
32263 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) {
32264 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxSingleChoiceDialog
*) x
));
32266 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) {
32267 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxMultiChoiceDialog
*) x
));
32269 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) {
32270 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFileDialog
*) x
));
32272 static void *_p_wxPanelTo_p_wxWindow(void *x
) {
32273 return (void *)((wxWindow
*) ((wxPanel
*) x
));
32275 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) {
32276 return (void *)((wxWindow
*) ((wxStatusBar
*) x
));
32278 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) {
32279 return (void *)((wxWindow
*) (wxPanel
*) ((wxPyVScrolledWindow
*) x
));
32281 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) {
32282 return (void *)((wxWindow
*) (wxPopupWindow
*)(wxPyPopupTransientWindow
*) ((wxTipWindow
*) x
));
32284 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) {
32285 return (void *)((wxWindow
*) (wxPopupWindow
*) ((wxPyPopupTransientWindow
*) x
));
32287 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) {
32288 return (void *)((wxWindow
*) ((wxPopupWindow
*) x
));
32290 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) {
32291 return (void *)((wxWindow
*) (wxSashWindow
*) ((wxSashLayoutWindow
*) x
));
32293 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) {
32294 return (void *)((wxWindow
*) (wxPanel
*) ((wxScrolledWindow
*) x
));
32296 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) {
32297 return (void *)((wxWindow
*) ((wxTopLevelWindow
*) x
));
32299 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) {
32300 return (void *)((wxWindow
*) ((wxSplashScreenWindow
*) x
));
32302 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) {
32303 return (void *)((wxWindow
*) ((wxSplitterWindow
*) x
));
32305 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) {
32306 return (void *)((wxWindow
*) ((wxSashWindow
*) x
));
32308 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) {
32309 return (void *)((wxWindow
*) ((wxMDIClientWindow
*) x
));
32311 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) {
32312 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32314 static void *_p_wxControlTo_p_wxWindow(void *x
) {
32315 return (void *)((wxWindow
*) ((wxControl
*) x
));
32317 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) {
32318 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxPreviewFrame
*) x
));
32320 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) {
32321 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*)(wxPreviewFrame
*) ((wxPyPreviewFrame
*) x
));
32323 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) {
32324 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIChildFrame
*) x
));
32326 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
32327 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
32329 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) {
32330 return (void *)((wxWindow
*) ((wxPyWindow
*) x
));
32332 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) {
32333 return (void *)((wxWindow
*) (wxPanel
*)(wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32335 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) {
32336 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
32338 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) {
32339 return (void *)((wxWindow
*) (wxPanel
*)(wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
32341 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) {
32342 return (void *)((wxWindow
*) (wxPanel
*) ((wxPreviewControlBar
*) x
));
32344 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) {
32345 return (void *)((wxWindow
*) (wxPanel
*)(wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32347 static void *_p_wxFrameTo_p_wxWindow(void *x
) {
32348 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxFrame
*) x
));
32350 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) {
32351 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxFontDialog
*) x
));
32353 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) {
32354 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxDirDialog
*) x
));
32356 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) {
32357 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxDialog
*) ((wxColourDialog
*) x
));
32359 static void *_p_wxDialogTo_p_wxWindow(void *x
) {
32360 return (void *)((wxWindow
*) (wxTopLevelWindow
*) ((wxDialog
*) x
));
32362 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) {
32363 return (void *)((wxWindow
*) (wxTopLevelWindow
*)(wxFrame
*) ((wxMDIParentFrame
*) x
));
32365 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) {
32366 return (void *)((wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32368 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) {
32369 return (void *)((wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32371 static void *_p_wxPyPrintPreviewTo_p_wxPrintPreview(void *x
) {
32372 return (void *)((wxPrintPreview
*) ((wxPyPrintPreview
*) x
));
32374 static void *_p_wxColourDialogTo_p_wxDialog(void *x
) {
32375 return (void *)((wxDialog
*) ((wxColourDialog
*) x
));
32377 static void *_p_wxDirDialogTo_p_wxDialog(void *x
) {
32378 return (void *)((wxDialog
*) ((wxDirDialog
*) x
));
32380 static void *_p_wxFontDialogTo_p_wxDialog(void *x
) {
32381 return (void *)((wxDialog
*) ((wxFontDialog
*) x
));
32383 static void *_p_wxFileDialogTo_p_wxDialog(void *x
) {
32384 return (void *)((wxDialog
*) ((wxFileDialog
*) x
));
32386 static void *_p_wxMultiChoiceDialogTo_p_wxDialog(void *x
) {
32387 return (void *)((wxDialog
*) ((wxMultiChoiceDialog
*) x
));
32389 static void *_p_wxSingleChoiceDialogTo_p_wxDialog(void *x
) {
32390 return (void *)((wxDialog
*) ((wxSingleChoiceDialog
*) x
));
32392 static void *_p_wxTextEntryDialogTo_p_wxDialog(void *x
) {
32393 return (void *)((wxDialog
*) ((wxTextEntryDialog
*) x
));
32395 static void *_p_wxPasswordEntryDialogTo_p_wxDialog(void *x
) {
32396 return (void *)((wxDialog
*) (wxTextEntryDialog
*) ((wxPasswordEntryDialog
*) x
));
32398 static void *_p_wxMessageDialogTo_p_wxDialog(void *x
) {
32399 return (void *)((wxDialog
*) ((wxMessageDialog
*) x
));
32401 static void *_p_wxFindReplaceDialogTo_p_wxDialog(void *x
) {
32402 return (void *)((wxDialog
*) ((wxFindReplaceDialog
*) x
));
32404 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) {
32405 return (void *)((wxPanel
*) ((wxScrolledWindow
*) x
));
32407 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) {
32408 return (void *)((wxPanel
*) ((wxPyVScrolledWindow
*) x
));
32410 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) {
32411 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPyScrolledWindow
*) x
));
32413 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) {
32414 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*) ((wxPyVListBox
*) x
));
32416 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) {
32417 return (void *)((wxPanel
*) (wxPyVScrolledWindow
*)(wxPyVListBox
*) ((wxPyHtmlListBox
*) x
));
32419 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) {
32420 return (void *)((wxPanel
*) ((wxPyPanel
*) x
));
32422 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) {
32423 return (void *)((wxPanel
*) (wxScrolledWindow
*) ((wxPreviewCanvas
*) x
));
32425 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) {
32426 return (void *)((wxPanel
*) ((wxPreviewControlBar
*) x
));
32428 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) {
32429 return (void *)((wxPanel
*) (wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32431 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
32432 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
32434 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
32435 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
32437 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
32438 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
32440 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
32441 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
32443 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
32444 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
32446 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) {
32447 return (void *)((wxCommandEvent
*) ((wxFindDialogEvent
*) x
));
32449 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
32450 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
32452 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
32453 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
32455 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) {
32456 return (void *)((wxCommandEvent
*) (wxNotifyEvent
*) ((wxSplitterEvent
*) x
));
32458 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
32459 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
32461 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
32462 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
32464 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) {
32465 return (void *)((wxCommandEvent
*) ((wxSashEvent
*) x
));
32467 static void *_p_wxPyPreviewControlBarTo_p_wxPreviewControlBar(void *x
) {
32468 return (void *)((wxPreviewControlBar
*) ((wxPyPreviewControlBar
*) x
));
32470 static swig_type_info _swigt__p_bool
= {"_p_bool", "bool *", 0, 0, (void*)0, 0};
32471 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
32472 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};
32473 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
32474 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
32475 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
32476 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxUIntPtr *", 0, 0, (void*)0, 0};
32477 static swig_type_info _swigt__p_wxArrayInt
= {"_p_wxArrayInt", "wxArrayInt *", 0, 0, (void*)0, 0};
32478 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
32479 static swig_type_info _swigt__p_wxCalculateLayoutEvent
= {"_p_wxCalculateLayoutEvent", "wxCalculateLayoutEvent *", 0, 0, (void*)0, 0};
32480 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
32481 static swig_type_info _swigt__p_wxColourData
= {"_p_wxColourData", "wxColourData *", 0, 0, (void*)0, 0};
32482 static swig_type_info _swigt__p_wxColourDialog
= {"_p_wxColourDialog", "wxColourDialog *", 0, 0, (void*)0, 0};
32483 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
32484 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
32485 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
32486 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
32487 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
32488 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
32489 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
32490 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
32491 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
32492 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
32493 static swig_type_info _swigt__p_wxDialog
= {"_p_wxDialog", "wxDialog *", 0, 0, (void*)0, 0};
32494 static swig_type_info _swigt__p_wxDirDialog
= {"_p_wxDirDialog", "wxDirDialog *", 0, 0, (void*)0, 0};
32495 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
32496 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
32497 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
32498 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
32499 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
32500 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
32501 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
32502 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
32503 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
32504 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
32505 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
32506 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
32507 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
32508 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
32509 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
32510 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
32511 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
32512 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
32513 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
32514 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
32515 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
32516 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
32517 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
32518 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
32519 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
32520 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
32521 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
32522 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
32523 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
32524 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
32525 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", 0, 0, 0, 0, 0};
32526 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
32527 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
32528 static swig_type_info _swigt__p_wxFileDialog
= {"_p_wxFileDialog", "wxFileDialog *", 0, 0, (void*)0, 0};
32529 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", "wxFileSystem *", 0, 0, (void*)0, 0};
32530 static swig_type_info _swigt__p_wxFindDialogEvent
= {"_p_wxFindDialogEvent", "wxFindDialogEvent *", 0, 0, (void*)0, 0};
32531 static swig_type_info _swigt__p_wxFindReplaceData
= {"_p_wxFindReplaceData", "wxFindReplaceData *", 0, 0, (void*)0, 0};
32532 static swig_type_info _swigt__p_wxFindReplaceDialog
= {"_p_wxFindReplaceDialog", "wxFindReplaceDialog *", 0, 0, (void*)0, 0};
32533 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
32534 static swig_type_info _swigt__p_wxFontData
= {"_p_wxFontData", "wxFontData *", 0, 0, (void*)0, 0};
32535 static swig_type_info _swigt__p_wxFontDialog
= {"_p_wxFontDialog", "wxFontDialog *", 0, 0, (void*)0, 0};
32536 static swig_type_info _swigt__p_wxFrame
= {"_p_wxFrame", "wxFrame *", 0, 0, (void*)0, 0};
32537 static swig_type_info _swigt__p_wxHtmlLinkInfo
= {"_p_wxHtmlLinkInfo", "wxHtmlLinkInfo *", 0, 0, (void*)0, 0};
32538 static swig_type_info _swigt__p_wxIcon
= {"_p_wxIcon", "wxIcon *", 0, 0, (void*)0, 0};
32539 static swig_type_info _swigt__p_wxIconBundle
= {"_p_wxIconBundle", "wxIconBundle *", 0, 0, (void*)0, 0};
32540 static swig_type_info _swigt__p_wxLayoutAlgorithm
= {"_p_wxLayoutAlgorithm", "wxLayoutAlgorithm *", 0, 0, (void*)0, 0};
32541 static swig_type_info _swigt__p_wxMDIChildFrame
= {"_p_wxMDIChildFrame", "wxMDIChildFrame *", 0, 0, (void*)0, 0};
32542 static swig_type_info _swigt__p_wxMDIClientWindow
= {"_p_wxMDIClientWindow", "wxMDIClientWindow *", 0, 0, (void*)0, 0};
32543 static swig_type_info _swigt__p_wxMDIParentFrame
= {"_p_wxMDIParentFrame", "wxMDIParentFrame *", 0, 0, (void*)0, 0};
32544 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", "wxMenu *", 0, 0, (void*)0, 0};
32545 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", "wxMenuBar *", 0, 0, (void*)0, 0};
32546 static swig_type_info _swigt__p_wxMessageDialog
= {"_p_wxMessageDialog", "wxMessageDialog *", 0, 0, (void*)0, 0};
32547 static swig_type_info _swigt__p_wxMiniFrame
= {"_p_wxMiniFrame", "wxMiniFrame *", 0, 0, (void*)0, 0};
32548 static swig_type_info _swigt__p_wxMultiChoiceDialog
= {"_p_wxMultiChoiceDialog", "wxMultiChoiceDialog *", 0, 0, (void*)0, 0};
32549 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", "wxNotifyEvent *", 0, 0, (void*)0, 0};
32550 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
32551 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
32552 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
32553 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
32554 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
32555 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
32556 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
32557 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
32558 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
32559 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
32560 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
32561 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
32562 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
32563 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
32564 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
32565 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
32566 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
32567 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
32568 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
32569 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
32570 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
32571 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
32572 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
32573 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
32574 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
32575 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
32576 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
32577 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
32578 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
32579 static swig_type_info _swigt__p_wxPageSetupDialog
= {"_p_wxPageSetupDialog", "wxPageSetupDialog *", 0, 0, (void*)0, 0};
32580 static swig_type_info _swigt__p_wxPageSetupDialogData
= {"_p_wxPageSetupDialogData", "wxPageSetupDialogData *", 0, 0, (void*)0, 0};
32581 static swig_type_info _swigt__p_wxPanel
= {"_p_wxPanel", "wxPanel *", 0, 0, (void*)0, 0};
32582 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
32583 static swig_type_info _swigt__p_wxPasswordEntryDialog
= {"_p_wxPasswordEntryDialog", "wxPasswordEntryDialog *", 0, 0, (void*)0, 0};
32584 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
32585 static swig_type_info _swigt__p_wxPopupWindow
= {"_p_wxPopupWindow", "wxPopupWindow *", 0, 0, (void*)0, 0};
32586 static swig_type_info _swigt__p_wxPreviewCanvas
= {"_p_wxPreviewCanvas", "wxPreviewCanvas *", 0, 0, (void*)0, 0};
32587 static swig_type_info _swigt__p_wxPreviewControlBar
= {"_p_wxPreviewControlBar", "wxPreviewControlBar *", 0, 0, (void*)0, 0};
32588 static swig_type_info _swigt__p_wxPreviewFrame
= {"_p_wxPreviewFrame", "wxPreviewFrame *", 0, 0, (void*)0, 0};
32589 static swig_type_info _swigt__p_wxPrintData
= {"_p_wxPrintData", "wxPrintData *", 0, 0, (void*)0, 0};
32590 static swig_type_info _swigt__p_wxPrintDialog
= {"_p_wxPrintDialog", "wxPrintDialog *", 0, 0, (void*)0, 0};
32591 static swig_type_info _swigt__p_wxPrintDialogData
= {"_p_wxPrintDialogData", "wxPrintDialogData *", 0, 0, (void*)0, 0};
32592 static swig_type_info _swigt__p_wxPrintPreview
= {"_p_wxPrintPreview", "wxPrintPreview *", 0, 0, (void*)0, 0};
32593 static swig_type_info _swigt__p_wxPrinter
= {"_p_wxPrinter", "wxPrinter *", 0, 0, (void*)0, 0};
32594 static swig_type_info _swigt__p_wxProgressDialog
= {"_p_wxProgressDialog", "wxProgressDialog *", 0, 0, (void*)0, 0};
32595 static swig_type_info _swigt__p_wxPyHtmlListBox
= {"_p_wxPyHtmlListBox", "wxPyHtmlListBox *", 0, 0, (void*)0, 0};
32596 static swig_type_info _swigt__p_wxPyPanel
= {"_p_wxPyPanel", "wxPyPanel *", 0, 0, (void*)0, 0};
32597 static swig_type_info _swigt__p_wxPyPopupTransientWindow
= {"_p_wxPyPopupTransientWindow", "wxPyPopupTransientWindow *", 0, 0, (void*)0, 0};
32598 static swig_type_info _swigt__p_wxPyPreviewControlBar
= {"_p_wxPyPreviewControlBar", "wxPyPreviewControlBar *", 0, 0, (void*)0, 0};
32599 static swig_type_info _swigt__p_wxPyPreviewFrame
= {"_p_wxPyPreviewFrame", "wxPyPreviewFrame *", 0, 0, (void*)0, 0};
32600 static swig_type_info _swigt__p_wxPyPrintPreview
= {"_p_wxPyPrintPreview", "wxPyPrintPreview *", 0, 0, (void*)0, 0};
32601 static swig_type_info _swigt__p_wxPyPrintout
= {"_p_wxPyPrintout", "wxPyPrintout *", 0, 0, (void*)0, 0};
32602 static swig_type_info _swigt__p_wxPyScrolledWindow
= {"_p_wxPyScrolledWindow", "wxPyScrolledWindow *", 0, 0, (void*)0, 0};
32603 static swig_type_info _swigt__p_wxPyTaskBarIcon
= {"_p_wxPyTaskBarIcon", "wxPyTaskBarIcon *", 0, 0, (void*)0, 0};
32604 static swig_type_info _swigt__p_wxPyVListBox
= {"_p_wxPyVListBox", "wxPyVListBox *", 0, 0, (void*)0, 0};
32605 static swig_type_info _swigt__p_wxPyVScrolledWindow
= {"_p_wxPyVScrolledWindow", "wxPyVScrolledWindow *", 0, 0, (void*)0, 0};
32606 static swig_type_info _swigt__p_wxPyWindow
= {"_p_wxPyWindow", "wxPyWindow *", 0, 0, (void*)0, 0};
32607 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
= {"_p_wxQueryLayoutInfoEvent", "wxQueryLayoutInfoEvent *", 0, 0, (void*)0, 0};
32608 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
32609 static swig_type_info _swigt__p_wxRegion
= {"_p_wxRegion", "wxRegion *", 0, 0, (void*)0, 0};
32610 static swig_type_info _swigt__p_wxSashEvent
= {"_p_wxSashEvent", "wxSashEvent *", 0, 0, (void*)0, 0};
32611 static swig_type_info _swigt__p_wxSashLayoutWindow
= {"_p_wxSashLayoutWindow", "wxSashLayoutWindow *", 0, 0, (void*)0, 0};
32612 static swig_type_info _swigt__p_wxSashWindow
= {"_p_wxSashWindow", "wxSashWindow *", 0, 0, (void*)0, 0};
32613 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", "wxScrollWinEvent *", 0, 0, (void*)0, 0};
32614 static swig_type_info _swigt__p_wxScrolledWindow
= {"_p_wxScrolledWindow", "wxScrolledWindow *", 0, 0, (void*)0, 0};
32615 static swig_type_info _swigt__p_wxSingleChoiceDialog
= {"_p_wxSingleChoiceDialog", "wxSingleChoiceDialog *", 0, 0, (void*)0, 0};
32616 static swig_type_info _swigt__p_wxSize
= {"_p_wxSize", "wxSize *", 0, 0, (void*)0, 0};
32617 static swig_type_info _swigt__p_wxSplashScreen
= {"_p_wxSplashScreen", "wxSplashScreen *", 0, 0, (void*)0, 0};
32618 static swig_type_info _swigt__p_wxSplashScreenWindow
= {"_p_wxSplashScreenWindow", "wxSplashScreenWindow *", 0, 0, (void*)0, 0};
32619 static swig_type_info _swigt__p_wxSplitterEvent
= {"_p_wxSplitterEvent", "wxSplitterEvent *", 0, 0, (void*)0, 0};
32620 static swig_type_info _swigt__p_wxSplitterWindow
= {"_p_wxSplitterWindow", "wxSplitterWindow *", 0, 0, (void*)0, 0};
32621 static swig_type_info _swigt__p_wxStatusBar
= {"_p_wxStatusBar", "wxStatusBar *", 0, 0, (void*)0, 0};
32622 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", "wxStdDialogButtonSizer *", 0, 0, (void*)0, 0};
32623 static swig_type_info _swigt__p_wxString
= {"_p_wxString", "wxString *", 0, 0, (void*)0, 0};
32624 static swig_type_info _swigt__p_wxTaskBarIcon
= {"_p_wxTaskBarIcon", "wxTaskBarIcon *", 0, 0, (void*)0, 0};
32625 static swig_type_info _swigt__p_wxTaskBarIconEvent
= {"_p_wxTaskBarIconEvent", "wxTaskBarIconEvent *", 0, 0, (void*)0, 0};
32626 static swig_type_info _swigt__p_wxTextEntryDialog
= {"_p_wxTextEntryDialog", "wxTextEntryDialog *", 0, 0, (void*)0, 0};
32627 static swig_type_info _swigt__p_wxTipWindow
= {"_p_wxTipWindow", "wxTipWindow *", 0, 0, (void*)0, 0};
32628 static swig_type_info _swigt__p_wxToolBar
= {"_p_wxToolBar", "wxToolBar *", 0, 0, (void*)0, 0};
32629 static swig_type_info _swigt__p_wxTopLevelWindow
= {"_p_wxTopLevelWindow", "wxTopLevelWindow *", 0, 0, (void*)0, 0};
32630 static swig_type_info _swigt__p_wxVisualAttributes
= {"_p_wxVisualAttributes", "wxVisualAttributes *", 0, 0, (void*)0, 0};
32631 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
32633 static swig_type_info
*swig_type_initial
[] = {
32636 &_swigt__p_form_ops_t
,
32638 &_swigt__p_unsigned_char
,
32639 &_swigt__p_unsigned_int
,
32640 &_swigt__p_unsigned_long
,
32641 &_swigt__p_wxANIHandler
,
32642 &_swigt__p_wxAcceleratorTable
,
32643 &_swigt__p_wxActivateEvent
,
32644 &_swigt__p_wxArrayInt
,
32645 &_swigt__p_wxBMPHandler
,
32646 &_swigt__p_wxBitmap
,
32647 &_swigt__p_wxBoxSizer
,
32648 &_swigt__p_wxCURHandler
,
32649 &_swigt__p_wxCalculateLayoutEvent
,
32650 &_swigt__p_wxChildFocusEvent
,
32651 &_swigt__p_wxCloseEvent
,
32652 &_swigt__p_wxColour
,
32653 &_swigt__p_wxColourData
,
32654 &_swigt__p_wxColourDialog
,
32655 &_swigt__p_wxCommandEvent
,
32656 &_swigt__p_wxContextMenuEvent
,
32657 &_swigt__p_wxControl
,
32658 &_swigt__p_wxControlWithItems
,
32660 &_swigt__p_wxDateEvent
,
32661 &_swigt__p_wxDialog
,
32662 &_swigt__p_wxDirDialog
,
32663 &_swigt__p_wxDisplayChangedEvent
,
32664 &_swigt__p_wxDropFilesEvent
,
32665 &_swigt__p_wxDuplexMode
,
32666 &_swigt__p_wxEraseEvent
,
32667 &_swigt__p_wxEvent
,
32668 &_swigt__p_wxEvtHandler
,
32669 &_swigt__p_wxFSFile
,
32670 &_swigt__p_wxFileDialog
,
32671 &_swigt__p_wxFileSystem
,
32672 &_swigt__p_wxFindDialogEvent
,
32673 &_swigt__p_wxFindReplaceData
,
32674 &_swigt__p_wxFindReplaceDialog
,
32675 &_swigt__p_wxFlexGridSizer
,
32676 &_swigt__p_wxFocusEvent
,
32678 &_swigt__p_wxFontData
,
32679 &_swigt__p_wxFontDialog
,
32680 &_swigt__p_wxFrame
,
32681 &_swigt__p_wxGBSizerItem
,
32682 &_swigt__p_wxGIFHandler
,
32683 &_swigt__p_wxGridBagSizer
,
32684 &_swigt__p_wxGridSizer
,
32685 &_swigt__p_wxHtmlLinkInfo
,
32686 &_swigt__p_wxICOHandler
,
32688 &_swigt__p_wxIconBundle
,
32689 &_swigt__p_wxIconizeEvent
,
32690 &_swigt__p_wxIdleEvent
,
32691 &_swigt__p_wxImage
,
32692 &_swigt__p_wxImageHandler
,
32693 &_swigt__p_wxIndividualLayoutConstraint
,
32694 &_swigt__p_wxInitDialogEvent
,
32695 &_swigt__p_wxJPEGHandler
,
32696 &_swigt__p_wxKeyEvent
,
32697 &_swigt__p_wxLayoutAlgorithm
,
32698 &_swigt__p_wxLayoutConstraints
,
32699 &_swigt__p_wxMDIChildFrame
,
32700 &_swigt__p_wxMDIClientWindow
,
32701 &_swigt__p_wxMDIParentFrame
,
32702 &_swigt__p_wxMaximizeEvent
,
32704 &_swigt__p_wxMenuBar
,
32705 &_swigt__p_wxMenuEvent
,
32706 &_swigt__p_wxMenuItem
,
32707 &_swigt__p_wxMessageDialog
,
32708 &_swigt__p_wxMiniFrame
,
32709 &_swigt__p_wxMouseCaptureChangedEvent
,
32710 &_swigt__p_wxMouseEvent
,
32711 &_swigt__p_wxMoveEvent
,
32712 &_swigt__p_wxMultiChoiceDialog
,
32713 &_swigt__p_wxNavigationKeyEvent
,
32714 &_swigt__p_wxNcPaintEvent
,
32715 &_swigt__p_wxNotifyEvent
,
32716 &_swigt__p_wxObject
,
32717 &_swigt__p_wxPCXHandler
,
32718 &_swigt__p_wxPNGHandler
,
32719 &_swigt__p_wxPNMHandler
,
32720 &_swigt__p_wxPageSetupDialog
,
32721 &_swigt__p_wxPageSetupDialogData
,
32722 &_swigt__p_wxPaintEvent
,
32723 &_swigt__p_wxPaletteChangedEvent
,
32724 &_swigt__p_wxPanel
,
32725 &_swigt__p_wxPaperSize
,
32726 &_swigt__p_wxPasswordEntryDialog
,
32727 &_swigt__p_wxPoint
,
32728 &_swigt__p_wxPopupWindow
,
32729 &_swigt__p_wxPreviewCanvas
,
32730 &_swigt__p_wxPreviewControlBar
,
32731 &_swigt__p_wxPreviewFrame
,
32732 &_swigt__p_wxPrintData
,
32733 &_swigt__p_wxPrintDialog
,
32734 &_swigt__p_wxPrintDialogData
,
32735 &_swigt__p_wxPrintPreview
,
32736 &_swigt__p_wxPrinter
,
32737 &_swigt__p_wxProgressDialog
,
32738 &_swigt__p_wxPyApp
,
32739 &_swigt__p_wxPyCommandEvent
,
32740 &_swigt__p_wxPyEvent
,
32741 &_swigt__p_wxPyHtmlListBox
,
32742 &_swigt__p_wxPyImageHandler
,
32743 &_swigt__p_wxPyPanel
,
32744 &_swigt__p_wxPyPopupTransientWindow
,
32745 &_swigt__p_wxPyPreviewControlBar
,
32746 &_swigt__p_wxPyPreviewFrame
,
32747 &_swigt__p_wxPyPrintPreview
,
32748 &_swigt__p_wxPyPrintout
,
32749 &_swigt__p_wxPyScrolledWindow
,
32750 &_swigt__p_wxPySizer
,
32751 &_swigt__p_wxPyTaskBarIcon
,
32752 &_swigt__p_wxPyVListBox
,
32753 &_swigt__p_wxPyVScrolledWindow
,
32754 &_swigt__p_wxPyValidator
,
32755 &_swigt__p_wxPyWindow
,
32756 &_swigt__p_wxQueryLayoutInfoEvent
,
32757 &_swigt__p_wxQueryNewPaletteEvent
,
32759 &_swigt__p_wxRegion
,
32760 &_swigt__p_wxSashEvent
,
32761 &_swigt__p_wxSashLayoutWindow
,
32762 &_swigt__p_wxSashWindow
,
32763 &_swigt__p_wxScrollEvent
,
32764 &_swigt__p_wxScrollWinEvent
,
32765 &_swigt__p_wxScrolledWindow
,
32766 &_swigt__p_wxSetCursorEvent
,
32767 &_swigt__p_wxShowEvent
,
32768 &_swigt__p_wxSingleChoiceDialog
,
32770 &_swigt__p_wxSizeEvent
,
32771 &_swigt__p_wxSizer
,
32772 &_swigt__p_wxSizerItem
,
32773 &_swigt__p_wxSplashScreen
,
32774 &_swigt__p_wxSplashScreenWindow
,
32775 &_swigt__p_wxSplitterEvent
,
32776 &_swigt__p_wxSplitterWindow
,
32777 &_swigt__p_wxStaticBoxSizer
,
32778 &_swigt__p_wxStatusBar
,
32779 &_swigt__p_wxStdDialogButtonSizer
,
32780 &_swigt__p_wxString
,
32781 &_swigt__p_wxSysColourChangedEvent
,
32782 &_swigt__p_wxTIFFHandler
,
32783 &_swigt__p_wxTaskBarIcon
,
32784 &_swigt__p_wxTaskBarIconEvent
,
32785 &_swigt__p_wxTextEntryDialog
,
32786 &_swigt__p_wxTipWindow
,
32787 &_swigt__p_wxToolBar
,
32788 &_swigt__p_wxTopLevelWindow
,
32789 &_swigt__p_wxUpdateUIEvent
,
32790 &_swigt__p_wxValidator
,
32791 &_swigt__p_wxVisualAttributes
,
32792 &_swigt__p_wxWindow
,
32793 &_swigt__p_wxWindowCreateEvent
,
32794 &_swigt__p_wxWindowDestroyEvent
,
32795 &_swigt__p_wxXPMHandler
,
32798 static swig_cast_info _swigc__p_bool
[] = { {&_swigt__p_bool
, 0, 0, 0},{0, 0, 0, 0}};
32799 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
32800 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
32801 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
32802 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
32803 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
32804 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
32805 static swig_cast_info _swigc__p_wxArrayInt
[] = { {&_swigt__p_wxArrayInt
, 0, 0, 0},{0, 0, 0, 0}};
32806 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
32807 static swig_cast_info _swigc__p_wxCalculateLayoutEvent
[] = { {&_swigt__p_wxCalculateLayoutEvent
, 0, 0, 0},{0, 0, 0, 0}};
32808 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
32809 static swig_cast_info _swigc__p_wxColourData
[] = { {&_swigt__p_wxColourData
, 0, 0, 0},{0, 0, 0, 0}};
32810 static swig_cast_info _swigc__p_wxColourDialog
[] = { {&_swigt__p_wxColourDialog
, 0, 0, 0},{0, 0, 0, 0}};
32811 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
32812 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
32813 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32814 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32815 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
32816 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32817 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
32818 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
32819 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}};
32820 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
32821 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}};
32822 static swig_cast_info _swigc__p_wxDirDialog
[] = { {&_swigt__p_wxDirDialog
, 0, 0, 0},{0, 0, 0, 0}};
32823 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
32824 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
32825 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32826 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32827 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
32828 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
32829 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
32830 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32831 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
32832 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
32833 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32834 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32835 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
32836 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
32837 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
32838 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
32839 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
32840 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32841 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32842 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32843 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
32844 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
32845 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
32846 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
32847 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32848 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
32849 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}};
32850 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
32851 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
32852 static swig_cast_info _swigc__p_wxControl
[] = {{&_swigt__p_wxControl
, 0, 0, 0},{0, 0, 0, 0}};
32853 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
32854 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
32855 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_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_wxTipWindow
, _p_wxTipWindowTo_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_wxColourDialog
, _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0}, {&_swigt__p_wxDialog
, _p_wxDialogTo_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}};
32856 static swig_cast_info _swigc__p_wxFileDialog
[] = { {&_swigt__p_wxFileDialog
, 0, 0, 0},{0, 0, 0, 0}};
32857 static swig_cast_info _swigc__p_wxFileSystem
[] = { {&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
32858 static swig_cast_info _swigc__p_wxFindDialogEvent
[] = { {&_swigt__p_wxFindDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
32859 static swig_cast_info _swigc__p_wxFindReplaceData
[] = { {&_swigt__p_wxFindReplaceData
, 0, 0, 0},{0, 0, 0, 0}};
32860 static swig_cast_info _swigc__p_wxFindReplaceDialog
[] = { {&_swigt__p_wxFindReplaceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32861 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
32862 static swig_cast_info _swigc__p_wxFontData
[] = { {&_swigt__p_wxFontData
, 0, 0, 0},{0, 0, 0, 0}};
32863 static swig_cast_info _swigc__p_wxFontDialog
[] = { {&_swigt__p_wxFontDialog
, 0, 0, 0},{0, 0, 0, 0}};
32864 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_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}};
32865 static swig_cast_info _swigc__p_wxHtmlLinkInfo
[] = { {&_swigt__p_wxHtmlLinkInfo
, 0, 0, 0},{0, 0, 0, 0}};
32866 static swig_cast_info _swigc__p_wxIcon
[] = { {&_swigt__p_wxIcon
, 0, 0, 0},{0, 0, 0, 0}};
32867 static swig_cast_info _swigc__p_wxIconBundle
[] = { {&_swigt__p_wxIconBundle
, 0, 0, 0},{0, 0, 0, 0}};
32868 static swig_cast_info _swigc__p_wxLayoutAlgorithm
[] = { {&_swigt__p_wxLayoutAlgorithm
, 0, 0, 0},{0, 0, 0, 0}};
32869 static swig_cast_info _swigc__p_wxMDIChildFrame
[] = { {&_swigt__p_wxMDIChildFrame
, 0, 0, 0},{0, 0, 0, 0}};
32870 static swig_cast_info _swigc__p_wxMDIClientWindow
[] = { {&_swigt__p_wxMDIClientWindow
, 0, 0, 0},{0, 0, 0, 0}};
32871 static swig_cast_info _swigc__p_wxMDIParentFrame
[] = { {&_swigt__p_wxMDIParentFrame
, 0, 0, 0},{0, 0, 0, 0}};
32872 static swig_cast_info _swigc__p_wxMenu
[] = { {&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
32873 static swig_cast_info _swigc__p_wxMenuBar
[] = { {&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
32874 static swig_cast_info _swigc__p_wxMessageDialog
[] = { {&_swigt__p_wxMessageDialog
, 0, 0, 0},{0, 0, 0, 0}};
32875 static swig_cast_info _swigc__p_wxMiniFrame
[] = { {&_swigt__p_wxMiniFrame
, 0, 0, 0},{0, 0, 0, 0}};
32876 static swig_cast_info _swigc__p_wxMultiChoiceDialog
[] = { {&_swigt__p_wxMultiChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32877 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}};
32878 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
32879 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
32880 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
32881 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
32882 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32883 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32884 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
32885 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
32886 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
32887 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
32888 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
32889 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
32890 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
32891 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
32892 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
32893 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
32894 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
32895 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
32896 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
32897 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
32898 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
32899 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
32900 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
32901 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
32902 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
32903 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
32904 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
32905 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
32906 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_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_wxTipWindow
, _p_wxTipWindowTo_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}};
32907 static swig_cast_info _swigc__p_wxPageSetupDialog
[] = { {&_swigt__p_wxPageSetupDialog
, 0, 0, 0},{0, 0, 0, 0}};
32908 static swig_cast_info _swigc__p_wxPageSetupDialogData
[] = { {&_swigt__p_wxPageSetupDialogData
, 0, 0, 0},{0, 0, 0, 0}};
32909 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}};
32910 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
32911 static swig_cast_info _swigc__p_wxPasswordEntryDialog
[] = { {&_swigt__p_wxPasswordEntryDialog
, 0, 0, 0},{0, 0, 0, 0}};
32912 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
32913 static swig_cast_info _swigc__p_wxPopupWindow
[] = { {&_swigt__p_wxPopupWindow
, 0, 0, 0}, {&_swigt__p_wxPyPopupTransientWindow
, _p_wxPyPopupTransientWindowTo_p_wxPopupWindow
, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxPopupWindow
, 0, 0},{0, 0, 0, 0}};
32914 static swig_cast_info _swigc__p_wxPreviewCanvas
[] = { {&_swigt__p_wxPreviewCanvas
, 0, 0, 0},{0, 0, 0, 0}};
32915 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}};
32916 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}};
32917 static swig_cast_info _swigc__p_wxPrintData
[] = { {&_swigt__p_wxPrintData
, 0, 0, 0},{0, 0, 0, 0}};
32918 static swig_cast_info _swigc__p_wxPrintDialog
[] = { {&_swigt__p_wxPrintDialog
, 0, 0, 0},{0, 0, 0, 0}};
32919 static swig_cast_info _swigc__p_wxPrintDialogData
[] = { {&_swigt__p_wxPrintDialogData
, 0, 0, 0},{0, 0, 0, 0}};
32920 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}};
32921 static swig_cast_info _swigc__p_wxPrinter
[] = { {&_swigt__p_wxPrinter
, 0, 0, 0},{0, 0, 0, 0}};
32922 static swig_cast_info _swigc__p_wxProgressDialog
[] = { {&_swigt__p_wxProgressDialog
, 0, 0, 0},{0, 0, 0, 0}};
32923 static swig_cast_info _swigc__p_wxPyHtmlListBox
[] = { {&_swigt__p_wxPyHtmlListBox
, 0, 0, 0},{0, 0, 0, 0}};
32924 static swig_cast_info _swigc__p_wxPyPanel
[] = { {&_swigt__p_wxPyPanel
, 0, 0, 0},{0, 0, 0, 0}};
32925 static swig_cast_info _swigc__p_wxPyPopupTransientWindow
[] = { {&_swigt__p_wxPyPopupTransientWindow
, 0, 0, 0}, {&_swigt__p_wxTipWindow
, _p_wxTipWindowTo_p_wxPyPopupTransientWindow
, 0, 0},{0, 0, 0, 0}};
32926 static swig_cast_info _swigc__p_wxPyPreviewControlBar
[] = { {&_swigt__p_wxPyPreviewControlBar
, 0, 0, 0},{0, 0, 0, 0}};
32927 static swig_cast_info _swigc__p_wxPyPreviewFrame
[] = { {&_swigt__p_wxPyPreviewFrame
, 0, 0, 0},{0, 0, 0, 0}};
32928 static swig_cast_info _swigc__p_wxPyPrintPreview
[] = { {&_swigt__p_wxPyPrintPreview
, 0, 0, 0},{0, 0, 0, 0}};
32929 static swig_cast_info _swigc__p_wxPyPrintout
[] = { {&_swigt__p_wxPyPrintout
, 0, 0, 0},{0, 0, 0, 0}};
32930 static swig_cast_info _swigc__p_wxPyScrolledWindow
[] = { {&_swigt__p_wxPyScrolledWindow
, 0, 0, 0},{0, 0, 0, 0}};
32931 static swig_cast_info _swigc__p_wxPyTaskBarIcon
[] = { {&_swigt__p_wxPyTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
32932 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}};
32933 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}};
32934 static swig_cast_info _swigc__p_wxPyWindow
[] = { {&_swigt__p_wxPyWindow
, 0, 0, 0},{0, 0, 0, 0}};
32935 static swig_cast_info _swigc__p_wxQueryLayoutInfoEvent
[] = { {&_swigt__p_wxQueryLayoutInfoEvent
, 0, 0, 0},{0, 0, 0, 0}};
32936 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
32937 static swig_cast_info _swigc__p_wxRegion
[] = { {&_swigt__p_wxRegion
, 0, 0, 0},{0, 0, 0, 0}};
32938 static swig_cast_info _swigc__p_wxSashEvent
[] = { {&_swigt__p_wxSashEvent
, 0, 0, 0},{0, 0, 0, 0}};
32939 static swig_cast_info _swigc__p_wxSashLayoutWindow
[] = { {&_swigt__p_wxSashLayoutWindow
, 0, 0, 0},{0, 0, 0, 0}};
32940 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}};
32941 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = { {&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
32942 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}};
32943 static swig_cast_info _swigc__p_wxSingleChoiceDialog
[] = { {&_swigt__p_wxSingleChoiceDialog
, 0, 0, 0},{0, 0, 0, 0}};
32944 static swig_cast_info _swigc__p_wxSize
[] = { {&_swigt__p_wxSize
, 0, 0, 0},{0, 0, 0, 0}};
32945 static swig_cast_info _swigc__p_wxSplashScreen
[] = { {&_swigt__p_wxSplashScreen
, 0, 0, 0},{0, 0, 0, 0}};
32946 static swig_cast_info _swigc__p_wxSplashScreenWindow
[] = { {&_swigt__p_wxSplashScreenWindow
, 0, 0, 0},{0, 0, 0, 0}};
32947 static swig_cast_info _swigc__p_wxSplitterEvent
[] = { {&_swigt__p_wxSplitterEvent
, 0, 0, 0},{0, 0, 0, 0}};
32948 static swig_cast_info _swigc__p_wxSplitterWindow
[] = { {&_swigt__p_wxSplitterWindow
, 0, 0, 0},{0, 0, 0, 0}};
32949 static swig_cast_info _swigc__p_wxStatusBar
[] = { {&_swigt__p_wxStatusBar
, 0, 0, 0},{0, 0, 0, 0}};
32950 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = { {&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
32951 static swig_cast_info _swigc__p_wxString
[] = { {&_swigt__p_wxString
, 0, 0, 0},{0, 0, 0, 0}};
32952 static swig_cast_info _swigc__p_wxTaskBarIcon
[] = { {&_swigt__p_wxTaskBarIcon
, 0, 0, 0},{0, 0, 0, 0}};
32953 static swig_cast_info _swigc__p_wxTaskBarIconEvent
[] = { {&_swigt__p_wxTaskBarIconEvent
, 0, 0, 0},{0, 0, 0, 0}};
32954 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}};
32955 static swig_cast_info _swigc__p_wxTipWindow
[] = { {&_swigt__p_wxTipWindow
, 0, 0, 0},{0, 0, 0, 0}};
32956 static swig_cast_info _swigc__p_wxToolBar
[] = { {&_swigt__p_wxToolBar
, 0, 0, 0},{0, 0, 0, 0}};
32957 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_wxTopLevelWindow
, 0, 0, 0}, {&_swigt__p_wxMDIParentFrame
, _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxMDIChildFrame
, _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxFileDialog
, _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0}, {&_swigt__p_wxProgressDialog
, _p_wxProgressDialogTo_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}};
32958 static swig_cast_info _swigc__p_wxVisualAttributes
[] = { {&_swigt__p_wxVisualAttributes
, 0, 0, 0},{0, 0, 0, 0}};
32959 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_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_wxTipWindow
, _p_wxTipWindowTo_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}};
32961 static swig_cast_info
*swig_cast_initial
[] = {
32964 _swigc__p_form_ops_t
,
32966 _swigc__p_unsigned_char
,
32967 _swigc__p_unsigned_int
,
32968 _swigc__p_unsigned_long
,
32969 _swigc__p_wxANIHandler
,
32970 _swigc__p_wxAcceleratorTable
,
32971 _swigc__p_wxActivateEvent
,
32972 _swigc__p_wxArrayInt
,
32973 _swigc__p_wxBMPHandler
,
32974 _swigc__p_wxBitmap
,
32975 _swigc__p_wxBoxSizer
,
32976 _swigc__p_wxCURHandler
,
32977 _swigc__p_wxCalculateLayoutEvent
,
32978 _swigc__p_wxChildFocusEvent
,
32979 _swigc__p_wxCloseEvent
,
32980 _swigc__p_wxColour
,
32981 _swigc__p_wxColourData
,
32982 _swigc__p_wxColourDialog
,
32983 _swigc__p_wxCommandEvent
,
32984 _swigc__p_wxContextMenuEvent
,
32985 _swigc__p_wxControl
,
32986 _swigc__p_wxControlWithItems
,
32988 _swigc__p_wxDateEvent
,
32989 _swigc__p_wxDialog
,
32990 _swigc__p_wxDirDialog
,
32991 _swigc__p_wxDisplayChangedEvent
,
32992 _swigc__p_wxDropFilesEvent
,
32993 _swigc__p_wxDuplexMode
,
32994 _swigc__p_wxEraseEvent
,
32996 _swigc__p_wxEvtHandler
,
32997 _swigc__p_wxFSFile
,
32998 _swigc__p_wxFileDialog
,
32999 _swigc__p_wxFileSystem
,
33000 _swigc__p_wxFindDialogEvent
,
33001 _swigc__p_wxFindReplaceData
,
33002 _swigc__p_wxFindReplaceDialog
,
33003 _swigc__p_wxFlexGridSizer
,
33004 _swigc__p_wxFocusEvent
,
33006 _swigc__p_wxFontData
,
33007 _swigc__p_wxFontDialog
,
33009 _swigc__p_wxGBSizerItem
,
33010 _swigc__p_wxGIFHandler
,
33011 _swigc__p_wxGridBagSizer
,
33012 _swigc__p_wxGridSizer
,
33013 _swigc__p_wxHtmlLinkInfo
,
33014 _swigc__p_wxICOHandler
,
33016 _swigc__p_wxIconBundle
,
33017 _swigc__p_wxIconizeEvent
,
33018 _swigc__p_wxIdleEvent
,
33020 _swigc__p_wxImageHandler
,
33021 _swigc__p_wxIndividualLayoutConstraint
,
33022 _swigc__p_wxInitDialogEvent
,
33023 _swigc__p_wxJPEGHandler
,
33024 _swigc__p_wxKeyEvent
,
33025 _swigc__p_wxLayoutAlgorithm
,
33026 _swigc__p_wxLayoutConstraints
,
33027 _swigc__p_wxMDIChildFrame
,
33028 _swigc__p_wxMDIClientWindow
,
33029 _swigc__p_wxMDIParentFrame
,
33030 _swigc__p_wxMaximizeEvent
,
33032 _swigc__p_wxMenuBar
,
33033 _swigc__p_wxMenuEvent
,
33034 _swigc__p_wxMenuItem
,
33035 _swigc__p_wxMessageDialog
,
33036 _swigc__p_wxMiniFrame
,
33037 _swigc__p_wxMouseCaptureChangedEvent
,
33038 _swigc__p_wxMouseEvent
,
33039 _swigc__p_wxMoveEvent
,
33040 _swigc__p_wxMultiChoiceDialog
,
33041 _swigc__p_wxNavigationKeyEvent
,
33042 _swigc__p_wxNcPaintEvent
,
33043 _swigc__p_wxNotifyEvent
,
33044 _swigc__p_wxObject
,
33045 _swigc__p_wxPCXHandler
,
33046 _swigc__p_wxPNGHandler
,
33047 _swigc__p_wxPNMHandler
,
33048 _swigc__p_wxPageSetupDialog
,
33049 _swigc__p_wxPageSetupDialogData
,
33050 _swigc__p_wxPaintEvent
,
33051 _swigc__p_wxPaletteChangedEvent
,
33053 _swigc__p_wxPaperSize
,
33054 _swigc__p_wxPasswordEntryDialog
,
33056 _swigc__p_wxPopupWindow
,
33057 _swigc__p_wxPreviewCanvas
,
33058 _swigc__p_wxPreviewControlBar
,
33059 _swigc__p_wxPreviewFrame
,
33060 _swigc__p_wxPrintData
,
33061 _swigc__p_wxPrintDialog
,
33062 _swigc__p_wxPrintDialogData
,
33063 _swigc__p_wxPrintPreview
,
33064 _swigc__p_wxPrinter
,
33065 _swigc__p_wxProgressDialog
,
33067 _swigc__p_wxPyCommandEvent
,
33068 _swigc__p_wxPyEvent
,
33069 _swigc__p_wxPyHtmlListBox
,
33070 _swigc__p_wxPyImageHandler
,
33071 _swigc__p_wxPyPanel
,
33072 _swigc__p_wxPyPopupTransientWindow
,
33073 _swigc__p_wxPyPreviewControlBar
,
33074 _swigc__p_wxPyPreviewFrame
,
33075 _swigc__p_wxPyPrintPreview
,
33076 _swigc__p_wxPyPrintout
,
33077 _swigc__p_wxPyScrolledWindow
,
33078 _swigc__p_wxPySizer
,
33079 _swigc__p_wxPyTaskBarIcon
,
33080 _swigc__p_wxPyVListBox
,
33081 _swigc__p_wxPyVScrolledWindow
,
33082 _swigc__p_wxPyValidator
,
33083 _swigc__p_wxPyWindow
,
33084 _swigc__p_wxQueryLayoutInfoEvent
,
33085 _swigc__p_wxQueryNewPaletteEvent
,
33087 _swigc__p_wxRegion
,
33088 _swigc__p_wxSashEvent
,
33089 _swigc__p_wxSashLayoutWindow
,
33090 _swigc__p_wxSashWindow
,
33091 _swigc__p_wxScrollEvent
,
33092 _swigc__p_wxScrollWinEvent
,
33093 _swigc__p_wxScrolledWindow
,
33094 _swigc__p_wxSetCursorEvent
,
33095 _swigc__p_wxShowEvent
,
33096 _swigc__p_wxSingleChoiceDialog
,
33098 _swigc__p_wxSizeEvent
,
33100 _swigc__p_wxSizerItem
,
33101 _swigc__p_wxSplashScreen
,
33102 _swigc__p_wxSplashScreenWindow
,
33103 _swigc__p_wxSplitterEvent
,
33104 _swigc__p_wxSplitterWindow
,
33105 _swigc__p_wxStaticBoxSizer
,
33106 _swigc__p_wxStatusBar
,
33107 _swigc__p_wxStdDialogButtonSizer
,
33108 _swigc__p_wxString
,
33109 _swigc__p_wxSysColourChangedEvent
,
33110 _swigc__p_wxTIFFHandler
,
33111 _swigc__p_wxTaskBarIcon
,
33112 _swigc__p_wxTaskBarIconEvent
,
33113 _swigc__p_wxTextEntryDialog
,
33114 _swigc__p_wxTipWindow
,
33115 _swigc__p_wxToolBar
,
33116 _swigc__p_wxTopLevelWindow
,
33117 _swigc__p_wxUpdateUIEvent
,
33118 _swigc__p_wxValidator
,
33119 _swigc__p_wxVisualAttributes
,
33120 _swigc__p_wxWindow
,
33121 _swigc__p_wxWindowCreateEvent
,
33122 _swigc__p_wxWindowDestroyEvent
,
33123 _swigc__p_wxXPMHandler
,
33127 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
33129 static swig_const_info swig_const_table
[] = {
33130 {0, 0, 0, 0.0, 0, 0}};
33135 /* -----------------------------------------------------------------------------
33136 * Type initialization:
33137 * This problem is tough by the requirement that no dynamic
33138 * memory is used. Also, since swig_type_info structures store pointers to
33139 * swig_cast_info structures and swig_cast_info structures store pointers back
33140 * to swig_type_info structures, we need some lookup code at initialization.
33141 * The idea is that swig generates all the structures that are needed.
33142 * The runtime then collects these partially filled structures.
33143 * The SWIG_InitializeModule function takes these initial arrays out of
33144 * swig_module, and does all the lookup, filling in the swig_module.types
33145 * array with the correct data and linking the correct swig_cast_info
33146 * structures together.
33148 * The generated swig_type_info structures are assigned staticly to an initial
33149 * array. We just loop though that array, and handle each type individually.
33150 * First we lookup if this type has been already loaded, and if so, use the
33151 * loaded structure instead of the generated one. Then we have to fill in the
33152 * cast linked list. The cast data is initially stored in something like a
33153 * two-dimensional array. Each row corresponds to a type (there are the same
33154 * number of rows as there are in the swig_type_initial array). Each entry in
33155 * a column is one of the swig_cast_info structures for that type.
33156 * The cast_initial array is actually an array of arrays, because each row has
33157 * a variable number of columns. So to actually build the cast linked list,
33158 * we find the array of casts associated with the type, and loop through it
33159 * adding the casts to the list. The one last trick we need to do is making
33160 * sure the type pointer in the swig_cast_info struct is correct.
33162 * First off, we lookup the cast->type name to see if it is already loaded.
33163 * There are three cases to handle:
33164 * 1) If the cast->type has already been loaded AND the type we are adding
33165 * casting info to has not been loaded (it is in this module), THEN we
33166 * replace the cast->type pointer with the type pointer that has already
33168 * 2) If BOTH types (the one we are adding casting info to, and the
33169 * cast->type) are loaded, THEN the cast info has already been loaded by
33170 * the previous module so we just ignore it.
33171 * 3) Finally, if cast->type has not already been loaded, then we add that
33172 * swig_cast_info to the linked list (because the cast->type) pointer will
33174 * ----------------------------------------------------------------------------- */
33184 #define SWIGRUNTIME_DEBUG
33188 SWIG_InitializeModule(void *clientdata
) {
33190 swig_module_info
*module_head
;
33191 static int init_run
= 0;
33193 clientdata
= clientdata
;
33195 if (init_run
) return;
33198 /* Initialize the swig_module */
33199 swig_module
.type_initial
= swig_type_initial
;
33200 swig_module
.cast_initial
= swig_cast_initial
;
33202 /* Try and load any already created modules */
33203 module_head
= SWIG_GetModule(clientdata
);
33205 swig_module
.next
= module_head
->next
;
33206 module_head
->next
= &swig_module
;
33208 /* This is the first module loaded */
33209 swig_module
.next
= &swig_module
;
33210 SWIG_SetModule(clientdata
, &swig_module
);
33213 /* Now work on filling in swig_module.types */
33214 #ifdef SWIGRUNTIME_DEBUG
33215 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
33217 for (i
= 0; i
< swig_module
.size
; ++i
) {
33218 swig_type_info
*type
= 0;
33219 swig_type_info
*ret
;
33220 swig_cast_info
*cast
;
33222 #ifdef SWIGRUNTIME_DEBUG
33223 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
33226 /* if there is another module already loaded */
33227 if (swig_module
.next
!= &swig_module
) {
33228 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
33231 /* Overwrite clientdata field */
33232 #ifdef SWIGRUNTIME_DEBUG
33233 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
33235 if (swig_module
.type_initial
[i
]->clientdata
) {
33236 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
33237 #ifdef SWIGRUNTIME_DEBUG
33238 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
33242 type
= swig_module
.type_initial
[i
];
33245 /* Insert casting types */
33246 cast
= swig_module
.cast_initial
[i
];
33247 while (cast
->type
) {
33248 /* Don't need to add information already in the list */
33250 #ifdef SWIGRUNTIME_DEBUG
33251 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
33253 if (swig_module
.next
!= &swig_module
) {
33254 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
33255 #ifdef SWIGRUNTIME_DEBUG
33256 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
33260 if (type
== swig_module
.type_initial
[i
]) {
33261 #ifdef SWIGRUNTIME_DEBUG
33262 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
33267 /* Check for casting already in the list */
33268 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
33269 #ifdef SWIGRUNTIME_DEBUG
33270 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
33272 if (!ocast
) ret
= 0;
33277 #ifdef SWIGRUNTIME_DEBUG
33278 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
33281 type
->cast
->prev
= cast
;
33282 cast
->next
= type
->cast
;
33288 /* Set entry in modules->types array equal to the type */
33289 swig_module
.types
[i
] = type
;
33291 swig_module
.types
[i
] = 0;
33293 #ifdef SWIGRUNTIME_DEBUG
33294 printf("**** SWIG_InitializeModule: Cast List ******\n");
33295 for (i
= 0; i
< swig_module
.size
; ++i
) {
33297 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
33298 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
33299 while (cast
->type
) {
33300 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
33304 printf("---- Total casts: %d\n",j
);
33306 printf("**** SWIG_InitializeModule: Cast List ******\n");
33310 /* This function will propagate the clientdata field of type to
33311 * any new swig_type_info structures that have been added into the list
33312 * of equivalent types. It is like calling
33313 * SWIG_TypeClientData(type, clientdata) a second time.
33316 SWIG_PropagateClientData(void) {
33318 swig_cast_info
*equiv
;
33319 static int init_run
= 0;
33321 if (init_run
) return;
33324 for (i
= 0; i
< swig_module
.size
; i
++) {
33325 if (swig_module
.types
[i
]->clientdata
) {
33326 equiv
= swig_module
.types
[i
]->cast
;
33328 if (!equiv
->converter
) {
33329 if (equiv
->type
&& !equiv
->type
->clientdata
)
33330 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
33332 equiv
= equiv
->next
;
33352 /* Python-specific SWIG API */
33353 #define SWIG_newvarlink() SWIG_Python_newvarlink()
33354 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
33355 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
33357 /* -----------------------------------------------------------------------------
33358 * global variable support code.
33359 * ----------------------------------------------------------------------------- */
33361 typedef struct swig_globalvar
{
33362 char *name
; /* Name of global variable */
33363 PyObject
*(*get_attr
)(void); /* Return the current value */
33364 int (*set_attr
)(PyObject
*); /* Set the value */
33365 struct swig_globalvar
*next
;
33368 typedef struct swig_varlinkobject
{
33370 swig_globalvar
*vars
;
33371 } swig_varlinkobject
;
33373 SWIGINTERN PyObject
*
33374 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
33375 return PyString_FromString("<Swig global variables>");
33378 SWIGINTERN PyObject
*
33379 swig_varlink_str(swig_varlinkobject
*v
) {
33380 PyObject
*str
= PyString_FromString("(");
33381 swig_globalvar
*var
;
33382 for (var
= v
->vars
; var
; var
=var
->next
) {
33383 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
33384 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
33386 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
33391 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
33392 PyObject
*str
= swig_varlink_str(v
);
33393 fprintf(fp
,"Swig global variables ");
33394 fprintf(fp
,"%s\n", PyString_AsString(str
));
33400 swig_varlink_dealloc(swig_varlinkobject
*v
) {
33401 swig_globalvar
*var
= v
->vars
;
33403 swig_globalvar
*n
= var
->next
;
33410 SWIGINTERN PyObject
*
33411 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
33412 PyObject
*res
= NULL
;
33413 swig_globalvar
*var
= v
->vars
;
33415 if (strcmp(var
->name
,n
) == 0) {
33416 res
= (*var
->get_attr
)();
33421 if (res
== NULL
&& !PyErr_Occurred()) {
33422 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
33428 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
33430 swig_globalvar
*var
= v
->vars
;
33432 if (strcmp(var
->name
,n
) == 0) {
33433 res
= (*var
->set_attr
)(p
);
33438 if (res
== 1 && !PyErr_Occurred()) {
33439 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
33444 SWIGINTERN PyTypeObject
*
33445 swig_varlink_type(void) {
33446 static char varlink__doc__
[] = "Swig var link object";
33447 static PyTypeObject varlink_type
;
33448 static int type_init
= 0;
33450 const PyTypeObject tmp
33452 PyObject_HEAD_INIT(NULL
)
33453 0, /* Number of items in variable part (ob_size) */
33454 (char *)"swigvarlink", /* Type name (tp_name) */
33455 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
33456 0, /* Itemsize (tp_itemsize) */
33457 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
33458 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
33459 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
33460 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
33461 0, /* tp_compare */
33462 (reprfunc
) swig_varlink_repr
, /* tp_repr */
33463 0, /* tp_as_number */
33464 0, /* tp_as_sequence */
33465 0, /* tp_as_mapping */
33468 (reprfunc
)swig_varlink_str
, /* tp_str */
33469 0, /* tp_getattro */
33470 0, /* tp_setattro */
33471 0, /* tp_as_buffer */
33473 varlink__doc__
, /* tp_doc */
33474 0, /* tp_traverse */
33476 0, /* tp_richcompare */
33477 0, /* tp_weaklistoffset */
33478 #if PY_VERSION_HEX >= 0x02020000
33479 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
33481 #if PY_VERSION_HEX >= 0x02030000
33484 #ifdef COUNT_ALLOCS
33485 0,0,0,0 /* tp_alloc -> tp_next */
33488 varlink_type
= tmp
;
33489 varlink_type
.ob_type
= &PyType_Type
;
33492 return &varlink_type
;
33495 /* Create a variable linking object for use later */
33496 SWIGINTERN PyObject
*
33497 SWIG_Python_newvarlink(void) {
33498 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
33502 return ((PyObject
*) result
);
33506 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
33507 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
33508 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
33510 size_t size
= strlen(name
)+1;
33511 gv
->name
= (char *)malloc(size
);
33513 strncpy(gv
->name
,name
,size
);
33514 gv
->get_attr
= get_attr
;
33515 gv
->set_attr
= set_attr
;
33516 gv
->next
= v
->vars
;
33522 SWIGINTERN PyObject
*
33524 static PyObject
*_SWIG_globals
= 0;
33525 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
33526 return _SWIG_globals
;
33529 /* -----------------------------------------------------------------------------
33530 * constants/methods manipulation
33531 * ----------------------------------------------------------------------------- */
33533 /* Install Constants */
33535 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
33538 for (i
= 0; constants
[i
].type
; ++i
) {
33539 switch(constants
[i
].type
) {
33540 case SWIG_PY_POINTER
:
33541 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
33543 case SWIG_PY_BINARY
:
33544 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
33551 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
33557 /* -----------------------------------------------------------------------------*/
33558 /* Fix SwigMethods to carry the callback ptrs when needed */
33559 /* -----------------------------------------------------------------------------*/
33562 SWIG_Python_FixMethods(PyMethodDef
*methods
,
33563 swig_const_info
*const_table
,
33564 swig_type_info
**types
,
33565 swig_type_info
**types_initial
) {
33567 for (i
= 0; methods
[i
].ml_name
; ++i
) {
33568 char *c
= methods
[i
].ml_doc
;
33569 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
33571 swig_const_info
*ci
= 0;
33572 char *name
= c
+ 10;
33573 for (j
= 0; const_table
[j
].type
; ++j
) {
33574 if (strncmp(const_table
[j
].name
, name
,
33575 strlen(const_table
[j
].name
)) == 0) {
33576 ci
= &(const_table
[j
]);
33581 size_t shift
= (ci
->ptype
) - types
;
33582 swig_type_info
*ty
= types_initial
[shift
];
33583 size_t ldoc
= (c
- methods
[i
].ml_doc
);
33584 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
33585 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
33588 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
33590 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
33592 strncpy(buff
, "swig_ptr: ", 10);
33594 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
33595 methods
[i
].ml_doc
= ndoc
;
33607 /* -----------------------------------------------------------------------------*
33608 * Partial Init method
33609 * -----------------------------------------------------------------------------*/
33614 SWIGEXPORT
void SWIG_init(void) {
33617 /* Fix SwigMethods to carry the callback ptrs when needed */
33618 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
33620 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
33621 d
= PyModule_GetDict(m
);
33623 SWIG_InitializeModule(0);
33624 SWIG_InstallConstants(d
,swig_const_table
);
33627 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
33628 SWIG_addvarlink(SWIG_globals(),(char*)"FrameNameStr",FrameNameStr_get
, FrameNameStr_set
);
33629 SWIG_addvarlink(SWIG_globals(),(char*)"DialogNameStr",DialogNameStr_get
, DialogNameStr_set
);
33630 SWIG_addvarlink(SWIG_globals(),(char*)"StatusLineNameStr",StatusLineNameStr_get
, StatusLineNameStr_set
);
33631 SWIG_addvarlink(SWIG_globals(),(char*)"ToolBarNameStr",ToolBarNameStr_get
, ToolBarNameStr_set
);
33632 SWIG_Python_SetConstant(d
, "STAY_ON_TOP",SWIG_From_int(static_cast< int >(wxSTAY_ON_TOP
)));
33633 SWIG_Python_SetConstant(d
, "ICONIZE",SWIG_From_int(static_cast< int >(wxICONIZE
)));
33634 SWIG_Python_SetConstant(d
, "MINIMIZE",SWIG_From_int(static_cast< int >(wxMINIMIZE
)));
33635 SWIG_Python_SetConstant(d
, "MAXIMIZE",SWIG_From_int(static_cast< int >(wxMAXIMIZE
)));
33636 SWIG_Python_SetConstant(d
, "CLOSE_BOX",SWIG_From_int(static_cast< int >(wxCLOSE_BOX
)));
33637 SWIG_Python_SetConstant(d
, "THICK_FRAME",SWIG_From_int(static_cast< int >(wxTHICK_FRAME
)));
33638 SWIG_Python_SetConstant(d
, "SYSTEM_MENU",SWIG_From_int(static_cast< int >(wxSYSTEM_MENU
)));
33639 SWIG_Python_SetConstant(d
, "MINIMIZE_BOX",SWIG_From_int(static_cast< int >(wxMINIMIZE_BOX
)));
33640 SWIG_Python_SetConstant(d
, "MAXIMIZE_BOX",SWIG_From_int(static_cast< int >(wxMAXIMIZE_BOX
)));
33641 SWIG_Python_SetConstant(d
, "TINY_CAPTION_HORIZ",SWIG_From_int(static_cast< int >(wxTINY_CAPTION_HORIZ
)));
33642 SWIG_Python_SetConstant(d
, "TINY_CAPTION_VERT",SWIG_From_int(static_cast< int >(wxTINY_CAPTION_VERT
)));
33643 SWIG_Python_SetConstant(d
, "RESIZE_BOX",SWIG_From_int(static_cast< int >(wxRESIZE_BOX
)));
33644 SWIG_Python_SetConstant(d
, "RESIZE_BORDER",SWIG_From_int(static_cast< int >(wxRESIZE_BORDER
)));
33645 SWIG_Python_SetConstant(d
, "DIALOG_NO_PARENT",SWIG_From_int(static_cast< int >(wxDIALOG_NO_PARENT
)));
33646 SWIG_Python_SetConstant(d
, "DEFAULT_FRAME_STYLE",SWIG_From_int(static_cast< int >(wxDEFAULT_FRAME_STYLE
)));
33647 SWIG_Python_SetConstant(d
, "DEFAULT_DIALOG_STYLE",SWIG_From_int(static_cast< int >(wxDEFAULT_DIALOG_STYLE
)));
33648 SWIG_Python_SetConstant(d
, "FRAME_TOOL_WINDOW",SWIG_From_int(static_cast< int >(wxFRAME_TOOL_WINDOW
)));
33649 SWIG_Python_SetConstant(d
, "FRAME_FLOAT_ON_PARENT",SWIG_From_int(static_cast< int >(wxFRAME_FLOAT_ON_PARENT
)));
33650 SWIG_Python_SetConstant(d
, "FRAME_NO_WINDOW_MENU",SWIG_From_int(static_cast< int >(wxFRAME_NO_WINDOW_MENU
)));
33651 SWIG_Python_SetConstant(d
, "FRAME_NO_TASKBAR",SWIG_From_int(static_cast< int >(wxFRAME_NO_TASKBAR
)));
33652 SWIG_Python_SetConstant(d
, "FRAME_SHAPED",SWIG_From_int(static_cast< int >(wxFRAME_SHAPED
)));
33653 SWIG_Python_SetConstant(d
, "FRAME_DRAWER",SWIG_From_int(static_cast< int >(wxFRAME_DRAWER
)));
33654 SWIG_Python_SetConstant(d
, "FRAME_EX_METAL",SWIG_From_int(static_cast< int >(wxFRAME_EX_METAL
)));
33655 SWIG_Python_SetConstant(d
, "DIALOG_EX_METAL",SWIG_From_int(static_cast< int >(wxDIALOG_EX_METAL
)));
33656 SWIG_Python_SetConstant(d
, "DIALOG_MODAL",SWIG_From_int(static_cast< int >(wxDIALOG_MODAL
)));
33657 SWIG_Python_SetConstant(d
, "DIALOG_MODELESS",SWIG_From_int(static_cast< int >(wxDIALOG_MODELESS
)));
33658 SWIG_Python_SetConstant(d
, "USER_COLOURS",SWIG_From_int(static_cast< int >(wxUSER_COLOURS
)));
33659 SWIG_Python_SetConstant(d
, "NO_3D",SWIG_From_int(static_cast< int >(wxNO_3D
)));
33660 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOMENUBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOMENUBAR
)));
33661 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOTOOLBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOTOOLBAR
)));
33662 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOSTATUSBAR",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOSTATUSBAR
)));
33663 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOBORDER",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOBORDER
)));
33664 SWIG_Python_SetConstant(d
, "FULLSCREEN_NOCAPTION",SWIG_From_int(static_cast< int >(wxFULLSCREEN_NOCAPTION
)));
33665 SWIG_Python_SetConstant(d
, "FULLSCREEN_ALL",SWIG_From_int(static_cast< int >(wxFULLSCREEN_ALL
)));
33666 SWIG_Python_SetConstant(d
, "TOPLEVEL_EX_DIALOG",SWIG_From_int(static_cast< int >(wxTOPLEVEL_EX_DIALOG
)));
33667 SWIG_Python_SetConstant(d
, "USER_ATTENTION_INFO",SWIG_From_int(static_cast< int >(wxUSER_ATTENTION_INFO
)));
33668 SWIG_Python_SetConstant(d
, "USER_ATTENTION_ERROR",SWIG_From_int(static_cast< int >(wxUSER_ATTENTION_ERROR
)));
33669 SWIG_Python_SetConstant(d
, "Dialog_ButtonSizerFlags",SWIG_From_int(static_cast< int >(wxDialog::ButtonSizerFlags
)));
33670 SWIG_Python_SetConstant(d
, "SPLASH_CENTRE_ON_PARENT",SWIG_From_int(static_cast< int >(wxSPLASH_CENTRE_ON_PARENT
)));
33671 SWIG_Python_SetConstant(d
, "SPLASH_CENTRE_ON_SCREEN",SWIG_From_int(static_cast< int >(wxSPLASH_CENTRE_ON_SCREEN
)));
33672 SWIG_Python_SetConstant(d
, "SPLASH_NO_CENTRE",SWIG_From_int(static_cast< int >(wxSPLASH_NO_CENTRE
)));
33673 SWIG_Python_SetConstant(d
, "SPLASH_TIMEOUT",SWIG_From_int(static_cast< int >(wxSPLASH_TIMEOUT
)));
33674 SWIG_Python_SetConstant(d
, "SPLASH_NO_TIMEOUT",SWIG_From_int(static_cast< int >(wxSPLASH_NO_TIMEOUT
)));
33675 SWIG_Python_SetConstant(d
, "SB_NORMAL",SWIG_From_int(static_cast< int >(wxSB_NORMAL
)));
33676 SWIG_Python_SetConstant(d
, "SB_FLAT",SWIG_From_int(static_cast< int >(wxSB_FLAT
)));
33677 SWIG_Python_SetConstant(d
, "SB_RAISED",SWIG_From_int(static_cast< int >(wxSB_RAISED
)));
33678 SWIG_addvarlink(SWIG_globals(),(char*)"SplitterNameStr",SplitterNameStr_get
, SplitterNameStr_set
);
33679 SWIG_Python_SetConstant(d
, "SP_NOBORDER",SWIG_From_int(static_cast< int >(wxSP_NOBORDER
)));
33680 SWIG_Python_SetConstant(d
, "SP_NOSASH",SWIG_From_int(static_cast< int >(wxSP_NOSASH
)));
33681 SWIG_Python_SetConstant(d
, "SP_PERMIT_UNSPLIT",SWIG_From_int(static_cast< int >(wxSP_PERMIT_UNSPLIT
)));
33682 SWIG_Python_SetConstant(d
, "SP_LIVE_UPDATE",SWIG_From_int(static_cast< int >(wxSP_LIVE_UPDATE
)));
33683 SWIG_Python_SetConstant(d
, "SP_3DSASH",SWIG_From_int(static_cast< int >(wxSP_3DSASH
)));
33684 SWIG_Python_SetConstant(d
, "SP_3DBORDER",SWIG_From_int(static_cast< int >(wxSP_3DBORDER
)));
33685 SWIG_Python_SetConstant(d
, "SP_NO_XP_THEME",SWIG_From_int(static_cast< int >(wxSP_NO_XP_THEME
)));
33686 SWIG_Python_SetConstant(d
, "SP_BORDER",SWIG_From_int(static_cast< int >(wxSP_BORDER
)));
33687 SWIG_Python_SetConstant(d
, "SP_3D",SWIG_From_int(static_cast< int >(wxSP_3D
)));
33688 SWIG_Python_SetConstant(d
, "SPLIT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxSPLIT_HORIZONTAL
)));
33689 SWIG_Python_SetConstant(d
, "SPLIT_VERTICAL",SWIG_From_int(static_cast< int >(wxSPLIT_VERTICAL
)));
33690 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_NONE",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_NONE
)));
33691 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_DRAGGING",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_DRAGGING
)));
33692 SWIG_Python_SetConstant(d
, "SPLIT_DRAG_LEFT_DOWN",SWIG_From_int(static_cast< int >(wxSPLIT_DRAG_LEFT_DOWN
)));
33693 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
));
33694 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
));
33695 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
));
33696 PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_UNSPLIT
));
33697 SWIG_addvarlink(SWIG_globals(),(char*)"SashNameStr",SashNameStr_get
, SashNameStr_set
);
33698 SWIG_addvarlink(SWIG_globals(),(char*)"SashLayoutNameStr",SashLayoutNameStr_get
, SashLayoutNameStr_set
);
33699 SWIG_Python_SetConstant(d
, "SASH_DRAG_NONE",SWIG_From_int(static_cast< int >(wxSASH_DRAG_NONE
)));
33700 SWIG_Python_SetConstant(d
, "SASH_DRAG_DRAGGING",SWIG_From_int(static_cast< int >(wxSASH_DRAG_DRAGGING
)));
33701 SWIG_Python_SetConstant(d
, "SASH_DRAG_LEFT_DOWN",SWIG_From_int(static_cast< int >(wxSASH_DRAG_LEFT_DOWN
)));
33702 SWIG_Python_SetConstant(d
, "SW_NOBORDER",SWIG_From_int(static_cast< int >(wxSW_NOBORDER
)));
33703 SWIG_Python_SetConstant(d
, "SW_BORDER",SWIG_From_int(static_cast< int >(wxSW_BORDER
)));
33704 SWIG_Python_SetConstant(d
, "SW_3DSASH",SWIG_From_int(static_cast< int >(wxSW_3DSASH
)));
33705 SWIG_Python_SetConstant(d
, "SW_3DBORDER",SWIG_From_int(static_cast< int >(wxSW_3DBORDER
)));
33706 SWIG_Python_SetConstant(d
, "SW_3D",SWIG_From_int(static_cast< int >(wxSW_3D
)));
33707 SWIG_Python_SetConstant(d
, "SASH_TOP",SWIG_From_int(static_cast< int >(wxSASH_TOP
)));
33708 SWIG_Python_SetConstant(d
, "SASH_RIGHT",SWIG_From_int(static_cast< int >(wxSASH_RIGHT
)));
33709 SWIG_Python_SetConstant(d
, "SASH_BOTTOM",SWIG_From_int(static_cast< int >(wxSASH_BOTTOM
)));
33710 SWIG_Python_SetConstant(d
, "SASH_LEFT",SWIG_From_int(static_cast< int >(wxSASH_LEFT
)));
33711 SWIG_Python_SetConstant(d
, "SASH_NONE",SWIG_From_int(static_cast< int >(wxSASH_NONE
)));
33712 SWIG_Python_SetConstant(d
, "SASH_STATUS_OK",SWIG_From_int(static_cast< int >(wxSASH_STATUS_OK
)));
33713 SWIG_Python_SetConstant(d
, "SASH_STATUS_OUT_OF_RANGE",SWIG_From_int(static_cast< int >(wxSASH_STATUS_OUT_OF_RANGE
)));
33714 PyDict_SetItemString(d
, "wxEVT_SASH_DRAGGED", PyInt_FromLong(wxEVT_SASH_DRAGGED
));
33715 SWIG_Python_SetConstant(d
, "LAYOUT_HORIZONTAL",SWIG_From_int(static_cast< int >(wxLAYOUT_HORIZONTAL
)));
33716 SWIG_Python_SetConstant(d
, "LAYOUT_VERTICAL",SWIG_From_int(static_cast< int >(wxLAYOUT_VERTICAL
)));
33717 SWIG_Python_SetConstant(d
, "LAYOUT_NONE",SWIG_From_int(static_cast< int >(wxLAYOUT_NONE
)));
33718 SWIG_Python_SetConstant(d
, "LAYOUT_TOP",SWIG_From_int(static_cast< int >(wxLAYOUT_TOP
)));
33719 SWIG_Python_SetConstant(d
, "LAYOUT_LEFT",SWIG_From_int(static_cast< int >(wxLAYOUT_LEFT
)));
33720 SWIG_Python_SetConstant(d
, "LAYOUT_RIGHT",SWIG_From_int(static_cast< int >(wxLAYOUT_RIGHT
)));
33721 SWIG_Python_SetConstant(d
, "LAYOUT_BOTTOM",SWIG_From_int(static_cast< int >(wxLAYOUT_BOTTOM
)));
33722 SWIG_Python_SetConstant(d
, "LAYOUT_LENGTH_Y",SWIG_From_int(static_cast< int >(wxLAYOUT_LENGTH_Y
)));
33723 SWIG_Python_SetConstant(d
, "LAYOUT_LENGTH_X",SWIG_From_int(static_cast< int >(wxLAYOUT_LENGTH_X
)));
33724 SWIG_Python_SetConstant(d
, "LAYOUT_MRU_LENGTH",SWIG_From_int(static_cast< int >(wxLAYOUT_MRU_LENGTH
)));
33725 SWIG_Python_SetConstant(d
, "LAYOUT_QUERY",SWIG_From_int(static_cast< int >(wxLAYOUT_QUERY
)));
33726 PyDict_SetItemString(d
, "wxEVT_QUERY_LAYOUT_INFO", PyInt_FromLong(wxEVT_QUERY_LAYOUT_INFO
));
33727 PyDict_SetItemString(d
, "wxEVT_CALCULATE_LAYOUT", PyInt_FromLong(wxEVT_CALCULATE_LAYOUT
));
33728 SWIG_addvarlink(SWIG_globals(),(char*)"VListBoxNameStr",VListBoxNameStr_get
, VListBoxNameStr_set
);
33730 // Map renamed classes back to their common name for OOR
33731 wxPyPtrTypeMap_Add("wxHtmlListBox", "wxPyHtmlListBox");
33732 wxPyPtrTypeMap_Add("wxVListBox", "wxPyVListBox");
33733 wxPyPtrTypeMap_Add("wxVScrolledWindow", "wxPyVScrolledWindow");
33735 PyDict_SetItemString(d
, "wxEVT_TASKBAR_MOVE", PyInt_FromLong(wxEVT_TASKBAR_MOVE
));
33736 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DOWN
));
33737 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_UP", PyInt_FromLong(wxEVT_TASKBAR_LEFT_UP
));
33738 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DOWN
));
33739 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_UP", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_UP
));
33740 PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DCLICK
));
33741 PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DCLICK
));
33742 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorPromptStr",FileSelectorPromptStr_get
, FileSelectorPromptStr_set
);
33743 SWIG_addvarlink(SWIG_globals(),(char*)"DirSelectorPromptStr",DirSelectorPromptStr_get
, DirSelectorPromptStr_set
);
33744 SWIG_addvarlink(SWIG_globals(),(char*)"DirDialogNameStr",DirDialogNameStr_get
, DirDialogNameStr_set
);
33745 SWIG_addvarlink(SWIG_globals(),(char*)"FileSelectorDefaultWildcardStr",FileSelectorDefaultWildcardStr_get
, FileSelectorDefaultWildcardStr_set
);
33746 SWIG_addvarlink(SWIG_globals(),(char*)"GetTextFromUserPromptStr",GetTextFromUserPromptStr_get
, GetTextFromUserPromptStr_set
);
33747 SWIG_addvarlink(SWIG_globals(),(char*)"MessageBoxCaptionStr",MessageBoxCaptionStr_get
, MessageBoxCaptionStr_set
);
33748 SWIG_Python_SetConstant(d
, "CHOICEDLG_STYLE",SWIG_From_int(static_cast< int >(wxCHOICEDLG_STYLE
)));
33749 SWIG_Python_SetConstant(d
, "TextEntryDialogStyle",SWIG_From_int(static_cast< int >(wxTextEntryDialogStyle
)));
33750 SWIG_addvarlink(SWIG_globals(),(char*)"GetPasswordFromUserPromptStr",GetPasswordFromUserPromptStr_get
, GetPasswordFromUserPromptStr_set
);
33751 SWIG_Python_SetConstant(d
, "FR_DOWN",SWIG_From_int(static_cast< int >(wxFR_DOWN
)));
33752 SWIG_Python_SetConstant(d
, "FR_WHOLEWORD",SWIG_From_int(static_cast< int >(wxFR_WHOLEWORD
)));
33753 SWIG_Python_SetConstant(d
, "FR_MATCHCASE",SWIG_From_int(static_cast< int >(wxFR_MATCHCASE
)));
33754 SWIG_Python_SetConstant(d
, "FR_REPLACEDIALOG",SWIG_From_int(static_cast< int >(wxFR_REPLACEDIALOG
)));
33755 SWIG_Python_SetConstant(d
, "FR_NOUPDOWN",SWIG_From_int(static_cast< int >(wxFR_NOUPDOWN
)));
33756 SWIG_Python_SetConstant(d
, "FR_NOMATCHCASE",SWIG_From_int(static_cast< int >(wxFR_NOMATCHCASE
)));
33757 SWIG_Python_SetConstant(d
, "FR_NOWHOLEWORD",SWIG_From_int(static_cast< int >(wxFR_NOWHOLEWORD
)));
33758 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND", PyInt_FromLong(wxEVT_COMMAND_FIND
));
33759 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_NEXT", PyInt_FromLong(wxEVT_COMMAND_FIND_NEXT
));
33760 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE
));
33761 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE_ALL", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE_ALL
));
33762 PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_CLOSE", PyInt_FromLong(wxEVT_COMMAND_FIND_CLOSE
));
33763 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILE",SWIG_From_int(static_cast< int >(4001)));
33764 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILEHOR",SWIG_From_int(static_cast< int >(4001)));
33765 SWIG_Python_SetConstant(d
, "IDM_WINDOWCASCADE",SWIG_From_int(static_cast< int >(4002)));
33766 SWIG_Python_SetConstant(d
, "IDM_WINDOWICONS",SWIG_From_int(static_cast< int >(4003)));
33767 SWIG_Python_SetConstant(d
, "IDM_WINDOWNEXT",SWIG_From_int(static_cast< int >(4004)));
33768 SWIG_Python_SetConstant(d
, "IDM_WINDOWTILEVERT",SWIG_From_int(static_cast< int >(4005)));
33769 SWIG_Python_SetConstant(d
, "IDM_WINDOWPREV",SWIG_From_int(static_cast< int >(4006)));
33770 SWIG_Python_SetConstant(d
, "FIRST_MDI_CHILD",SWIG_From_int(static_cast< int >(4100)));
33771 SWIG_Python_SetConstant(d
, "LAST_MDI_CHILD",SWIG_From_int(static_cast< int >(4600)));
33772 SWIG_addvarlink(SWIG_globals(),(char*)"PrintoutTitleStr",PrintoutTitleStr_get
, PrintoutTitleStr_set
);
33773 SWIG_addvarlink(SWIG_globals(),(char*)"PreviewCanvasNameStr",PreviewCanvasNameStr_get
, PreviewCanvasNameStr_set
);
33774 SWIG_Python_SetConstant(d
, "PRINT_MODE_NONE",SWIG_From_int(static_cast< int >(wxPRINT_MODE_NONE
)));
33775 SWIG_Python_SetConstant(d
, "PRINT_MODE_PREVIEW",SWIG_From_int(static_cast< int >(wxPRINT_MODE_PREVIEW
)));
33776 SWIG_Python_SetConstant(d
, "PRINT_MODE_FILE",SWIG_From_int(static_cast< int >(wxPRINT_MODE_FILE
)));
33777 SWIG_Python_SetConstant(d
, "PRINT_MODE_PRINTER",SWIG_From_int(static_cast< int >(wxPRINT_MODE_PRINTER
)));
33778 SWIG_Python_SetConstant(d
, "PRINT_MODE_STREAM",SWIG_From_int(static_cast< int >(wxPRINT_MODE_STREAM
)));
33779 SWIG_Python_SetConstant(d
, "PRINTBIN_DEFAULT",SWIG_From_int(static_cast< int >(wxPRINTBIN_DEFAULT
)));
33780 SWIG_Python_SetConstant(d
, "PRINTBIN_ONLYONE",SWIG_From_int(static_cast< int >(wxPRINTBIN_ONLYONE
)));
33781 SWIG_Python_SetConstant(d
, "PRINTBIN_LOWER",SWIG_From_int(static_cast< int >(wxPRINTBIN_LOWER
)));
33782 SWIG_Python_SetConstant(d
, "PRINTBIN_MIDDLE",SWIG_From_int(static_cast< int >(wxPRINTBIN_MIDDLE
)));
33783 SWIG_Python_SetConstant(d
, "PRINTBIN_MANUAL",SWIG_From_int(static_cast< int >(wxPRINTBIN_MANUAL
)));
33784 SWIG_Python_SetConstant(d
, "PRINTBIN_ENVELOPE",SWIG_From_int(static_cast< int >(wxPRINTBIN_ENVELOPE
)));
33785 SWIG_Python_SetConstant(d
, "PRINTBIN_ENVMANUAL",SWIG_From_int(static_cast< int >(wxPRINTBIN_ENVMANUAL
)));
33786 SWIG_Python_SetConstant(d
, "PRINTBIN_AUTO",SWIG_From_int(static_cast< int >(wxPRINTBIN_AUTO
)));
33787 SWIG_Python_SetConstant(d
, "PRINTBIN_TRACTOR",SWIG_From_int(static_cast< int >(wxPRINTBIN_TRACTOR
)));
33788 SWIG_Python_SetConstant(d
, "PRINTBIN_SMALLFMT",SWIG_From_int(static_cast< int >(wxPRINTBIN_SMALLFMT
)));
33789 SWIG_Python_SetConstant(d
, "PRINTBIN_LARGEFMT",SWIG_From_int(static_cast< int >(wxPRINTBIN_LARGEFMT
)));
33790 SWIG_Python_SetConstant(d
, "PRINTBIN_LARGECAPACITY",SWIG_From_int(static_cast< int >(wxPRINTBIN_LARGECAPACITY
)));
33791 SWIG_Python_SetConstant(d
, "PRINTBIN_CASSETTE",SWIG_From_int(static_cast< int >(wxPRINTBIN_CASSETTE
)));
33792 SWIG_Python_SetConstant(d
, "PRINTBIN_FORMSOURCE",SWIG_From_int(static_cast< int >(wxPRINTBIN_FORMSOURCE
)));
33793 SWIG_Python_SetConstant(d
, "PRINTBIN_USER",SWIG_From_int(static_cast< int >(wxPRINTBIN_USER
)));
33794 SWIG_Python_SetConstant(d
, "PRINTER_NO_ERROR",SWIG_From_int(static_cast< int >(wxPRINTER_NO_ERROR
)));
33795 SWIG_Python_SetConstant(d
, "PRINTER_CANCELLED",SWIG_From_int(static_cast< int >(wxPRINTER_CANCELLED
)));
33796 SWIG_Python_SetConstant(d
, "PRINTER_ERROR",SWIG_From_int(static_cast< int >(wxPRINTER_ERROR
)));
33797 SWIG_Python_SetConstant(d
, "PREVIEW_PRINT",SWIG_From_int(static_cast< int >(wxPREVIEW_PRINT
)));
33798 SWIG_Python_SetConstant(d
, "PREVIEW_PREVIOUS",SWIG_From_int(static_cast< int >(wxPREVIEW_PREVIOUS
)));
33799 SWIG_Python_SetConstant(d
, "PREVIEW_NEXT",SWIG_From_int(static_cast< int >(wxPREVIEW_NEXT
)));
33800 SWIG_Python_SetConstant(d
, "PREVIEW_ZOOM",SWIG_From_int(static_cast< int >(wxPREVIEW_ZOOM
)));
33801 SWIG_Python_SetConstant(d
, "PREVIEW_FIRST",SWIG_From_int(static_cast< int >(wxPREVIEW_FIRST
)));
33802 SWIG_Python_SetConstant(d
, "PREVIEW_LAST",SWIG_From_int(static_cast< int >(wxPREVIEW_LAST
)));
33803 SWIG_Python_SetConstant(d
, "PREVIEW_GOTO",SWIG_From_int(static_cast< int >(wxPREVIEW_GOTO
)));
33804 SWIG_Python_SetConstant(d
, "PREVIEW_DEFAULT",SWIG_From_int(static_cast< int >(wxPREVIEW_DEFAULT
)));
33805 SWIG_Python_SetConstant(d
, "ID_PREVIEW_CLOSE",SWIG_From_int(static_cast< int >(wxID_PREVIEW_CLOSE
)));
33806 SWIG_Python_SetConstant(d
, "ID_PREVIEW_NEXT",SWIG_From_int(static_cast< int >(wxID_PREVIEW_NEXT
)));
33807 SWIG_Python_SetConstant(d
, "ID_PREVIEW_PREVIOUS",SWIG_From_int(static_cast< int >(wxID_PREVIEW_PREVIOUS
)));
33808 SWIG_Python_SetConstant(d
, "ID_PREVIEW_PRINT",SWIG_From_int(static_cast< int >(wxID_PREVIEW_PRINT
)));
33809 SWIG_Python_SetConstant(d
, "ID_PREVIEW_ZOOM",SWIG_From_int(static_cast< int >(wxID_PREVIEW_ZOOM
)));
33810 SWIG_Python_SetConstant(d
, "ID_PREVIEW_FIRST",SWIG_From_int(static_cast< int >(wxID_PREVIEW_FIRST
)));
33811 SWIG_Python_SetConstant(d
, "ID_PREVIEW_LAST",SWIG_From_int(static_cast< int >(wxID_PREVIEW_LAST
)));
33812 SWIG_Python_SetConstant(d
, "ID_PREVIEW_GOTO",SWIG_From_int(static_cast< int >(wxID_PREVIEW_GOTO
)));
33814 wxPyPtrTypeMap_Add("wxPrintout", "wxPyPrintout");