1 /* ---------------------------------------------------------------------------- 
   2  * This file was automatically generated by SWIG (http://www.swig.org). 
   5  * This file is not intended to be easily readable and contains a number of  
   6  * coding conventions designed to improve portability and efficiency. Do not make 
   7  * changes to this file unless you know what you are doing--modify the SWIG  
   8  * interface file instead.  
   9  * ----------------------------------------------------------------------------- */ 
  14 template<class T
> class SwigValueWrapper 
{ 
  17     SwigValueWrapper() : tt(0) { } 
  18     SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { } 
  19     SwigValueWrapper(const T
& t
) : tt(new T(t
)) { } 
  20     ~SwigValueWrapper() { delete tt
; }  
  21     SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt 
= new T(t
); return *this; } 
  22     operator T
&() const { return *tt
; } 
  23     T 
*operator&() { return tt
; } 
  25     SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
); 
  30 #ifndef SWIG_TEMPLATE_DISAMBIGUATOR 
  31 #  if defined(__SUNPRO_CC)  
  32 #    define SWIG_TEMPLATE_DISAMBIGUATOR template 
  34 #    define SWIG_TEMPLATE_DISAMBIGUATOR  
  41 /*********************************************************************** 
  44  *     This file contains generic CAPI SWIG runtime support for pointer 
  47  ************************************************************************/ 
  49 /* This should only be incremented when either the layout of swig_type_info changes, 
  50    or for whatever reason, the runtime changes incompatibly */ 
  51 #define SWIG_RUNTIME_VERSION "1" 
  53 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ 
  54 #ifdef SWIG_TYPE_TABLE 
  55 #define SWIG_QUOTE_STRING(x) #x 
  56 #define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) 
  57 #define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) 
  59 #define SWIG_TYPE_TABLE_NAME 
  65 #if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) 
  66 #  define SWIGINLINE inline 
  73   You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for 
  74   creating a static or dynamic library from the swig runtime code. 
  75   In 99.9% of the cases, swig just needs to declare them as 'static'. 
  77   But only do this if is strictly necessary, ie, if you have problems 
  78   with your compiler or so. 
  81 #define SWIGRUNTIME static 
  83 #ifndef SWIGRUNTIMEINLINE 
  84 #define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE 
  91 typedef void *(*swig_converter_func
)(void *); 
  92 typedef struct swig_type_info 
*(*swig_dycast_func
)(void **); 
  94 typedef struct swig_type_info 
{ 
  96   swig_converter_func     converter
; 
  99   swig_dycast_func        dcast
; 
 100   struct swig_type_info  
*next
; 
 101   struct swig_type_info  
*prev
; 
 105   Compare two type names skipping the space characters, therefore 
 106   "char*" == "char *" and "Class<int>" == "Class<int >", etc. 
 108   Return 0 when the two name types are equivalent, as in 
 109   strncmp, but skipping ' '. 
 112 SWIG_TypeNameComp(const char *f1
, const char *l1
, 
 113                   const char *f2
, const char *l2
) { 
 114   for (;(f1 
!= l1
) && (f2 
!= l2
); ++f1
, ++f2
) { 
 115     while ((*f1 
== ' ') && (f1 
!= l1
)) ++f1
; 
 116     while ((*f2 
== ' ') && (f2 
!= l2
)) ++f2
; 
 117     if (*f1 
!= *f2
) return *f1 
- *f2
; 
 119   return (l1 
- f1
) - (l2 
- f2
); 
 123   Check type equivalence in a name list like <name1>|<name2>|... 
 126 SWIG_TypeEquiv(const char *nb
, const char *tb
) { 
 128   const char* te 
= tb 
+ strlen(tb
); 
 130   while (!equiv 
&& *ne
) { 
 131     for (nb 
= ne
; *ne
; ++ne
) { 
 132       if (*ne 
== '|') break; 
 134     equiv 
= SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0; 
 141   Register a type mapping with the type-checking 
 143 SWIGRUNTIME swig_type_info 
* 
 144 SWIG_TypeRegisterTL(swig_type_info 
**tl
, swig_type_info 
*ti
) { 
 145   swig_type_info 
*tc
, *head
, *ret
, *next
; 
 146   /* Check to see if this type has already been registered */ 
 149     /* check simple type equivalence */ 
 150     int typeequiv 
= (strcmp(tc
->name
, ti
->name
) == 0);    
 151     /* check full type equivalence, resolving typedefs */ 
 153       /* only if tc is not a typedef (no '|' on it) */ 
 154       if (tc
->str 
&& ti
->str 
&& !strstr(tc
->str
,"|")) { 
 155         typeequiv 
= SWIG_TypeEquiv(ti
->str
,tc
->str
); 
 159       /* Already exists in the table.  Just add additional types to the list */ 
 160       if (ti
->clientdata
) tc
->clientdata 
= ti
->clientdata
; 
 174   /* Build linked lists */ 
 178   /* Patch up the rest of the links */ 
 185   if (next
) next
->prev 
= head
; 
 194 SWIGRUNTIME swig_type_info 
* 
 195 SWIG_TypeCheck(const char *c
, swig_type_info 
*ty
) { 
 197   if (!ty
) return 0;        /* Void pointer */ 
 198   s 
= ty
->next
;             /* First element always just a name */ 
 200     if (strcmp(s
->name
,c
) == 0) { 
 201       if (s 
== ty
->next
) return s
; 
 202       /* Move s to the top of the linked list */ 
 203       s
->prev
->next 
= s
->next
; 
 205         s
->next
->prev 
= s
->prev
; 
 207       /* Insert s as second element in the list */ 
 209       if (ty
->next
) ty
->next
->prev 
= s
; 
 215   } while (s 
&& (s 
!= ty
->next
)); 
 220   Cast a pointer up an inheritance hierarchy 
 222 SWIGRUNTIMEINLINE 
void * 
 223 SWIG_TypeCast(swig_type_info 
*ty
, void *ptr
) { 
 224   return ((!ty
) || (!ty
->converter
)) ? ptr 
: (*ty
->converter
)(ptr
); 
 228    Dynamic pointer casting. Down an inheritance hierarchy 
 230 SWIGRUNTIME swig_type_info 
* 
 231 SWIG_TypeDynamicCast(swig_type_info 
*ty
, void **ptr
) { 
 232   swig_type_info 
*lastty 
= ty
; 
 233   if (!ty 
|| !ty
->dcast
) return ty
; 
 234   while (ty 
&& (ty
->dcast
)) { 
 235     ty 
= (*ty
->dcast
)(ptr
); 
 242   Return the name associated with this type 
 244 SWIGRUNTIMEINLINE 
const char * 
 245 SWIG_TypeName(const swig_type_info 
*ty
) { 
 250   Return the pretty name associated with this type, 
 251   that is an unmangled type name in a form presentable to the user. 
 253 SWIGRUNTIME 
const char * 
 254 SWIG_TypePrettyName(const swig_type_info 
*type
) { 
 255   /* The "str" field contains the equivalent pretty names of the 
 256      type, separated by vertical-bar characters.  We choose 
 257      to print the last name, as it is often (?) the most 
 259   if (type
->str 
!= NULL
) { 
 260     const char *last_name 
= type
->str
; 
 262     for (s 
= type
->str
; *s
; s
++) 
 263       if (*s 
== '|') last_name 
= s
+1; 
 271   Search for a swig_type_info structure 
 273 SWIGRUNTIME swig_type_info 
* 
 274 SWIG_TypeQueryTL(swig_type_info 
*tl
, const char *name
) { 
 275   swig_type_info 
*ty 
= tl
; 
 277     if (ty
->str 
&& (SWIG_TypeEquiv(ty
->str
,name
))) return ty
; 
 278     if (ty
->name 
&& (strcmp(name
,ty
->name
) == 0)) return ty
; 
 285    Set the clientdata field for a type 
 288 SWIG_TypeClientDataTL(swig_type_info 
*tl
, swig_type_info 
*ti
, void *clientdata
) { 
 289   swig_type_info 
*tc
, *equiv
; 
 290   if (ti
->clientdata
) return; 
 291   /* if (ti->clientdata == clientdata) return; */ 
 292   ti
->clientdata 
= clientdata
; 
 295     if (!equiv
->converter
) { 
 298         if ((strcmp(tc
->name
, equiv
->name
) == 0)) 
 299           SWIG_TypeClientDataTL(tl
,tc
,clientdata
); 
 308    Pack binary data into a string 
 311 SWIG_PackData(char *c
, void *ptr
, size_t sz
) { 
 312   static char hex
[17] = "0123456789abcdef"; 
 313   unsigned char *u 
= (unsigned char *) ptr
; 
 314   const unsigned char *eu 
=  u 
+ sz
; 
 315   register unsigned char uu
; 
 316   for (; u 
!= eu
; ++u
) { 
 318     *(c
++) = hex
[(uu 
& 0xf0) >> 4]; 
 319     *(c
++) = hex
[uu 
& 0xf]; 
 325    Unpack binary data from a string 
 327 SWIGRUNTIME 
const char * 
 328 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) { 
 329   register unsigned char *u 
= (unsigned char *) ptr
; 
 330   register const unsigned char *eu 
=  u 
+ sz
; 
 331   for (; u 
!= eu
; ++u
) { 
 332     register int d 
= *(c
++); 
 333     register unsigned char uu 
= 0; 
 334     if ((d 
>= '0') && (d 
<= '9')) 
 335       uu 
= ((d 
- '0') << 4); 
 336     else if ((d 
>= 'a') && (d 
<= 'f')) 
 337       uu 
= ((d 
- ('a'-10)) << 4); 
 341     if ((d 
>= '0') && (d 
<= '9')) 
 343     else if ((d 
>= 'a') && (d 
<= 'f')) 
 344       uu 
|= (d 
- ('a'-10)); 
 353   This function will propagate the clientdata field of type to any new 
 354   swig_type_info structures that have been added into the list of 
 355   equivalent types.  It is like calling SWIG_TypeClientData(type, 
 356   clientdata) a second time. 
 359 SWIG_PropagateClientDataTL(swig_type_info 
*tl
, swig_type_info 
*type
) { 
 360   swig_type_info 
*equiv 
= type
->next
; 
 362   if (!type
->clientdata
) return; 
 364     if (!equiv
->converter
) { 
 367         if ((strcmp(tc
->name
, equiv
->name
) == 0) && !tc
->clientdata
) 
 368           SWIG_TypeClientDataTL(tl
,tc
, type
->clientdata
); 
 377    Pack 'void *' into a string buffer. 
 380 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) { 
 382   if ((2*sizeof(void *) + 2) > bsz
) return 0; 
 384   r 
= SWIG_PackData(r
,&ptr
,sizeof(void *)); 
 385   if (strlen(name
) + 1 > (bsz 
- (r 
- buff
))) return 0; 
 390 SWIGRUNTIME 
const char * 
 391 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) { 
 393     if (strcmp(c
,"NULL") == 0) { 
 400   return SWIG_UnpackData(++c
,ptr
,sizeof(void *)); 
 404 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) { 
 406   size_t lname 
= (name 
? strlen(name
) : 0); 
 407   if ((2*sz 
+ 2 + lname
) > bsz
) return 0; 
 409   r 
= SWIG_PackData(r
,ptr
,sz
); 
 411     strncpy(r
,name
,lname
+1); 
 418 SWIGRUNTIME 
const char * 
 419 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) { 
 421     if (strcmp(c
,"NULL") == 0) { 
 428   return SWIG_UnpackData(++c
,ptr
,sz
); 
 435 /*********************************************************************** 
 438  *     This file contains generic SWIG runtime support for pointer 
 439  *     type checking as well as a few commonly used macros to control 
 442  * Author : David Beazley (beazley@cs.uchicago.edu) 
 444  * Copyright (c) 1999-2000, The University of Chicago 
 446  * This file may be freely redistributed without license or fee provided 
 447  * this copyright message remains intact. 
 448  ************************************************************************/ 
 451 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
 452 #  if !defined(STATIC_LINKED) 
 453 #    define SWIGEXPORT(a) __declspec(dllexport) a 
 455 #    define SWIGEXPORT(a) a 
 458 #  define SWIGEXPORT(a) a 
 466 /*************************************************************************/ 
 469 /* The static type info list */ 
 471 static swig_type_info 
*swig_type_list 
= 0; 
 472 static swig_type_info 
**swig_type_list_handle 
= &swig_type_list
; 
 475 /* Register a type mapping with the type-checking */ 
 476 static swig_type_info 
* 
 477 SWIG_TypeRegister(swig_type_info 
*ti
) { 
 478   return SWIG_TypeRegisterTL(swig_type_list_handle
, ti
); 
 481 /* Search for a swig_type_info structure */ 
 482 static swig_type_info 
* 
 483 SWIG_TypeQuery(const char *name
) { 
 484   return SWIG_TypeQueryTL(*swig_type_list_handle
, name
); 
 487 /* Set the clientdata field for a type */ 
 489 SWIG_TypeClientData(swig_type_info 
*ti
, void *clientdata
) { 
 490   SWIG_TypeClientDataTL(*swig_type_list_handle
, ti
, clientdata
); 
 493 /* This function will propagate the clientdata field of type to 
 494 * any new swig_type_info structures that have been added into the list 
 495 * of equivalent types.  It is like calling 
 496 * SWIG_TypeClientData(type, clientdata) a second time. 
 499 SWIG_PropagateClientData(swig_type_info 
*type
) { 
 500   SWIG_PropagateClientDataTL(*swig_type_list_handle
, type
); 
 507 /* ----------------------------------------------------------------------------- 
 508  * SWIG API. Portion that goes into the runtime 
 509  * ----------------------------------------------------------------------------- */ 
 515 /* ----------------------------------------------------------------------------- 
 516  * for internal method declarations 
 517  * ----------------------------------------------------------------------------- */ 
 520 #define SWIGINTERN static  
 523 #ifndef SWIGINTERNSHORT 
 525 #define SWIGINTERNSHORT static inline  
 527 #define SWIGINTERNSHORT static  
 528 #endif /* __cplusplus */ 
 533   Exception handling in wrappers 
 535 #define SWIG_fail                goto fail 
 536 #define SWIG_arg_fail(arg)       SWIG_Python_ArgFail(arg) 
 537 #define SWIG_append_errmsg(msg)   SWIG_Python_AddErrMesg(msg,0) 
 538 #define SWIG_preppend_errmsg(msg) SWIG_Python_AddErrMesg(msg,1) 
 539 #define SWIG_type_error(type,obj) SWIG_Python_TypeError(type,obj) 
 540 #define SWIG_null_ref(type)       SWIG_Python_NullRef(type) 
 545 #define SWIG_contract_assert(expr, msg) \ 
 546  if (!(expr)) { PyErr_SetString(PyExc_RuntimeError, (char *) msg ); goto fail; } else 
 548 /* ----------------------------------------------------------------------------- 
 549  * Constant declarations 
 550  * ----------------------------------------------------------------------------- */ 
 553 #define SWIG_PY_INT     1 
 554 #define SWIG_PY_FLOAT   2 
 555 #define SWIG_PY_STRING  3 
 556 #define SWIG_PY_POINTER 4 
 557 #define SWIG_PY_BINARY  5 
 559 /* Constant information structure */ 
 560 typedef struct swig_const_info 
{ 
 566     swig_type_info 
**ptype
; 
 570 /* ----------------------------------------------------------------------------- 
 571  * Alloc. memory flags 
 572  * ----------------------------------------------------------------------------- */ 
 573 #define SWIG_OLDOBJ  1 
 574 #define SWIG_NEWOBJ  SWIG_OLDOBJ + 1 
 575 #define SWIG_PYSTR   SWIG_NEWOBJ + 1 
 582 /*********************************************************************** 
 585  *     This file contains the runtime support for Python modules 
 586  *     and includes code for managing global variables and pointer 
 589  * Author : David Beazley (beazley@cs.uchicago.edu) 
 590  ************************************************************************/ 
 592 /* Common SWIG API */ 
 593 #define SWIG_ConvertPtr(obj, pp, type, flags)    SWIG_Python_ConvertPtr(obj, pp, type, flags) 
 594 #define SWIG_NewPointerObj(p, type, flags)       SWIG_Python_NewPointerObj(p, type, flags) 
 595 #define SWIG_MustGetPtr(p, type, argnum, flags)  SWIG_Python_MustGetPtr(p, type, argnum, flags) 
 598 /* Python-specific SWIG API */ 
 599 #define SWIG_ConvertPacked(obj, ptr, sz, ty, flags)   SWIG_Python_ConvertPacked(obj, ptr, sz, ty, flags) 
 600 #define SWIG_NewPackedObj(ptr, sz, type)              SWIG_Python_NewPackedObj(ptr, sz, type) 
 603 /* ----------------------------------------------------------------------------- 
 604  * Pointer declarations 
 605  * ----------------------------------------------------------------------------- */ 
 607   Use SWIG_NO_COBJECT_TYPES to force the use of strings to represent 
 608   C/C++ pointers in the python side. Very useful for debugging, but 
 611 #if !defined(SWIG_NO_COBJECT_TYPES) && !defined(SWIG_COBJECT_TYPES) 
 612 #  define SWIG_COBJECT_TYPES 
 615 /* Flags for pointer conversion */ 
 616 #define SWIG_POINTER_EXCEPTION     0x1 
 617 #define SWIG_POINTER_DISOWN        0x2 
 624 /* ----------------------------------------------------------------------------- 
 625  * Create a new pointer string  
 626  * ----------------------------------------------------------------------------- */ 
 628 #ifndef SWIG_BUFFER_SIZE 
 629 #define SWIG_BUFFER_SIZE 1024 
 632 #if defined(SWIG_COBJECT_TYPES) 
 633 #if !defined(SWIG_COBJECT_PYTHON) 
 634 /* ----------------------------------------------------------------------------- 
 635  * Implements a simple Swig Object type, and use it instead of PyCObject 
 636  * ----------------------------------------------------------------------------- */ 
 644 /* Declarations for objects of type PySwigObject */ 
 647 PySwigObject_print(PySwigObject 
*v
, FILE *fp
, int flags
) 
 649   char result
[SWIG_BUFFER_SIZE
]; 
 650   if (SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
))) { 
 651     fputs("<Swig Object at ", fp
); fputs(result
, fp
); fputs(">", fp
); 
 658 SWIGRUNTIME PyObject 
* 
 659 PySwigObject_repr(PySwigObject 
*v
) 
 661   char result
[SWIG_BUFFER_SIZE
]; 
 662   return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ? 
 663     PyString_FromFormat("<Swig Object at %s>", result
) : 0; 
 666 SWIGRUNTIME PyObject 
* 
 667 PySwigObject_str(PySwigObject 
*v
) 
 669   char result
[SWIG_BUFFER_SIZE
]; 
 670   return SWIG_PackVoidPtr(result
, v
->ptr
, v
->desc
, sizeof(result
)) ? 
 671     PyString_FromString(result
) : 0; 
 674 SWIGRUNTIME PyObject 
* 
 675 PySwigObject_long(PySwigObject 
*v
) 
 677   return PyLong_FromUnsignedLong((unsigned long) v
->ptr
); 
 680 SWIGRUNTIME PyObject 
* 
 681 PySwigObject_oct(PySwigObject 
*v
) 
 684   unsigned long x 
= (unsigned long)v
->ptr
; 
 688     PyOS_snprintf(buf
, sizeof(buf
), "0%lo", x
); 
 689   return PyString_FromString(buf
); 
 692 SWIGRUNTIME PyObject 
* 
 693 PySwigObject_hex(PySwigObject 
*v
) 
 696   PyOS_snprintf(buf
, sizeof(buf
), "0x%lx", (unsigned long)v
->ptr
); 
 697   return PyString_FromString(buf
); 
 701 PySwigObject_compare(PySwigObject 
*v
, PySwigObject 
*w
) 
 703   int c 
= strcmp(v
->desc
, w
->desc
); 
 709     return (i 
< j
) ? -1 : (i 
> j
) ? 1 : 0; 
 714 PySwigObject_dealloc(PySwigObject 
*self
) 
 719 SWIGRUNTIME PyTypeObject
* 
 720 PySwigObject_GetType() { 
 721   static char PySwigObject_Type__doc__
[] =  
 722     "Swig object carries a C/C++ instance pointer"; 
 724   static PyNumberMethods PySwigObject_as_number 
= { 
 725     (binaryfunc
)0, /*nb_add*/ 
 726     (binaryfunc
)0, /*nb_subtract*/ 
 727     (binaryfunc
)0, /*nb_multiply*/ 
 728     (binaryfunc
)0, /*nb_divide*/ 
 729     (binaryfunc
)0, /*nb_remainder*/ 
 730     (binaryfunc
)0, /*nb_divmod*/ 
 731     (ternaryfunc
)0,/*nb_power*/ 
 732     (unaryfunc
)0,  /*nb_negative*/ 
 733     (unaryfunc
)0,  /*nb_positive*/ 
 734     (unaryfunc
)0,  /*nb_absolute*/ 
 735     (inquiry
)0,    /*nb_nonzero*/ 
 742     (coercion
)0,   /*nb_coerce*/ 
 743     (unaryfunc
)PySwigObject_long
, /*nb_int*/ 
 744     (unaryfunc
)PySwigObject_long
, /*nb_long*/ 
 745     (unaryfunc
)0,                 /*nb_float*/ 
 746     (unaryfunc
)PySwigObject_oct
,  /*nb_oct*/ 
 747     (unaryfunc
)PySwigObject_hex
,  /*nb_hex*/ 
 748 #if PY_VERSION_HEX >= 0x02000000 
 749     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */  
 753   static int type_init 
= 0;   
 754   static PyTypeObject PySwigObject_Type
; 
 758     PyObject_HEAD_INIT(&PyType_Type
) 
 760     "PySwigObject",                     /*tp_name*/ 
 761     sizeof(PySwigObject
),               /*tp_basicsize*/ 
 764     (destructor
)PySwigObject_dealloc
,   /*tp_dealloc*/ 
 765     (printfunc
)PySwigObject_print
,      /*tp_print*/ 
 766     (getattrfunc
)0,                     /*tp_getattr*/ 
 767     (setattrfunc
)0,                     /*tp_setattr*/ 
 768     (cmpfunc
)PySwigObject_compare
,      /*tp_compare*/ 
 769     (reprfunc
)PySwigObject_repr
,        /*tp_repr*/ 
 770     &PySwigObject_as_number
,            /*tp_as_number*/ 
 771     0,                                  /*tp_as_sequence*/ 
 773     (hashfunc
)0,                        /*tp_hash*/ 
 774     (ternaryfunc
)0,                     /*tp_call*/ 
 775     (reprfunc
)PySwigObject_str
,         /*tp_str*/ 
 776     /* Space for future expansion */ 
 778     PySwigObject_Type__doc__
,           /* Documentation string */ 
 779 #if PY_VERSION_HEX >= 0x02000000 
 783 #if PY_VERSION_HEX >= 0x02010000 
 784     0,                                  /* tp_richcompare */ 
 785     0,                                  /* tp_weaklistoffset */ 
 787 #if PY_VERSION_HEX >= 0x02020000 
 788     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
 790 #if PY_VERSION_HEX >= 0x02030000 
 794     0,0,0,0                             /* tp_alloc -> tp_next */ 
 798     PySwigObject_Type 
= tmp
; 
 802   return &PySwigObject_Type
; 
 805 SWIGRUNTIME PyObject 
* 
 806 PySwigObject_FromVoidPtrAndDesc(void *ptr
, const char *desc
) 
 808   PySwigObject 
*self 
= PyObject_NEW(PySwigObject
, PySwigObject_GetType()); 
 809   if (self 
== NULL
) return NULL
; 
 812   return (PyObject 
*)self
; 
 815 SWIGRUNTIMEINLINE 
void * 
 816 PySwigObject_AsVoidPtr(PyObject 
*self
) 
 818   return ((PySwigObject 
*)self
)->ptr
; 
 821 SWIGRUNTIMEINLINE 
const char * 
 822 PySwigObject_GetDesc(PyObject 
*self
) 
 824   return ((PySwigObject 
*)self
)->desc
; 
 827 SWIGRUNTIMEINLINE 
int 
 828 PySwigObject_Check(PyObject 
*op
) { 
 829   return ((op
)->ob_type 
== PySwigObject_GetType())  
 830     || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0); 
 833 /* ----------------------------------------------------------------------------- 
 834  * Implements a simple Swig Packed type, and use it instead of string 
 835  * ----------------------------------------------------------------------------- */ 
 845 PySwigPacked_print(PySwigPacked 
*v
, FILE *fp
, int flags
) 
 847   char result
[SWIG_BUFFER_SIZE
]; 
 848   fputs("<Swig Packed ", fp
);  
 849   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
 858 SWIGRUNTIME PyObject 
* 
 859 PySwigPacked_repr(PySwigPacked 
*v
) 
 861   char result
[SWIG_BUFFER_SIZE
]; 
 862   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
 863     return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->desc
); 
 865     return PyString_FromFormat("<Swig Packed %s>", v
->desc
); 
 869 SWIGRUNTIME PyObject 
* 
 870 PySwigPacked_str(PySwigPacked 
*v
) 
 872   char result
[SWIG_BUFFER_SIZE
]; 
 873   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){ 
 874     return PyString_FromFormat("%s%s", result
, v
->desc
); 
 876     return PyString_FromFormat("%s", v
->desc
); 
 881 PySwigPacked_compare(PySwigPacked 
*v
, PySwigPacked 
*w
) 
 883   int c 
= strcmp(v
->desc
, w
->desc
); 
 889     int s 
= (i 
< j
) ? -1 : (i 
> j
) ? 1 : 0; 
 890     return s 
? s 
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
); 
 895 PySwigPacked_dealloc(PySwigPacked 
*self
) 
 901 SWIGRUNTIME PyTypeObject
* 
 902 PySwigPacked_GetType() { 
 903   static char PySwigPacked_Type__doc__
[] =  
 904     "Swig object carries a C/C++ instance pointer"; 
 905   static int type_init 
= 0; 
 907   static PyTypeObject PySwigPacked_Type
; 
 910     PyObject_HEAD_INIT(&PyType_Type
) 
 912     "PySwigPacked",                     /*tp_name*/ 
 913     sizeof(PySwigPacked
),               /*tp_basicsize*/ 
 916     (destructor
)PySwigPacked_dealloc
,   /*tp_dealloc*/ 
 917     (printfunc
)PySwigPacked_print
,      /*tp_print*/ 
 918     (getattrfunc
)0,                     /*tp_getattr*/ 
 919     (setattrfunc
)0,                     /*tp_setattr*/ 
 920     (cmpfunc
)PySwigPacked_compare
,      /*tp_compare*/ 
 921     (reprfunc
)PySwigPacked_repr
,        /*tp_repr*/ 
 923     0,                                  /*tp_as_sequence*/ 
 925     (hashfunc
)0,                        /*tp_hash*/ 
 926     (ternaryfunc
)0,                     /*tp_call*/ 
 927     (reprfunc
)PySwigPacked_str
,         /*tp_str*/ 
 928     /* Space for future expansion */ 
 930     PySwigPacked_Type__doc__
,           /* Documentation string */ 
 931 #if PY_VERSION_HEX >= 0x02000000 
 935 #if PY_VERSION_HEX >= 0x02010000 
 936     0,                                  /* tp_richcompare */ 
 937     0,                                  /* tp_weaklistoffset */ 
 939 #if PY_VERSION_HEX >= 0x02020000          
 940     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
 942 #if PY_VERSION_HEX >= 0x02030000 
 946     0,0,0,0                             /* tp_alloc -> tp_next */ 
 950     PySwigPacked_Type 
= tmp
; 
 956   return &PySwigPacked_Type
; 
 959 SWIGRUNTIME PyObject 
* 
 960 PySwigPacked_FromDataAndDesc(void *ptr
, size_t size
, const char *desc
) 
 962   PySwigPacked 
*self 
= PyObject_NEW(PySwigPacked
, PySwigPacked_GetType()); 
 966     void *pack 
= malloc(size
); 
 967     memcpy(pack
, ptr
, size
); 
 971     return (PyObject 
*) self
; 
 975 SWIGRUNTIMEINLINE 
const char * 
 976 PySwigPacked_UnpackData(PyObject 
*obj
, void *ptr
, size_t size
) 
 978   PySwigPacked 
*self 
= (PySwigPacked 
*)obj
; 
 979   if (self
->size 
!= size
) return 0; 
 980   memcpy(ptr
, self
->pack
, size
); 
 984 SWIGRUNTIMEINLINE 
const char * 
 985 PySwigPacked_GetDesc(PyObject 
*self
) 
 987   return ((PySwigPacked 
*)self
)->desc
; 
 990 SWIGRUNTIMEINLINE 
int 
 991 PySwigPacked_Check(PyObject 
*op
) { 
 992   return ((op
)->ob_type 
== PySwigPacked_GetType())  
 993     || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0); 
 997 /* ----------------------------------------------------------------------------- 
 998  * Use the old Python PyCObject instead of PySwigObject 
 999  * ----------------------------------------------------------------------------- */ 
1001 #define PySwigObject_GetDesc(obj)                  PyCObject_GetDesc(obj) 
1002 #define PySwigObject_Check(obj)            PyCObject_Check(obj) 
1003 #define PySwigObject_AsVoidPtr(obj)        PyCObject_AsVoidPtr(obj) 
1004 #define PySwigObject_FromVoidPtrAndDesc(p, d)  PyCObject_FromVoidPtrAndDesc(p, d, NULL) 
1010 /* ----------------------------------------------------------------------------- 
1011  * errors manipulation 
1012  * ----------------------------------------------------------------------------- */ 
1015 SWIG_Python_TypeError(const char *type
, PyObject 
*obj
) 
1018 #if defined(SWIG_COBJECT_TYPES) 
1019     if (PySwigObject_Check(obj
)) { 
1020       const char *otype 
= (const char *) PySwigObject_GetDesc(obj
); 
1022         PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received", 
1029       const char *otype 
= (obj 
? obj
->ob_type
->tp_name 
: 0);  
1031         PyObject 
*str 
= PyObject_Str(obj
); 
1032         const char *cstr 
= str 
? PyString_AsString(str
) : 0; 
1034           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received", 
1037           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received", 
1045     PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
); 
1047     PyErr_Format(PyExc_TypeError
, "unexpected type is received"); 
1051 SWIGRUNTIMEINLINE 
void 
1052 SWIG_Python_NullRef(const char *type
) 
1055     PyErr_Format(PyExc_TypeError
, "null reference of type '%s' was received",type
); 
1057     PyErr_Format(PyExc_TypeError
, "null reference was received"); 
1062 SWIG_Python_AddErrMesg(const char* mesg
, int infront
) 
1064   if (PyErr_Occurred()) { 
1066     PyObject 
*value 
= 0; 
1067     PyObject 
*traceback 
= 0; 
1068     PyErr_Fetch(&type
, &value
, &traceback
); 
1070       PyObject 
*old_str 
= PyObject_Str(value
); 
1074         PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
)); 
1076         PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
1087 SWIG_Python_ArgFail(int argnum
) 
1089   if (PyErr_Occurred()) { 
1090     /* add information about failing argument */ 
1092     sprintf(mesg
, "argument number %d:", argnum
); 
1093     return SWIG_Python_AddErrMesg(mesg
, 1); 
1100 /* ----------------------------------------------------------------------------- 
1101  * pointers/data manipulation 
1102  * ----------------------------------------------------------------------------- */ 
1104 /* Convert a pointer value */ 
1106 SWIG_Python_ConvertPtr(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
, int flags
) { 
1109   static PyObject 
*SWIG_this 
= 0; 
1111   PyObject  
*pyobj 
= 0; 
1115   if (obj 
== Py_None
) { 
1120 #ifdef SWIG_COBJECT_TYPES 
1121   if (!(PySwigObject_Check(obj
))) { 
1123       SWIG_this 
= PyString_FromString("this"); 
1125     obj 
= PyObject_GetAttr(obj
,SWIG_this
); 
1127     if (!obj
) goto type_error
; 
1128     if (!PySwigObject_Check(obj
)) { 
1133   vptr 
= PySwigObject_AsVoidPtr(obj
); 
1134   c 
= (const char *) PySwigObject_GetDesc(obj
); 
1135   if (newref
) { Py_DECREF(obj
); } 
1138   if (!(PyString_Check(obj
))) { 
1140       SWIG_this 
= PyString_FromString("this"); 
1142     obj 
= PyObject_GetAttr(obj
,SWIG_this
); 
1144     if (!obj
) goto type_error
; 
1145     if (!PyString_Check(obj
)) { 
1150   c 
= PyString_AS_STRING(obj
); 
1151   /* Pointer values must start with leading underscore */ 
1152   c 
= SWIG_UnpackVoidPtr(c
, &vptr
, ty
->name
); 
1153   if (newref
) { Py_DECREF(obj
); } 
1154   if (!c
) goto type_error
; 
1160     tc 
= SWIG_TypeCheck(c
,ty
); 
1161     if (!tc
) goto type_error
; 
1162     *ptr 
= SWIG_TypeCast(tc
,vptr
); 
1167   if ((pyobj
) && (flags 
& SWIG_POINTER_DISOWN
)) { 
1168     PyObject_SetAttrString(pyobj
,(char*)"thisown",Py_False
); 
1174   if (pyobj 
&& !obj
) {     
1176     if (PyCFunction_Check(obj
)) { 
1177       /* here we get the method pointer for callbacks */ 
1178       char *doc 
= (((PyCFunctionObject 
*)obj
) -> m_ml 
-> ml_doc
); 
1179       c 
= doc 
? strstr(doc
, "swig_ptr: ") : 0; 
1181         c 
= SWIG_UnpackVoidPtr(c 
+ 10, &vptr
, ty
->name
); 
1182         if (!c
) goto type_error
; 
1187   if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1189       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1191       SWIG_Python_TypeError("C/C++ pointer", obj
); 
1197 /* Convert a pointer value, signal an exception on a type mismatch */ 
1199 SWIG_Python_MustGetPtr(PyObject 
*obj
, swig_type_info 
*ty
, int argnum
, int flags
) { 
1201   if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) { 
1203     if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1204       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1205       SWIG_Python_ArgFail(argnum
); 
1211 /* Convert a packed value value */ 
1213 SWIG_Python_ConvertPacked(PyObject 
*obj
, void *ptr
, size_t sz
, swig_type_info 
*ty
, int flags
) { 
1217 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) 
1218   c 
= PySwigPacked_UnpackData(obj
, ptr
, sz
); 
1220   if ((!obj
) || (!PyString_Check(obj
))) goto type_error
; 
1221   c 
= PyString_AS_STRING(obj
); 
1222   /* Pointer values must start with leading underscore */ 
1223   c 
= SWIG_UnpackDataName(c
, ptr
, sz
, ty
->name
); 
1225   if (!c
) goto type_error
; 
1227     tc 
= SWIG_TypeCheck(c
,ty
); 
1228     if (!tc
) goto type_error
; 
1234   if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1236       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1238       SWIG_Python_TypeError("C/C++ packed data", obj
); 
1244 /* Create a new array object */ 
1245 SWIGRUNTIME PyObject 
* 
1246 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info 
*type
, int own
) { 
1252 #ifdef SWIG_COBJECT_TYPES 
1253   robj 
= PySwigObject_FromVoidPtrAndDesc((void *) ptr
, (char *)type
->name
); 
1256     char result
[SWIG_BUFFER_SIZE
]; 
1257     robj 
= SWIG_PackVoidPtr(result
, ptr
, type
->name
, sizeof(result
)) ? 
1258       PyString_FromString(result
) : 0; 
1261   if (!robj 
|| (robj 
== Py_None
)) return robj
; 
1262   if (type
->clientdata
) { 
1264     PyObject 
*args 
= Py_BuildValue((char*)"(O)", robj
); 
1266     inst 
= PyObject_CallObject((PyObject 
*) type
->clientdata
, args
); 
1270         PyObject_SetAttrString(inst
,(char*)"thisown",Py_True
); 
1278 SWIGRUNTIME PyObject 
* 
1279 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info 
*type
) { 
1285 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) 
1286   robj 
= PySwigPacked_FromDataAndDesc((void *) ptr
, sz
, (char *)type
->name
); 
1289     char result
[SWIG_BUFFER_SIZE
]; 
1290     robj 
= SWIG_PackDataName(result
, ptr
, sz
, type
->name
, sizeof(result
)) ? 
1291       PyString_FromString(result
) : 0; 
1297 /* -----------------------------------------------------------------------------* 
1299  * -----------------------------------------------------------------------------*/ 
1301 #ifdef SWIG_LINK_RUNTIME 
1302 void *SWIG_ReturnGlobalTypeList(void *); 
1305 SWIGRUNTIME swig_type_info 
** 
1306 SWIG_Python_GetTypeListHandle() { 
1307   static void *type_pointer 
= (void *)0; 
1308   /* first check if module already created */ 
1309   if (!type_pointer
) { 
1310 #ifdef SWIG_LINK_RUNTIME 
1311     type_pointer 
= SWIG_ReturnGlobalTypeList((void *)0); 
1313     type_pointer 
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
1314                                     (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
); 
1315     if (PyErr_Occurred()) { 
1317       type_pointer 
= (void *)0; 
1321   return (swig_type_info 
**) type_pointer
; 
1325   Search for a swig_type_info structure 
1327 SWIGRUNTIMEINLINE swig_type_info 
* 
1328 SWIG_Python_GetTypeList() { 
1329   swig_type_info 
**tlh 
= SWIG_Python_GetTypeListHandle(); 
1330   return tlh 
? *tlh 
: (swig_type_info
*)0; 
1333 #define SWIG_Runtime_GetTypeList SWIG_Python_GetTypeList  
1340 /* -------- TYPES TABLE (BEGIN) -------- */ 
1342 #define  SWIGTYPE_p_wxQueryLayoutInfoEvent swig_types[0]  
1343 #define  SWIGTYPE_p_wxPreviewFrame swig_types[1]  
1344 #define  SWIGTYPE_p_wxPyPreviewFrame swig_types[2]  
1345 #define  SWIGTYPE_p_wxPyPanel swig_types[3]  
1346 #define  SWIGTYPE_p_wxMenu swig_types[4]  
1347 #define  SWIGTYPE_p_wxFontData swig_types[5]  
1348 #define  SWIGTYPE_p_wxEvent swig_types[6]  
1349 #define  SWIGTYPE_p_wxPrintData swig_types[7]  
1350 #define  SWIGTYPE_p_wxTaskBarIcon swig_types[8]  
1351 #define  SWIGTYPE_p_wxPyTaskBarIcon swig_types[9]  
1352 #define  SWIGTYPE_p_wxIconBundle swig_types[10]  
1353 #define  SWIGTYPE_p_wxLayoutAlgorithm swig_types[11]  
1354 #define  SWIGTYPE_p_wxFindDialogEvent swig_types[12]  
1355 #define  SWIGTYPE_p_wxPreviewCanvas swig_types[13]  
1356 #define  SWIGTYPE_p_wxFont swig_types[14]  
1357 #define  SWIGTYPE_p_wxSplitterEvent swig_types[15]  
1358 #define  SWIGTYPE_p_wxRegion swig_types[16]  
1359 #define  SWIGTYPE_ptrdiff_t swig_types[17]  
1360 #define  SWIGTYPE_std__ptrdiff_t swig_types[18]  
1361 #define  SWIGTYPE_p_wxFindReplaceData swig_types[19]  
1362 #define  SWIGTYPE_p_int swig_types[20]  
1363 #define  SWIGTYPE_p_wxSize swig_types[21]  
1364 #define  SWIGTYPE_p_wxDC swig_types[22]  
1365 #define  SWIGTYPE_p_wxIcon swig_types[23]  
1366 #define  SWIGTYPE_p_wxVisualAttributes swig_types[24]  
1367 #define  SWIGTYPE_p_wxMDIChildFrame swig_types[25]  
1368 #define  SWIGTYPE_p_wxColourData swig_types[26]  
1369 #define  SWIGTYPE_p_wxNotifyEvent swig_types[27]  
1370 #define  SWIGTYPE_p_wxPyWindow swig_types[28]  
1371 #define  SWIGTYPE_p_form_ops_t swig_types[29]  
1372 #define  SWIGTYPE_p_wxSplashScreen swig_types[30]  
1373 #define  SWIGTYPE_p_wxPasswordEntryDialog swig_types[31]  
1374 #define  SWIGTYPE_p_wxSingleChoiceDialog swig_types[32]  
1375 #define  SWIGTYPE_p_wxMultiChoiceDialog swig_types[33]  
1376 #define  SWIGTYPE_p_wxFileDialog swig_types[34]  
1377 #define  SWIGTYPE_p_wxTextEntryDialog swig_types[35]  
1378 #define  SWIGTYPE_p_wxMessageDialog swig_types[36]  
1379 #define  SWIGTYPE_p_wxProgressDialog swig_types[37]  
1380 #define  SWIGTYPE_p_wxFindReplaceDialog swig_types[38]  
1381 #define  SWIGTYPE_p_wxPrinter swig_types[39]  
1382 #define  SWIGTYPE_p_wxArrayInt swig_types[40]  
1383 #define  SWIGTYPE_p_wxDuplexMode swig_types[41]  
1384 #define  SWIGTYPE_p_wxEvtHandler swig_types[42]  
1385 #define  SWIGTYPE_p_wxCalculateLayoutEvent swig_types[43]  
1386 #define  SWIGTYPE_p_wxPyHtmlListBox swig_types[44]  
1387 #define  SWIGTYPE_p_wxPyVListBox swig_types[45]  
1388 #define  SWIGTYPE_p_wxRect swig_types[46]  
1389 #define  SWIGTYPE_p_wxStdDialogButtonSizer swig_types[47]  
1390 #define  SWIGTYPE_p_char swig_types[48]  
1391 #define  SWIGTYPE_p_wxMiniFrame swig_types[49]  
1392 #define  SWIGTYPE_p_wxFrame swig_types[50]  
1393 #define  SWIGTYPE_p_wxPyPrintout swig_types[51]  
1394 #define  SWIGTYPE_p_wxTaskBarIconEvent swig_types[52]  
1395 #define  SWIGTYPE_p_wxScrollWinEvent swig_types[53]  
1396 #define  SWIGTYPE_p_wxPaperSize swig_types[54]  
1397 #define  SWIGTYPE_p_wxStatusBar swig_types[55]  
1398 #define  SWIGTYPE_p_wxMDIParentFrame swig_types[56]  
1399 #define  SWIGTYPE_p_wxPoint swig_types[57]  
1400 #define  SWIGTYPE_p_wxObject swig_types[58]  
1401 #define  SWIGTYPE_p_unsigned_long swig_types[59]  
1402 #define  SWIGTYPE_p_wxTipWindow swig_types[60]  
1403 #define  SWIGTYPE_p_wxSashLayoutWindow swig_types[61]  
1404 #define  SWIGTYPE_p_wxSplitterWindow swig_types[62]  
1405 #define  SWIGTYPE_p_wxSplashScreenWindow swig_types[63]  
1406 #define  SWIGTYPE_p_wxPyVScrolledWindow swig_types[64]  
1407 #define  SWIGTYPE_p_wxPyPopupTransientWindow swig_types[65]  
1408 #define  SWIGTYPE_p_wxPopupWindow swig_types[66]  
1409 #define  SWIGTYPE_p_wxSashWindow swig_types[67]  
1410 #define  SWIGTYPE_p_wxTopLevelWindow swig_types[68]  
1411 #define  SWIGTYPE_p_wxWindow swig_types[69]  
1412 #define  SWIGTYPE_p_wxScrolledWindow swig_types[70]  
1413 #define  SWIGTYPE_p_wxMenuBar swig_types[71]  
1414 #define  SWIGTYPE_p_wxMDIClientWindow swig_types[72]  
1415 #define  SWIGTYPE_p_wxPyScrolledWindow swig_types[73]  
1416 #define  SWIGTYPE_p_wxPrintPreview swig_types[74]  
1417 #define  SWIGTYPE_p_wxSashEvent swig_types[75]  
1418 #define  SWIGTYPE_p_wxString swig_types[76]  
1419 #define  SWIGTYPE_p_wxPyPrintPreview swig_types[77]  
1420 #define  SWIGTYPE_p_wxDirDialog swig_types[78]  
1421 #define  SWIGTYPE_p_wxColourDialog swig_types[79]  
1422 #define  SWIGTYPE_p_wxDialog swig_types[80]  
1423 #define  SWIGTYPE_p_wxPanel swig_types[81]  
1424 #define  SWIGTYPE_p_wxFontDialog swig_types[82]  
1425 #define  SWIGTYPE_p_wxPageSetupDialog swig_types[83]  
1426 #define  SWIGTYPE_p_wxPrintDialog swig_types[84]  
1427 #define  SWIGTYPE_p_wxFileSystem swig_types[85]  
1428 #define  SWIGTYPE_p_wxBitmap swig_types[86]  
1429 #define  SWIGTYPE_unsigned_int swig_types[87]  
1430 #define  SWIGTYPE_p_unsigned_int swig_types[88]  
1431 #define  SWIGTYPE_p_unsigned_char swig_types[89]  
1432 #define  SWIGTYPE_p_wxCommandEvent swig_types[90]  
1433 #define  SWIGTYPE_p_wxPreviewControlBar swig_types[91]  
1434 #define  SWIGTYPE_p_wxPyPreviewControlBar swig_types[92]  
1435 #define  SWIGTYPE_p_wxColour swig_types[93]  
1436 #define  SWIGTYPE_p_wxToolBar swig_types[94]  
1437 #define  SWIGTYPE_p_wxPageSetupDialogData swig_types[95]  
1438 #define  SWIGTYPE_p_wxPrintDialogData swig_types[96]  
1439 static swig_type_info 
*swig_types
[98]; 
1441 /* -------- TYPES TABLE (END) -------- */ 
1444 /*----------------------------------------------- 
1445               @(target):= _windows_.so 
1446   ------------------------------------------------*/ 
1447 #define SWIG_init    init_windows_ 
1449 #define SWIG_name    "_windows_" 
1451 #include "wx/wxPython/wxPython.h" 
1452 #include "wx/wxPython/pyclasses.h" 
1455  static const wxString 
wxPyEmptyString(wxEmptyString
);  
1456  static const wxString 
wxPyPanelNameStr(wxPanelNameStr
);  
1464   SWIG_CheckLongInRange(long value
, long min_value
, long max_value
, 
1467   if (value 
< min_value
) { 
1469       PyErr_Format(PyExc_OverflowError
,  
1470                    "value %ld is less than '%s' minimum %ld",  
1471                    value
, errmsg
, min_value
); 
1474   } else if (value 
> max_value
) { 
1476       PyErr_Format(PyExc_OverflowError
, 
1477                    "value %ld is greater than '%s' maximum %ld",  
1478                    value
, errmsg
, max_value
); 
1487 SWIG_AsVal_long(PyObject
* obj
, long* val
) 
1489     if (PyNumber_Check(obj
)) { 
1490         if (val
) *val 
= PyInt_AsLong(obj
); 
1494         SWIG_type_error("number", obj
); 
1500 #if INT_MAX != LONG_MAX 
1502   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1504   const char* errmsg 
= val 
? "int" : (char*)0; 
1506   if (SWIG_AsVal_long(obj
, &v
)) { 
1507     if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) { 
1508       if (val
) *val 
= (int)(v
); 
1517     SWIG_type_error(errmsg
, obj
); 
1523   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1525   return SWIG_AsVal_long(obj
,(long*)val
); 
1531 SWIG_As_int(PyObject
* obj
) 
1534   if (!SWIG_AsVal_int(obj
, &v
)) { 
1536       this is needed to make valgrind/purify happier.  
1538     memset((void*)&v
, 0, sizeof(int)); 
1544 SWIGINTERNSHORT 
long 
1545 SWIG_As_long(PyObject
* obj
) 
1548   if (!SWIG_AsVal_long(obj
, &v
)) { 
1550       this is needed to make valgrind/purify happier.  
1552     memset((void*)&v
, 0, sizeof(long)); 
1559 SWIG_Check_int(PyObject
* obj
) 
1561   return SWIG_AsVal_int(obj
, (int*)0); 
1566 SWIG_Check_long(PyObject
* obj
) 
1568   return SWIG_AsVal_long(obj
, (long*)0); 
1573   SWIG_AsVal_bool(PyObject 
*obj
, bool *val
) 
1575   if (obj 
== Py_True
) { 
1576     if (val
) *val 
= true; 
1579   if (obj 
== Py_False
) { 
1580     if (val
) *val 
= false; 
1584   if (SWIG_AsVal_int(obj
, &res
)) {     
1585     if (val
) *val 
= res 
? true : false; 
1591     SWIG_type_error("bool", obj
); 
1597 SWIGINTERNSHORT 
bool 
1598 SWIG_As_bool(PyObject
* obj
) 
1601   if (!SWIG_AsVal_bool(obj
, &v
)) { 
1603       this is needed to make valgrind/purify happier.  
1605     memset((void*)&v
, 0, sizeof(bool)); 
1612 SWIG_Check_bool(PyObject
* obj
) 
1614   return SWIG_AsVal_bool(obj
, (bool*)0); 
1618   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1619 #define SWIG_From_int PyInt_FromLong 
1623   static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) { 
1629     } else if (target 
== Py_None
) {   
1633         if (!PyTuple_Check(target
)) { 
1635             target 
= PyTuple_New(1); 
1636             PyTuple_SetItem(target
, 0, o2
); 
1638         o3 
= PyTuple_New(1);             
1639         PyTuple_SetItem(o3
, 0, o
);       
1642         target 
= PySequence_Concat(o2
, o3
);  
1652 SWIG_AsVal_double(PyObject 
*obj
, double* val
) 
1654     if (PyNumber_Check(obj
)) { 
1655         if (val
) *val 
= PyFloat_AsDouble(obj
); 
1659         SWIG_type_error("number", obj
); 
1665 SWIGINTERNSHORT 
double 
1666 SWIG_As_double(PyObject
* obj
) 
1669   if (!SWIG_AsVal_double(obj
, &v
)) { 
1671       this is needed to make valgrind/purify happier.  
1673     memset((void*)&v
, 0, sizeof(double)); 
1680 SWIG_Check_double(PyObject
* obj
) 
1682   return SWIG_AsVal_double(obj
, (double*)0); 
1686   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1687 #define SWIG_From_double PyFloat_FromDouble 
1690  static const wxString 
wxPyFrameNameStr(wxFrameNameStr
);  
1691  static const wxString 
wxPyDialogNameStr(wxDialogNameStr
);  
1692  static const wxString 
wxPyStatusLineNameStr(wxStatusLineNameStr
);  
1693  static const wxString 
wxPyToolBarNameStr(wxToolBarNameStr
);  
1694 static void wxTopLevelWindow_MacSetMetalAppearance(wxTopLevelWindow 
*self
,bool on
){ /*wxPyRaiseNotImplemented();*/ } 
1695 static bool wxTopLevelWindow_MacGetMetalAppearance(wxTopLevelWindow 
const *self
){ /*wxPyRaiseNotImplemented();*/ return false; } 
1697   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1698 #define SWIG_From_long PyInt_FromLong 
1703 static wxRect 
wxStatusBar_GetFieldRect(wxStatusBar 
*self
,int i
){ 
1705             self
->GetFieldRect(i
, r
); 
1708  static const wxString 
wxPySplitterNameStr(wxT("splitter"));  
1709  static const wxString 
wxPySashNameStr(wxT("sashWindow"));  
1710  static const wxString 
wxPySashLayoutNameStr(wxT("layoutWindow"));  
1712 #include <wx/popupwin.h> 
1715 class wxPyPopupTransientWindow 
: public wxPopupTransientWindow
 
1718     wxPyPopupTransientWindow() : wxPopupTransientWindow() {} 
1719     wxPyPopupTransientWindow(wxWindow
* parent
, int style 
= wxBORDER_NONE
) 
1720         : wxPopupTransientWindow(parent
, style
) {} 
1722     DEC_PYCALLBACK_BOOL_ME(ProcessLeftDown
); 
1723     DEC_PYCALLBACK__(OnDismiss
); 
1724     DEC_PYCALLBACK_BOOL_(CanDismiss
); 
1729 IMP_PYCALLBACK_BOOL_ME(wxPyPopupTransientWindow
, wxPopupTransientWindow
, ProcessLeftDown
); 
1730 IMP_PYCALLBACK__(wxPyPopupTransientWindow
, wxPopupTransientWindow
, OnDismiss
); 
1731 IMP_PYCALLBACK_BOOL_(wxPyPopupTransientWindow
, wxPopupTransientWindow
, CanDismiss
); 
1734 #include <wx/tipwin.h> 
1736 static wxTipWindow 
*new_wxTipWindow(wxWindow 
*parent
,wxString 
const &text
,int maxLength
=100,wxRect 
*rectBound
=NULL
){ 
1737             return new wxTipWindow(parent
, text
, maxLength
, NULL
, rectBound
); 
1740 #include <wx/tipwin.h> 
1743 #include <wx/vscroll.h> 
1746 class wxPyVScrolledWindow  
: public wxVScrolledWindow
 
1748     DECLARE_ABSTRACT_CLASS(wxPyVScrolledWindow
); 
1750     wxPyVScrolledWindow() : wxVScrolledWindow() {} 
1752     wxPyVScrolledWindow(wxWindow 
*parent
, 
1753                         wxWindowID id 
= wxID_ANY
, 
1754                         const wxPoint
& pos 
= wxDefaultPosition
, 
1755                         const wxSize
& size 
= wxDefaultSize
, 
1757                         const wxString
& name 
= wxPyPanelNameStr
) 
1758         : wxVScrolledWindow(parent
, id
, pos
, size
, style
, name
) 
1761     // Overridable virtuals 
1763     // this function must be overridden in the derived class and it should 
1764     // return the height of the given line in pixels 
1765     DEC_PYCALLBACK_COORD_SIZET_constpure(OnGetLineHeight
); 
1768     // this function doesn't have to be overridden but it may be useful to do 
1769     // it if calculating the lines heights is a relatively expensive operation 
1770     // as it gives the user code a possibility to calculate several of them at 
1773     // OnGetLinesHint() is normally called just before OnGetLineHeight() but you 
1774     // shouldn't rely on the latter being called for all lines in the interval 
1775     // specified here. It is also possible that OnGetLineHeight() will be 
1776     // called for the lines outside of this interval, so this is really just a 
1777     // hint, not a promise. 
1779     // finally note that lineMin is inclusive, while lineMax is exclusive, as 
1781     DEC_PYCALLBACK_VOID_SIZETSIZET_const(OnGetLinesHint
); 
1784     // when the number of lines changes, we try to estimate the total height 
1785     // of all lines which is a rather expensive operation in terms of lines 
1786     // access, so if the user code may estimate the average height 
1787     // better/faster than we do, it should override this function to implement 
1790     // this function should return the best guess for the total height it may 
1792     DEC_PYCALLBACK_COORD_const(EstimateTotalHeight
); 
1795     // Also expose some other interesting protected methods 
1798     // find the index of the line we need to show at the top of the window such 
1799     // that the last (fully or partially) visible line is the given one 
1800     size_t FindFirstFromBottom(size_t lineLast
, bool fullyVisible 
= false) 
1801     { return wxVScrolledWindow::FindFirstFromBottom(lineLast
, fullyVisible
); } 
1803     // get the total height of the lines between lineMin (inclusive) and 
1804     // lineMax (exclusive) 
1805     wxCoord 
GetLinesHeight(size_t lineMin
, size_t lineMax
) const 
1806     { return wxVScrolledWindow::GetLinesHeight(lineMin
, lineMax
); } 
1812 IMPLEMENT_ABSTRACT_CLASS(wxPyVScrolledWindow
, wxVScrolledWindow
); 
1814 IMP_PYCALLBACK_COORD_SIZET_constpure(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLineHeight
); 
1815 IMP_PYCALLBACK_VOID_SIZETSIZET_const(wxPyVScrolledWindow
, wxVScrolledWindow
, OnGetLinesHint
); 
1816 IMP_PYCALLBACK_COORD_const          (wxPyVScrolledWindow
, wxVScrolledWindow
, EstimateTotalHeight
); 
1820 SWIG_AsVal_unsigned_SS_long(PyObject
* obj
, unsigned long* val
) 
1823     if (SWIG_AsVal_long(obj
, &v
) && v 
< 0) { 
1824         SWIG_type_error("unsigned number", obj
); 
1827         *val 
= (unsigned long)v
; 
1832 SWIGINTERNSHORT 
unsigned long 
1833 SWIG_As_unsigned_SS_long(PyObject
* obj
) 
1836   if (!SWIG_AsVal_unsigned_SS_long(obj
, &v
)) { 
1838       this is needed to make valgrind/purify happier.  
1840     memset((void*)&v
, 0, sizeof(unsigned long)); 
1847 SWIG_Check_unsigned_SS_long(PyObject
* obj
) 
1849   return SWIG_AsVal_unsigned_SS_long(obj
, (unsigned long*)0); 
1853 SWIGINTERNSHORT PyObject
*  
1854   SWIG_From_unsigned_SS_long(unsigned long value
) 
1856   return (value 
> LONG_MAX
) ? 
1857     PyLong_FromUnsignedLong(value
)  
1858     : PyInt_FromLong((long)(value
));  
1862 #include <wx/vlbox.h> 
1864  static const wxString 
wxPyVListBoxNameStr(wxVListBoxNameStr
);  
1866 class wxPyVListBox  
: public wxVListBox
 
1868     DECLARE_ABSTRACT_CLASS(wxPyVListBox
); 
1870     wxPyVListBox() : wxVListBox() {} 
1872     wxPyVListBox(wxWindow 
*parent
, 
1873                  wxWindowID id 
= wxID_ANY
, 
1874                  const wxPoint
& pos 
= wxDefaultPosition
, 
1875                  const wxSize
& size 
= wxDefaultSize
, 
1877                  const wxString
& name 
= wxPyVListBoxNameStr
) 
1878         : wxVListBox(parent
, id
, pos
, size
, style
, name
) 
1881     // Overridable virtuals 
1883     // the derived class must implement this function to actually draw the item 
1884     // with the given index on the provided DC 
1885     // virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const = 0; 
1886     DEC_PYCALLBACK__DCRECTSIZET_constpure(OnDrawItem
); 
1889     // the derived class must implement this method to return the height of the 
1891     // virtual wxCoord OnMeasureItem(size_t n) const = 0; 
1892     DEC_PYCALLBACK_COORD_SIZET_constpure(OnMeasureItem
); 
1895     // this method may be used to draw separators between the lines; note that 
1896     // the rectangle may be modified, typically to deflate it a bit before 
1897     // passing to OnDrawItem() 
1899     // the base class version doesn't do anything 
1900     //    virtual void OnDrawSeparator(wxDC& dc, wxRect& rect, size_t n) const; 
1901     DEC_PYCALLBACK__DCRECTSIZET_constpure(OnDrawSeparator
); 
1904     // this method is used to draw the items background and, maybe, a border 
1907     // the base class version implements a reasonable default behaviour which 
1908     // consists in drawing the selected item with the standard background 
1909     // colour and drawing a border around the item if it is either selected or 
1911     //     virtual void OnDrawBackground(wxDC& dc, const wxRect& rect, size_t n) const; 
1912     DEC_PYCALLBACK__DCRECTSIZET_const(OnDrawBackground
); 
1918 IMPLEMENT_ABSTRACT_CLASS(wxPyVListBox
, wxVListBox
); 
1920 IMP_PYCALLBACK__DCRECTSIZET_constpure(wxPyVListBox
, wxVListBox
, OnDrawItem
); 
1921 IMP_PYCALLBACK_COORD_SIZET_constpure (wxPyVListBox
, wxVListBox
, OnMeasureItem
); 
1922 IMP_PYCALLBACK__DCRECTSIZET_constpure(wxPyVListBox
, wxVListBox
, OnDrawSeparator
); 
1923 IMP_PYCALLBACK__DCRECTSIZET_const    (wxPyVListBox
, wxVListBox
, OnDrawBackground
); 
1926 static PyObject 
*wxPyVListBox_GetFirstSelected(wxPyVListBox 
*self
){ 
1927             unsigned long cookie 
= 0; 
1928             int selected 
= self
->GetFirstSelected(cookie
); 
1929             wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1930             PyObject
* tup 
= PyTuple_New(2); 
1931             PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
)); 
1932             PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
)); 
1933             wxPyEndBlockThreads(blocked
); 
1936 static PyObject 
*wxPyVListBox_GetNextSelected(wxPyVListBox 
*self
,unsigned long cookie
){ 
1937             int selected 
= self
->GetNextSelected(cookie
); 
1938             wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1939             PyObject
* tup 
= PyTuple_New(2); 
1940             PyTuple_SET_ITEM(tup
, 0, PyInt_FromLong(selected
)); 
1941             PyTuple_SET_ITEM(tup
, 1, PyInt_FromLong(cookie
)); 
1942             wxPyEndBlockThreads(blocked
); 
1946 #include <wx/htmllbox.h> 
1949 class wxPyHtmlListBox  
: public wxHtmlListBox
 
1951     DECLARE_ABSTRACT_CLASS(wxPyHtmlListBox
); 
1953     wxPyHtmlListBox() : wxHtmlListBox() {} 
1955     wxPyHtmlListBox(wxWindow 
*parent
, 
1956                     wxWindowID id 
= wxID_ANY
, 
1957                     const wxPoint
& pos 
= wxDefaultPosition
, 
1958                     const wxSize
& size 
= wxDefaultSize
, 
1960                     const wxString
& name 
= wxPyVListBoxNameStr
) 
1961         : wxHtmlListBox(parent
, id
, pos
, size
, style
, name
) 
1964     // Overridable virtuals 
1966     // this method must be implemented in the derived class and should return 
1967     // the body (i.e. without <html>) of the HTML for the given item 
1968     DEC_PYCALLBACK_STRING_SIZET_pure(OnGetItem
); 
1970     // this function may be overridden to decorate HTML returned by OnGetItem() 
1971     DEC_PYCALLBACK_STRING_SIZET(OnGetItemMarkup
); 
1974 //     // this method allows to customize the selection appearance: it may be used 
1975 //     // to specify the colour of the text which normally has the given colour 
1976 //     // colFg when it is inside the selection 
1978 //     // by default, the original colour is not used at all and all text has the 
1979 //     // same (default for this system) colour inside selection 
1980 //     virtual wxColour GetSelectedTextColour(const wxColour& colFg) const; 
1982 //     // this is the same as GetSelectedTextColour() but allows to customize the 
1983 //     // background colour -- this is even more rarely used as you can change it 
1984 //     // globally using SetSelectionBackground() 
1985 //     virtual wxColour GetSelectedTextBgColour(const wxColour& colBg) const; 
1992 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlListBox
, wxHtmlListBox
) 
1994 IMP_PYCALLBACK_STRING_SIZET_pure(wxPyHtmlListBox
, wxHtmlListBox
, OnGetItem
); 
1995 IMP_PYCALLBACK_STRING_SIZET     (wxPyHtmlListBox
, wxHtmlListBox
, OnGetItemMarkup
); 
2001 #ifndef wxHAS_TASK_BAR_ICON 
2002 // implement dummy classes for platforms that don't have it 
2004 class wxTaskBarIcon 
: public wxEvtHandler
 
2007     wxTaskBarIcon()  { wxPyRaiseNotImplemented(); } 
2011 class wxTaskBarIconEvent 
: public wxEvent
 
2014     wxTaskBarIconEvent(wxEventType
, wxTaskBarIcon 
*) 
2015         { wxPyRaiseNotImplemented(); } 
2016     virtual wxEvent
* Clone() const { return NULL
; } 
2017     bool IsOk() const { return false; } 
2018     bool IsIconInstalled() const { return false; } 
2019     bool SetIcon(const wxIcon
& icon
, const wxString
& tooltip 
= wxPyEmptyString
) { return false; } 
2020     bool RemoveIcon() { return false; } 
2021     bool PopupMenu(wxMenu 
*menu
) { return false; } 
2025     wxEVT_TASKBAR_MOVE 
= 0, 
2026     wxEVT_TASKBAR_LEFT_DOWN 
= 0, 
2027     wxEVT_TASKBAR_LEFT_UP 
= 0, 
2028     wxEVT_TASKBAR_RIGHT_DOWN 
= 0, 
2029     wxEVT_TASKBAR_RIGHT_UP 
= 0, 
2030     wxEVT_TASKBAR_LEFT_DCLICK 
= 0, 
2031     wxEVT_TASKBAR_RIGHT_DCLICK 
= 0, 
2036 // Otherwise make a class that can virtualize CreatePopupMenu 
2037 class wxPyTaskBarIcon 
: public wxTaskBarIcon
 
2039     DECLARE_ABSTRACT_CLASS(wxPyTaskBarIcon
); 
2041     wxPyTaskBarIcon() : wxTaskBarIcon() 
2044     wxMenu
* CreatePopupMenu() { 
2045         wxMenu 
*rval 
= NULL
; 
2047         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2048         if ((found 
= wxPyCBH_findCallback(m_myInst
, "CreatePopupMenu"))) { 
2051             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()")); 
2053                 if (wxPyConvertSwigPtr(ro
, (void **)&ptr
, wxT("wxMenu"))) 
2058         wxPyEndBlockThreads(blocked
); 
2060             rval 
= wxTaskBarIcon::CreatePopupMenu(); 
2067 IMPLEMENT_ABSTRACT_CLASS(wxPyTaskBarIcon
, wxTaskBarIcon
); 
2071 static void wxPyTaskBarIcon_Destroy(wxPyTaskBarIcon 
*self
){ 
2075  static const wxString 
wxPyFileSelectorPromptStr(wxFileSelectorPromptStr
);  
2076  static const wxString 
wxPyDirSelectorPromptStr(wxDirSelectorPromptStr
);  
2077  static const wxString 
wxPyDirDialogNameStr(wxDirDialogNameStr
);  
2078  static const wxString 
wxPyFileSelectorDefaultWildcardStr(wxFileSelectorDefaultWildcardStr
);  
2079  static const wxString 
wxPyGetTextFromUserPromptStr(wxGetTextFromUserPromptStr
);  
2080  static const wxString 
wxPyMessageBoxCaptionStr(wxMessageBoxCaptionStr
);  
2081 static PyObject 
*wxFileDialog_GetFilenames(wxFileDialog 
*self
){ 
2083             self
->GetFilenames(arr
); 
2084             return wxArrayString2PyList_helper(arr
); 
2086 static PyObject 
*wxFileDialog_GetPaths(wxFileDialog 
*self
){ 
2088             self
->GetPaths(arr
); 
2089             return wxArrayString2PyList_helper(arr
); 
2091 static PyObject 
*wxMultiChoiceDialog_GetSelections(wxMultiChoiceDialog 
*self
){ 
2092             return wxArrayInt2PyList_helper(self
->GetSelections()); 
2094 static wxSingleChoiceDialog 
*new_wxSingleChoiceDialog(wxWindow 
*parent
,wxString 
const &message
,wxString 
const &caption
,int choices
,wxString 
*choices_array
,long style
=wxCHOICEDLG_STYLE
,wxPoint 
const &pos
=wxDefaultPosition
){ 
2095             return new wxSingleChoiceDialog(parent
, message
, caption
, 
2096                                             choices
, choices_array
, NULL
, style
, pos
); 
2098  static const wxString 
wxPyGetPasswordFromUserPromptStr(wxGetPasswordFromUserPromptStr
);  
2102  // C++ version of Python aware wxWindow 
2103 class wxPyWindow 
: public wxWindow
 
2105     DECLARE_DYNAMIC_CLASS(wxPyWindow
) 
2107     wxPyWindow() : wxWindow() {} 
2108     wxPyWindow(wxWindow
* parent
, const wxWindowID id
, 
2109                const wxPoint
& pos 
= wxDefaultPosition
, 
2110                const wxSize
& size 
= wxDefaultSize
, 
2112                const wxString
& name 
= wxPyPanelNameStr
) 
2113         : wxWindow(parent
, id
, pos
, size
, style
, name
) {} 
2115     void SetBestSize(const wxSize
& size
) { wxWindow::SetBestSize(size
); } 
2117     bool DoEraseBackground(wxDC
* dc
) { 
2119         return wxWindow::DoEraseBackground(dc
->GetHDC()); 
2121         dc
->SetBackground(wxBrush(GetBackgroundColour())); 
2127     DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
); 
2128     DEC_PYCALLBACK_VOID_INT5(DoSetSize
); 
2129     DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
); 
2130     DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
); 
2132     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
); 
2133     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
); 
2134     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
); 
2136     DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
); 
2137     DEC_PYCALLBACK_SIZE_const(DoGetBestSize
); 
2139     DEC_PYCALLBACK__(InitDialog
); 
2140     DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
); 
2141     DEC_PYCALLBACK_BOOL_(TransferDataToWindow
); 
2142     DEC_PYCALLBACK_BOOL_(Validate
); 
2144     DEC_PYCALLBACK_BOOL_const(AcceptsFocus
); 
2145     DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
); 
2146     DEC_PYCALLBACK_SIZE_const(GetMaxSize
); 
2148     DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
); 
2149     DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
); 
2151     DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
); 
2152     DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
); 
2154     DEC_PYCALLBACK_BOOL_(HasTransparentBackground
); 
2156     DEC_PYCALLBACK_VOID_(OnInternalIdle
); 
2161 IMPLEMENT_DYNAMIC_CLASS(wxPyWindow
, wxWindow
); 
2163 IMP_PYCALLBACK_VOID_INT4(wxPyWindow
, wxWindow
, DoMoveWindow
); 
2164 IMP_PYCALLBACK_VOID_INT5(wxPyWindow
, wxWindow
, DoSetSize
); 
2165 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetClientSize
); 
2166 IMP_PYCALLBACK_VOID_INTINT(wxPyWindow
, wxWindow
, DoSetVirtualSize
); 
2168 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetSize
); 
2169 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetClientSize
); 
2170 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyWindow
, wxWindow
, DoGetPosition
); 
2172 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetVirtualSize
); 
2173 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, DoGetBestSize
); 
2175 IMP_PYCALLBACK__(wxPyWindow
, wxWindow
, InitDialog
); 
2176 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataFromWindow
); 
2177 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, TransferDataToWindow
); 
2178 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, Validate
); 
2180 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocus
); 
2181 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, AcceptsFocusFromKeyboard
); 
2182 IMP_PYCALLBACK_SIZE_const(wxPyWindow
, wxWindow
, GetMaxSize
); 
2184 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, AddChild
); 
2185 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyWindow
, wxWindow
, RemoveChild
); 
2187 IMP_PYCALLBACK_BOOL_const(wxPyWindow
, wxWindow
, ShouldInheritColours
); 
2188 IMP_PYCALLBACK_VIZATTR_(wxPyWindow
, wxWindow
, GetDefaultAttributes
); 
2190 IMP_PYCALLBACK_BOOL_(wxPyWindow
, wxWindow
, HasTransparentBackground
); 
2192 IMP_PYCALLBACK_VOID_(wxPyWindow
, wxWindow
, OnInternalIdle
); 
2194  // C++ version of Python aware wxPanel 
2195 class wxPyPanel 
: public wxPanel
 
2197     DECLARE_DYNAMIC_CLASS(wxPyPanel
) 
2199     wxPyPanel() : wxPanel() {} 
2200     wxPyPanel(wxWindow
* parent
, const wxWindowID id
, 
2201                const wxPoint
& pos 
= wxDefaultPosition
, 
2202                const wxSize
& size 
= wxDefaultSize
, 
2204                const wxString
& name 
= wxPyPanelNameStr
) 
2205         : wxPanel(parent
, id
, pos
, size
, style
, name
) {} 
2207     void SetBestSize(const wxSize
& size
) { wxPanel::SetBestSize(size
); } 
2208     bool DoEraseBackground(wxDC
* dc
) { 
2210         return wxWindow::DoEraseBackground(dc
->GetHDC()); 
2212         dc
->SetBackground(wxBrush(GetBackgroundColour())); 
2219     DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
); 
2220     DEC_PYCALLBACK_VOID_INT5(DoSetSize
); 
2221     DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
); 
2222     DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
); 
2224     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
); 
2225     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
); 
2226     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
); 
2228     DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
); 
2229     DEC_PYCALLBACK_SIZE_const(DoGetBestSize
); 
2231     DEC_PYCALLBACK__(InitDialog
); 
2232     DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
); 
2233     DEC_PYCALLBACK_BOOL_(TransferDataToWindow
); 
2234     DEC_PYCALLBACK_BOOL_(Validate
); 
2236     DEC_PYCALLBACK_BOOL_const(AcceptsFocus
); 
2237     DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
); 
2238     DEC_PYCALLBACK_SIZE_const(GetMaxSize
); 
2240     DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
); 
2241     DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
); 
2243     DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
); 
2244     DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
); 
2246     DEC_PYCALLBACK_BOOL_(HasTransparentBackground
); 
2248     DEC_PYCALLBACK_VOID_(OnInternalIdle
); 
2253 IMPLEMENT_DYNAMIC_CLASS(wxPyPanel
, wxPanel
); 
2255 IMP_PYCALLBACK_VOID_INT4(wxPyPanel
, wxPanel
, DoMoveWindow
); 
2256 IMP_PYCALLBACK_VOID_INT5(wxPyPanel
, wxPanel
, DoSetSize
); 
2257 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetClientSize
); 
2258 IMP_PYCALLBACK_VOID_INTINT(wxPyPanel
, wxPanel
, DoSetVirtualSize
); 
2260 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetSize
); 
2261 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetClientSize
); 
2262 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyPanel
, wxPanel
, DoGetPosition
); 
2264 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetVirtualSize
); 
2265 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, DoGetBestSize
); 
2267 IMP_PYCALLBACK__(wxPyPanel
, wxPanel
, InitDialog
); 
2268 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataFromWindow
); 
2269 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, TransferDataToWindow
); 
2270 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, Validate
); 
2272 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocus
); 
2273 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, AcceptsFocusFromKeyboard
); 
2274 IMP_PYCALLBACK_SIZE_const(wxPyPanel
, wxPanel
, GetMaxSize
); 
2276 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, AddChild
); 
2277 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyPanel
, wxPanel
, RemoveChild
); 
2279 IMP_PYCALLBACK_BOOL_const(wxPyPanel
, wxPanel
, ShouldInheritColours
); 
2280 IMP_PYCALLBACK_VIZATTR_(wxPyPanel
, wxPanel
, GetDefaultAttributes
); 
2282 IMP_PYCALLBACK_BOOL_(wxPyPanel
, wxPanel
, HasTransparentBackground
); 
2284 IMP_PYCALLBACK_VOID_(wxPyPanel
, wxPanel
, OnInternalIdle
); 
2286  // C++ version of Python aware wxScrolledWindow 
2287 class wxPyScrolledWindow 
: public wxScrolledWindow
 
2289     DECLARE_DYNAMIC_CLASS(wxPyScrolledWindow
) 
2291     wxPyScrolledWindow() : wxScrolledWindow() {} 
2292     wxPyScrolledWindow(wxWindow
* parent
, const wxWindowID id
, 
2293                const wxPoint
& pos 
= wxDefaultPosition
, 
2294                const wxSize
& size 
= wxDefaultSize
, 
2296                const wxString
& name 
= wxPyPanelNameStr
) 
2297         : wxScrolledWindow(parent
, id
, pos
, size
, style
, name
) {} 
2299     void SetBestSize(const wxSize
& size
) { wxScrolledWindow::SetBestSize(size
); } 
2300     bool DoEraseBackground(wxDC
* dc
) { 
2302         return wxWindow::DoEraseBackground(dc
->GetHDC()); 
2304         dc
->SetBackground(wxBrush(GetBackgroundColour())); 
2310     DEC_PYCALLBACK_VOID_INT4(DoMoveWindow
); 
2311     DEC_PYCALLBACK_VOID_INT5(DoSetSize
); 
2312     DEC_PYCALLBACK_VOID_INTINT(DoSetClientSize
); 
2313     DEC_PYCALLBACK_VOID_INTINT(DoSetVirtualSize
); 
2315     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetSize
); 
2316     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetClientSize
); 
2317     DEC_PYCALLBACK_VOID_INTPINTP_const(DoGetPosition
); 
2319     DEC_PYCALLBACK_SIZE_const(DoGetVirtualSize
); 
2320     DEC_PYCALLBACK_SIZE_const(DoGetBestSize
); 
2322     DEC_PYCALLBACK__(InitDialog
); 
2323     DEC_PYCALLBACK_BOOL_(TransferDataFromWindow
); 
2324     DEC_PYCALLBACK_BOOL_(TransferDataToWindow
); 
2325     DEC_PYCALLBACK_BOOL_(Validate
); 
2327     DEC_PYCALLBACK_BOOL_const(AcceptsFocus
); 
2328     DEC_PYCALLBACK_BOOL_const(AcceptsFocusFromKeyboard
); 
2329     DEC_PYCALLBACK_SIZE_const(GetMaxSize
); 
2331     DEC_PYCALLBACK_VOID_WXWINBASE(AddChild
); 
2332     DEC_PYCALLBACK_VOID_WXWINBASE(RemoveChild
); 
2334     DEC_PYCALLBACK_BOOL_const(ShouldInheritColours
); 
2335     DEC_PYCALLBACK_VIZATTR_(GetDefaultAttributes
); 
2337     DEC_PYCALLBACK_BOOL_(HasTransparentBackground
); 
2339     DEC_PYCALLBACK_VOID_(OnInternalIdle
); 
2344 IMPLEMENT_DYNAMIC_CLASS(wxPyScrolledWindow
, wxScrolledWindow
); 
2346 IMP_PYCALLBACK_VOID_INT4(wxPyScrolledWindow
, wxScrolledWindow
, DoMoveWindow
); 
2347 IMP_PYCALLBACK_VOID_INT5(wxPyScrolledWindow
, wxScrolledWindow
, DoSetSize
); 
2348 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetClientSize
); 
2349 IMP_PYCALLBACK_VOID_INTINT(wxPyScrolledWindow
, wxScrolledWindow
, DoSetVirtualSize
); 
2351 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetSize
); 
2352 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetClientSize
); 
2353 IMP_PYCALLBACK_VOID_INTPINTP_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetPosition
); 
2355 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetVirtualSize
); 
2356 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, DoGetBestSize
); 
2358 IMP_PYCALLBACK__(wxPyScrolledWindow
, wxScrolledWindow
, InitDialog
); 
2359 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataFromWindow
); 
2360 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, TransferDataToWindow
); 
2361 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, Validate
); 
2363 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocus
); 
2364 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, AcceptsFocusFromKeyboard
); 
2365 IMP_PYCALLBACK_SIZE_const(wxPyScrolledWindow
, wxScrolledWindow
, GetMaxSize
); 
2367 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, AddChild
); 
2368 IMP_PYCALLBACK_VOID_WXWINBASE(wxPyScrolledWindow
, wxScrolledWindow
, RemoveChild
); 
2370 IMP_PYCALLBACK_BOOL_const(wxPyScrolledWindow
, wxScrolledWindow
, ShouldInheritColours
); 
2371 IMP_PYCALLBACK_VIZATTR_(wxPyScrolledWindow
, wxScrolledWindow
, GetDefaultAttributes
); 
2373 IMP_PYCALLBACK_BOOL_(wxPyScrolledWindow
, wxScrolledWindow
, HasTransparentBackground
); 
2375 IMP_PYCALLBACK_VOID_(wxPyScrolledWindow
, wxScrolledWindow
, OnInternalIdle
); 
2378 #include "wx/wxPython/printfw.h" 
2381  static const wxString 
wxPyPrintoutTitleStr(wxT("Printout"));  
2382  static const wxString 
wxPyPreviewCanvasNameStr(wxT("previewcanvas"));  
2383 static PyObject 
*wxPrintData_GetPrivData(wxPrintData 
*self
){ 
2385             wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2386             data 
= PyString_FromStringAndSize(self
->GetPrivData(), 
2387                                               self
->GetPrivDataLen()); 
2388             wxPyEndBlockThreads(blocked
); 
2391 static void wxPrintData_SetPrivData(wxPrintData 
*self
,PyObject 
*data
){ 
2392             if (! PyString_Check(data
)) { 
2393                 wxPyBLOCK_THREADS(PyErr_SetString(PyExc_TypeError
, 
2394                                                   "Expected string object")); 
2398             wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2399             self
->SetPrivData(PyString_AS_STRING(data
), PyString_GET_SIZE(data
)); 
2400             wxPyEndBlockThreads(blocked
); 
2404 IMPLEMENT_ABSTRACT_CLASS(wxPyPrintout
, wxPrintout
); 
2406 // Since this one would be tough and ugly to do with the Macros... 
2407 void wxPyPrintout::GetPageInfo(int *minPage
, int *maxPage
, int *pageFrom
, int *pageTo
) { 
2408     bool hadErr 
= false; 
2411     wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
2412     if ((found 
= wxPyCBH_findCallback(m_myInst
, "GetPageInfo"))) { 
2413         PyObject
* result 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("()")); 
2414         if (result 
&& PyTuple_Check(result
) && PyTuple_Size(result
) == 4) { 
2417             val 
= PyTuple_GetItem(result
, 0); 
2418             if (PyInt_Check(val
))    *minPage 
= PyInt_AsLong(val
); 
2421             val 
= PyTuple_GetItem(result
, 1); 
2422             if (PyInt_Check(val
))    *maxPage 
= PyInt_AsLong(val
); 
2425             val 
= PyTuple_GetItem(result
, 2); 
2426             if (PyInt_Check(val
))    *pageFrom 
= PyInt_AsLong(val
); 
2429             val 
= PyTuple_GetItem(result
, 3); 
2430             if (PyInt_Check(val
))    *pageTo 
= PyInt_AsLong(val
); 
2437             PyErr_SetString(PyExc_TypeError
, "GetPageInfo should return a tuple of 4 integers."); 
2442     wxPyEndBlockThreads(blocked
); 
2444         wxPrintout::GetPageInfo(minPage
, maxPage
, pageFrom
, pageTo
); 
2447 void wxPyPrintout::base_GetPageInfo(int *minPage
, int *maxPage
, int *pageFrom
, int *pageTo
) { 
2448     wxPrintout::GetPageInfo(minPage
, maxPage
, pageFrom
, pageTo
); 
2452 IMP_PYCALLBACK_BOOL_INTINT(wxPyPrintout
, wxPrintout
, OnBeginDocument
); 
2453 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndDocument
); 
2454 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnBeginPrinting
); 
2455 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnEndPrinting
); 
2456 IMP_PYCALLBACK__(wxPyPrintout
, wxPrintout
, OnPreparePrinting
); 
2457 IMP_PYCALLBACK_BOOL_INT_pure(wxPyPrintout
, wxPrintout
, OnPrintPage
); 
2458 IMP_PYCALLBACK_BOOL_INT(wxPyPrintout
, wxPrintout
, HasPage
); 
2464 #define DEC_PYCALLBACK_BOOL_PREWINDC(CBNAME)                                            \ 
2465     bool CBNAME(wxPreviewCanvas* a, wxDC& b);                                           \ 
2466     bool base_##CBNAME(wxPreviewCanvas* a, wxDC& b) 
2469 #define IMP_PYCALLBACK_BOOL_PREWINDC(CLASS, PCLASS, CBNAME)                             \ 
2470     bool CLASS::CBNAME(wxPreviewCanvas* a, wxDC& b) {                                   \ 
2473         wxPyBlock_t blocked = wxPyBeginBlockThreads();                                         \ 
2474         if ((found = wxPyCBH_findCallback(m_myInst, #CBNAME))) {                        \ 
2475             PyObject* win = wxPyMake_wxObject(a,false);                                 \ 
2476             PyObject* dc  = wxPyMake_wxObject(&b,false);                                \ 
2477             rval = wxPyCBH_callCallback(m_myInst, Py_BuildValue("(OO)", win, dc));      \ 
2481         wxPyEndBlockThreads(blocked);                                                   \ 
2483             rval = PCLASS::CBNAME(a, b);                                                \ 
2486     bool CLASS::base_##CBNAME(wxPreviewCanvas* a, wxDC& b) {                            \ 
2487         return PCLASS::CBNAME(a, b);                                                    \ 
2493 class wxPyPrintPreview 
: public wxPrintPreview
 
2495     DECLARE_CLASS(wxPyPrintPreview
) 
2497     wxPyPrintPreview(wxPyPrintout
* printout
, 
2498                      wxPyPrintout
* printoutForPrinting
, 
2499                      wxPrintDialogData
* data
=NULL
) 
2500         : wxPrintPreview(printout
, printoutForPrinting
, data
) 
2502     wxPyPrintPreview(wxPyPrintout
* printout
, 
2503                      wxPyPrintout
* printoutForPrinting
, 
2504                      wxPrintData
* data
=NULL
) 
2505         : wxPrintPreview(printout
, printoutForPrinting
, data
) 
2508     DEC_PYCALLBACK_BOOL_INT(SetCurrentPage
); 
2509     DEC_PYCALLBACK_BOOL_PREWINDC(PaintPage
); 
2510     DEC_PYCALLBACK_BOOL_PREWINDC(DrawBlankPage
); 
2511     DEC_PYCALLBACK_BOOL_INT(RenderPage
); 
2512     DEC_PYCALLBACK_VOID_INT(SetZoom
); 
2513     DEC_PYCALLBACK_BOOL_BOOL(Print
); 
2514     DEC_PYCALLBACK_VOID_(DetermineScaling
); 
2519 // Stupid renamed classes...  Fix this in 2.5... 
2520 #if defined(__WXMSW__) 
2521 IMPLEMENT_CLASS( wxPyPrintPreview
, wxWindowsPrintPreview 
); 
2522 #elif defined(__WXMAC__) 
2523 IMPLEMENT_CLASS( wxPyPrintPreview
, wxMacPrintPreview 
); 
2525 IMPLEMENT_CLASS( wxPyPrintPreview
, wxPostScriptPrintPreview 
); 
2528 IMP_PYCALLBACK_BOOL_INT     (wxPyPrintPreview
, wxPrintPreview
, SetCurrentPage
); 
2529 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, PaintPage
); 
2530 IMP_PYCALLBACK_BOOL_PREWINDC(wxPyPrintPreview
, wxPrintPreview
, DrawBlankPage
); 
2531 IMP_PYCALLBACK_BOOL_INT     (wxPyPrintPreview
, wxPrintPreview
, RenderPage
); 
2532 IMP_PYCALLBACK_VOID_INT     (wxPyPrintPreview
, wxPrintPreview
, SetZoom
); 
2533 IMP_PYCALLBACK_BOOL_BOOL    (wxPyPrintPreview
, wxPrintPreview
, Print
); 
2534 IMP_PYCALLBACK_VOID_        (wxPyPrintPreview
, wxPrintPreview
, DetermineScaling
); 
2537 class wxPyPreviewFrame 
: public wxPreviewFrame
 
2539     DECLARE_CLASS(wxPyPreviewFrame
); 
2541     wxPyPreviewFrame(wxPrintPreview
* preview
, wxFrame
* parent
, 
2542                      const wxString
& title
, 
2543                      const wxPoint
& pos 
= wxDefaultPosition
, 
2544                      const wxSize
&  size 
= wxDefaultSize
, 
2545                      long style 
= wxDEFAULT_FRAME_STYLE
, 
2546                      const wxString
& name 
= wxPyFrameNameStr
) 
2547         : wxPreviewFrame(preview
, parent
, title
, pos
, size
, style
, name
) 
2550     void SetPreviewCanvas(wxPreviewCanvas
* canvas
) { m_previewCanvas 
= canvas
; } 
2551     void SetControlBar(wxPreviewControlBar
* bar
) { m_controlBar 
= bar
; } 
2553     DEC_PYCALLBACK_VOID_(Initialize
); 
2554     DEC_PYCALLBACK_VOID_(CreateCanvas
); 
2555     DEC_PYCALLBACK_VOID_(CreateControlBar
); 
2560 IMPLEMENT_CLASS(wxPyPreviewFrame
, wxPreviewFrame
); 
2562 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, Initialize
); 
2563 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateCanvas
); 
2564 IMP_PYCALLBACK_VOID_(wxPyPreviewFrame
, wxPreviewFrame
, CreateControlBar
); 
2567 class wxPyPreviewControlBar 
: public wxPreviewControlBar
 
2569     DECLARE_CLASS(wxPyPreviewControlBar
); 
2571     wxPyPreviewControlBar(wxPrintPreview 
*preview
, 
2574                           const wxPoint
& pos 
= wxDefaultPosition
, 
2575                           const wxSize
& size 
= wxDefaultSize
, 
2577                           const wxString
& name 
= wxPyPanelNameStr
) 
2578         : wxPreviewControlBar(preview
, buttons
, parent
, pos
, size
, style
, name
) 
2581     void SetPrintPreview(wxPrintPreview
* preview
) { m_printPreview 
= preview
; } 
2583     DEC_PYCALLBACK_VOID_(CreateButtons
); 
2584     DEC_PYCALLBACK_VOID_INT(SetZoomControl
); 
2589 IMPLEMENT_CLASS(wxPyPreviewControlBar
, wxPreviewControlBar
); 
2590 IMP_PYCALLBACK_VOID_(wxPyPreviewControlBar
, wxPreviewControlBar
, CreateButtons
); 
2591 IMP_PYCALLBACK_VOID_INT(wxPyPreviewControlBar
, wxPreviewControlBar
, SetZoomControl
); 
2596 static PyObject 
*_wrap_new_Panel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2597     PyObject 
*resultobj
; 
2598     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
2599     int arg2 
= (int) (int)-1 ; 
2600     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
2601     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
2602     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
2603     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
2604     long arg5 
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER 
; 
2605     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
2606     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
2610     bool temp6 
= false ; 
2611     PyObject 
* obj0 
= 0 ; 
2612     PyObject 
* obj1 
= 0 ; 
2613     PyObject 
* obj2 
= 0 ; 
2614     PyObject 
* obj3 
= 0 ; 
2615     PyObject 
* obj4 
= 0 ; 
2616     PyObject 
* obj5 
= 0 ; 
2618         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
2621     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_Panel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
2622     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
2623     if (SWIG_arg_fail(1)) SWIG_fail
; 
2626             arg2 
= (int const)(SWIG_As_int(obj1
));  
2627             if (SWIG_arg_fail(2)) SWIG_fail
; 
2633             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
2639             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
2644             arg5 
= (long)(SWIG_As_long(obj4
));  
2645             if (SWIG_arg_fail(5)) SWIG_fail
; 
2650             arg6 
= wxString_in_helper(obj5
); 
2651             if (arg6 
== NULL
) SWIG_fail
; 
2656         if (!wxPyCheckForApp()) SWIG_fail
; 
2657         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2658         result 
= (wxPanel 
*)new wxPanel(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
2660         wxPyEndAllowThreads(__tstate
); 
2661         if (PyErr_Occurred()) SWIG_fail
; 
2663     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPanel
, 1); 
2678 static PyObject 
*_wrap_new_PrePanel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2679     PyObject 
*resultobj
; 
2685     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePanel",kwnames
)) goto fail
; 
2687         if (!wxPyCheckForApp()) SWIG_fail
; 
2688         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2689         result 
= (wxPanel 
*)new wxPanel(); 
2691         wxPyEndAllowThreads(__tstate
); 
2692         if (PyErr_Occurred()) SWIG_fail
; 
2694     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPanel
, 1); 
2701 static PyObject 
*_wrap_Panel_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2702     PyObject 
*resultobj
; 
2703     wxPanel 
*arg1 
= (wxPanel 
*) 0 ; 
2704     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
2705     int arg3 
= (int) (int)-1 ; 
2706     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
2707     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
2708     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
2709     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
2710     long arg6 
= (long) wxTAB_TRAVERSAL
|wxNO_BORDER 
; 
2711     wxString 
const &arg7_defvalue 
= wxPyPanelNameStr 
; 
2712     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
2716     bool temp7 
= false ; 
2717     PyObject 
* obj0 
= 0 ; 
2718     PyObject 
* obj1 
= 0 ; 
2719     PyObject 
* obj2 
= 0 ; 
2720     PyObject 
* obj3 
= 0 ; 
2721     PyObject 
* obj4 
= 0 ; 
2722     PyObject 
* obj5 
= 0 ; 
2723     PyObject 
* obj6 
= 0 ; 
2725         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
2728     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:Panel_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
2729     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
2730     if (SWIG_arg_fail(1)) SWIG_fail
; 
2731     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
2732     if (SWIG_arg_fail(2)) SWIG_fail
; 
2735             arg3 
= (int const)(SWIG_As_int(obj2
));  
2736             if (SWIG_arg_fail(3)) SWIG_fail
; 
2742             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
2748             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
2753             arg6 
= (long)(SWIG_As_long(obj5
));  
2754             if (SWIG_arg_fail(6)) SWIG_fail
; 
2759             arg7 
= wxString_in_helper(obj6
); 
2760             if (arg7 
== NULL
) SWIG_fail
; 
2765         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2766         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
2768         wxPyEndAllowThreads(__tstate
); 
2769         if (PyErr_Occurred()) SWIG_fail
; 
2772         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
2788 static PyObject 
*_wrap_Panel_InitDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2789     PyObject 
*resultobj
; 
2790     wxPanel 
*arg1 
= (wxPanel 
*) 0 ; 
2791     PyObject 
* obj0 
= 0 ; 
2793         (char *) "self", NULL 
 
2796     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Panel_InitDialog",kwnames
,&obj0
)) goto fail
; 
2797     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
2798     if (SWIG_arg_fail(1)) SWIG_fail
; 
2800         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2801         (arg1
)->InitDialog(); 
2803         wxPyEndAllowThreads(__tstate
); 
2804         if (PyErr_Occurred()) SWIG_fail
; 
2806     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2813 static PyObject 
*_wrap_Panel_SetFocus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2814     PyObject 
*resultobj
; 
2815     wxPanel 
*arg1 
= (wxPanel 
*) 0 ; 
2816     PyObject 
* obj0 
= 0 ; 
2818         (char *) "self", NULL 
 
2821     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Panel_SetFocus",kwnames
,&obj0
)) goto fail
; 
2822     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
2823     if (SWIG_arg_fail(1)) SWIG_fail
; 
2825         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2828         wxPyEndAllowThreads(__tstate
); 
2829         if (PyErr_Occurred()) SWIG_fail
; 
2831     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2838 static PyObject 
*_wrap_Panel_SetFocusIgnoringChildren(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2839     PyObject 
*resultobj
; 
2840     wxPanel 
*arg1 
= (wxPanel 
*) 0 ; 
2841     PyObject 
* obj0 
= 0 ; 
2843         (char *) "self", NULL 
 
2846     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Panel_SetFocusIgnoringChildren",kwnames
,&obj0
)) goto fail
; 
2847     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
2848     if (SWIG_arg_fail(1)) SWIG_fail
; 
2850         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2851         (arg1
)->SetFocusIgnoringChildren(); 
2853         wxPyEndAllowThreads(__tstate
); 
2854         if (PyErr_Occurred()) SWIG_fail
; 
2856     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2863 static PyObject 
*_wrap_Panel_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2864     PyObject 
*resultobj
; 
2865     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
2866     wxVisualAttributes result
; 
2867     PyObject 
* obj0 
= 0 ; 
2869         (char *) "variant", NULL 
 
2872     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Panel_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
2875             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
2876             if (SWIG_arg_fail(1)) SWIG_fail
; 
2880         if (!wxPyCheckForApp()) SWIG_fail
; 
2881         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2882         result 
= wxPanel::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
2884         wxPyEndAllowThreads(__tstate
); 
2885         if (PyErr_Occurred()) SWIG_fail
; 
2888         wxVisualAttributes 
* resultptr
; 
2889         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
2890         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
2898 static PyObject 
* Panel_swigregister(PyObject 
*, PyObject 
*args
) { 
2900     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
2901     SWIG_TypeClientData(SWIGTYPE_p_wxPanel
, obj
); 
2903     return Py_BuildValue((char *)""); 
2905 static PyObject 
*_wrap_new_ScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2906     PyObject 
*resultobj
; 
2907     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
2908     int arg2 
= (int) (int)-1 ; 
2909     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
2910     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
2911     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
2912     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
2913     long arg5 
= (long) wxHSCROLL
|wxVSCROLL 
; 
2914     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
2915     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
2916     wxScrolledWindow 
*result
; 
2919     bool temp6 
= false ; 
2920     PyObject 
* obj0 
= 0 ; 
2921     PyObject 
* obj1 
= 0 ; 
2922     PyObject 
* obj2 
= 0 ; 
2923     PyObject 
* obj3 
= 0 ; 
2924     PyObject 
* obj4 
= 0 ; 
2925     PyObject 
* obj5 
= 0 ; 
2927         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
2930     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_ScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
2931     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
2932     if (SWIG_arg_fail(1)) SWIG_fail
; 
2935             arg2 
= (int const)(SWIG_As_int(obj1
));  
2936             if (SWIG_arg_fail(2)) SWIG_fail
; 
2942             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
2948             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
2953             arg5 
= (long)(SWIG_As_long(obj4
));  
2954             if (SWIG_arg_fail(5)) SWIG_fail
; 
2959             arg6 
= wxString_in_helper(obj5
); 
2960             if (arg6 
== NULL
) SWIG_fail
; 
2965         if (!wxPyCheckForApp()) SWIG_fail
; 
2966         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2967         result 
= (wxScrolledWindow 
*)new wxScrolledWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
2969         wxPyEndAllowThreads(__tstate
); 
2970         if (PyErr_Occurred()) SWIG_fail
; 
2972     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrolledWindow
, 1); 
2987 static PyObject 
*_wrap_new_PreScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2988     PyObject 
*resultobj
; 
2989     wxScrolledWindow 
*result
; 
2994     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreScrolledWindow",kwnames
)) goto fail
; 
2996         if (!wxPyCheckForApp()) SWIG_fail
; 
2997         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2998         result 
= (wxScrolledWindow 
*)new wxScrolledWindow(); 
3000         wxPyEndAllowThreads(__tstate
); 
3001         if (PyErr_Occurred()) SWIG_fail
; 
3003     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxScrolledWindow
, 1); 
3010 static PyObject 
*_wrap_ScrolledWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3011     PyObject 
*resultobj
; 
3012     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3013     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
3014     int arg3 
= (int) (int)-1 ; 
3015     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
3016     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
3017     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
3018     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
3019     long arg6 
= (long) wxHSCROLL
|wxVSCROLL 
; 
3020     wxString 
const &arg7_defvalue 
= wxPyPanelNameStr 
; 
3021     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
3025     bool temp7 
= false ; 
3026     PyObject 
* obj0 
= 0 ; 
3027     PyObject 
* obj1 
= 0 ; 
3028     PyObject 
* obj2 
= 0 ; 
3029     PyObject 
* obj3 
= 0 ; 
3030     PyObject 
* obj4 
= 0 ; 
3031     PyObject 
* obj5 
= 0 ; 
3032     PyObject 
* obj6 
= 0 ; 
3034         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
3037     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:ScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
3038     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3039     if (SWIG_arg_fail(1)) SWIG_fail
; 
3040     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3041     if (SWIG_arg_fail(2)) SWIG_fail
; 
3044             arg3 
= (int const)(SWIG_As_int(obj2
));  
3045             if (SWIG_arg_fail(3)) SWIG_fail
; 
3051             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
3057             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
3062             arg6 
= (long)(SWIG_As_long(obj5
));  
3063             if (SWIG_arg_fail(6)) SWIG_fail
; 
3068             arg7 
= wxString_in_helper(obj6
); 
3069             if (arg7 
== NULL
) SWIG_fail
; 
3074         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3075         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
3077         wxPyEndAllowThreads(__tstate
); 
3078         if (PyErr_Occurred()) SWIG_fail
; 
3081         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3097 static PyObject 
*_wrap_ScrolledWindow_SetScrollbars(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3098     PyObject 
*resultobj
; 
3099     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3104     int arg6 
= (int) 0 ; 
3105     int arg7 
= (int) 0 ; 
3106     bool arg8 
= (bool) false ; 
3107     PyObject 
* obj0 
= 0 ; 
3108     PyObject 
* obj1 
= 0 ; 
3109     PyObject 
* obj2 
= 0 ; 
3110     PyObject 
* obj3 
= 0 ; 
3111     PyObject 
* obj4 
= 0 ; 
3112     PyObject 
* obj5 
= 0 ; 
3113     PyObject 
* obj6 
= 0 ; 
3114     PyObject 
* obj7 
= 0 ; 
3116         (char *) "self",(char *) "pixelsPerUnitX",(char *) "pixelsPerUnitY",(char *) "noUnitsX",(char *) "noUnitsY",(char *) "xPos",(char *) "yPos",(char *) "noRefresh", NULL 
 
3119     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|OOO:ScrolledWindow_SetScrollbars",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
3120     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3121     if (SWIG_arg_fail(1)) SWIG_fail
; 
3123         arg2 
= (int)(SWIG_As_int(obj1
));  
3124         if (SWIG_arg_fail(2)) SWIG_fail
; 
3127         arg3 
= (int)(SWIG_As_int(obj2
));  
3128         if (SWIG_arg_fail(3)) SWIG_fail
; 
3131         arg4 
= (int)(SWIG_As_int(obj3
));  
3132         if (SWIG_arg_fail(4)) SWIG_fail
; 
3135         arg5 
= (int)(SWIG_As_int(obj4
));  
3136         if (SWIG_arg_fail(5)) SWIG_fail
; 
3140             arg6 
= (int)(SWIG_As_int(obj5
));  
3141             if (SWIG_arg_fail(6)) SWIG_fail
; 
3146             arg7 
= (int)(SWIG_As_int(obj6
));  
3147             if (SWIG_arg_fail(7)) SWIG_fail
; 
3152             arg8 
= (bool)(SWIG_As_bool(obj7
));  
3153             if (SWIG_arg_fail(8)) SWIG_fail
; 
3157         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3158         (arg1
)->SetScrollbars(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
); 
3160         wxPyEndAllowThreads(__tstate
); 
3161         if (PyErr_Occurred()) SWIG_fail
; 
3163     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3170 static PyObject 
*_wrap_ScrolledWindow_Scroll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3171     PyObject 
*resultobj
; 
3172     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3175     PyObject 
* obj0 
= 0 ; 
3176     PyObject 
* obj1 
= 0 ; 
3177     PyObject 
* obj2 
= 0 ; 
3179         (char *) "self",(char *) "x",(char *) "y", NULL 
 
3182     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_Scroll",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
3183     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3184     if (SWIG_arg_fail(1)) SWIG_fail
; 
3186         arg2 
= (int)(SWIG_As_int(obj1
));  
3187         if (SWIG_arg_fail(2)) SWIG_fail
; 
3190         arg3 
= (int)(SWIG_As_int(obj2
));  
3191         if (SWIG_arg_fail(3)) SWIG_fail
; 
3194         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3195         (arg1
)->Scroll(arg2
,arg3
); 
3197         wxPyEndAllowThreads(__tstate
); 
3198         if (PyErr_Occurred()) SWIG_fail
; 
3200     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3207 static PyObject 
*_wrap_ScrolledWindow_GetScrollPageSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3208     PyObject 
*resultobj
; 
3209     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3212     PyObject 
* obj0 
= 0 ; 
3213     PyObject 
* obj1 
= 0 ; 
3215         (char *) "self",(char *) "orient", NULL 
 
3218     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_GetScrollPageSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
3219     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3220     if (SWIG_arg_fail(1)) SWIG_fail
; 
3222         arg2 
= (int)(SWIG_As_int(obj1
));  
3223         if (SWIG_arg_fail(2)) SWIG_fail
; 
3226         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3227         result 
= (int)((wxScrolledWindow 
const *)arg1
)->GetScrollPageSize(arg2
); 
3229         wxPyEndAllowThreads(__tstate
); 
3230         if (PyErr_Occurred()) SWIG_fail
; 
3233         resultobj 
= SWIG_From_int((int)(result
));  
3241 static PyObject 
*_wrap_ScrolledWindow_SetScrollPageSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3242     PyObject 
*resultobj
; 
3243     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3246     PyObject 
* obj0 
= 0 ; 
3247     PyObject 
* obj1 
= 0 ; 
3248     PyObject 
* obj2 
= 0 ; 
3250         (char *) "self",(char *) "orient",(char *) "pageSize", NULL 
 
3253     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollPageSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
3254     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3255     if (SWIG_arg_fail(1)) SWIG_fail
; 
3257         arg2 
= (int)(SWIG_As_int(obj1
));  
3258         if (SWIG_arg_fail(2)) SWIG_fail
; 
3261         arg3 
= (int)(SWIG_As_int(obj2
));  
3262         if (SWIG_arg_fail(3)) SWIG_fail
; 
3265         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3266         (arg1
)->SetScrollPageSize(arg2
,arg3
); 
3268         wxPyEndAllowThreads(__tstate
); 
3269         if (PyErr_Occurred()) SWIG_fail
; 
3271     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3278 static PyObject 
*_wrap_ScrolledWindow_SetScrollRate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3279     PyObject 
*resultobj
; 
3280     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3283     PyObject 
* obj0 
= 0 ; 
3284     PyObject 
* obj1 
= 0 ; 
3285     PyObject 
* obj2 
= 0 ; 
3287         (char *) "self",(char *) "xstep",(char *) "ystep", NULL 
 
3290     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScrollRate",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
3291     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3292     if (SWIG_arg_fail(1)) SWIG_fail
; 
3294         arg2 
= (int)(SWIG_As_int(obj1
));  
3295         if (SWIG_arg_fail(2)) SWIG_fail
; 
3298         arg3 
= (int)(SWIG_As_int(obj2
));  
3299         if (SWIG_arg_fail(3)) SWIG_fail
; 
3302         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3303         (arg1
)->SetScrollRate(arg2
,arg3
); 
3305         wxPyEndAllowThreads(__tstate
); 
3306         if (PyErr_Occurred()) SWIG_fail
; 
3308     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3315 static PyObject 
*_wrap_ScrolledWindow_GetScrollPixelsPerUnit(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3316     PyObject 
*resultobj
; 
3317     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3318     int *arg2 
= (int *) 0 ; 
3319     int *arg3 
= (int *) 0 ; 
3324     PyObject 
* obj0 
= 0 ; 
3326         (char *) "self", NULL 
 
3329     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
3330     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
3331     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_GetScrollPixelsPerUnit",kwnames
,&obj0
)) goto fail
; 
3332     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3333     if (SWIG_arg_fail(1)) SWIG_fail
; 
3335         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3336         ((wxScrolledWindow 
const *)arg1
)->GetScrollPixelsPerUnit(arg2
,arg3
); 
3338         wxPyEndAllowThreads(__tstate
); 
3339         if (PyErr_Occurred()) SWIG_fail
; 
3341     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3342     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
3343     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
3344     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
3345     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
3352 static PyObject 
*_wrap_ScrolledWindow_EnableScrolling(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3353     PyObject 
*resultobj
; 
3354     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3357     PyObject 
* obj0 
= 0 ; 
3358     PyObject 
* obj1 
= 0 ; 
3359     PyObject 
* obj2 
= 0 ; 
3361         (char *) "self",(char *) "x_scrolling",(char *) "y_scrolling", NULL 
 
3364     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_EnableScrolling",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
3365     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3366     if (SWIG_arg_fail(1)) SWIG_fail
; 
3368         arg2 
= (bool)(SWIG_As_bool(obj1
));  
3369         if (SWIG_arg_fail(2)) SWIG_fail
; 
3372         arg3 
= (bool)(SWIG_As_bool(obj2
));  
3373         if (SWIG_arg_fail(3)) SWIG_fail
; 
3376         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3377         (arg1
)->EnableScrolling(arg2
,arg3
); 
3379         wxPyEndAllowThreads(__tstate
); 
3380         if (PyErr_Occurred()) SWIG_fail
; 
3382     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3389 static PyObject 
*_wrap_ScrolledWindow_GetViewStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3390     PyObject 
*resultobj
; 
3391     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3392     int *arg2 
= (int *) 0 ; 
3393     int *arg3 
= (int *) 0 ; 
3398     PyObject 
* obj0 
= 0 ; 
3400         (char *) "self", NULL 
 
3403     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
3404     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
3405     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_GetViewStart",kwnames
,&obj0
)) goto fail
; 
3406     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3407     if (SWIG_arg_fail(1)) SWIG_fail
; 
3409         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3410         ((wxScrolledWindow 
const *)arg1
)->GetViewStart(arg2
,arg3
); 
3412         wxPyEndAllowThreads(__tstate
); 
3413         if (PyErr_Occurred()) SWIG_fail
; 
3415     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3416     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
3417     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
3418     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
3419     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
3426 static PyObject 
*_wrap_ScrolledWindow_SetScale(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3427     PyObject 
*resultobj
; 
3428     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3431     PyObject 
* obj0 
= 0 ; 
3432     PyObject 
* obj1 
= 0 ; 
3433     PyObject 
* obj2 
= 0 ; 
3435         (char *) "self",(char *) "xs",(char *) "ys", NULL 
 
3438     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ScrolledWindow_SetScale",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
3439     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3440     if (SWIG_arg_fail(1)) SWIG_fail
; 
3442         arg2 
= (double)(SWIG_As_double(obj1
));  
3443         if (SWIG_arg_fail(2)) SWIG_fail
; 
3446         arg3 
= (double)(SWIG_As_double(obj2
));  
3447         if (SWIG_arg_fail(3)) SWIG_fail
; 
3450         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3451         (arg1
)->SetScale(arg2
,arg3
); 
3453         wxPyEndAllowThreads(__tstate
); 
3454         if (PyErr_Occurred()) SWIG_fail
; 
3456     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3463 static PyObject 
*_wrap_ScrolledWindow_GetScaleX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3464     PyObject 
*resultobj
; 
3465     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3467     PyObject 
* obj0 
= 0 ; 
3469         (char *) "self", NULL 
 
3472     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_GetScaleX",kwnames
,&obj0
)) goto fail
; 
3473     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3474     if (SWIG_arg_fail(1)) SWIG_fail
; 
3476         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3477         result 
= (double)((wxScrolledWindow 
const *)arg1
)->GetScaleX(); 
3479         wxPyEndAllowThreads(__tstate
); 
3480         if (PyErr_Occurred()) SWIG_fail
; 
3483         resultobj 
= SWIG_From_double((double)(result
));  
3491 static PyObject 
*_wrap_ScrolledWindow_GetScaleY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3492     PyObject 
*resultobj
; 
3493     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3495     PyObject 
* obj0 
= 0 ; 
3497         (char *) "self", NULL 
 
3500     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_GetScaleY",kwnames
,&obj0
)) goto fail
; 
3501     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3502     if (SWIG_arg_fail(1)) SWIG_fail
; 
3504         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3505         result 
= (double)((wxScrolledWindow 
const *)arg1
)->GetScaleY(); 
3507         wxPyEndAllowThreads(__tstate
); 
3508         if (PyErr_Occurred()) SWIG_fail
; 
3511         resultobj 
= SWIG_From_double((double)(result
));  
3519 static PyObject 
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(PyObject 
*, PyObject 
*args
) { 
3520     PyObject 
*resultobj
; 
3521     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3525     PyObject 
* obj0 
= 0 ; 
3526     PyObject 
* obj1 
= 0 ; 
3528     if(!PyArg_ParseTuple(args
,(char *)"OO:ScrolledWindow_CalcScrolledPosition",&obj0
,&obj1
)) goto fail
; 
3529     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3530     if (SWIG_arg_fail(1)) SWIG_fail
; 
3533         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
3536         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3537         result 
= ((wxScrolledWindow 
const *)arg1
)->CalcScrolledPosition((wxPoint 
const &)*arg2
); 
3539         wxPyEndAllowThreads(__tstate
); 
3540         if (PyErr_Occurred()) SWIG_fail
; 
3543         wxPoint 
* resultptr
; 
3544         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
3545         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
3553 static PyObject 
*_wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(PyObject 
*, PyObject 
*args
) { 
3554     PyObject 
*resultobj
; 
3555     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3558     int *arg4 
= (int *) 0 ; 
3559     int *arg5 
= (int *) 0 ; 
3564     PyObject 
* obj0 
= 0 ; 
3565     PyObject 
* obj1 
= 0 ; 
3566     PyObject 
* obj2 
= 0 ; 
3568     arg4 
= &temp4
; res4 
= SWIG_NEWOBJ
; 
3569     arg5 
= &temp5
; res5 
= SWIG_NEWOBJ
; 
3570     if(!PyArg_ParseTuple(args
,(char *)"OOO:ScrolledWindow_CalcScrolledPosition",&obj0
,&obj1
,&obj2
)) goto fail
; 
3571     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3572     if (SWIG_arg_fail(1)) SWIG_fail
; 
3574         arg2 
= (int)(SWIG_As_int(obj1
));  
3575         if (SWIG_arg_fail(2)) SWIG_fail
; 
3578         arg3 
= (int)(SWIG_As_int(obj2
));  
3579         if (SWIG_arg_fail(3)) SWIG_fail
; 
3582         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3583         ((wxScrolledWindow 
const *)arg1
)->CalcScrolledPosition(arg2
,arg3
,arg4
,arg5
); 
3585         wxPyEndAllowThreads(__tstate
); 
3586         if (PyErr_Occurred()) SWIG_fail
; 
3588     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3589     resultobj 
= t_output_helper(resultobj
, ((res4 
== SWIG_NEWOBJ
) ? 
3590     SWIG_From_int((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, 0))); 
3591     resultobj 
= t_output_helper(resultobj
, ((res5 
== SWIG_NEWOBJ
) ? 
3592     SWIG_From_int((*arg5
)) : SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, 0))); 
3599 static PyObject 
*_wrap_ScrolledWindow_CalcScrolledPosition(PyObject 
*self
, PyObject 
*args
) { 
3604     argc 
= PyObject_Length(args
); 
3605     for (ii 
= 0; (ii 
< argc
) && (ii 
< 3); ii
++) { 
3606         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
3612             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxScrolledWindow
, 0) == -1) { 
3621                 _v 
= wxPySimple_typecheck(argv
[1], wxT("wxPoint"), 2); 
3624                 return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_0(self
,args
); 
3632             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxScrolledWindow
, 0) == -1) { 
3640             _v 
= SWIG_Check_int(argv
[1]); 
3642                 _v 
= SWIG_Check_int(argv
[2]); 
3644                     return _wrap_ScrolledWindow_CalcScrolledPosition__SWIG_1(self
,args
); 
3650     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcScrolledPosition'"); 
3655 static PyObject 
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(PyObject 
*, PyObject 
*args
) { 
3656     PyObject 
*resultobj
; 
3657     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3661     PyObject 
* obj0 
= 0 ; 
3662     PyObject 
* obj1 
= 0 ; 
3664     if(!PyArg_ParseTuple(args
,(char *)"OO:ScrolledWindow_CalcUnscrolledPosition",&obj0
,&obj1
)) goto fail
; 
3665     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3666     if (SWIG_arg_fail(1)) SWIG_fail
; 
3669         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
3672         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3673         result 
= ((wxScrolledWindow 
const *)arg1
)->CalcUnscrolledPosition((wxPoint 
const &)*arg2
); 
3675         wxPyEndAllowThreads(__tstate
); 
3676         if (PyErr_Occurred()) SWIG_fail
; 
3679         wxPoint 
* resultptr
; 
3680         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
3681         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
3689 static PyObject 
*_wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(PyObject 
*, PyObject 
*args
) { 
3690     PyObject 
*resultobj
; 
3691     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3694     int *arg4 
= (int *) 0 ; 
3695     int *arg5 
= (int *) 0 ; 
3700     PyObject 
* obj0 
= 0 ; 
3701     PyObject 
* obj1 
= 0 ; 
3702     PyObject 
* obj2 
= 0 ; 
3704     arg4 
= &temp4
; res4 
= SWIG_NEWOBJ
; 
3705     arg5 
= &temp5
; res5 
= SWIG_NEWOBJ
; 
3706     if(!PyArg_ParseTuple(args
,(char *)"OOO:ScrolledWindow_CalcUnscrolledPosition",&obj0
,&obj1
,&obj2
)) goto fail
; 
3707     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3708     if (SWIG_arg_fail(1)) SWIG_fail
; 
3710         arg2 
= (int)(SWIG_As_int(obj1
));  
3711         if (SWIG_arg_fail(2)) SWIG_fail
; 
3714         arg3 
= (int)(SWIG_As_int(obj2
));  
3715         if (SWIG_arg_fail(3)) SWIG_fail
; 
3718         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3719         ((wxScrolledWindow 
const *)arg1
)->CalcUnscrolledPosition(arg2
,arg3
,arg4
,arg5
); 
3721         wxPyEndAllowThreads(__tstate
); 
3722         if (PyErr_Occurred()) SWIG_fail
; 
3724     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3725     resultobj 
= t_output_helper(resultobj
, ((res4 
== SWIG_NEWOBJ
) ? 
3726     SWIG_From_int((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, 0))); 
3727     resultobj 
= t_output_helper(resultobj
, ((res5 
== SWIG_NEWOBJ
) ? 
3728     SWIG_From_int((*arg5
)) : SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, 0))); 
3735 static PyObject 
*_wrap_ScrolledWindow_CalcUnscrolledPosition(PyObject 
*self
, PyObject 
*args
) { 
3740     argc 
= PyObject_Length(args
); 
3741     for (ii 
= 0; (ii 
< argc
) && (ii 
< 3); ii
++) { 
3742         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
3748             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxScrolledWindow
, 0) == -1) { 
3757                 _v 
= wxPySimple_typecheck(argv
[1], wxT("wxPoint"), 2); 
3760                 return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_0(self
,args
); 
3768             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxScrolledWindow
, 0) == -1) { 
3776             _v 
= SWIG_Check_int(argv
[1]); 
3778                 _v 
= SWIG_Check_int(argv
[2]); 
3780                     return _wrap_ScrolledWindow_CalcUnscrolledPosition__SWIG_1(self
,args
); 
3786     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'ScrolledWindow_CalcUnscrolledPosition'"); 
3791 static PyObject 
*_wrap_ScrolledWindow_AdjustScrollbars(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3792     PyObject 
*resultobj
; 
3793     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3794     PyObject 
* obj0 
= 0 ; 
3796         (char *) "self", NULL 
 
3799     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_AdjustScrollbars",kwnames
,&obj0
)) goto fail
; 
3800     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3801     if (SWIG_arg_fail(1)) SWIG_fail
; 
3803         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3804         (arg1
)->AdjustScrollbars(); 
3806         wxPyEndAllowThreads(__tstate
); 
3807         if (PyErr_Occurred()) SWIG_fail
; 
3809     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3816 static PyObject 
*_wrap_ScrolledWindow_CalcScrollInc(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3817     PyObject 
*resultobj
; 
3818     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3819     wxScrollWinEvent 
*arg2 
= 0 ; 
3821     PyObject 
* obj0 
= 0 ; 
3822     PyObject 
* obj1 
= 0 ; 
3824         (char *) "self",(char *) "event", NULL 
 
3827     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_CalcScrollInc",kwnames
,&obj0
,&obj1
)) goto fail
; 
3828     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3829     if (SWIG_arg_fail(1)) SWIG_fail
; 
3831         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxScrollWinEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
3832         if (SWIG_arg_fail(2)) SWIG_fail
; 
3834             SWIG_null_ref("wxScrollWinEvent"); 
3836         if (SWIG_arg_fail(2)) SWIG_fail
; 
3839         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3840         result 
= (int)(arg1
)->CalcScrollInc(*arg2
); 
3842         wxPyEndAllowThreads(__tstate
); 
3843         if (PyErr_Occurred()) SWIG_fail
; 
3846         resultobj 
= SWIG_From_int((int)(result
));  
3854 static PyObject 
*_wrap_ScrolledWindow_SetTargetWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3855     PyObject 
*resultobj
; 
3856     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3857     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
3858     PyObject 
* obj0 
= 0 ; 
3859     PyObject 
* obj1 
= 0 ; 
3861         (char *) "self",(char *) "target", NULL 
 
3864     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_SetTargetWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
3865     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3866     if (SWIG_arg_fail(1)) SWIG_fail
; 
3867     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3868     if (SWIG_arg_fail(2)) SWIG_fail
; 
3870         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3871         (arg1
)->SetTargetWindow(arg2
); 
3873         wxPyEndAllowThreads(__tstate
); 
3874         if (PyErr_Occurred()) SWIG_fail
; 
3876     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3883 static PyObject 
*_wrap_ScrolledWindow_GetTargetWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3884     PyObject 
*resultobj
; 
3885     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3887     PyObject 
* obj0 
= 0 ; 
3889         (char *) "self", NULL 
 
3892     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ScrolledWindow_GetTargetWindow",kwnames
,&obj0
)) goto fail
; 
3893     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3894     if (SWIG_arg_fail(1)) SWIG_fail
; 
3896         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3897         result 
= (wxWindow 
*)((wxScrolledWindow 
const *)arg1
)->GetTargetWindow(); 
3899         wxPyEndAllowThreads(__tstate
); 
3900         if (PyErr_Occurred()) SWIG_fail
; 
3903         resultobj 
= wxPyMake_wxObject(result
, 0);  
3911 static PyObject 
*_wrap_ScrolledWindow_DoPrepareDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3912     PyObject 
*resultobj
; 
3913     wxScrolledWindow 
*arg1 
= (wxScrolledWindow 
*) 0 ; 
3915     PyObject 
* obj0 
= 0 ; 
3916     PyObject 
* obj1 
= 0 ; 
3918         (char *) "self",(char *) "dc", NULL 
 
3921     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ScrolledWindow_DoPrepareDC",kwnames
,&obj0
,&obj1
)) goto fail
; 
3922     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3923     if (SWIG_arg_fail(1)) SWIG_fail
; 
3925         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
3926         if (SWIG_arg_fail(2)) SWIG_fail
; 
3928             SWIG_null_ref("wxDC"); 
3930         if (SWIG_arg_fail(2)) SWIG_fail
; 
3933         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3934         (arg1
)->DoPrepareDC(*arg2
); 
3936         wxPyEndAllowThreads(__tstate
); 
3937         if (PyErr_Occurred()) SWIG_fail
; 
3939     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3946 static PyObject 
*_wrap_ScrolledWindow_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3947     PyObject 
*resultobj
; 
3948     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
3949     wxVisualAttributes result
; 
3950     PyObject 
* obj0 
= 0 ; 
3952         (char *) "variant", NULL 
 
3955     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:ScrolledWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
3958             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
3959             if (SWIG_arg_fail(1)) SWIG_fail
; 
3963         if (!wxPyCheckForApp()) SWIG_fail
; 
3964         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3965         result 
= wxScrolledWindow::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
3967         wxPyEndAllowThreads(__tstate
); 
3968         if (PyErr_Occurred()) SWIG_fail
; 
3971         wxVisualAttributes 
* resultptr
; 
3972         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
3973         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
3981 static PyObject 
* ScrolledWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
3983     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
3984     SWIG_TypeClientData(SWIGTYPE_p_wxScrolledWindow
, obj
); 
3986     return Py_BuildValue((char *)""); 
3988 static int _wrap_FrameNameStr_set(PyObject 
*) { 
3989     PyErr_SetString(PyExc_TypeError
,"Variable FrameNameStr is read-only."); 
3994 static PyObject 
*_wrap_FrameNameStr_get(void) { 
3999         pyobj 
= PyUnicode_FromWideChar((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len()); 
4001         pyobj 
= PyString_FromStringAndSize((&wxPyFrameNameStr
)->c_str(), (&wxPyFrameNameStr
)->Len()); 
4008 static int _wrap_DialogNameStr_set(PyObject 
*) { 
4009     PyErr_SetString(PyExc_TypeError
,"Variable DialogNameStr is read-only."); 
4014 static PyObject 
*_wrap_DialogNameStr_get(void) { 
4019         pyobj 
= PyUnicode_FromWideChar((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len()); 
4021         pyobj 
= PyString_FromStringAndSize((&wxPyDialogNameStr
)->c_str(), (&wxPyDialogNameStr
)->Len()); 
4028 static int _wrap_StatusLineNameStr_set(PyObject 
*) { 
4029     PyErr_SetString(PyExc_TypeError
,"Variable StatusLineNameStr is read-only."); 
4034 static PyObject 
*_wrap_StatusLineNameStr_get(void) { 
4039         pyobj 
= PyUnicode_FromWideChar((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len()); 
4041         pyobj 
= PyString_FromStringAndSize((&wxPyStatusLineNameStr
)->c_str(), (&wxPyStatusLineNameStr
)->Len()); 
4048 static int _wrap_ToolBarNameStr_set(PyObject 
*) { 
4049     PyErr_SetString(PyExc_TypeError
,"Variable ToolBarNameStr is read-only."); 
4054 static PyObject 
*_wrap_ToolBarNameStr_get(void) { 
4059         pyobj 
= PyUnicode_FromWideChar((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len()); 
4061         pyobj 
= PyString_FromStringAndSize((&wxPyToolBarNameStr
)->c_str(), (&wxPyToolBarNameStr
)->Len()); 
4068 static PyObject 
*_wrap_TopLevelWindow_Maximize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4069     PyObject 
*resultobj
; 
4070     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4071     bool arg2 
= (bool) true ; 
4072     PyObject 
* obj0 
= 0 ; 
4073     PyObject 
* obj1 
= 0 ; 
4075         (char *) "self",(char *) "maximize", NULL 
 
4078     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Maximize",kwnames
,&obj0
,&obj1
)) goto fail
; 
4079     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4080     if (SWIG_arg_fail(1)) SWIG_fail
; 
4083             arg2 
= (bool)(SWIG_As_bool(obj1
));  
4084             if (SWIG_arg_fail(2)) SWIG_fail
; 
4088         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4089         (arg1
)->Maximize(arg2
); 
4091         wxPyEndAllowThreads(__tstate
); 
4092         if (PyErr_Occurred()) SWIG_fail
; 
4094     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4101 static PyObject 
*_wrap_TopLevelWindow_Restore(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4102     PyObject 
*resultobj
; 
4103     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4104     PyObject 
* obj0 
= 0 ; 
4106         (char *) "self", NULL 
 
4109     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_Restore",kwnames
,&obj0
)) goto fail
; 
4110     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4111     if (SWIG_arg_fail(1)) SWIG_fail
; 
4113         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4116         wxPyEndAllowThreads(__tstate
); 
4117         if (PyErr_Occurred()) SWIG_fail
; 
4119     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4126 static PyObject 
*_wrap_TopLevelWindow_Iconize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4127     PyObject 
*resultobj
; 
4128     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4129     bool arg2 
= (bool) true ; 
4130     PyObject 
* obj0 
= 0 ; 
4131     PyObject 
* obj1 
= 0 ; 
4133         (char *) "self",(char *) "iconize", NULL 
 
4136     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_Iconize",kwnames
,&obj0
,&obj1
)) goto fail
; 
4137     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4138     if (SWIG_arg_fail(1)) SWIG_fail
; 
4141             arg2 
= (bool)(SWIG_As_bool(obj1
));  
4142             if (SWIG_arg_fail(2)) SWIG_fail
; 
4146         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4147         (arg1
)->Iconize(arg2
); 
4149         wxPyEndAllowThreads(__tstate
); 
4150         if (PyErr_Occurred()) SWIG_fail
; 
4152     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4159 static PyObject 
*_wrap_TopLevelWindow_IsMaximized(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4160     PyObject 
*resultobj
; 
4161     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4163     PyObject 
* obj0 
= 0 ; 
4165         (char *) "self", NULL 
 
4168     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_IsMaximized",kwnames
,&obj0
)) goto fail
; 
4169     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4170     if (SWIG_arg_fail(1)) SWIG_fail
; 
4172         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4173         result 
= (bool)((wxTopLevelWindow 
const *)arg1
)->IsMaximized(); 
4175         wxPyEndAllowThreads(__tstate
); 
4176         if (PyErr_Occurred()) SWIG_fail
; 
4179         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4187 static PyObject 
*_wrap_TopLevelWindow_IsIconized(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4188     PyObject 
*resultobj
; 
4189     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4191     PyObject 
* obj0 
= 0 ; 
4193         (char *) "self", NULL 
 
4196     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_IsIconized",kwnames
,&obj0
)) goto fail
; 
4197     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4198     if (SWIG_arg_fail(1)) SWIG_fail
; 
4200         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4201         result 
= (bool)((wxTopLevelWindow 
const *)arg1
)->IsIconized(); 
4203         wxPyEndAllowThreads(__tstate
); 
4204         if (PyErr_Occurred()) SWIG_fail
; 
4207         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4215 static PyObject 
*_wrap_TopLevelWindow_GetIcon(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4216     PyObject 
*resultobj
; 
4217     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4219     PyObject 
* obj0 
= 0 ; 
4221         (char *) "self", NULL 
 
4224     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_GetIcon",kwnames
,&obj0
)) goto fail
; 
4225     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4226     if (SWIG_arg_fail(1)) SWIG_fail
; 
4228         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4229         result 
= ((wxTopLevelWindow 
const *)arg1
)->GetIcon(); 
4231         wxPyEndAllowThreads(__tstate
); 
4232         if (PyErr_Occurred()) SWIG_fail
; 
4236         resultptr 
= new wxIcon((wxIcon 
&)(result
)); 
4237         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxIcon
, 1); 
4245 static PyObject 
*_wrap_TopLevelWindow_SetIcon(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4246     PyObject 
*resultobj
; 
4247     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4249     PyObject 
* obj0 
= 0 ; 
4250     PyObject 
* obj1 
= 0 ; 
4252         (char *) "self",(char *) "icon", NULL 
 
4255     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcon",kwnames
,&obj0
,&obj1
)) goto fail
; 
4256     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4257     if (SWIG_arg_fail(1)) SWIG_fail
; 
4259         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
4260         if (SWIG_arg_fail(2)) SWIG_fail
; 
4262             SWIG_null_ref("wxIcon"); 
4264         if (SWIG_arg_fail(2)) SWIG_fail
; 
4267         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4268         (arg1
)->SetIcon((wxIcon 
const &)*arg2
); 
4270         wxPyEndAllowThreads(__tstate
); 
4271         if (PyErr_Occurred()) SWIG_fail
; 
4273     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4280 static PyObject 
*_wrap_TopLevelWindow_SetIcons(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4281     PyObject 
*resultobj
; 
4282     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4283     wxIconBundle 
*arg2 
= 0 ; 
4284     PyObject 
* obj0 
= 0 ; 
4285     PyObject 
* obj1 
= 0 ; 
4287         (char *) "self",(char *) "icons", NULL 
 
4290     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetIcons",kwnames
,&obj0
,&obj1
)) goto fail
; 
4291     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4292     if (SWIG_arg_fail(1)) SWIG_fail
; 
4294         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxIconBundle
, SWIG_POINTER_EXCEPTION 
| 0); 
4295         if (SWIG_arg_fail(2)) SWIG_fail
; 
4297             SWIG_null_ref("wxIconBundle"); 
4299         if (SWIG_arg_fail(2)) SWIG_fail
; 
4302         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4303         (arg1
)->SetIcons((wxIconBundle 
const &)*arg2
); 
4305         wxPyEndAllowThreads(__tstate
); 
4306         if (PyErr_Occurred()) SWIG_fail
; 
4308     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4315 static PyObject 
*_wrap_TopLevelWindow_ShowFullScreen(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4316     PyObject 
*resultobj
; 
4317     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4319     long arg3 
= (long) wxFULLSCREEN_ALL 
; 
4321     PyObject 
* obj0 
= 0 ; 
4322     PyObject 
* obj1 
= 0 ; 
4323     PyObject 
* obj2 
= 0 ; 
4325         (char *) "self",(char *) "show",(char *) "style", NULL 
 
4328     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TopLevelWindow_ShowFullScreen",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4329     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4330     if (SWIG_arg_fail(1)) SWIG_fail
; 
4332         arg2 
= (bool)(SWIG_As_bool(obj1
));  
4333         if (SWIG_arg_fail(2)) SWIG_fail
; 
4337             arg3 
= (long)(SWIG_As_long(obj2
));  
4338             if (SWIG_arg_fail(3)) SWIG_fail
; 
4342         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4343         result 
= (bool)(arg1
)->ShowFullScreen(arg2
,arg3
); 
4345         wxPyEndAllowThreads(__tstate
); 
4346         if (PyErr_Occurred()) SWIG_fail
; 
4349         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4357 static PyObject 
*_wrap_TopLevelWindow_IsFullScreen(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4358     PyObject 
*resultobj
; 
4359     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4361     PyObject 
* obj0 
= 0 ; 
4363         (char *) "self", NULL 
 
4366     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_IsFullScreen",kwnames
,&obj0
)) goto fail
; 
4367     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4368     if (SWIG_arg_fail(1)) SWIG_fail
; 
4370         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4371         result 
= (bool)((wxTopLevelWindow 
const *)arg1
)->IsFullScreen(); 
4373         wxPyEndAllowThreads(__tstate
); 
4374         if (PyErr_Occurred()) SWIG_fail
; 
4377         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4385 static PyObject 
*_wrap_TopLevelWindow_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4386     PyObject 
*resultobj
; 
4387     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4388     wxString 
*arg2 
= 0 ; 
4389     bool temp2 
= false ; 
4390     PyObject 
* obj0 
= 0 ; 
4391     PyObject 
* obj1 
= 0 ; 
4393         (char *) "self",(char *) "title", NULL 
 
4396     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
4397     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4398     if (SWIG_arg_fail(1)) SWIG_fail
; 
4400         arg2 
= wxString_in_helper(obj1
); 
4401         if (arg2 
== NULL
) SWIG_fail
; 
4405         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4406         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
4408         wxPyEndAllowThreads(__tstate
); 
4409         if (PyErr_Occurred()) SWIG_fail
; 
4411     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4426 static PyObject 
*_wrap_TopLevelWindow_GetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4427     PyObject 
*resultobj
; 
4428     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4430     PyObject 
* obj0 
= 0 ; 
4432         (char *) "self", NULL 
 
4435     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_GetTitle",kwnames
,&obj0
)) goto fail
; 
4436     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4437     if (SWIG_arg_fail(1)) SWIG_fail
; 
4439         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4440         result 
= ((wxTopLevelWindow 
const *)arg1
)->GetTitle(); 
4442         wxPyEndAllowThreads(__tstate
); 
4443         if (PyErr_Occurred()) SWIG_fail
; 
4447         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
4449         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
4458 static PyObject 
*_wrap_TopLevelWindow_SetShape(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4459     PyObject 
*resultobj
; 
4460     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4461     wxRegion 
*arg2 
= 0 ; 
4463     PyObject 
* obj0 
= 0 ; 
4464     PyObject 
* obj1 
= 0 ; 
4466         (char *) "self",(char *) "region", NULL 
 
4469     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_SetShape",kwnames
,&obj0
,&obj1
)) goto fail
; 
4470     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4471     if (SWIG_arg_fail(1)) SWIG_fail
; 
4473         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxRegion
, SWIG_POINTER_EXCEPTION 
| 0); 
4474         if (SWIG_arg_fail(2)) SWIG_fail
; 
4476             SWIG_null_ref("wxRegion"); 
4478         if (SWIG_arg_fail(2)) SWIG_fail
; 
4481         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4482         result 
= (bool)(arg1
)->SetShape((wxRegion 
const &)*arg2
); 
4484         wxPyEndAllowThreads(__tstate
); 
4485         if (PyErr_Occurred()) SWIG_fail
; 
4488         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4496 static PyObject 
*_wrap_TopLevelWindow_RequestUserAttention(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4497     PyObject 
*resultobj
; 
4498     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4499     int arg2 
= (int) wxUSER_ATTENTION_INFO 
; 
4500     PyObject 
* obj0 
= 0 ; 
4501     PyObject 
* obj1 
= 0 ; 
4503         (char *) "self",(char *) "flags", NULL 
 
4506     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:TopLevelWindow_RequestUserAttention",kwnames
,&obj0
,&obj1
)) goto fail
; 
4507     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4508     if (SWIG_arg_fail(1)) SWIG_fail
; 
4511             arg2 
= (int)(SWIG_As_int(obj1
));  
4512             if (SWIG_arg_fail(2)) SWIG_fail
; 
4516         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4517         (arg1
)->RequestUserAttention(arg2
); 
4519         wxPyEndAllowThreads(__tstate
); 
4520         if (PyErr_Occurred()) SWIG_fail
; 
4522     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4529 static PyObject 
*_wrap_TopLevelWindow_IsActive(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4530     PyObject 
*resultobj
; 
4531     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4533     PyObject 
* obj0 
= 0 ; 
4535         (char *) "self", NULL 
 
4538     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_IsActive",kwnames
,&obj0
)) goto fail
; 
4539     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4540     if (SWIG_arg_fail(1)) SWIG_fail
; 
4542         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4543         result 
= (bool)(arg1
)->IsActive(); 
4545         wxPyEndAllowThreads(__tstate
); 
4546         if (PyErr_Occurred()) SWIG_fail
; 
4549         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4557 static PyObject 
*_wrap_TopLevelWindow_MacSetMetalAppearance(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4558     PyObject 
*resultobj
; 
4559     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4561     PyObject 
* obj0 
= 0 ; 
4562     PyObject 
* obj1 
= 0 ; 
4564         (char *) "self",(char *) "on", NULL 
 
4567     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TopLevelWindow_MacSetMetalAppearance",kwnames
,&obj0
,&obj1
)) goto fail
; 
4568     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4569     if (SWIG_arg_fail(1)) SWIG_fail
; 
4571         arg2 
= (bool)(SWIG_As_bool(obj1
));  
4572         if (SWIG_arg_fail(2)) SWIG_fail
; 
4575         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4576         wxTopLevelWindow_MacSetMetalAppearance(arg1
,arg2
); 
4578         wxPyEndAllowThreads(__tstate
); 
4579         if (PyErr_Occurred()) SWIG_fail
; 
4581     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4588 static PyObject 
*_wrap_TopLevelWindow_MacGetMetalAppearance(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4589     PyObject 
*resultobj
; 
4590     wxTopLevelWindow 
*arg1 
= (wxTopLevelWindow 
*) 0 ; 
4592     PyObject 
* obj0 
= 0 ; 
4594         (char *) "self", NULL 
 
4597     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TopLevelWindow_MacGetMetalAppearance",kwnames
,&obj0
)) goto fail
; 
4598     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTopLevelWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4599     if (SWIG_arg_fail(1)) SWIG_fail
; 
4601         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4602         result 
= (bool)wxTopLevelWindow_MacGetMetalAppearance((wxTopLevelWindow 
const *)arg1
); 
4604         wxPyEndAllowThreads(__tstate
); 
4605         if (PyErr_Occurred()) SWIG_fail
; 
4608         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4616 static PyObject 
* TopLevelWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
4618     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4619     SWIG_TypeClientData(SWIGTYPE_p_wxTopLevelWindow
, obj
); 
4621     return Py_BuildValue((char *)""); 
4623 static PyObject 
*_wrap_new_Frame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4624     PyObject 
*resultobj
; 
4625     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
4626     int arg2 
= (int) (int)-1 ; 
4627     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
4628     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
4629     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
4630     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
4631     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
4632     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
4633     long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
4634     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
4635     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
4637     bool temp3 
= false ; 
4640     bool temp7 
= false ; 
4641     PyObject 
* obj0 
= 0 ; 
4642     PyObject 
* obj1 
= 0 ; 
4643     PyObject 
* obj2 
= 0 ; 
4644     PyObject 
* obj3 
= 0 ; 
4645     PyObject 
* obj4 
= 0 ; 
4646     PyObject 
* obj5 
= 0 ; 
4647     PyObject 
* obj6 
= 0 ; 
4649         (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
4652     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Frame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
4653     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4654     if (SWIG_arg_fail(1)) SWIG_fail
; 
4657             arg2 
= (int const)(SWIG_As_int(obj1
));  
4658             if (SWIG_arg_fail(2)) SWIG_fail
; 
4663             arg3 
= wxString_in_helper(obj2
); 
4664             if (arg3 
== NULL
) SWIG_fail
; 
4671             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
4677             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
4682             arg6 
= (long)(SWIG_As_long(obj5
));  
4683             if (SWIG_arg_fail(6)) SWIG_fail
; 
4688             arg7 
= wxString_in_helper(obj6
); 
4689             if (arg7 
== NULL
) SWIG_fail
; 
4694         if (!wxPyCheckForApp()) SWIG_fail
; 
4695         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4696         result 
= (wxFrame 
*)new wxFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
4698         wxPyEndAllowThreads(__tstate
); 
4699         if (PyErr_Occurred()) SWIG_fail
; 
4701     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFrame
, 1); 
4724 static PyObject 
*_wrap_new_PreFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4725     PyObject 
*resultobj
; 
4731     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreFrame",kwnames
)) goto fail
; 
4733         if (!wxPyCheckForApp()) SWIG_fail
; 
4734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4735         result 
= (wxFrame 
*)new wxFrame(); 
4737         wxPyEndAllowThreads(__tstate
); 
4738         if (PyErr_Occurred()) SWIG_fail
; 
4740     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFrame
, 1); 
4747 static PyObject 
*_wrap_Frame_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4748     PyObject 
*resultobj
; 
4749     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4750     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
4751     int arg3 
= (int) (int)-1 ; 
4752     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
4753     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
4754     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
4755     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
4756     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
4757     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
4758     long arg7 
= (long) wxDEFAULT_FRAME_STYLE 
; 
4759     wxString 
const &arg8_defvalue 
= wxPyFrameNameStr 
; 
4760     wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
4762     bool temp4 
= false ; 
4765     bool temp8 
= false ; 
4766     PyObject 
* obj0 
= 0 ; 
4767     PyObject 
* obj1 
= 0 ; 
4768     PyObject 
* obj2 
= 0 ; 
4769     PyObject 
* obj3 
= 0 ; 
4770     PyObject 
* obj4 
= 0 ; 
4771     PyObject 
* obj5 
= 0 ; 
4772     PyObject 
* obj6 
= 0 ; 
4773     PyObject 
* obj7 
= 0 ; 
4775         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
4778     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Frame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
4779     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4780     if (SWIG_arg_fail(1)) SWIG_fail
; 
4781     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
4782     if (SWIG_arg_fail(2)) SWIG_fail
; 
4785             arg3 
= (int const)(SWIG_As_int(obj2
));  
4786             if (SWIG_arg_fail(3)) SWIG_fail
; 
4791             arg4 
= wxString_in_helper(obj3
); 
4792             if (arg4 
== NULL
) SWIG_fail
; 
4799             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
4805             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
4810             arg7 
= (long)(SWIG_As_long(obj6
));  
4811             if (SWIG_arg_fail(7)) SWIG_fail
; 
4816             arg8 
= wxString_in_helper(obj7
); 
4817             if (arg8 
== NULL
) SWIG_fail
; 
4822         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4823         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
4825         wxPyEndAllowThreads(__tstate
); 
4826         if (PyErr_Occurred()) SWIG_fail
; 
4829         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4853 static PyObject 
*_wrap_Frame_GetClientAreaOrigin(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4854     PyObject 
*resultobj
; 
4855     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4857     PyObject 
* obj0 
= 0 ; 
4859         (char *) "self", NULL 
 
4862     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_GetClientAreaOrigin",kwnames
,&obj0
)) goto fail
; 
4863     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4864     if (SWIG_arg_fail(1)) SWIG_fail
; 
4866         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4867         result 
= ((wxFrame 
const *)arg1
)->GetClientAreaOrigin(); 
4869         wxPyEndAllowThreads(__tstate
); 
4870         if (PyErr_Occurred()) SWIG_fail
; 
4873         wxPoint 
* resultptr
; 
4874         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
4875         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
4883 static PyObject 
*_wrap_Frame_SendSizeEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4884     PyObject 
*resultobj
; 
4885     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4886     PyObject 
* obj0 
= 0 ; 
4888         (char *) "self", NULL 
 
4891     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_SendSizeEvent",kwnames
,&obj0
)) goto fail
; 
4892     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4893     if (SWIG_arg_fail(1)) SWIG_fail
; 
4895         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4896         (arg1
)->SendSizeEvent(); 
4898         wxPyEndAllowThreads(__tstate
); 
4899         if (PyErr_Occurred()) SWIG_fail
; 
4901     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4908 static PyObject 
*_wrap_Frame_SetMenuBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4909     PyObject 
*resultobj
; 
4910     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4911     wxMenuBar 
*arg2 
= (wxMenuBar 
*) 0 ; 
4912     PyObject 
* obj0 
= 0 ; 
4913     PyObject 
* obj1 
= 0 ; 
4915         (char *) "self",(char *) "menubar", NULL 
 
4918     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetMenuBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
4919     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4920     if (SWIG_arg_fail(1)) SWIG_fail
; 
4921     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMenuBar
, SWIG_POINTER_EXCEPTION 
| 0); 
4922     if (SWIG_arg_fail(2)) SWIG_fail
; 
4924         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4925         (arg1
)->SetMenuBar(arg2
); 
4927         wxPyEndAllowThreads(__tstate
); 
4928         if (PyErr_Occurred()) SWIG_fail
; 
4930     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4937 static PyObject 
*_wrap_Frame_GetMenuBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4938     PyObject 
*resultobj
; 
4939     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4941     PyObject 
* obj0 
= 0 ; 
4943         (char *) "self", NULL 
 
4946     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_GetMenuBar",kwnames
,&obj0
)) goto fail
; 
4947     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4948     if (SWIG_arg_fail(1)) SWIG_fail
; 
4950         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4951         result 
= (wxMenuBar 
*)((wxFrame 
const *)arg1
)->GetMenuBar(); 
4953         wxPyEndAllowThreads(__tstate
); 
4954         if (PyErr_Occurred()) SWIG_fail
; 
4957         resultobj 
= wxPyMake_wxObject(result
, 0);  
4965 static PyObject 
*_wrap_Frame_ProcessCommand(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4966     PyObject 
*resultobj
; 
4967     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
4970     PyObject 
* obj0 
= 0 ; 
4971     PyObject 
* obj1 
= 0 ; 
4973         (char *) "self",(char *) "winid", NULL 
 
4976     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_ProcessCommand",kwnames
,&obj0
,&obj1
)) goto fail
; 
4977     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
4978     if (SWIG_arg_fail(1)) SWIG_fail
; 
4980         arg2 
= (int)(SWIG_As_int(obj1
));  
4981         if (SWIG_arg_fail(2)) SWIG_fail
; 
4984         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4985         result 
= (bool)(arg1
)->ProcessCommand(arg2
); 
4987         wxPyEndAllowThreads(__tstate
); 
4988         if (PyErr_Occurred()) SWIG_fail
; 
4991         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4999 static PyObject 
*_wrap_Frame_CreateStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5000     PyObject 
*resultobj
; 
5001     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5002     int arg2 
= (int) 1 ; 
5003     long arg3 
= (long) wxDEFAULT_STATUSBAR_STYLE 
; 
5004     int arg4 
= (int) 0 ; 
5005     wxString 
const &arg5_defvalue 
= wxPyStatusLineNameStr 
; 
5006     wxString 
*arg5 
= (wxString 
*) &arg5_defvalue 
; 
5007     wxStatusBar 
*result
; 
5008     bool temp5 
= false ; 
5009     PyObject 
* obj0 
= 0 ; 
5010     PyObject 
* obj1 
= 0 ; 
5011     PyObject 
* obj2 
= 0 ; 
5012     PyObject 
* obj3 
= 0 ; 
5013     PyObject 
* obj4 
= 0 ; 
5015         (char *) "self",(char *) "number",(char *) "style",(char *) "winid",(char *) "name", NULL 
 
5018     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOO:Frame_CreateStatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
5019     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5020     if (SWIG_arg_fail(1)) SWIG_fail
; 
5023             arg2 
= (int)(SWIG_As_int(obj1
));  
5024             if (SWIG_arg_fail(2)) SWIG_fail
; 
5029             arg3 
= (long)(SWIG_As_long(obj2
));  
5030             if (SWIG_arg_fail(3)) SWIG_fail
; 
5035             arg4 
= (int)(SWIG_As_int(obj3
));  
5036             if (SWIG_arg_fail(4)) SWIG_fail
; 
5041             arg5 
= wxString_in_helper(obj4
); 
5042             if (arg5 
== NULL
) SWIG_fail
; 
5047         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5048         result 
= (wxStatusBar 
*)(arg1
)->CreateStatusBar(arg2
,arg3
,arg4
,(wxString 
const &)*arg5
); 
5050         wxPyEndAllowThreads(__tstate
); 
5051         if (PyErr_Occurred()) SWIG_fail
; 
5054         resultobj 
= wxPyMake_wxObject(result
, 0);  
5070 static PyObject 
*_wrap_Frame_GetStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5071     PyObject 
*resultobj
; 
5072     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5073     wxStatusBar 
*result
; 
5074     PyObject 
* obj0 
= 0 ; 
5076         (char *) "self", NULL 
 
5079     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_GetStatusBar",kwnames
,&obj0
)) goto fail
; 
5080     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5081     if (SWIG_arg_fail(1)) SWIG_fail
; 
5083         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5084         result 
= (wxStatusBar 
*)((wxFrame 
const *)arg1
)->GetStatusBar(); 
5086         wxPyEndAllowThreads(__tstate
); 
5087         if (PyErr_Occurred()) SWIG_fail
; 
5090         resultobj 
= wxPyMake_wxObject(result
, 0);  
5098 static PyObject 
*_wrap_Frame_SetStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5099     PyObject 
*resultobj
; 
5100     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5101     wxStatusBar 
*arg2 
= (wxStatusBar 
*) 0 ; 
5102     PyObject 
* obj0 
= 0 ; 
5103     PyObject 
* obj1 
= 0 ; 
5105         (char *) "self",(char *) "statBar", NULL 
 
5108     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
5109     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5110     if (SWIG_arg_fail(1)) SWIG_fail
; 
5111     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
5112     if (SWIG_arg_fail(2)) SWIG_fail
; 
5114         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5115         (arg1
)->SetStatusBar(arg2
); 
5117         wxPyEndAllowThreads(__tstate
); 
5118         if (PyErr_Occurred()) SWIG_fail
; 
5120     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5127 static PyObject 
*_wrap_Frame_SetStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5128     PyObject 
*resultobj
; 
5129     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5130     wxString 
*arg2 
= 0 ; 
5131     int arg3 
= (int) 0 ; 
5132     bool temp2 
= false ; 
5133     PyObject 
* obj0 
= 0 ; 
5134     PyObject 
* obj1 
= 0 ; 
5135     PyObject 
* obj2 
= 0 ; 
5137         (char *) "self",(char *) "text",(char *) "number", NULL 
 
5140     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5141     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5142     if (SWIG_arg_fail(1)) SWIG_fail
; 
5144         arg2 
= wxString_in_helper(obj1
); 
5145         if (arg2 
== NULL
) SWIG_fail
; 
5150             arg3 
= (int)(SWIG_As_int(obj2
));  
5151             if (SWIG_arg_fail(3)) SWIG_fail
; 
5155         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5156         (arg1
)->SetStatusText((wxString 
const &)*arg2
,arg3
); 
5158         wxPyEndAllowThreads(__tstate
); 
5159         if (PyErr_Occurred()) SWIG_fail
; 
5161     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5176 static PyObject 
*_wrap_Frame_SetStatusWidths(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5177     PyObject 
*resultobj
; 
5178     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5180     int *arg3 
= (int *) 0 ; 
5181     PyObject 
* obj0 
= 0 ; 
5182     PyObject 
* obj1 
= 0 ; 
5184         (char *) "self",(char *) "widths", NULL 
 
5187     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusWidths",kwnames
,&obj0
,&obj1
)) goto fail
; 
5188     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5189     if (SWIG_arg_fail(1)) SWIG_fail
; 
5191         arg2 
= PyList_Size(obj1
); 
5192         arg3 
=  int_LIST_helper(obj1
); 
5193         if (arg3 
== NULL
) SWIG_fail
; 
5196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5197         (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
); 
5199         wxPyEndAllowThreads(__tstate
); 
5200         if (PyErr_Occurred()) SWIG_fail
; 
5202     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5204         if (arg3
) delete [] arg3
; 
5209         if (arg3
) delete [] arg3
; 
5215 static PyObject 
*_wrap_Frame_PushStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5216     PyObject 
*resultobj
; 
5217     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5218     wxString 
*arg2 
= 0 ; 
5219     int arg3 
= (int) 0 ; 
5220     bool temp2 
= false ; 
5221     PyObject 
* obj0 
= 0 ; 
5222     PyObject 
* obj1 
= 0 ; 
5223     PyObject 
* obj2 
= 0 ; 
5225         (char *) "self",(char *) "text",(char *) "number", NULL 
 
5228     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:Frame_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5229     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5230     if (SWIG_arg_fail(1)) SWIG_fail
; 
5232         arg2 
= wxString_in_helper(obj1
); 
5233         if (arg2 
== NULL
) SWIG_fail
; 
5238             arg3 
= (int)(SWIG_As_int(obj2
));  
5239             if (SWIG_arg_fail(3)) SWIG_fail
; 
5243         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5244         (arg1
)->PushStatusText((wxString 
const &)*arg2
,arg3
); 
5246         wxPyEndAllowThreads(__tstate
); 
5247         if (PyErr_Occurred()) SWIG_fail
; 
5249     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5264 static PyObject 
*_wrap_Frame_PopStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5265     PyObject 
*resultobj
; 
5266     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5267     int arg2 
= (int) 0 ; 
5268     PyObject 
* obj0 
= 0 ; 
5269     PyObject 
* obj1 
= 0 ; 
5271         (char *) "self",(char *) "number", NULL 
 
5274     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_PopStatusText",kwnames
,&obj0
,&obj1
)) goto fail
; 
5275     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5276     if (SWIG_arg_fail(1)) SWIG_fail
; 
5279             arg2 
= (int)(SWIG_As_int(obj1
));  
5280             if (SWIG_arg_fail(2)) SWIG_fail
; 
5284         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5285         (arg1
)->PopStatusText(arg2
); 
5287         wxPyEndAllowThreads(__tstate
); 
5288         if (PyErr_Occurred()) SWIG_fail
; 
5290     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5297 static PyObject 
*_wrap_Frame_SetStatusBarPane(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5298     PyObject 
*resultobj
; 
5299     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5301     PyObject 
* obj0 
= 0 ; 
5302     PyObject 
* obj1 
= 0 ; 
5304         (char *) "self",(char *) "n", NULL 
 
5307     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetStatusBarPane",kwnames
,&obj0
,&obj1
)) goto fail
; 
5308     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5309     if (SWIG_arg_fail(1)) SWIG_fail
; 
5311         arg2 
= (int)(SWIG_As_int(obj1
));  
5312         if (SWIG_arg_fail(2)) SWIG_fail
; 
5315         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5316         (arg1
)->SetStatusBarPane(arg2
); 
5318         wxPyEndAllowThreads(__tstate
); 
5319         if (PyErr_Occurred()) SWIG_fail
; 
5321     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5328 static PyObject 
*_wrap_Frame_GetStatusBarPane(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5329     PyObject 
*resultobj
; 
5330     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5332     PyObject 
* obj0 
= 0 ; 
5334         (char *) "self", NULL 
 
5337     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_GetStatusBarPane",kwnames
,&obj0
)) goto fail
; 
5338     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5339     if (SWIG_arg_fail(1)) SWIG_fail
; 
5341         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5342         result 
= (int)((wxFrame 
const *)arg1
)->GetStatusBarPane(); 
5344         wxPyEndAllowThreads(__tstate
); 
5345         if (PyErr_Occurred()) SWIG_fail
; 
5348         resultobj 
= SWIG_From_int((int)(result
));  
5356 static PyObject 
*_wrap_Frame_CreateToolBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5357     PyObject 
*resultobj
; 
5358     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5359     long arg2 
= (long) -1 ; 
5360     int arg3 
= (int) -1 ; 
5361     wxString 
const &arg4_defvalue 
= wxPyToolBarNameStr 
; 
5362     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
5364     bool temp4 
= false ; 
5365     PyObject 
* obj0 
= 0 ; 
5366     PyObject 
* obj1 
= 0 ; 
5367     PyObject 
* obj2 
= 0 ; 
5368     PyObject 
* obj3 
= 0 ; 
5370         (char *) "self",(char *) "style",(char *) "winid",(char *) "name", NULL 
 
5373     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:Frame_CreateToolBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
5374     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5375     if (SWIG_arg_fail(1)) SWIG_fail
; 
5378             arg2 
= (long)(SWIG_As_long(obj1
));  
5379             if (SWIG_arg_fail(2)) SWIG_fail
; 
5384             arg3 
= (int)(SWIG_As_int(obj2
));  
5385             if (SWIG_arg_fail(3)) SWIG_fail
; 
5390             arg4 
= wxString_in_helper(obj3
); 
5391             if (arg4 
== NULL
) SWIG_fail
; 
5396         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5397         result 
= (wxToolBar 
*)(arg1
)->CreateToolBar(arg2
,arg3
,(wxString 
const &)*arg4
); 
5399         wxPyEndAllowThreads(__tstate
); 
5400         if (PyErr_Occurred()) SWIG_fail
; 
5403         resultobj 
= wxPyMake_wxObject(result
, 0);  
5419 static PyObject 
*_wrap_Frame_GetToolBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5420     PyObject 
*resultobj
; 
5421     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5423     PyObject 
* obj0 
= 0 ; 
5425         (char *) "self", NULL 
 
5428     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Frame_GetToolBar",kwnames
,&obj0
)) goto fail
; 
5429     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5430     if (SWIG_arg_fail(1)) SWIG_fail
; 
5432         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5433         result 
= (wxToolBar 
*)((wxFrame 
const *)arg1
)->GetToolBar(); 
5435         wxPyEndAllowThreads(__tstate
); 
5436         if (PyErr_Occurred()) SWIG_fail
; 
5439         resultobj 
= wxPyMake_wxObject(result
, 0);  
5447 static PyObject 
*_wrap_Frame_SetToolBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5448     PyObject 
*resultobj
; 
5449     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5450     wxToolBar 
*arg2 
= (wxToolBar 
*) 0 ; 
5451     PyObject 
* obj0 
= 0 ; 
5452     PyObject 
* obj1 
= 0 ; 
5454         (char *) "self",(char *) "toolbar", NULL 
 
5457     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Frame_SetToolBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
5458     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5459     if (SWIG_arg_fail(1)) SWIG_fail
; 
5460     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxToolBar
, SWIG_POINTER_EXCEPTION 
| 0); 
5461     if (SWIG_arg_fail(2)) SWIG_fail
; 
5463         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5464         (arg1
)->SetToolBar(arg2
); 
5466         wxPyEndAllowThreads(__tstate
); 
5467         if (PyErr_Occurred()) SWIG_fail
; 
5469     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5476 static PyObject 
*_wrap_Frame_DoGiveHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5477     PyObject 
*resultobj
; 
5478     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5479     wxString 
*arg2 
= 0 ; 
5481     bool temp2 
= false ; 
5482     PyObject 
* obj0 
= 0 ; 
5483     PyObject 
* obj1 
= 0 ; 
5484     PyObject 
* obj2 
= 0 ; 
5486         (char *) "self",(char *) "text",(char *) "show", NULL 
 
5489     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Frame_DoGiveHelp",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5490     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5491     if (SWIG_arg_fail(1)) SWIG_fail
; 
5493         arg2 
= wxString_in_helper(obj1
); 
5494         if (arg2 
== NULL
) SWIG_fail
; 
5498         arg3 
= (bool)(SWIG_As_bool(obj2
));  
5499         if (SWIG_arg_fail(3)) SWIG_fail
; 
5502         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5503         (arg1
)->DoGiveHelp((wxString 
const &)*arg2
,arg3
); 
5505         wxPyEndAllowThreads(__tstate
); 
5506         if (PyErr_Occurred()) SWIG_fail
; 
5508     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5523 static PyObject 
*_wrap_Frame_DoMenuUpdates(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5524     PyObject 
*resultobj
; 
5525     wxFrame 
*arg1 
= (wxFrame 
*) 0 ; 
5526     wxMenu 
*arg2 
= (wxMenu 
*) NULL 
; 
5527     PyObject 
* obj0 
= 0 ; 
5528     PyObject 
* obj1 
= 0 ; 
5530         (char *) "self",(char *) "menu", NULL 
 
5533     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:Frame_DoMenuUpdates",kwnames
,&obj0
,&obj1
)) goto fail
; 
5534     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
5535     if (SWIG_arg_fail(1)) SWIG_fail
; 
5537         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMenu
, SWIG_POINTER_EXCEPTION 
| 0); 
5538         if (SWIG_arg_fail(2)) SWIG_fail
; 
5541         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5542         (arg1
)->DoMenuUpdates(arg2
); 
5544         wxPyEndAllowThreads(__tstate
); 
5545         if (PyErr_Occurred()) SWIG_fail
; 
5547     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5554 static PyObject 
*_wrap_Frame_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5555     PyObject 
*resultobj
; 
5556     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
5557     wxVisualAttributes result
; 
5558     PyObject 
* obj0 
= 0 ; 
5560         (char *) "variant", NULL 
 
5563     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Frame_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
5566             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
5567             if (SWIG_arg_fail(1)) SWIG_fail
; 
5571         if (!wxPyCheckForApp()) SWIG_fail
; 
5572         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5573         result 
= wxFrame::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
5575         wxPyEndAllowThreads(__tstate
); 
5576         if (PyErr_Occurred()) SWIG_fail
; 
5579         wxVisualAttributes 
* resultptr
; 
5580         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
5581         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
5589 static PyObject 
* Frame_swigregister(PyObject 
*, PyObject 
*args
) { 
5591     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5592     SWIG_TypeClientData(SWIGTYPE_p_wxFrame
, obj
); 
5594     return Py_BuildValue((char *)""); 
5596 static PyObject 
*_wrap_new_Dialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5597     PyObject 
*resultobj
; 
5598     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
5599     int arg2 
= (int) (int)-1 ; 
5600     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
5601     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
5602     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
5603     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
5604     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
5605     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
5606     long arg6 
= (long) wxDEFAULT_DIALOG_STYLE 
; 
5607     wxString 
const &arg7_defvalue 
= wxPyDialogNameStr 
; 
5608     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
5610     bool temp3 
= false ; 
5613     bool temp7 
= false ; 
5614     PyObject 
* obj0 
= 0 ; 
5615     PyObject 
* obj1 
= 0 ; 
5616     PyObject 
* obj2 
= 0 ; 
5617     PyObject 
* obj3 
= 0 ; 
5618     PyObject 
* obj4 
= 0 ; 
5619     PyObject 
* obj5 
= 0 ; 
5620     PyObject 
* obj6 
= 0 ; 
5622         (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
5625     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_Dialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
5626     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
5627     if (SWIG_arg_fail(1)) SWIG_fail
; 
5630             arg2 
= (int const)(SWIG_As_int(obj1
));  
5631             if (SWIG_arg_fail(2)) SWIG_fail
; 
5636             arg3 
= wxString_in_helper(obj2
); 
5637             if (arg3 
== NULL
) SWIG_fail
; 
5644             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
5650             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
5655             arg6 
= (long)(SWIG_As_long(obj5
));  
5656             if (SWIG_arg_fail(6)) SWIG_fail
; 
5661             arg7 
= wxString_in_helper(obj6
); 
5662             if (arg7 
== NULL
) SWIG_fail
; 
5667         if (!wxPyCheckForApp()) SWIG_fail
; 
5668         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5669         result 
= (wxDialog 
*)new wxDialog(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
5671         wxPyEndAllowThreads(__tstate
); 
5672         if (PyErr_Occurred()) SWIG_fail
; 
5674     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDialog
, 1); 
5697 static PyObject 
*_wrap_new_PreDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5698     PyObject 
*resultobj
; 
5704     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreDialog",kwnames
)) goto fail
; 
5706         if (!wxPyCheckForApp()) SWIG_fail
; 
5707         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5708         result 
= (wxDialog 
*)new wxDialog(); 
5710         wxPyEndAllowThreads(__tstate
); 
5711         if (PyErr_Occurred()) SWIG_fail
; 
5713     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDialog
, 1); 
5720 static PyObject 
*_wrap_Dialog_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5721     PyObject 
*resultobj
; 
5722     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5723     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
5724     int arg3 
= (int) (int)-1 ; 
5725     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
5726     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
5727     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
5728     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
5729     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
5730     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
5731     long arg7 
= (long) wxDEFAULT_DIALOG_STYLE 
; 
5732     wxString 
const &arg8_defvalue 
= wxPyDialogNameStr 
; 
5733     wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
5735     bool temp4 
= false ; 
5738     bool temp8 
= false ; 
5739     PyObject 
* obj0 
= 0 ; 
5740     PyObject 
* obj1 
= 0 ; 
5741     PyObject 
* obj2 
= 0 ; 
5742     PyObject 
* obj3 
= 0 ; 
5743     PyObject 
* obj4 
= 0 ; 
5744     PyObject 
* obj5 
= 0 ; 
5745     PyObject 
* obj6 
= 0 ; 
5746     PyObject 
* obj7 
= 0 ; 
5748         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
5751     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:Dialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
5752     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5753     if (SWIG_arg_fail(1)) SWIG_fail
; 
5754     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
5755     if (SWIG_arg_fail(2)) SWIG_fail
; 
5758             arg3 
= (int const)(SWIG_As_int(obj2
));  
5759             if (SWIG_arg_fail(3)) SWIG_fail
; 
5764             arg4 
= wxString_in_helper(obj3
); 
5765             if (arg4 
== NULL
) SWIG_fail
; 
5772             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
5778             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
5783             arg7 
= (long)(SWIG_As_long(obj6
));  
5784             if (SWIG_arg_fail(7)) SWIG_fail
; 
5789             arg8 
= wxString_in_helper(obj7
); 
5790             if (arg8 
== NULL
) SWIG_fail
; 
5795         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5796         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
5798         wxPyEndAllowThreads(__tstate
); 
5799         if (PyErr_Occurred()) SWIG_fail
; 
5802         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
5826 static PyObject 
*_wrap_Dialog_SetReturnCode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5827     PyObject 
*resultobj
; 
5828     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5830     PyObject 
* obj0 
= 0 ; 
5831     PyObject 
* obj1 
= 0 ; 
5833         (char *) "self",(char *) "returnCode", NULL 
 
5836     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_SetReturnCode",kwnames
,&obj0
,&obj1
)) goto fail
; 
5837     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5838     if (SWIG_arg_fail(1)) SWIG_fail
; 
5840         arg2 
= (int)(SWIG_As_int(obj1
));  
5841         if (SWIG_arg_fail(2)) SWIG_fail
; 
5844         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5845         (arg1
)->SetReturnCode(arg2
); 
5847         wxPyEndAllowThreads(__tstate
); 
5848         if (PyErr_Occurred()) SWIG_fail
; 
5850     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5857 static PyObject 
*_wrap_Dialog_GetReturnCode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5858     PyObject 
*resultobj
; 
5859     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5861     PyObject 
* obj0 
= 0 ; 
5863         (char *) "self", NULL 
 
5866     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Dialog_GetReturnCode",kwnames
,&obj0
)) goto fail
; 
5867     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5868     if (SWIG_arg_fail(1)) SWIG_fail
; 
5870         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5871         result 
= (int)((wxDialog 
const *)arg1
)->GetReturnCode(); 
5873         wxPyEndAllowThreads(__tstate
); 
5874         if (PyErr_Occurred()) SWIG_fail
; 
5877         resultobj 
= SWIG_From_int((int)(result
));  
5885 static PyObject 
*_wrap_Dialog_CreateTextSizer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5886     PyObject 
*resultobj
; 
5887     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5888     wxString 
*arg2 
= 0 ; 
5890     bool temp2 
= false ; 
5891     PyObject 
* obj0 
= 0 ; 
5892     PyObject 
* obj1 
= 0 ; 
5894         (char *) "self",(char *) "message", NULL 
 
5897     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateTextSizer",kwnames
,&obj0
,&obj1
)) goto fail
; 
5898     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5899     if (SWIG_arg_fail(1)) SWIG_fail
; 
5901         arg2 
= wxString_in_helper(obj1
); 
5902         if (arg2 
== NULL
) SWIG_fail
; 
5906         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5907         result 
= (wxSizer 
*)(arg1
)->CreateTextSizer((wxString 
const &)*arg2
); 
5909         wxPyEndAllowThreads(__tstate
); 
5910         if (PyErr_Occurred()) SWIG_fail
; 
5913         resultobj 
= wxPyMake_wxObject(result
, 0);  
5929 static PyObject 
*_wrap_Dialog_CreateButtonSizer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5930     PyObject 
*resultobj
; 
5931     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5934     PyObject 
* obj0 
= 0 ; 
5935     PyObject 
* obj1 
= 0 ; 
5937         (char *) "self",(char *) "flags", NULL 
 
5940     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateButtonSizer",kwnames
,&obj0
,&obj1
)) goto fail
; 
5941     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5942     if (SWIG_arg_fail(1)) SWIG_fail
; 
5944         arg2 
= (long)(SWIG_As_long(obj1
));  
5945         if (SWIG_arg_fail(2)) SWIG_fail
; 
5948         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5949         result 
= (wxSizer 
*)(arg1
)->CreateButtonSizer(arg2
); 
5951         wxPyEndAllowThreads(__tstate
); 
5952         if (PyErr_Occurred()) SWIG_fail
; 
5955         resultobj 
= wxPyMake_wxObject(result
, 0);  
5963 static PyObject 
*_wrap_Dialog_CreateStdDialogButtonSizer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5964     PyObject 
*resultobj
; 
5965     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5967     wxStdDialogButtonSizer 
*result
; 
5968     PyObject 
* obj0 
= 0 ; 
5969     PyObject 
* obj1 
= 0 ; 
5971         (char *) "self",(char *) "flags", NULL 
 
5974     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_CreateStdDialogButtonSizer",kwnames
,&obj0
,&obj1
)) goto fail
; 
5975     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
5976     if (SWIG_arg_fail(1)) SWIG_fail
; 
5978         arg2 
= (long)(SWIG_As_long(obj1
));  
5979         if (SWIG_arg_fail(2)) SWIG_fail
; 
5982         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5983         result 
= (wxStdDialogButtonSizer 
*)(arg1
)->CreateStdDialogButtonSizer(arg2
); 
5985         wxPyEndAllowThreads(__tstate
); 
5986         if (PyErr_Occurred()) SWIG_fail
; 
5988     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStdDialogButtonSizer
, 0); 
5995 static PyObject 
*_wrap_Dialog_IsModal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5996     PyObject 
*resultobj
; 
5997     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
5999     PyObject 
* obj0 
= 0 ; 
6001         (char *) "self", NULL 
 
6004     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Dialog_IsModal",kwnames
,&obj0
)) goto fail
; 
6005     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
6006     if (SWIG_arg_fail(1)) SWIG_fail
; 
6008         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6009         result 
= (bool)((wxDialog 
const *)arg1
)->IsModal(); 
6011         wxPyEndAllowThreads(__tstate
); 
6012         if (PyErr_Occurred()) SWIG_fail
; 
6015         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6023 static PyObject 
*_wrap_Dialog_ShowModal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6024     PyObject 
*resultobj
; 
6025     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
6027     PyObject 
* obj0 
= 0 ; 
6029         (char *) "self", NULL 
 
6032     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Dialog_ShowModal",kwnames
,&obj0
)) goto fail
; 
6033     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
6034     if (SWIG_arg_fail(1)) SWIG_fail
; 
6036         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6037         result 
= (int)(arg1
)->ShowModal(); 
6039         wxPyEndAllowThreads(__tstate
); 
6040         if (PyErr_Occurred()) SWIG_fail
; 
6043         resultobj 
= SWIG_From_int((int)(result
));  
6051 static PyObject 
*_wrap_Dialog_EndModal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6052     PyObject 
*resultobj
; 
6053     wxDialog 
*arg1 
= (wxDialog 
*) 0 ; 
6055     PyObject 
* obj0 
= 0 ; 
6056     PyObject 
* obj1 
= 0 ; 
6058         (char *) "self",(char *) "retCode", NULL 
 
6061     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Dialog_EndModal",kwnames
,&obj0
,&obj1
)) goto fail
; 
6062     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
6063     if (SWIG_arg_fail(1)) SWIG_fail
; 
6065         arg2 
= (int)(SWIG_As_int(obj1
));  
6066         if (SWIG_arg_fail(2)) SWIG_fail
; 
6069         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6070         (arg1
)->EndModal(arg2
); 
6072         wxPyEndAllowThreads(__tstate
); 
6073         if (PyErr_Occurred()) SWIG_fail
; 
6075     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6082 static PyObject 
*_wrap_Dialog_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6083     PyObject 
*resultobj
; 
6084     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
6085     wxVisualAttributes result
; 
6086     PyObject 
* obj0 
= 0 ; 
6088         (char *) "variant", NULL 
 
6091     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:Dialog_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
6094             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
6095             if (SWIG_arg_fail(1)) SWIG_fail
; 
6099         if (!wxPyCheckForApp()) SWIG_fail
; 
6100         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6101         result 
= wxDialog::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
6103         wxPyEndAllowThreads(__tstate
); 
6104         if (PyErr_Occurred()) SWIG_fail
; 
6107         wxVisualAttributes 
* resultptr
; 
6108         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
6109         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
6117 static PyObject 
* Dialog_swigregister(PyObject 
*, PyObject 
*args
) { 
6119     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6120     SWIG_TypeClientData(SWIGTYPE_p_wxDialog
, obj
); 
6122     return Py_BuildValue((char *)""); 
6124 static PyObject 
*_wrap_new_MiniFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6125     PyObject 
*resultobj
; 
6126     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
6127     int arg2 
= (int) (int)-1 ; 
6128     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
6129     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
6130     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
6131     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
6132     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
6133     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
6134     long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
6135     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
6136     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
6137     wxMiniFrame 
*result
; 
6138     bool temp3 
= false ; 
6141     bool temp7 
= false ; 
6142     PyObject 
* obj0 
= 0 ; 
6143     PyObject 
* obj1 
= 0 ; 
6144     PyObject 
* obj2 
= 0 ; 
6145     PyObject 
* obj3 
= 0 ; 
6146     PyObject 
* obj4 
= 0 ; 
6147     PyObject 
* obj5 
= 0 ; 
6148     PyObject 
* obj6 
= 0 ; 
6150         (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
6153     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MiniFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
6154     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6155     if (SWIG_arg_fail(1)) SWIG_fail
; 
6158             arg2 
= (int const)(SWIG_As_int(obj1
));  
6159             if (SWIG_arg_fail(2)) SWIG_fail
; 
6164             arg3 
= wxString_in_helper(obj2
); 
6165             if (arg3 
== NULL
) SWIG_fail
; 
6172             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
6178             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
6183             arg6 
= (long)(SWIG_As_long(obj5
));  
6184             if (SWIG_arg_fail(6)) SWIG_fail
; 
6189             arg7 
= wxString_in_helper(obj6
); 
6190             if (arg7 
== NULL
) SWIG_fail
; 
6195         if (!wxPyCheckForApp()) SWIG_fail
; 
6196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6197         result 
= (wxMiniFrame 
*)new wxMiniFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
6199         wxPyEndAllowThreads(__tstate
); 
6200         if (PyErr_Occurred()) SWIG_fail
; 
6202     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMiniFrame
, 1); 
6225 static PyObject 
*_wrap_new_PreMiniFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6226     PyObject 
*resultobj
; 
6227     wxMiniFrame 
*result
; 
6232     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreMiniFrame",kwnames
)) goto fail
; 
6234         if (!wxPyCheckForApp()) SWIG_fail
; 
6235         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6236         result 
= (wxMiniFrame 
*)new wxMiniFrame(); 
6238         wxPyEndAllowThreads(__tstate
); 
6239         if (PyErr_Occurred()) SWIG_fail
; 
6241     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMiniFrame
, 1); 
6248 static PyObject 
*_wrap_MiniFrame_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6249     PyObject 
*resultobj
; 
6250     wxMiniFrame 
*arg1 
= (wxMiniFrame 
*) 0 ; 
6251     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
6252     int arg3 
= (int) (int)-1 ; 
6253     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
6254     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
6255     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
6256     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
6257     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
6258     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
6259     long arg7 
= (long) wxDEFAULT_FRAME_STYLE 
; 
6260     wxString 
const &arg8_defvalue 
= wxPyFrameNameStr 
; 
6261     wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
6263     bool temp4 
= false ; 
6266     bool temp8 
= false ; 
6267     PyObject 
* obj0 
= 0 ; 
6268     PyObject 
* obj1 
= 0 ; 
6269     PyObject 
* obj2 
= 0 ; 
6270     PyObject 
* obj3 
= 0 ; 
6271     PyObject 
* obj4 
= 0 ; 
6272     PyObject 
* obj5 
= 0 ; 
6273     PyObject 
* obj6 
= 0 ; 
6274     PyObject 
* obj7 
= 0 ; 
6276         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
6279     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MiniFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
6280     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMiniFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
6281     if (SWIG_arg_fail(1)) SWIG_fail
; 
6282     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6283     if (SWIG_arg_fail(2)) SWIG_fail
; 
6286             arg3 
= (int const)(SWIG_As_int(obj2
));  
6287             if (SWIG_arg_fail(3)) SWIG_fail
; 
6292             arg4 
= wxString_in_helper(obj3
); 
6293             if (arg4 
== NULL
) SWIG_fail
; 
6300             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
6306             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
6311             arg7 
= (long)(SWIG_As_long(obj6
));  
6312             if (SWIG_arg_fail(7)) SWIG_fail
; 
6317             arg8 
= wxString_in_helper(obj7
); 
6318             if (arg8 
== NULL
) SWIG_fail
; 
6323         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6324         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
6326         wxPyEndAllowThreads(__tstate
); 
6327         if (PyErr_Occurred()) SWIG_fail
; 
6330         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6354 static PyObject 
* MiniFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
6356     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6357     SWIG_TypeClientData(SWIGTYPE_p_wxMiniFrame
, obj
); 
6359     return Py_BuildValue((char *)""); 
6361 static PyObject 
*_wrap_new_SplashScreenWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6362     PyObject 
*resultobj
; 
6363     wxBitmap 
*arg1 
= 0 ; 
6364     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
6366     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
6367     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
6368     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
6369     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
6370     long arg6 
= (long) wxNO_BORDER 
; 
6371     wxSplashScreenWindow 
*result
; 
6374     PyObject 
* obj0 
= 0 ; 
6375     PyObject 
* obj1 
= 0 ; 
6376     PyObject 
* obj2 
= 0 ; 
6377     PyObject 
* obj3 
= 0 ; 
6378     PyObject 
* obj4 
= 0 ; 
6379     PyObject 
* obj5 
= 0 ; 
6381         (char *) "bitmap",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL 
 
6384     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_SplashScreenWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
6386         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION 
| 0); 
6387         if (SWIG_arg_fail(1)) SWIG_fail
; 
6389             SWIG_null_ref("wxBitmap"); 
6391         if (SWIG_arg_fail(1)) SWIG_fail
; 
6393     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6394     if (SWIG_arg_fail(2)) SWIG_fail
; 
6396         arg3 
= (int)(SWIG_As_int(obj2
));  
6397         if (SWIG_arg_fail(3)) SWIG_fail
; 
6402             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
6408             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
6413             arg6 
= (long)(SWIG_As_long(obj5
));  
6414             if (SWIG_arg_fail(6)) SWIG_fail
; 
6418         if (!wxPyCheckForApp()) SWIG_fail
; 
6419         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6420         result 
= (wxSplashScreenWindow 
*)new wxSplashScreenWindow((wxBitmap 
const &)*arg1
,arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
); 
6422         wxPyEndAllowThreads(__tstate
); 
6423         if (PyErr_Occurred()) SWIG_fail
; 
6425     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplashScreenWindow
, 1); 
6432 static PyObject 
*_wrap_SplashScreenWindow_SetBitmap(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6433     PyObject 
*resultobj
; 
6434     wxSplashScreenWindow 
*arg1 
= (wxSplashScreenWindow 
*) 0 ; 
6435     wxBitmap 
*arg2 
= 0 ; 
6436     PyObject 
* obj0 
= 0 ; 
6437     PyObject 
* obj1 
= 0 ; 
6439         (char *) "self",(char *) "bitmap", NULL 
 
6442     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplashScreenWindow_SetBitmap",kwnames
,&obj0
,&obj1
)) goto fail
; 
6443     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplashScreenWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6444     if (SWIG_arg_fail(1)) SWIG_fail
; 
6446         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION 
| 0); 
6447         if (SWIG_arg_fail(2)) SWIG_fail
; 
6449             SWIG_null_ref("wxBitmap"); 
6451         if (SWIG_arg_fail(2)) SWIG_fail
; 
6454         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6455         (arg1
)->SetBitmap((wxBitmap 
const &)*arg2
); 
6457         wxPyEndAllowThreads(__tstate
); 
6458         if (PyErr_Occurred()) SWIG_fail
; 
6460     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6467 static PyObject 
*_wrap_SplashScreenWindow_GetBitmap(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6468     PyObject 
*resultobj
; 
6469     wxSplashScreenWindow 
*arg1 
= (wxSplashScreenWindow 
*) 0 ; 
6471     PyObject 
* obj0 
= 0 ; 
6473         (char *) "self", NULL 
 
6476     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplashScreenWindow_GetBitmap",kwnames
,&obj0
)) goto fail
; 
6477     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplashScreenWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6478     if (SWIG_arg_fail(1)) SWIG_fail
; 
6480         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6482             wxBitmap 
&_result_ref 
= (arg1
)->GetBitmap(); 
6483             result 
= (wxBitmap 
*) &_result_ref
; 
6486         wxPyEndAllowThreads(__tstate
); 
6487         if (PyErr_Occurred()) SWIG_fail
; 
6490         wxBitmap
* resultptr 
= new wxBitmap(*result
); 
6491         resultobj 
= SWIG_NewPointerObj((void*)(resultptr
), SWIGTYPE_p_wxBitmap
, 1); 
6499 static PyObject 
* SplashScreenWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
6501     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6502     SWIG_TypeClientData(SWIGTYPE_p_wxSplashScreenWindow
, obj
); 
6504     return Py_BuildValue((char *)""); 
6506 static PyObject 
*_wrap_new_SplashScreen(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6507     PyObject 
*resultobj
; 
6508     wxBitmap 
*arg1 
= 0 ; 
6511     wxWindow 
*arg4 
= (wxWindow 
*) 0 ; 
6512     int arg5 
= (int) -1 ; 
6513     wxPoint 
const &arg6_defvalue 
= wxDefaultPosition 
; 
6514     wxPoint 
*arg6 
= (wxPoint 
*) &arg6_defvalue 
; 
6515     wxSize 
const &arg7_defvalue 
= wxDefaultSize 
; 
6516     wxSize 
*arg7 
= (wxSize 
*) &arg7_defvalue 
; 
6517     long arg8 
= (long) wxSIMPLE_BORDER
|wxFRAME_NO_TASKBAR
|wxSTAY_ON_TOP 
; 
6518     wxSplashScreen 
*result
; 
6521     PyObject 
* obj0 
= 0 ; 
6522     PyObject 
* obj1 
= 0 ; 
6523     PyObject 
* obj2 
= 0 ; 
6524     PyObject 
* obj3 
= 0 ; 
6525     PyObject 
* obj4 
= 0 ; 
6526     PyObject 
* obj5 
= 0 ; 
6527     PyObject 
* obj6 
= 0 ; 
6528     PyObject 
* obj7 
= 0 ; 
6530         (char *) "bitmap",(char *) "splashStyle",(char *) "milliseconds",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style", NULL 
 
6533     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OOOO:new_SplashScreen",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
6535         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION 
| 0); 
6536         if (SWIG_arg_fail(1)) SWIG_fail
; 
6538             SWIG_null_ref("wxBitmap"); 
6540         if (SWIG_arg_fail(1)) SWIG_fail
; 
6543         arg2 
= (long)(SWIG_As_long(obj1
));  
6544         if (SWIG_arg_fail(2)) SWIG_fail
; 
6547         arg3 
= (int)(SWIG_As_int(obj2
));  
6548         if (SWIG_arg_fail(3)) SWIG_fail
; 
6550     SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6551     if (SWIG_arg_fail(4)) SWIG_fail
; 
6554             arg5 
= (int)(SWIG_As_int(obj4
));  
6555             if (SWIG_arg_fail(5)) SWIG_fail
; 
6561             if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
; 
6567             if ( ! wxSize_helper(obj6
, &arg7
)) SWIG_fail
; 
6572             arg8 
= (long)(SWIG_As_long(obj7
));  
6573             if (SWIG_arg_fail(8)) SWIG_fail
; 
6577         if (!wxPyCheckForApp()) SWIG_fail
; 
6578         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6579         result 
= (wxSplashScreen 
*)new wxSplashScreen((wxBitmap 
const &)*arg1
,arg2
,arg3
,arg4
,arg5
,(wxPoint 
const &)*arg6
,(wxSize 
const &)*arg7
,arg8
); 
6581         wxPyEndAllowThreads(__tstate
); 
6582         if (PyErr_Occurred()) SWIG_fail
; 
6584     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplashScreen
, 1); 
6591 static PyObject 
*_wrap_SplashScreen_GetSplashStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6592     PyObject 
*resultobj
; 
6593     wxSplashScreen 
*arg1 
= (wxSplashScreen 
*) 0 ; 
6595     PyObject 
* obj0 
= 0 ; 
6597         (char *) "self", NULL 
 
6600     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplashScreen_GetSplashStyle",kwnames
,&obj0
)) goto fail
; 
6601     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplashScreen
, SWIG_POINTER_EXCEPTION 
| 0); 
6602     if (SWIG_arg_fail(1)) SWIG_fail
; 
6604         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6605         result 
= (long)((wxSplashScreen 
const *)arg1
)->GetSplashStyle(); 
6607         wxPyEndAllowThreads(__tstate
); 
6608         if (PyErr_Occurred()) SWIG_fail
; 
6611         resultobj 
= SWIG_From_long((long)(result
));  
6619 static PyObject 
*_wrap_SplashScreen_GetSplashWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6620     PyObject 
*resultobj
; 
6621     wxSplashScreen 
*arg1 
= (wxSplashScreen 
*) 0 ; 
6622     wxSplashScreenWindow 
*result
; 
6623     PyObject 
* obj0 
= 0 ; 
6625         (char *) "self", NULL 
 
6628     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplashScreen_GetSplashWindow",kwnames
,&obj0
)) goto fail
; 
6629     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplashScreen
, SWIG_POINTER_EXCEPTION 
| 0); 
6630     if (SWIG_arg_fail(1)) SWIG_fail
; 
6632         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6633         result 
= (wxSplashScreenWindow 
*)((wxSplashScreen 
const *)arg1
)->GetSplashWindow(); 
6635         wxPyEndAllowThreads(__tstate
); 
6636         if (PyErr_Occurred()) SWIG_fail
; 
6638     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplashScreenWindow
, 0); 
6645 static PyObject 
*_wrap_SplashScreen_GetTimeout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6646     PyObject 
*resultobj
; 
6647     wxSplashScreen 
*arg1 
= (wxSplashScreen 
*) 0 ; 
6649     PyObject 
* obj0 
= 0 ; 
6651         (char *) "self", NULL 
 
6654     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplashScreen_GetTimeout",kwnames
,&obj0
)) goto fail
; 
6655     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplashScreen
, SWIG_POINTER_EXCEPTION 
| 0); 
6656     if (SWIG_arg_fail(1)) SWIG_fail
; 
6658         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6659         result 
= (int)((wxSplashScreen 
const *)arg1
)->GetTimeout(); 
6661         wxPyEndAllowThreads(__tstate
); 
6662         if (PyErr_Occurred()) SWIG_fail
; 
6665         resultobj 
= SWIG_From_int((int)(result
));  
6673 static PyObject 
* SplashScreen_swigregister(PyObject 
*, PyObject 
*args
) { 
6675     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6676     SWIG_TypeClientData(SWIGTYPE_p_wxSplashScreen
, obj
); 
6678     return Py_BuildValue((char *)""); 
6680 static PyObject 
*_wrap_new_StatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6681     PyObject 
*resultobj
; 
6682     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
6683     int arg2 
= (int) -1 ; 
6684     long arg3 
= (long) wxDEFAULT_STATUSBAR_STYLE 
; 
6685     wxString 
const &arg4_defvalue 
= wxPyStatusLineNameStr 
; 
6686     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
6687     wxStatusBar 
*result
; 
6688     bool temp4 
= false ; 
6689     PyObject 
* obj0 
= 0 ; 
6690     PyObject 
* obj1 
= 0 ; 
6691     PyObject 
* obj2 
= 0 ; 
6692     PyObject 
* obj3 
= 0 ; 
6694         (char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL 
 
6697     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:new_StatusBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
6698     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6699     if (SWIG_arg_fail(1)) SWIG_fail
; 
6702             arg2 
= (int)(SWIG_As_int(obj1
));  
6703             if (SWIG_arg_fail(2)) SWIG_fail
; 
6708             arg3 
= (long)(SWIG_As_long(obj2
));  
6709             if (SWIG_arg_fail(3)) SWIG_fail
; 
6714             arg4 
= wxString_in_helper(obj3
); 
6715             if (arg4 
== NULL
) SWIG_fail
; 
6720         if (!wxPyCheckForApp()) SWIG_fail
; 
6721         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6722         result 
= (wxStatusBar 
*)new wxStatusBar(arg1
,arg2
,arg3
,(wxString 
const &)*arg4
); 
6724         wxPyEndAllowThreads(__tstate
); 
6725         if (PyErr_Occurred()) SWIG_fail
; 
6727     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStatusBar
, 1); 
6742 static PyObject 
*_wrap_new_PreStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6743     PyObject 
*resultobj
; 
6744     wxStatusBar 
*result
; 
6749     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreStatusBar",kwnames
)) goto fail
; 
6751         if (!wxPyCheckForApp()) SWIG_fail
; 
6752         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6753         result 
= (wxStatusBar 
*)new wxStatusBar(); 
6755         wxPyEndAllowThreads(__tstate
); 
6756         if (PyErr_Occurred()) SWIG_fail
; 
6758     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxStatusBar
, 1); 
6765 static PyObject 
*_wrap_StatusBar_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6766     PyObject 
*resultobj
; 
6767     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6768     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
6769     int arg3 
= (int) -1 ; 
6770     long arg4 
= (long) wxST_SIZEGRIP 
; 
6771     wxString 
const &arg5_defvalue 
= wxPyStatusLineNameStr 
; 
6772     wxString 
*arg5 
= (wxString 
*) &arg5_defvalue 
; 
6774     bool temp5 
= false ; 
6775     PyObject 
* obj0 
= 0 ; 
6776     PyObject 
* obj1 
= 0 ; 
6777     PyObject 
* obj2 
= 0 ; 
6778     PyObject 
* obj3 
= 0 ; 
6779     PyObject 
* obj4 
= 0 ; 
6781         (char *) "self",(char *) "parent",(char *) "id",(char *) "style",(char *) "name", NULL 
 
6784     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:StatusBar_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
6785     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6786     if (SWIG_arg_fail(1)) SWIG_fail
; 
6787     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
6788     if (SWIG_arg_fail(2)) SWIG_fail
; 
6791             arg3 
= (int)(SWIG_As_int(obj2
));  
6792             if (SWIG_arg_fail(3)) SWIG_fail
; 
6797             arg4 
= (long)(SWIG_As_long(obj3
));  
6798             if (SWIG_arg_fail(4)) SWIG_fail
; 
6803             arg5 
= wxString_in_helper(obj4
); 
6804             if (arg5 
== NULL
) SWIG_fail
; 
6809         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6810         result 
= (bool)(arg1
)->Create(arg2
,arg3
,arg4
,(wxString 
const &)*arg5
); 
6812         wxPyEndAllowThreads(__tstate
); 
6813         if (PyErr_Occurred()) SWIG_fail
; 
6816         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6832 static PyObject 
*_wrap_StatusBar_SetFieldsCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6833     PyObject 
*resultobj
; 
6834     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6835     int arg2 
= (int) 1 ; 
6836     PyObject 
* obj0 
= 0 ; 
6837     PyObject 
* obj1 
= 0 ; 
6839         (char *) "self",(char *) "number", NULL 
 
6842     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_SetFieldsCount",kwnames
,&obj0
,&obj1
)) goto fail
; 
6843     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6844     if (SWIG_arg_fail(1)) SWIG_fail
; 
6847             arg2 
= (int)(SWIG_As_int(obj1
));  
6848             if (SWIG_arg_fail(2)) SWIG_fail
; 
6852         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6853         (arg1
)->SetFieldsCount(arg2
); 
6855         wxPyEndAllowThreads(__tstate
); 
6856         if (PyErr_Occurred()) SWIG_fail
; 
6858     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6865 static PyObject 
*_wrap_StatusBar_GetFieldsCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6866     PyObject 
*resultobj
; 
6867     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6869     PyObject 
* obj0 
= 0 ; 
6871         (char *) "self", NULL 
 
6874     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StatusBar_GetFieldsCount",kwnames
,&obj0
)) goto fail
; 
6875     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6876     if (SWIG_arg_fail(1)) SWIG_fail
; 
6878         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6879         result 
= (int)((wxStatusBar 
const *)arg1
)->GetFieldsCount(); 
6881         wxPyEndAllowThreads(__tstate
); 
6882         if (PyErr_Occurred()) SWIG_fail
; 
6885         resultobj 
= SWIG_From_int((int)(result
));  
6893 static PyObject 
*_wrap_StatusBar_SetStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6894     PyObject 
*resultobj
; 
6895     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6896     wxString 
*arg2 
= 0 ; 
6897     int arg3 
= (int) 0 ; 
6898     bool temp2 
= false ; 
6899     PyObject 
* obj0 
= 0 ; 
6900     PyObject 
* obj1 
= 0 ; 
6901     PyObject 
* obj2 
= 0 ; 
6903         (char *) "self",(char *) "text",(char *) "number", NULL 
 
6906     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_SetStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6907     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6908     if (SWIG_arg_fail(1)) SWIG_fail
; 
6910         arg2 
= wxString_in_helper(obj1
); 
6911         if (arg2 
== NULL
) SWIG_fail
; 
6916             arg3 
= (int)(SWIG_As_int(obj2
));  
6917             if (SWIG_arg_fail(3)) SWIG_fail
; 
6921         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6922         (arg1
)->SetStatusText((wxString 
const &)*arg2
,arg3
); 
6924         wxPyEndAllowThreads(__tstate
); 
6925         if (PyErr_Occurred()) SWIG_fail
; 
6927     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6942 static PyObject 
*_wrap_StatusBar_GetStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6943     PyObject 
*resultobj
; 
6944     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6945     int arg2 
= (int) 0 ; 
6947     PyObject 
* obj0 
= 0 ; 
6948     PyObject 
* obj1 
= 0 ; 
6950         (char *) "self",(char *) "number", NULL 
 
6953     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_GetStatusText",kwnames
,&obj0
,&obj1
)) goto fail
; 
6954     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6955     if (SWIG_arg_fail(1)) SWIG_fail
; 
6958             arg2 
= (int)(SWIG_As_int(obj1
));  
6959             if (SWIG_arg_fail(2)) SWIG_fail
; 
6963         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6964         result 
= ((wxStatusBar 
const *)arg1
)->GetStatusText(arg2
); 
6966         wxPyEndAllowThreads(__tstate
); 
6967         if (PyErr_Occurred()) SWIG_fail
; 
6971         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
6973         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
6982 static PyObject 
*_wrap_StatusBar_PushStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6983     PyObject 
*resultobj
; 
6984     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
6985     wxString 
*arg2 
= 0 ; 
6986     int arg3 
= (int) 0 ; 
6987     bool temp2 
= false ; 
6988     PyObject 
* obj0 
= 0 ; 
6989     PyObject 
* obj1 
= 0 ; 
6990     PyObject 
* obj2 
= 0 ; 
6992         (char *) "self",(char *) "text",(char *) "number", NULL 
 
6995     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:StatusBar_PushStatusText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6996     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
6997     if (SWIG_arg_fail(1)) SWIG_fail
; 
6999         arg2 
= wxString_in_helper(obj1
); 
7000         if (arg2 
== NULL
) SWIG_fail
; 
7005             arg3 
= (int)(SWIG_As_int(obj2
));  
7006             if (SWIG_arg_fail(3)) SWIG_fail
; 
7010         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7011         (arg1
)->PushStatusText((wxString 
const &)*arg2
,arg3
); 
7013         wxPyEndAllowThreads(__tstate
); 
7014         if (PyErr_Occurred()) SWIG_fail
; 
7016     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7031 static PyObject 
*_wrap_StatusBar_PopStatusText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7032     PyObject 
*resultobj
; 
7033     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7034     int arg2 
= (int) 0 ; 
7035     PyObject 
* obj0 
= 0 ; 
7036     PyObject 
* obj1 
= 0 ; 
7038         (char *) "self",(char *) "number", NULL 
 
7041     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:StatusBar_PopStatusText",kwnames
,&obj0
,&obj1
)) goto fail
; 
7042     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7043     if (SWIG_arg_fail(1)) SWIG_fail
; 
7046             arg2 
= (int)(SWIG_As_int(obj1
));  
7047             if (SWIG_arg_fail(2)) SWIG_fail
; 
7051         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7052         (arg1
)->PopStatusText(arg2
); 
7054         wxPyEndAllowThreads(__tstate
); 
7055         if (PyErr_Occurred()) SWIG_fail
; 
7057     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7064 static PyObject 
*_wrap_StatusBar_SetStatusWidths(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7065     PyObject 
*resultobj
; 
7066     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7068     int *arg3 
= (int *) 0 ; 
7069     PyObject 
* obj0 
= 0 ; 
7070     PyObject 
* obj1 
= 0 ; 
7072         (char *) "self",(char *) "widths", NULL 
 
7075     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusWidths",kwnames
,&obj0
,&obj1
)) goto fail
; 
7076     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7077     if (SWIG_arg_fail(1)) SWIG_fail
; 
7079         arg2 
= PyList_Size(obj1
); 
7080         arg3 
=  int_LIST_helper(obj1
); 
7081         if (arg3 
== NULL
) SWIG_fail
; 
7084         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7085         (arg1
)->SetStatusWidths(arg2
,(int const *)arg3
); 
7087         wxPyEndAllowThreads(__tstate
); 
7088         if (PyErr_Occurred()) SWIG_fail
; 
7090     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7092         if (arg3
) delete [] arg3
; 
7097         if (arg3
) delete [] arg3
; 
7103 static PyObject 
*_wrap_StatusBar_SetStatusStyles(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7104     PyObject 
*resultobj
; 
7105     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7107     int *arg3 
= (int *) 0 ; 
7108     PyObject 
* obj0 
= 0 ; 
7109     PyObject 
* obj1 
= 0 ; 
7111         (char *) "self",(char *) "styles", NULL 
 
7114     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetStatusStyles",kwnames
,&obj0
,&obj1
)) goto fail
; 
7115     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7116     if (SWIG_arg_fail(1)) SWIG_fail
; 
7118         arg2 
= PyList_Size(obj1
); 
7119         arg3 
=  int_LIST_helper(obj1
); 
7120         if (arg3 
== NULL
) SWIG_fail
; 
7123         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7124         (arg1
)->SetStatusStyles(arg2
,(int const *)arg3
); 
7126         wxPyEndAllowThreads(__tstate
); 
7127         if (PyErr_Occurred()) SWIG_fail
; 
7129     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7131         if (arg3
) delete [] arg3
; 
7136         if (arg3
) delete [] arg3
; 
7142 static PyObject 
*_wrap_StatusBar_GetFieldRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7143     PyObject 
*resultobj
; 
7144     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7147     PyObject 
* obj0 
= 0 ; 
7148     PyObject 
* obj1 
= 0 ; 
7150         (char *) "self",(char *) "i", NULL 
 
7153     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_GetFieldRect",kwnames
,&obj0
,&obj1
)) goto fail
; 
7154     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7155     if (SWIG_arg_fail(1)) SWIG_fail
; 
7157         arg2 
= (int)(SWIG_As_int(obj1
));  
7158         if (SWIG_arg_fail(2)) SWIG_fail
; 
7161         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7162         result 
= wxStatusBar_GetFieldRect(arg1
,arg2
); 
7164         wxPyEndAllowThreads(__tstate
); 
7165         if (PyErr_Occurred()) SWIG_fail
; 
7169         resultptr 
= new wxRect((wxRect 
&)(result
)); 
7170         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1); 
7178 static PyObject 
*_wrap_StatusBar_SetMinHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7179     PyObject 
*resultobj
; 
7180     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7182     PyObject 
* obj0 
= 0 ; 
7183     PyObject 
* obj1 
= 0 ; 
7185         (char *) "self",(char *) "height", NULL 
 
7188     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StatusBar_SetMinHeight",kwnames
,&obj0
,&obj1
)) goto fail
; 
7189     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7190     if (SWIG_arg_fail(1)) SWIG_fail
; 
7192         arg2 
= (int)(SWIG_As_int(obj1
));  
7193         if (SWIG_arg_fail(2)) SWIG_fail
; 
7196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7197         (arg1
)->SetMinHeight(arg2
); 
7199         wxPyEndAllowThreads(__tstate
); 
7200         if (PyErr_Occurred()) SWIG_fail
; 
7202     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7209 static PyObject 
*_wrap_StatusBar_GetBorderX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7210     PyObject 
*resultobj
; 
7211     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7213     PyObject 
* obj0 
= 0 ; 
7215         (char *) "self", NULL 
 
7218     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StatusBar_GetBorderX",kwnames
,&obj0
)) goto fail
; 
7219     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7220     if (SWIG_arg_fail(1)) SWIG_fail
; 
7222         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7223         result 
= (int)((wxStatusBar 
const *)arg1
)->GetBorderX(); 
7225         wxPyEndAllowThreads(__tstate
); 
7226         if (PyErr_Occurred()) SWIG_fail
; 
7229         resultobj 
= SWIG_From_int((int)(result
));  
7237 static PyObject 
*_wrap_StatusBar_GetBorderY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7238     PyObject 
*resultobj
; 
7239     wxStatusBar 
*arg1 
= (wxStatusBar 
*) 0 ; 
7241     PyObject 
* obj0 
= 0 ; 
7243         (char *) "self", NULL 
 
7246     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:StatusBar_GetBorderY",kwnames
,&obj0
)) goto fail
; 
7247     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxStatusBar
, SWIG_POINTER_EXCEPTION 
| 0); 
7248     if (SWIG_arg_fail(1)) SWIG_fail
; 
7250         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7251         result 
= (int)((wxStatusBar 
const *)arg1
)->GetBorderY(); 
7253         wxPyEndAllowThreads(__tstate
); 
7254         if (PyErr_Occurred()) SWIG_fail
; 
7257         resultobj 
= SWIG_From_int((int)(result
));  
7265 static PyObject 
*_wrap_StatusBar_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7266     PyObject 
*resultobj
; 
7267     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
7268     wxVisualAttributes result
; 
7269     PyObject 
* obj0 
= 0 ; 
7271         (char *) "variant", NULL 
 
7274     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:StatusBar_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
7277             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
7278             if (SWIG_arg_fail(1)) SWIG_fail
; 
7282         if (!wxPyCheckForApp()) SWIG_fail
; 
7283         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7284         result 
= wxStatusBar::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
7286         wxPyEndAllowThreads(__tstate
); 
7287         if (PyErr_Occurred()) SWIG_fail
; 
7290         wxVisualAttributes 
* resultptr
; 
7291         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
7292         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
7300 static PyObject 
* StatusBar_swigregister(PyObject 
*, PyObject 
*args
) { 
7302     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7303     SWIG_TypeClientData(SWIGTYPE_p_wxStatusBar
, obj
); 
7305     return Py_BuildValue((char *)""); 
7307 static int _wrap_SplitterNameStr_set(PyObject 
*) { 
7308     PyErr_SetString(PyExc_TypeError
,"Variable SplitterNameStr is read-only."); 
7313 static PyObject 
*_wrap_SplitterNameStr_get(void) { 
7318         pyobj 
= PyUnicode_FromWideChar((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len()); 
7320         pyobj 
= PyString_FromStringAndSize((&wxPySplitterNameStr
)->c_str(), (&wxPySplitterNameStr
)->Len()); 
7327 static PyObject 
*_wrap_new_SplitterWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7328     PyObject 
*resultobj
; 
7329     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7330     int arg2 
= (int) -1 ; 
7331     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
7332     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
7333     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
7334     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
7335     long arg5 
= (long) wxSP_3D 
; 
7336     wxString 
const &arg6_defvalue 
= wxPySplitterNameStr 
; 
7337     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
7338     wxSplitterWindow 
*result
; 
7341     bool temp6 
= false ; 
7342     PyObject 
* obj0 
= 0 ; 
7343     PyObject 
* obj1 
= 0 ; 
7344     PyObject 
* obj2 
= 0 ; 
7345     PyObject 
* obj3 
= 0 ; 
7346     PyObject 
* obj4 
= 0 ; 
7347     PyObject 
* obj5 
= 0 ; 
7349         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7352     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SplitterWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
7353     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7354     if (SWIG_arg_fail(1)) SWIG_fail
; 
7357             arg2 
= (int)(SWIG_As_int(obj1
));  
7358             if (SWIG_arg_fail(2)) SWIG_fail
; 
7364             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
7370             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
7375             arg5 
= (long)(SWIG_As_long(obj4
));  
7376             if (SWIG_arg_fail(5)) SWIG_fail
; 
7381             arg6 
= wxString_in_helper(obj5
); 
7382             if (arg6 
== NULL
) SWIG_fail
; 
7387         if (!wxPyCheckForApp()) SWIG_fail
; 
7388         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7389         result 
= (wxSplitterWindow 
*)new wxSplitterWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
7391         wxPyEndAllowThreads(__tstate
); 
7392         if (PyErr_Occurred()) SWIG_fail
; 
7394     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplitterWindow
, 1); 
7409 static PyObject 
*_wrap_new_PreSplitterWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7410     PyObject 
*resultobj
; 
7411     wxSplitterWindow 
*result
; 
7416     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSplitterWindow",kwnames
)) goto fail
; 
7418         if (!wxPyCheckForApp()) SWIG_fail
; 
7419         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7420         result 
= (wxSplitterWindow 
*)new wxSplitterWindow(); 
7422         wxPyEndAllowThreads(__tstate
); 
7423         if (PyErr_Occurred()) SWIG_fail
; 
7425     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplitterWindow
, 1); 
7432 static PyObject 
*_wrap_SplitterWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7433     PyObject 
*resultobj
; 
7434     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7435     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7436     int arg3 
= (int) -1 ; 
7437     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
7438     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
7439     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
7440     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
7441     long arg6 
= (long) wxSP_3D 
; 
7442     wxString 
const &arg7_defvalue 
= wxPySplitterNameStr 
; 
7443     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
7447     bool temp7 
= false ; 
7448     PyObject 
* obj0 
= 0 ; 
7449     PyObject 
* obj1 
= 0 ; 
7450     PyObject 
* obj2 
= 0 ; 
7451     PyObject 
* obj3 
= 0 ; 
7452     PyObject 
* obj4 
= 0 ; 
7453     PyObject 
* obj5 
= 0 ; 
7454     PyObject 
* obj6 
= 0 ; 
7456         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7459     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SplitterWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
7460     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7461     if (SWIG_arg_fail(1)) SWIG_fail
; 
7462     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7463     if (SWIG_arg_fail(2)) SWIG_fail
; 
7466             arg3 
= (int)(SWIG_As_int(obj2
));  
7467             if (SWIG_arg_fail(3)) SWIG_fail
; 
7473             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
7479             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
7484             arg6 
= (long)(SWIG_As_long(obj5
));  
7485             if (SWIG_arg_fail(6)) SWIG_fail
; 
7490             arg7 
= wxString_in_helper(obj6
); 
7491             if (arg7 
== NULL
) SWIG_fail
; 
7496         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7497         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
7499         wxPyEndAllowThreads(__tstate
); 
7500         if (PyErr_Occurred()) SWIG_fail
; 
7503         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7519 static PyObject 
*_wrap_SplitterWindow_GetWindow1(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7520     PyObject 
*resultobj
; 
7521     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7523     PyObject 
* obj0 
= 0 ; 
7525         (char *) "self", NULL 
 
7528     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetWindow1",kwnames
,&obj0
)) goto fail
; 
7529     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7530     if (SWIG_arg_fail(1)) SWIG_fail
; 
7532         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7533         result 
= (wxWindow 
*)((wxSplitterWindow 
const *)arg1
)->GetWindow1(); 
7535         wxPyEndAllowThreads(__tstate
); 
7536         if (PyErr_Occurred()) SWIG_fail
; 
7539         resultobj 
= wxPyMake_wxObject(result
, 0);  
7547 static PyObject 
*_wrap_SplitterWindow_GetWindow2(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7548     PyObject 
*resultobj
; 
7549     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7551     PyObject 
* obj0 
= 0 ; 
7553         (char *) "self", NULL 
 
7556     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetWindow2",kwnames
,&obj0
)) goto fail
; 
7557     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7558     if (SWIG_arg_fail(1)) SWIG_fail
; 
7560         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7561         result 
= (wxWindow 
*)((wxSplitterWindow 
const *)arg1
)->GetWindow2(); 
7563         wxPyEndAllowThreads(__tstate
); 
7564         if (PyErr_Occurred()) SWIG_fail
; 
7567         resultobj 
= wxPyMake_wxObject(result
, 0);  
7575 static PyObject 
*_wrap_SplitterWindow_SetSplitMode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7576     PyObject 
*resultobj
; 
7577     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7579     PyObject 
* obj0 
= 0 ; 
7580     PyObject 
* obj1 
= 0 ; 
7582         (char *) "self",(char *) "mode", NULL 
 
7585     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSplitMode",kwnames
,&obj0
,&obj1
)) goto fail
; 
7586     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7587     if (SWIG_arg_fail(1)) SWIG_fail
; 
7589         arg2 
= (int)(SWIG_As_int(obj1
));  
7590         if (SWIG_arg_fail(2)) SWIG_fail
; 
7593         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7594         (arg1
)->SetSplitMode(arg2
); 
7596         wxPyEndAllowThreads(__tstate
); 
7597         if (PyErr_Occurred()) SWIG_fail
; 
7599     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7606 static PyObject 
*_wrap_SplitterWindow_GetSplitMode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7607     PyObject 
*resultobj
; 
7608     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7610     PyObject 
* obj0 
= 0 ; 
7612         (char *) "self", NULL 
 
7615     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetSplitMode",kwnames
,&obj0
)) goto fail
; 
7616     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7617     if (SWIG_arg_fail(1)) SWIG_fail
; 
7619         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7620         result 
= (wxSplitMode
)((wxSplitterWindow 
const *)arg1
)->GetSplitMode(); 
7622         wxPyEndAllowThreads(__tstate
); 
7623         if (PyErr_Occurred()) SWIG_fail
; 
7625     resultobj 
= SWIG_From_int((result
)); 
7632 static PyObject 
*_wrap_SplitterWindow_Initialize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7633     PyObject 
*resultobj
; 
7634     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7635     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7636     PyObject 
* obj0 
= 0 ; 
7637     PyObject 
* obj1 
= 0 ; 
7639         (char *) "self",(char *) "window", NULL 
 
7642     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_Initialize",kwnames
,&obj0
,&obj1
)) goto fail
; 
7643     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7644     if (SWIG_arg_fail(1)) SWIG_fail
; 
7645     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7646     if (SWIG_arg_fail(2)) SWIG_fail
; 
7648         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7649         (arg1
)->Initialize(arg2
); 
7651         wxPyEndAllowThreads(__tstate
); 
7652         if (PyErr_Occurred()) SWIG_fail
; 
7654     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7661 static PyObject 
*_wrap_SplitterWindow_SplitVertically(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7662     PyObject 
*resultobj
; 
7663     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7664     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7665     wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
7666     int arg4 
= (int) 0 ; 
7668     PyObject 
* obj0 
= 0 ; 
7669     PyObject 
* obj1 
= 0 ; 
7670     PyObject 
* obj2 
= 0 ; 
7671     PyObject 
* obj3 
= 0 ; 
7673         (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL 
 
7676     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitVertically",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7677     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7678     if (SWIG_arg_fail(1)) SWIG_fail
; 
7679     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7680     if (SWIG_arg_fail(2)) SWIG_fail
; 
7681     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7682     if (SWIG_arg_fail(3)) SWIG_fail
; 
7685             arg4 
= (int)(SWIG_As_int(obj3
));  
7686             if (SWIG_arg_fail(4)) SWIG_fail
; 
7690         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7691         result 
= (bool)(arg1
)->SplitVertically(arg2
,arg3
,arg4
); 
7693         wxPyEndAllowThreads(__tstate
); 
7694         if (PyErr_Occurred()) SWIG_fail
; 
7697         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7705 static PyObject 
*_wrap_SplitterWindow_SplitHorizontally(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7706     PyObject 
*resultobj
; 
7707     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7708     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7709     wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
7710     int arg4 
= (int) 0 ; 
7712     PyObject 
* obj0 
= 0 ; 
7713     PyObject 
* obj1 
= 0 ; 
7714     PyObject 
* obj2 
= 0 ; 
7715     PyObject 
* obj3 
= 0 ; 
7717         (char *) "self",(char *) "window1",(char *) "window2",(char *) "sashPosition", NULL 
 
7720     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SplitHorizontally",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7721     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7722     if (SWIG_arg_fail(1)) SWIG_fail
; 
7723     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7724     if (SWIG_arg_fail(2)) SWIG_fail
; 
7725     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7726     if (SWIG_arg_fail(3)) SWIG_fail
; 
7729             arg4 
= (int)(SWIG_As_int(obj3
));  
7730             if (SWIG_arg_fail(4)) SWIG_fail
; 
7734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7735         result 
= (bool)(arg1
)->SplitHorizontally(arg2
,arg3
,arg4
); 
7737         wxPyEndAllowThreads(__tstate
); 
7738         if (PyErr_Occurred()) SWIG_fail
; 
7741         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7749 static PyObject 
*_wrap_SplitterWindow_Unsplit(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7750     PyObject 
*resultobj
; 
7751     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7752     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
7754     PyObject 
* obj0 
= 0 ; 
7755     PyObject 
* obj1 
= 0 ; 
7757         (char *) "self",(char *) "toRemove", NULL 
 
7760     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:SplitterWindow_Unsplit",kwnames
,&obj0
,&obj1
)) goto fail
; 
7761     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7762     if (SWIG_arg_fail(1)) SWIG_fail
; 
7764         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7765         if (SWIG_arg_fail(2)) SWIG_fail
; 
7768         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7769         result 
= (bool)(arg1
)->Unsplit(arg2
); 
7771         wxPyEndAllowThreads(__tstate
); 
7772         if (PyErr_Occurred()) SWIG_fail
; 
7775         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7783 static PyObject 
*_wrap_SplitterWindow_ReplaceWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7784     PyObject 
*resultobj
; 
7785     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7786     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7787     wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
7789     PyObject 
* obj0 
= 0 ; 
7790     PyObject 
* obj1 
= 0 ; 
7791     PyObject 
* obj2 
= 0 ; 
7793         (char *) "self",(char *) "winOld",(char *) "winNew", NULL 
 
7796     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SplitterWindow_ReplaceWindow",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7797     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7798     if (SWIG_arg_fail(1)) SWIG_fail
; 
7799     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7800     if (SWIG_arg_fail(2)) SWIG_fail
; 
7801     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7802     if (SWIG_arg_fail(3)) SWIG_fail
; 
7804         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7805         result 
= (bool)(arg1
)->ReplaceWindow(arg2
,arg3
); 
7807         wxPyEndAllowThreads(__tstate
); 
7808         if (PyErr_Occurred()) SWIG_fail
; 
7811         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7819 static PyObject 
*_wrap_SplitterWindow_UpdateSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7820     PyObject 
*resultobj
; 
7821     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7822     PyObject 
* obj0 
= 0 ; 
7824         (char *) "self", NULL 
 
7827     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_UpdateSize",kwnames
,&obj0
)) goto fail
; 
7828     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7829     if (SWIG_arg_fail(1)) SWIG_fail
; 
7831         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7832         (arg1
)->UpdateSize(); 
7834         wxPyEndAllowThreads(__tstate
); 
7835         if (PyErr_Occurred()) SWIG_fail
; 
7837     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7844 static PyObject 
*_wrap_SplitterWindow_IsSplit(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7845     PyObject 
*resultobj
; 
7846     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7848     PyObject 
* obj0 
= 0 ; 
7850         (char *) "self", NULL 
 
7853     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_IsSplit",kwnames
,&obj0
)) goto fail
; 
7854     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7855     if (SWIG_arg_fail(1)) SWIG_fail
; 
7857         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7858         result 
= (bool)((wxSplitterWindow 
const *)arg1
)->IsSplit(); 
7860         wxPyEndAllowThreads(__tstate
); 
7861         if (PyErr_Occurred()) SWIG_fail
; 
7864         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7872 static PyObject 
*_wrap_SplitterWindow_SetSashSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7873     PyObject 
*resultobj
; 
7874     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7876     PyObject 
* obj0 
= 0 ; 
7877     PyObject 
* obj1 
= 0 ; 
7879         (char *) "self",(char *) "width", NULL 
 
7882     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
7883     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7884     if (SWIG_arg_fail(1)) SWIG_fail
; 
7886         arg2 
= (int)(SWIG_As_int(obj1
));  
7887         if (SWIG_arg_fail(2)) SWIG_fail
; 
7890         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7891         (arg1
)->SetSashSize(arg2
); 
7893         wxPyEndAllowThreads(__tstate
); 
7894         if (PyErr_Occurred()) SWIG_fail
; 
7896     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7903 static PyObject 
*_wrap_SplitterWindow_SetBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7904     PyObject 
*resultobj
; 
7905     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7907     PyObject 
* obj0 
= 0 ; 
7908     PyObject 
* obj1 
= 0 ; 
7910         (char *) "self",(char *) "width", NULL 
 
7913     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetBorderSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
7914     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7915     if (SWIG_arg_fail(1)) SWIG_fail
; 
7917         arg2 
= (int)(SWIG_As_int(obj1
));  
7918         if (SWIG_arg_fail(2)) SWIG_fail
; 
7921         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7922         (arg1
)->SetBorderSize(arg2
); 
7924         wxPyEndAllowThreads(__tstate
); 
7925         if (PyErr_Occurred()) SWIG_fail
; 
7927     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7934 static PyObject 
*_wrap_SplitterWindow_GetSashSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7935     PyObject 
*resultobj
; 
7936     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7938     PyObject 
* obj0 
= 0 ; 
7940         (char *) "self", NULL 
 
7943     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetSashSize",kwnames
,&obj0
)) goto fail
; 
7944     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7945     if (SWIG_arg_fail(1)) SWIG_fail
; 
7947         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7948         result 
= (int)((wxSplitterWindow 
const *)arg1
)->GetSashSize(); 
7950         wxPyEndAllowThreads(__tstate
); 
7951         if (PyErr_Occurred()) SWIG_fail
; 
7954         resultobj 
= SWIG_From_int((int)(result
));  
7962 static PyObject 
*_wrap_SplitterWindow_GetBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7963     PyObject 
*resultobj
; 
7964     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7966     PyObject 
* obj0 
= 0 ; 
7968         (char *) "self", NULL 
 
7971     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetBorderSize",kwnames
,&obj0
)) goto fail
; 
7972     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7973     if (SWIG_arg_fail(1)) SWIG_fail
; 
7975         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7976         result 
= (int)((wxSplitterWindow 
const *)arg1
)->GetBorderSize(); 
7978         wxPyEndAllowThreads(__tstate
); 
7979         if (PyErr_Occurred()) SWIG_fail
; 
7982         resultobj 
= SWIG_From_int((int)(result
));  
7990 static PyObject 
*_wrap_SplitterWindow_SetSashPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7991     PyObject 
*resultobj
; 
7992     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
7994     bool arg3 
= (bool) true ; 
7995     PyObject 
* obj0 
= 0 ; 
7996     PyObject 
* obj1 
= 0 ; 
7997     PyObject 
* obj2 
= 0 ; 
7999         (char *) "self",(char *) "position",(char *) "redraw", NULL 
 
8002     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:SplitterWindow_SetSashPosition",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8003     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8004     if (SWIG_arg_fail(1)) SWIG_fail
; 
8006         arg2 
= (int)(SWIG_As_int(obj1
));  
8007         if (SWIG_arg_fail(2)) SWIG_fail
; 
8011             arg3 
= (bool)(SWIG_As_bool(obj2
));  
8012             if (SWIG_arg_fail(3)) SWIG_fail
; 
8016         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8017         (arg1
)->SetSashPosition(arg2
,arg3
); 
8019         wxPyEndAllowThreads(__tstate
); 
8020         if (PyErr_Occurred()) SWIG_fail
; 
8022     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8029 static PyObject 
*_wrap_SplitterWindow_GetSashPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8030     PyObject 
*resultobj
; 
8031     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8033     PyObject 
* obj0 
= 0 ; 
8035         (char *) "self", NULL 
 
8038     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetSashPosition",kwnames
,&obj0
)) goto fail
; 
8039     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8040     if (SWIG_arg_fail(1)) SWIG_fail
; 
8042         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8043         result 
= (int)((wxSplitterWindow 
const *)arg1
)->GetSashPosition(); 
8045         wxPyEndAllowThreads(__tstate
); 
8046         if (PyErr_Occurred()) SWIG_fail
; 
8049         resultobj 
= SWIG_From_int((int)(result
));  
8057 static PyObject 
*_wrap_SplitterWindow_SetSashGravity(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8058     PyObject 
*resultobj
; 
8059     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8061     PyObject 
* obj0 
= 0 ; 
8062     PyObject 
* obj1 
= 0 ; 
8064         (char *) "self",(char *) "gravity", NULL 
 
8067     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetSashGravity",kwnames
,&obj0
,&obj1
)) goto fail
; 
8068     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8069     if (SWIG_arg_fail(1)) SWIG_fail
; 
8071         arg2 
= (double)(SWIG_As_double(obj1
));  
8072         if (SWIG_arg_fail(2)) SWIG_fail
; 
8075         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8076         (arg1
)->SetSashGravity(arg2
); 
8078         wxPyEndAllowThreads(__tstate
); 
8079         if (PyErr_Occurred()) SWIG_fail
; 
8081     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8088 static PyObject 
*_wrap_SplitterWindow_GetSashGravity(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8089     PyObject 
*resultobj
; 
8090     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8092     PyObject 
* obj0 
= 0 ; 
8094         (char *) "self", NULL 
 
8097     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetSashGravity",kwnames
,&obj0
)) goto fail
; 
8098     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8099     if (SWIG_arg_fail(1)) SWIG_fail
; 
8101         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8102         result 
= (double)((wxSplitterWindow 
const *)arg1
)->GetSashGravity(); 
8104         wxPyEndAllowThreads(__tstate
); 
8105         if (PyErr_Occurred()) SWIG_fail
; 
8108         resultobj 
= SWIG_From_double((double)(result
));  
8116 static PyObject 
*_wrap_SplitterWindow_SetMinimumPaneSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8117     PyObject 
*resultobj
; 
8118     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8120     PyObject 
* obj0 
= 0 ; 
8121     PyObject 
* obj1 
= 0 ; 
8123         (char *) "self",(char *) "min", NULL 
 
8126     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetMinimumPaneSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
8127     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8128     if (SWIG_arg_fail(1)) SWIG_fail
; 
8130         arg2 
= (int)(SWIG_As_int(obj1
));  
8131         if (SWIG_arg_fail(2)) SWIG_fail
; 
8134         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8135         (arg1
)->SetMinimumPaneSize(arg2
); 
8137         wxPyEndAllowThreads(__tstate
); 
8138         if (PyErr_Occurred()) SWIG_fail
; 
8140     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8147 static PyObject 
*_wrap_SplitterWindow_GetMinimumPaneSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8148     PyObject 
*resultobj
; 
8149     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8151     PyObject 
* obj0 
= 0 ; 
8153         (char *) "self", NULL 
 
8156     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetMinimumPaneSize",kwnames
,&obj0
)) goto fail
; 
8157     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8158     if (SWIG_arg_fail(1)) SWIG_fail
; 
8160         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8161         result 
= (int)((wxSplitterWindow 
const *)arg1
)->GetMinimumPaneSize(); 
8163         wxPyEndAllowThreads(__tstate
); 
8164         if (PyErr_Occurred()) SWIG_fail
; 
8167         resultobj 
= SWIG_From_int((int)(result
));  
8175 static PyObject 
*_wrap_SplitterWindow_SashHitTest(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8176     PyObject 
*resultobj
; 
8177     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8180     int arg4 
= (int) 5 ; 
8182     PyObject 
* obj0 
= 0 ; 
8183     PyObject 
* obj1 
= 0 ; 
8184     PyObject 
* obj2 
= 0 ; 
8185     PyObject 
* obj3 
= 0 ; 
8187         (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL 
 
8190     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SplitterWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8191     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8192     if (SWIG_arg_fail(1)) SWIG_fail
; 
8194         arg2 
= (int)(SWIG_As_int(obj1
));  
8195         if (SWIG_arg_fail(2)) SWIG_fail
; 
8198         arg3 
= (int)(SWIG_As_int(obj2
));  
8199         if (SWIG_arg_fail(3)) SWIG_fail
; 
8203             arg4 
= (int)(SWIG_As_int(obj3
));  
8204             if (SWIG_arg_fail(4)) SWIG_fail
; 
8208         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8209         result 
= (bool)(arg1
)->SashHitTest(arg2
,arg3
,arg4
); 
8211         wxPyEndAllowThreads(__tstate
); 
8212         if (PyErr_Occurred()) SWIG_fail
; 
8215         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8223 static PyObject 
*_wrap_SplitterWindow_SizeWindows(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8224     PyObject 
*resultobj
; 
8225     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8226     PyObject 
* obj0 
= 0 ; 
8228         (char *) "self", NULL 
 
8231     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_SizeWindows",kwnames
,&obj0
)) goto fail
; 
8232     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8233     if (SWIG_arg_fail(1)) SWIG_fail
; 
8235         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8236         (arg1
)->SizeWindows(); 
8238         wxPyEndAllowThreads(__tstate
); 
8239         if (PyErr_Occurred()) SWIG_fail
; 
8241     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8248 static PyObject 
*_wrap_SplitterWindow_SetNeedUpdating(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8249     PyObject 
*resultobj
; 
8250     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8252     PyObject 
* obj0 
= 0 ; 
8253     PyObject 
* obj1 
= 0 ; 
8255         (char *) "self",(char *) "needUpdating", NULL 
 
8258     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterWindow_SetNeedUpdating",kwnames
,&obj0
,&obj1
)) goto fail
; 
8259     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8260     if (SWIG_arg_fail(1)) SWIG_fail
; 
8262         arg2 
= (bool)(SWIG_As_bool(obj1
));  
8263         if (SWIG_arg_fail(2)) SWIG_fail
; 
8266         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8267         (arg1
)->SetNeedUpdating(arg2
); 
8269         wxPyEndAllowThreads(__tstate
); 
8270         if (PyErr_Occurred()) SWIG_fail
; 
8272     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8279 static PyObject 
*_wrap_SplitterWindow_GetNeedUpdating(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8280     PyObject 
*resultobj
; 
8281     wxSplitterWindow 
*arg1 
= (wxSplitterWindow 
*) 0 ; 
8283     PyObject 
* obj0 
= 0 ; 
8285         (char *) "self", NULL 
 
8288     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterWindow_GetNeedUpdating",kwnames
,&obj0
)) goto fail
; 
8289     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8290     if (SWIG_arg_fail(1)) SWIG_fail
; 
8292         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8293         result 
= (bool)((wxSplitterWindow 
const *)arg1
)->GetNeedUpdating(); 
8295         wxPyEndAllowThreads(__tstate
); 
8296         if (PyErr_Occurred()) SWIG_fail
; 
8299         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8307 static PyObject 
*_wrap_SplitterWindow_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8308     PyObject 
*resultobj
; 
8309     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
8310     wxVisualAttributes result
; 
8311     PyObject 
* obj0 
= 0 ; 
8313         (char *) "variant", NULL 
 
8316     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:SplitterWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
8319             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
8320             if (SWIG_arg_fail(1)) SWIG_fail
; 
8324         if (!wxPyCheckForApp()) SWIG_fail
; 
8325         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8326         result 
= wxSplitterWindow::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
8328         wxPyEndAllowThreads(__tstate
); 
8329         if (PyErr_Occurred()) SWIG_fail
; 
8332         wxVisualAttributes 
* resultptr
; 
8333         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
8334         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
8342 static PyObject 
* SplitterWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
8344     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
8345     SWIG_TypeClientData(SWIGTYPE_p_wxSplitterWindow
, obj
); 
8347     return Py_BuildValue((char *)""); 
8349 static PyObject 
*_wrap_new_SplitterEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8350     PyObject 
*resultobj
; 
8351     wxEventType arg1 
= (wxEventType
) wxEVT_NULL 
; 
8352     wxSplitterWindow 
*arg2 
= (wxSplitterWindow 
*) (wxSplitterWindow 
*) NULL 
; 
8353     wxSplitterEvent 
*result
; 
8354     PyObject 
* obj0 
= 0 ; 
8355     PyObject 
* obj1 
= 0 ; 
8357         (char *) "type",(char *) "splitter", NULL 
 
8360     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SplitterEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
8363             arg1 
= (wxEventType
)(SWIG_As_int(obj0
));  
8364             if (SWIG_arg_fail(1)) SWIG_fail
; 
8368         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxSplitterWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8369         if (SWIG_arg_fail(2)) SWIG_fail
; 
8372         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8373         result 
= (wxSplitterEvent 
*)new wxSplitterEvent(arg1
,arg2
); 
8375         wxPyEndAllowThreads(__tstate
); 
8376         if (PyErr_Occurred()) SWIG_fail
; 
8378     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplitterEvent
, 1); 
8385 static PyObject 
*_wrap_SplitterEvent_SetSashPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8386     PyObject 
*resultobj
; 
8387     wxSplitterEvent 
*arg1 
= (wxSplitterEvent 
*) 0 ; 
8389     PyObject 
* obj0 
= 0 ; 
8390     PyObject 
* obj1 
= 0 ; 
8392         (char *) "self",(char *) "pos", NULL 
 
8395     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SplitterEvent_SetSashPosition",kwnames
,&obj0
,&obj1
)) goto fail
; 
8396     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8397     if (SWIG_arg_fail(1)) SWIG_fail
; 
8399         arg2 
= (int)(SWIG_As_int(obj1
));  
8400         if (SWIG_arg_fail(2)) SWIG_fail
; 
8403         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8404         (arg1
)->SetSashPosition(arg2
); 
8406         wxPyEndAllowThreads(__tstate
); 
8407         if (PyErr_Occurred()) SWIG_fail
; 
8409     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8416 static PyObject 
*_wrap_SplitterEvent_GetSashPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8417     PyObject 
*resultobj
; 
8418     wxSplitterEvent 
*arg1 
= (wxSplitterEvent 
*) 0 ; 
8420     PyObject 
* obj0 
= 0 ; 
8422         (char *) "self", NULL 
 
8425     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterEvent_GetSashPosition",kwnames
,&obj0
)) goto fail
; 
8426     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8427     if (SWIG_arg_fail(1)) SWIG_fail
; 
8429         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8430         result 
= (int)((wxSplitterEvent 
const *)arg1
)->GetSashPosition(); 
8432         wxPyEndAllowThreads(__tstate
); 
8433         if (PyErr_Occurred()) SWIG_fail
; 
8436         resultobj 
= SWIG_From_int((int)(result
));  
8444 static PyObject 
*_wrap_SplitterEvent_GetWindowBeingRemoved(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8445     PyObject 
*resultobj
; 
8446     wxSplitterEvent 
*arg1 
= (wxSplitterEvent 
*) 0 ; 
8448     PyObject 
* obj0 
= 0 ; 
8450         (char *) "self", NULL 
 
8453     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterEvent_GetWindowBeingRemoved",kwnames
,&obj0
)) goto fail
; 
8454     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8455     if (SWIG_arg_fail(1)) SWIG_fail
; 
8457         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8458         result 
= (wxWindow 
*)((wxSplitterEvent 
const *)arg1
)->GetWindowBeingRemoved(); 
8460         wxPyEndAllowThreads(__tstate
); 
8461         if (PyErr_Occurred()) SWIG_fail
; 
8464         resultobj 
= wxPyMake_wxObject(result
, 0);  
8472 static PyObject 
*_wrap_SplitterEvent_GetX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8473     PyObject 
*resultobj
; 
8474     wxSplitterEvent 
*arg1 
= (wxSplitterEvent 
*) 0 ; 
8476     PyObject 
* obj0 
= 0 ; 
8478         (char *) "self", NULL 
 
8481     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterEvent_GetX",kwnames
,&obj0
)) goto fail
; 
8482     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8483     if (SWIG_arg_fail(1)) SWIG_fail
; 
8485         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8486         result 
= (int)((wxSplitterEvent 
const *)arg1
)->GetX(); 
8488         wxPyEndAllowThreads(__tstate
); 
8489         if (PyErr_Occurred()) SWIG_fail
; 
8492         resultobj 
= SWIG_From_int((int)(result
));  
8500 static PyObject 
*_wrap_SplitterEvent_GetY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8501     PyObject 
*resultobj
; 
8502     wxSplitterEvent 
*arg1 
= (wxSplitterEvent 
*) 0 ; 
8504     PyObject 
* obj0 
= 0 ; 
8506         (char *) "self", NULL 
 
8509     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SplitterEvent_GetY",kwnames
,&obj0
)) goto fail
; 
8510     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSplitterEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8511     if (SWIG_arg_fail(1)) SWIG_fail
; 
8513         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8514         result 
= (int)((wxSplitterEvent 
const *)arg1
)->GetY(); 
8516         wxPyEndAllowThreads(__tstate
); 
8517         if (PyErr_Occurred()) SWIG_fail
; 
8520         resultobj 
= SWIG_From_int((int)(result
));  
8528 static PyObject 
* SplitterEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
8530     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
8531     SWIG_TypeClientData(SWIGTYPE_p_wxSplitterEvent
, obj
); 
8533     return Py_BuildValue((char *)""); 
8535 static int _wrap_SashNameStr_set(PyObject 
*) { 
8536     PyErr_SetString(PyExc_TypeError
,"Variable SashNameStr is read-only."); 
8541 static PyObject 
*_wrap_SashNameStr_get(void) { 
8546         pyobj 
= PyUnicode_FromWideChar((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len()); 
8548         pyobj 
= PyString_FromStringAndSize((&wxPySashNameStr
)->c_str(), (&wxPySashNameStr
)->Len()); 
8555 static int _wrap_SashLayoutNameStr_set(PyObject 
*) { 
8556     PyErr_SetString(PyExc_TypeError
,"Variable SashLayoutNameStr is read-only."); 
8561 static PyObject 
*_wrap_SashLayoutNameStr_get(void) { 
8566         pyobj 
= PyUnicode_FromWideChar((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len()); 
8568         pyobj 
= PyString_FromStringAndSize((&wxPySashLayoutNameStr
)->c_str(), (&wxPySashLayoutNameStr
)->Len()); 
8575 static PyObject 
*_wrap_new_SashWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8576     PyObject 
*resultobj
; 
8577     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
8578     int arg2 
= (int) -1 ; 
8579     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
8580     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
8581     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
8582     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
8583     long arg5 
= (long) wxCLIP_CHILDREN
|wxSW_3D 
; 
8584     wxString 
const &arg6_defvalue 
= wxPySashNameStr 
; 
8585     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
8586     wxSashWindow 
*result
; 
8589     bool temp6 
= false ; 
8590     PyObject 
* obj0 
= 0 ; 
8591     PyObject 
* obj1 
= 0 ; 
8592     PyObject 
* obj2 
= 0 ; 
8593     PyObject 
* obj3 
= 0 ; 
8594     PyObject 
* obj4 
= 0 ; 
8595     PyObject 
* obj5 
= 0 ; 
8597         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
8600     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
8601     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8602     if (SWIG_arg_fail(1)) SWIG_fail
; 
8605             arg2 
= (int)(SWIG_As_int(obj1
));  
8606             if (SWIG_arg_fail(2)) SWIG_fail
; 
8612             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
8618             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
8623             arg5 
= (long)(SWIG_As_long(obj4
));  
8624             if (SWIG_arg_fail(5)) SWIG_fail
; 
8629             arg6 
= wxString_in_helper(obj5
); 
8630             if (arg6 
== NULL
) SWIG_fail
; 
8635         if (!wxPyCheckForApp()) SWIG_fail
; 
8636         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8637         result 
= (wxSashWindow 
*)new wxSashWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
8639         wxPyEndAllowThreads(__tstate
); 
8640         if (PyErr_Occurred()) SWIG_fail
; 
8642     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSashWindow
, 1); 
8657 static PyObject 
*_wrap_new_PreSashWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8658     PyObject 
*resultobj
; 
8659     wxSashWindow 
*result
; 
8664     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSashWindow",kwnames
)) goto fail
; 
8666         if (!wxPyCheckForApp()) SWIG_fail
; 
8667         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8668         result 
= (wxSashWindow 
*)new wxSashWindow(); 
8670         wxPyEndAllowThreads(__tstate
); 
8671         if (PyErr_Occurred()) SWIG_fail
; 
8673     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSashWindow
, 1); 
8680 static PyObject 
*_wrap_SashWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8681     PyObject 
*resultobj
; 
8682     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8683     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
8684     int arg3 
= (int) -1 ; 
8685     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
8686     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
8687     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
8688     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
8689     long arg6 
= (long) wxCLIP_CHILDREN
|wxSW_3D 
; 
8690     wxString 
const &arg7_defvalue 
= wxPySashNameStr 
; 
8691     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
8695     bool temp7 
= false ; 
8696     PyObject 
* obj0 
= 0 ; 
8697     PyObject 
* obj1 
= 0 ; 
8698     PyObject 
* obj2 
= 0 ; 
8699     PyObject 
* obj3 
= 0 ; 
8700     PyObject 
* obj4 
= 0 ; 
8701     PyObject 
* obj5 
= 0 ; 
8702     PyObject 
* obj6 
= 0 ; 
8704         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
8707     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
8708     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8709     if (SWIG_arg_fail(1)) SWIG_fail
; 
8710     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8711     if (SWIG_arg_fail(2)) SWIG_fail
; 
8714             arg3 
= (int)(SWIG_As_int(obj2
));  
8715             if (SWIG_arg_fail(3)) SWIG_fail
; 
8721             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
8727             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
8732             arg6 
= (long)(SWIG_As_long(obj5
));  
8733             if (SWIG_arg_fail(6)) SWIG_fail
; 
8738             arg7 
= wxString_in_helper(obj6
); 
8739             if (arg7 
== NULL
) SWIG_fail
; 
8744         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8745         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
8747         wxPyEndAllowThreads(__tstate
); 
8748         if (PyErr_Occurred()) SWIG_fail
; 
8751         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8767 static PyObject 
*_wrap_SashWindow_SetSashVisible(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8768     PyObject 
*resultobj
; 
8769     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8770     wxSashEdgePosition arg2 
; 
8772     PyObject 
* obj0 
= 0 ; 
8773     PyObject 
* obj1 
= 0 ; 
8774     PyObject 
* obj2 
= 0 ; 
8776         (char *) "self",(char *) "edge",(char *) "sash", NULL 
 
8779     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashVisible",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8780     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8781     if (SWIG_arg_fail(1)) SWIG_fail
; 
8783         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
8784         if (SWIG_arg_fail(2)) SWIG_fail
; 
8787         arg3 
= (bool)(SWIG_As_bool(obj2
));  
8788         if (SWIG_arg_fail(3)) SWIG_fail
; 
8791         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8792         (arg1
)->SetSashVisible((wxSashEdgePosition 
)arg2
,arg3
); 
8794         wxPyEndAllowThreads(__tstate
); 
8795         if (PyErr_Occurred()) SWIG_fail
; 
8797     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8804 static PyObject 
*_wrap_SashWindow_GetSashVisible(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8805     PyObject 
*resultobj
; 
8806     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8807     wxSashEdgePosition arg2 
; 
8809     PyObject 
* obj0 
= 0 ; 
8810     PyObject 
* obj1 
= 0 ; 
8812         (char *) "self",(char *) "edge", NULL 
 
8815     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetSashVisible",kwnames
,&obj0
,&obj1
)) goto fail
; 
8816     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8817     if (SWIG_arg_fail(1)) SWIG_fail
; 
8819         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
8820         if (SWIG_arg_fail(2)) SWIG_fail
; 
8823         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8824         result 
= (bool)((wxSashWindow 
const *)arg1
)->GetSashVisible((wxSashEdgePosition 
)arg2
); 
8826         wxPyEndAllowThreads(__tstate
); 
8827         if (PyErr_Occurred()) SWIG_fail
; 
8830         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8838 static PyObject 
*_wrap_SashWindow_SetSashBorder(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8839     PyObject 
*resultobj
; 
8840     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8841     wxSashEdgePosition arg2 
; 
8843     PyObject 
* obj0 
= 0 ; 
8844     PyObject 
* obj1 
= 0 ; 
8845     PyObject 
* obj2 
= 0 ; 
8847         (char *) "self",(char *) "edge",(char *) "border", NULL 
 
8850     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:SashWindow_SetSashBorder",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8851     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8852     if (SWIG_arg_fail(1)) SWIG_fail
; 
8854         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
8855         if (SWIG_arg_fail(2)) SWIG_fail
; 
8858         arg3 
= (bool)(SWIG_As_bool(obj2
));  
8859         if (SWIG_arg_fail(3)) SWIG_fail
; 
8862         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8863         (arg1
)->SetSashBorder((wxSashEdgePosition 
)arg2
,arg3
); 
8865         wxPyEndAllowThreads(__tstate
); 
8866         if (PyErr_Occurred()) SWIG_fail
; 
8868     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8875 static PyObject 
*_wrap_SashWindow_HasBorder(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8876     PyObject 
*resultobj
; 
8877     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8878     wxSashEdgePosition arg2 
; 
8880     PyObject 
* obj0 
= 0 ; 
8881     PyObject 
* obj1 
= 0 ; 
8883         (char *) "self",(char *) "edge", NULL 
 
8886     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_HasBorder",kwnames
,&obj0
,&obj1
)) goto fail
; 
8887     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8888     if (SWIG_arg_fail(1)) SWIG_fail
; 
8890         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
8891         if (SWIG_arg_fail(2)) SWIG_fail
; 
8894         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8895         result 
= (bool)((wxSashWindow 
const *)arg1
)->HasBorder((wxSashEdgePosition 
)arg2
); 
8897         wxPyEndAllowThreads(__tstate
); 
8898         if (PyErr_Occurred()) SWIG_fail
; 
8901         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8909 static PyObject 
*_wrap_SashWindow_GetEdgeMargin(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8910     PyObject 
*resultobj
; 
8911     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8912     wxSashEdgePosition arg2 
; 
8914     PyObject 
* obj0 
= 0 ; 
8915     PyObject 
* obj1 
= 0 ; 
8917         (char *) "self",(char *) "edge", NULL 
 
8920     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_GetEdgeMargin",kwnames
,&obj0
,&obj1
)) goto fail
; 
8921     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8922     if (SWIG_arg_fail(1)) SWIG_fail
; 
8924         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
8925         if (SWIG_arg_fail(2)) SWIG_fail
; 
8928         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8929         result 
= (int)((wxSashWindow 
const *)arg1
)->GetEdgeMargin((wxSashEdgePosition 
)arg2
); 
8931         wxPyEndAllowThreads(__tstate
); 
8932         if (PyErr_Occurred()) SWIG_fail
; 
8935         resultobj 
= SWIG_From_int((int)(result
));  
8943 static PyObject 
*_wrap_SashWindow_SetDefaultBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8944     PyObject 
*resultobj
; 
8945     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8947     PyObject 
* obj0 
= 0 ; 
8948     PyObject 
* obj1 
= 0 ; 
8950         (char *) "self",(char *) "width", NULL 
 
8953     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetDefaultBorderSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
8954     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8955     if (SWIG_arg_fail(1)) SWIG_fail
; 
8957         arg2 
= (int)(SWIG_As_int(obj1
));  
8958         if (SWIG_arg_fail(2)) SWIG_fail
; 
8961         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8962         (arg1
)->SetDefaultBorderSize(arg2
); 
8964         wxPyEndAllowThreads(__tstate
); 
8965         if (PyErr_Occurred()) SWIG_fail
; 
8967     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8974 static PyObject 
*_wrap_SashWindow_GetDefaultBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8975     PyObject 
*resultobj
; 
8976     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
8978     PyObject 
* obj0 
= 0 ; 
8980         (char *) "self", NULL 
 
8983     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetDefaultBorderSize",kwnames
,&obj0
)) goto fail
; 
8984     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8985     if (SWIG_arg_fail(1)) SWIG_fail
; 
8987         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8988         result 
= (int)((wxSashWindow 
const *)arg1
)->GetDefaultBorderSize(); 
8990         wxPyEndAllowThreads(__tstate
); 
8991         if (PyErr_Occurred()) SWIG_fail
; 
8994         resultobj 
= SWIG_From_int((int)(result
));  
9002 static PyObject 
*_wrap_SashWindow_SetExtraBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9003     PyObject 
*resultobj
; 
9004     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9006     PyObject 
* obj0 
= 0 ; 
9007     PyObject 
* obj1 
= 0 ; 
9009         (char *) "self",(char *) "width", NULL 
 
9012     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetExtraBorderSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
9013     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9014     if (SWIG_arg_fail(1)) SWIG_fail
; 
9016         arg2 
= (int)(SWIG_As_int(obj1
));  
9017         if (SWIG_arg_fail(2)) SWIG_fail
; 
9020         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9021         (arg1
)->SetExtraBorderSize(arg2
); 
9023         wxPyEndAllowThreads(__tstate
); 
9024         if (PyErr_Occurred()) SWIG_fail
; 
9026     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9033 static PyObject 
*_wrap_SashWindow_GetExtraBorderSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9034     PyObject 
*resultobj
; 
9035     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9037     PyObject 
* obj0 
= 0 ; 
9039         (char *) "self", NULL 
 
9042     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetExtraBorderSize",kwnames
,&obj0
)) goto fail
; 
9043     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9044     if (SWIG_arg_fail(1)) SWIG_fail
; 
9046         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9047         result 
= (int)((wxSashWindow 
const *)arg1
)->GetExtraBorderSize(); 
9049         wxPyEndAllowThreads(__tstate
); 
9050         if (PyErr_Occurred()) SWIG_fail
; 
9053         resultobj 
= SWIG_From_int((int)(result
));  
9061 static PyObject 
*_wrap_SashWindow_SetMinimumSizeX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9062     PyObject 
*resultobj
; 
9063     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9065     PyObject 
* obj0 
= 0 ; 
9066     PyObject 
* obj1 
= 0 ; 
9068         (char *) "self",(char *) "min", NULL 
 
9071     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeX",kwnames
,&obj0
,&obj1
)) goto fail
; 
9072     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9073     if (SWIG_arg_fail(1)) SWIG_fail
; 
9075         arg2 
= (int)(SWIG_As_int(obj1
));  
9076         if (SWIG_arg_fail(2)) SWIG_fail
; 
9079         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9080         (arg1
)->SetMinimumSizeX(arg2
); 
9082         wxPyEndAllowThreads(__tstate
); 
9083         if (PyErr_Occurred()) SWIG_fail
; 
9085     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9092 static PyObject 
*_wrap_SashWindow_SetMinimumSizeY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9093     PyObject 
*resultobj
; 
9094     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9096     PyObject 
* obj0 
= 0 ; 
9097     PyObject 
* obj1 
= 0 ; 
9099         (char *) "self",(char *) "min", NULL 
 
9102     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMinimumSizeY",kwnames
,&obj0
,&obj1
)) goto fail
; 
9103     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9104     if (SWIG_arg_fail(1)) SWIG_fail
; 
9106         arg2 
= (int)(SWIG_As_int(obj1
));  
9107         if (SWIG_arg_fail(2)) SWIG_fail
; 
9110         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9111         (arg1
)->SetMinimumSizeY(arg2
); 
9113         wxPyEndAllowThreads(__tstate
); 
9114         if (PyErr_Occurred()) SWIG_fail
; 
9116     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9123 static PyObject 
*_wrap_SashWindow_GetMinimumSizeX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9124     PyObject 
*resultobj
; 
9125     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9127     PyObject 
* obj0 
= 0 ; 
9129         (char *) "self", NULL 
 
9132     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetMinimumSizeX",kwnames
,&obj0
)) goto fail
; 
9133     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9134     if (SWIG_arg_fail(1)) SWIG_fail
; 
9136         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9137         result 
= (int)((wxSashWindow 
const *)arg1
)->GetMinimumSizeX(); 
9139         wxPyEndAllowThreads(__tstate
); 
9140         if (PyErr_Occurred()) SWIG_fail
; 
9143         resultobj 
= SWIG_From_int((int)(result
));  
9151 static PyObject 
*_wrap_SashWindow_GetMinimumSizeY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9152     PyObject 
*resultobj
; 
9153     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9155     PyObject 
* obj0 
= 0 ; 
9157         (char *) "self", NULL 
 
9160     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetMinimumSizeY",kwnames
,&obj0
)) goto fail
; 
9161     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9162     if (SWIG_arg_fail(1)) SWIG_fail
; 
9164         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9165         result 
= (int)((wxSashWindow 
const *)arg1
)->GetMinimumSizeY(); 
9167         wxPyEndAllowThreads(__tstate
); 
9168         if (PyErr_Occurred()) SWIG_fail
; 
9171         resultobj 
= SWIG_From_int((int)(result
));  
9179 static PyObject 
*_wrap_SashWindow_SetMaximumSizeX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9180     PyObject 
*resultobj
; 
9181     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9183     PyObject 
* obj0 
= 0 ; 
9184     PyObject 
* obj1 
= 0 ; 
9186         (char *) "self",(char *) "max", NULL 
 
9189     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeX",kwnames
,&obj0
,&obj1
)) goto fail
; 
9190     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9191     if (SWIG_arg_fail(1)) SWIG_fail
; 
9193         arg2 
= (int)(SWIG_As_int(obj1
));  
9194         if (SWIG_arg_fail(2)) SWIG_fail
; 
9197         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9198         (arg1
)->SetMaximumSizeX(arg2
); 
9200         wxPyEndAllowThreads(__tstate
); 
9201         if (PyErr_Occurred()) SWIG_fail
; 
9203     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9210 static PyObject 
*_wrap_SashWindow_SetMaximumSizeY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9211     PyObject 
*resultobj
; 
9212     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9214     PyObject 
* obj0 
= 0 ; 
9215     PyObject 
* obj1 
= 0 ; 
9217         (char *) "self",(char *) "max", NULL 
 
9220     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashWindow_SetMaximumSizeY",kwnames
,&obj0
,&obj1
)) goto fail
; 
9221     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9222     if (SWIG_arg_fail(1)) SWIG_fail
; 
9224         arg2 
= (int)(SWIG_As_int(obj1
));  
9225         if (SWIG_arg_fail(2)) SWIG_fail
; 
9228         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9229         (arg1
)->SetMaximumSizeY(arg2
); 
9231         wxPyEndAllowThreads(__tstate
); 
9232         if (PyErr_Occurred()) SWIG_fail
; 
9234     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9241 static PyObject 
*_wrap_SashWindow_GetMaximumSizeX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9242     PyObject 
*resultobj
; 
9243     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9245     PyObject 
* obj0 
= 0 ; 
9247         (char *) "self", NULL 
 
9250     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetMaximumSizeX",kwnames
,&obj0
)) goto fail
; 
9251     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9252     if (SWIG_arg_fail(1)) SWIG_fail
; 
9254         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9255         result 
= (int)((wxSashWindow 
const *)arg1
)->GetMaximumSizeX(); 
9257         wxPyEndAllowThreads(__tstate
); 
9258         if (PyErr_Occurred()) SWIG_fail
; 
9261         resultobj 
= SWIG_From_int((int)(result
));  
9269 static PyObject 
*_wrap_SashWindow_GetMaximumSizeY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9270     PyObject 
*resultobj
; 
9271     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9273     PyObject 
* obj0 
= 0 ; 
9275         (char *) "self", NULL 
 
9278     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_GetMaximumSizeY",kwnames
,&obj0
)) goto fail
; 
9279     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9280     if (SWIG_arg_fail(1)) SWIG_fail
; 
9282         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9283         result 
= (int)((wxSashWindow 
const *)arg1
)->GetMaximumSizeY(); 
9285         wxPyEndAllowThreads(__tstate
); 
9286         if (PyErr_Occurred()) SWIG_fail
; 
9289         resultobj 
= SWIG_From_int((int)(result
));  
9297 static PyObject 
*_wrap_SashWindow_SashHitTest(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9298     PyObject 
*resultobj
; 
9299     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9302     int arg4 
= (int) 2 ; 
9303     wxSashEdgePosition result
; 
9304     PyObject 
* obj0 
= 0 ; 
9305     PyObject 
* obj1 
= 0 ; 
9306     PyObject 
* obj2 
= 0 ; 
9307     PyObject 
* obj3 
= 0 ; 
9309         (char *) "self",(char *) "x",(char *) "y",(char *) "tolerance", NULL 
 
9312     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:SashWindow_SashHitTest",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9313     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9314     if (SWIG_arg_fail(1)) SWIG_fail
; 
9316         arg2 
= (int)(SWIG_As_int(obj1
));  
9317         if (SWIG_arg_fail(2)) SWIG_fail
; 
9320         arg3 
= (int)(SWIG_As_int(obj2
));  
9321         if (SWIG_arg_fail(3)) SWIG_fail
; 
9325             arg4 
= (int)(SWIG_As_int(obj3
));  
9326             if (SWIG_arg_fail(4)) SWIG_fail
; 
9330         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9331         result 
= (wxSashEdgePosition
)(arg1
)->SashHitTest(arg2
,arg3
,arg4
); 
9333         wxPyEndAllowThreads(__tstate
); 
9334         if (PyErr_Occurred()) SWIG_fail
; 
9336     resultobj 
= SWIG_From_int((result
)); 
9343 static PyObject 
*_wrap_SashWindow_SizeWindows(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9344     PyObject 
*resultobj
; 
9345     wxSashWindow 
*arg1 
= (wxSashWindow 
*) 0 ; 
9346     PyObject 
* obj0 
= 0 ; 
9348         (char *) "self", NULL 
 
9351     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashWindow_SizeWindows",kwnames
,&obj0
)) goto fail
; 
9352     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9353     if (SWIG_arg_fail(1)) SWIG_fail
; 
9355         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9356         (arg1
)->SizeWindows(); 
9358         wxPyEndAllowThreads(__tstate
); 
9359         if (PyErr_Occurred()) SWIG_fail
; 
9361     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9368 static PyObject 
* SashWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
9370     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9371     SWIG_TypeClientData(SWIGTYPE_p_wxSashWindow
, obj
); 
9373     return Py_BuildValue((char *)""); 
9375 static PyObject 
*_wrap_new_SashEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9376     PyObject 
*resultobj
; 
9377     int arg1 
= (int) 0 ; 
9378     wxSashEdgePosition arg2 
= (wxSashEdgePosition
) wxSASH_NONE 
; 
9379     wxSashEvent 
*result
; 
9380     PyObject 
* obj0 
= 0 ; 
9381     PyObject 
* obj1 
= 0 ; 
9383         (char *) "id",(char *) "edge", NULL 
 
9386     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_SashEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
9389             arg1 
= (int)(SWIG_As_int(obj0
));  
9390             if (SWIG_arg_fail(1)) SWIG_fail
; 
9395             arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
9396             if (SWIG_arg_fail(2)) SWIG_fail
; 
9400         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9401         result 
= (wxSashEvent 
*)new wxSashEvent(arg1
,(wxSashEdgePosition 
)arg2
); 
9403         wxPyEndAllowThreads(__tstate
); 
9404         if (PyErr_Occurred()) SWIG_fail
; 
9406     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSashEvent
, 1); 
9413 static PyObject 
*_wrap_SashEvent_SetEdge(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9414     PyObject 
*resultobj
; 
9415     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9416     wxSashEdgePosition arg2 
; 
9417     PyObject 
* obj0 
= 0 ; 
9418     PyObject 
* obj1 
= 0 ; 
9420         (char *) "self",(char *) "edge", NULL 
 
9423     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetEdge",kwnames
,&obj0
,&obj1
)) goto fail
; 
9424     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9425     if (SWIG_arg_fail(1)) SWIG_fail
; 
9427         arg2 
= (wxSashEdgePosition
)(SWIG_As_int(obj1
));  
9428         if (SWIG_arg_fail(2)) SWIG_fail
; 
9431         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9432         (arg1
)->SetEdge((wxSashEdgePosition 
)arg2
); 
9434         wxPyEndAllowThreads(__tstate
); 
9435         if (PyErr_Occurred()) SWIG_fail
; 
9437     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9444 static PyObject 
*_wrap_SashEvent_GetEdge(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9445     PyObject 
*resultobj
; 
9446     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9447     wxSashEdgePosition result
; 
9448     PyObject 
* obj0 
= 0 ; 
9450         (char *) "self", NULL 
 
9453     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashEvent_GetEdge",kwnames
,&obj0
)) goto fail
; 
9454     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9455     if (SWIG_arg_fail(1)) SWIG_fail
; 
9457         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9458         result 
= (wxSashEdgePosition
)((wxSashEvent 
const *)arg1
)->GetEdge(); 
9460         wxPyEndAllowThreads(__tstate
); 
9461         if (PyErr_Occurred()) SWIG_fail
; 
9463     resultobj 
= SWIG_From_int((result
)); 
9470 static PyObject 
*_wrap_SashEvent_SetDragRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9471     PyObject 
*resultobj
; 
9472     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9475     PyObject 
* obj0 
= 0 ; 
9476     PyObject 
* obj1 
= 0 ; 
9478         (char *) "self",(char *) "rect", NULL 
 
9481     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragRect",kwnames
,&obj0
,&obj1
)) goto fail
; 
9482     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9483     if (SWIG_arg_fail(1)) SWIG_fail
; 
9486         if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
; 
9489         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9490         (arg1
)->SetDragRect((wxRect 
const &)*arg2
); 
9492         wxPyEndAllowThreads(__tstate
); 
9493         if (PyErr_Occurred()) SWIG_fail
; 
9495     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9502 static PyObject 
*_wrap_SashEvent_GetDragRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9503     PyObject 
*resultobj
; 
9504     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9506     PyObject 
* obj0 
= 0 ; 
9508         (char *) "self", NULL 
 
9511     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashEvent_GetDragRect",kwnames
,&obj0
)) goto fail
; 
9512     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9513     if (SWIG_arg_fail(1)) SWIG_fail
; 
9515         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9516         result 
= ((wxSashEvent 
const *)arg1
)->GetDragRect(); 
9518         wxPyEndAllowThreads(__tstate
); 
9519         if (PyErr_Occurred()) SWIG_fail
; 
9523         resultptr 
= new wxRect((wxRect 
&)(result
)); 
9524         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1); 
9532 static PyObject 
*_wrap_SashEvent_SetDragStatus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9533     PyObject 
*resultobj
; 
9534     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9535     wxSashDragStatus arg2 
; 
9536     PyObject 
* obj0 
= 0 ; 
9537     PyObject 
* obj1 
= 0 ; 
9539         (char *) "self",(char *) "status", NULL 
 
9542     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashEvent_SetDragStatus",kwnames
,&obj0
,&obj1
)) goto fail
; 
9543     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9544     if (SWIG_arg_fail(1)) SWIG_fail
; 
9546         arg2 
= (wxSashDragStatus
)(SWIG_As_int(obj1
));  
9547         if (SWIG_arg_fail(2)) SWIG_fail
; 
9550         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9551         (arg1
)->SetDragStatus((wxSashDragStatus 
)arg2
); 
9553         wxPyEndAllowThreads(__tstate
); 
9554         if (PyErr_Occurred()) SWIG_fail
; 
9556     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9563 static PyObject 
*_wrap_SashEvent_GetDragStatus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9564     PyObject 
*resultobj
; 
9565     wxSashEvent 
*arg1 
= (wxSashEvent 
*) 0 ; 
9566     wxSashDragStatus result
; 
9567     PyObject 
* obj0 
= 0 ; 
9569         (char *) "self", NULL 
 
9572     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashEvent_GetDragStatus",kwnames
,&obj0
)) goto fail
; 
9573     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9574     if (SWIG_arg_fail(1)) SWIG_fail
; 
9576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9577         result 
= (wxSashDragStatus
)((wxSashEvent 
const *)arg1
)->GetDragStatus(); 
9579         wxPyEndAllowThreads(__tstate
); 
9580         if (PyErr_Occurred()) SWIG_fail
; 
9582     resultobj 
= SWIG_From_int((result
)); 
9589 static PyObject 
* SashEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
9591     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9592     SWIG_TypeClientData(SWIGTYPE_p_wxSashEvent
, obj
); 
9594     return Py_BuildValue((char *)""); 
9596 static PyObject 
*_wrap_new_QueryLayoutInfoEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9597     PyObject 
*resultobj
; 
9598     int arg1 
= (int) 0 ; 
9599     wxQueryLayoutInfoEvent 
*result
; 
9600     PyObject 
* obj0 
= 0 ; 
9605     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_QueryLayoutInfoEvent",kwnames
,&obj0
)) goto fail
; 
9608             arg1 
= (int)(SWIG_As_int(obj0
));  
9609             if (SWIG_arg_fail(1)) SWIG_fail
; 
9613         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9614         result 
= (wxQueryLayoutInfoEvent 
*)new wxQueryLayoutInfoEvent(arg1
); 
9616         wxPyEndAllowThreads(__tstate
); 
9617         if (PyErr_Occurred()) SWIG_fail
; 
9619     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxQueryLayoutInfoEvent
, 1); 
9626 static PyObject 
*_wrap_QueryLayoutInfoEvent_SetRequestedLength(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9627     PyObject 
*resultobj
; 
9628     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9630     PyObject 
* obj0 
= 0 ; 
9631     PyObject 
* obj1 
= 0 ; 
9633         (char *) "self",(char *) "length", NULL 
 
9636     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetRequestedLength",kwnames
,&obj0
,&obj1
)) goto fail
; 
9637     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9638     if (SWIG_arg_fail(1)) SWIG_fail
; 
9640         arg2 
= (int)(SWIG_As_int(obj1
));  
9641         if (SWIG_arg_fail(2)) SWIG_fail
; 
9644         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9645         (arg1
)->SetRequestedLength(arg2
); 
9647         wxPyEndAllowThreads(__tstate
); 
9648         if (PyErr_Occurred()) SWIG_fail
; 
9650     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9657 static PyObject 
*_wrap_QueryLayoutInfoEvent_GetRequestedLength(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9658     PyObject 
*resultobj
; 
9659     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9661     PyObject 
* obj0 
= 0 ; 
9663         (char *) "self", NULL 
 
9666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:QueryLayoutInfoEvent_GetRequestedLength",kwnames
,&obj0
)) goto fail
; 
9667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9668     if (SWIG_arg_fail(1)) SWIG_fail
; 
9670         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9671         result 
= (int)((wxQueryLayoutInfoEvent 
const *)arg1
)->GetRequestedLength(); 
9673         wxPyEndAllowThreads(__tstate
); 
9674         if (PyErr_Occurred()) SWIG_fail
; 
9677         resultobj 
= SWIG_From_int((int)(result
));  
9685 static PyObject 
*_wrap_QueryLayoutInfoEvent_SetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9686     PyObject 
*resultobj
; 
9687     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9689     PyObject 
* obj0 
= 0 ; 
9690     PyObject 
* obj1 
= 0 ; 
9692         (char *) "self",(char *) "flags", NULL 
 
9695     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
; 
9696     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9697     if (SWIG_arg_fail(1)) SWIG_fail
; 
9699         arg2 
= (int)(SWIG_As_int(obj1
));  
9700         if (SWIG_arg_fail(2)) SWIG_fail
; 
9703         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9704         (arg1
)->SetFlags(arg2
); 
9706         wxPyEndAllowThreads(__tstate
); 
9707         if (PyErr_Occurred()) SWIG_fail
; 
9709     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9716 static PyObject 
*_wrap_QueryLayoutInfoEvent_GetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9717     PyObject 
*resultobj
; 
9718     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9720     PyObject 
* obj0 
= 0 ; 
9722         (char *) "self", NULL 
 
9725     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:QueryLayoutInfoEvent_GetFlags",kwnames
,&obj0
)) goto fail
; 
9726     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9727     if (SWIG_arg_fail(1)) SWIG_fail
; 
9729         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9730         result 
= (int)((wxQueryLayoutInfoEvent 
const *)arg1
)->GetFlags(); 
9732         wxPyEndAllowThreads(__tstate
); 
9733         if (PyErr_Occurred()) SWIG_fail
; 
9736         resultobj 
= SWIG_From_int((int)(result
));  
9744 static PyObject 
*_wrap_QueryLayoutInfoEvent_SetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9745     PyObject 
*resultobj
; 
9746     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9749     PyObject 
* obj0 
= 0 ; 
9750     PyObject 
* obj1 
= 0 ; 
9752         (char *) "self",(char *) "size", NULL 
 
9755     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
9756     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9757     if (SWIG_arg_fail(1)) SWIG_fail
; 
9760         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
9763         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9764         (arg1
)->SetSize((wxSize 
const &)*arg2
); 
9766         wxPyEndAllowThreads(__tstate
); 
9767         if (PyErr_Occurred()) SWIG_fail
; 
9769     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9776 static PyObject 
*_wrap_QueryLayoutInfoEvent_GetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9777     PyObject 
*resultobj
; 
9778     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9780     PyObject 
* obj0 
= 0 ; 
9782         (char *) "self", NULL 
 
9785     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:QueryLayoutInfoEvent_GetSize",kwnames
,&obj0
)) goto fail
; 
9786     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9787     if (SWIG_arg_fail(1)) SWIG_fail
; 
9789         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9790         result 
= ((wxQueryLayoutInfoEvent 
const *)arg1
)->GetSize(); 
9792         wxPyEndAllowThreads(__tstate
); 
9793         if (PyErr_Occurred()) SWIG_fail
; 
9797         resultptr 
= new wxSize((wxSize 
&)(result
)); 
9798         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
9806 static PyObject 
*_wrap_QueryLayoutInfoEvent_SetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9807     PyObject 
*resultobj
; 
9808     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9809     wxLayoutOrientation arg2 
; 
9810     PyObject 
* obj0 
= 0 ; 
9811     PyObject 
* obj1 
= 0 ; 
9813         (char *) "self",(char *) "orient", NULL 
 
9816     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetOrientation",kwnames
,&obj0
,&obj1
)) goto fail
; 
9817     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9818     if (SWIG_arg_fail(1)) SWIG_fail
; 
9820         arg2 
= (wxLayoutOrientation
)(SWIG_As_int(obj1
));  
9821         if (SWIG_arg_fail(2)) SWIG_fail
; 
9824         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9825         (arg1
)->SetOrientation((wxLayoutOrientation 
)arg2
); 
9827         wxPyEndAllowThreads(__tstate
); 
9828         if (PyErr_Occurred()) SWIG_fail
; 
9830     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9837 static PyObject 
*_wrap_QueryLayoutInfoEvent_GetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9838     PyObject 
*resultobj
; 
9839     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9840     wxLayoutOrientation result
; 
9841     PyObject 
* obj0 
= 0 ; 
9843         (char *) "self", NULL 
 
9846     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:QueryLayoutInfoEvent_GetOrientation",kwnames
,&obj0
)) goto fail
; 
9847     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9848     if (SWIG_arg_fail(1)) SWIG_fail
; 
9850         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9851         result 
= (wxLayoutOrientation
)((wxQueryLayoutInfoEvent 
const *)arg1
)->GetOrientation(); 
9853         wxPyEndAllowThreads(__tstate
); 
9854         if (PyErr_Occurred()) SWIG_fail
; 
9856     resultobj 
= SWIG_From_int((result
)); 
9863 static PyObject 
*_wrap_QueryLayoutInfoEvent_SetAlignment(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9864     PyObject 
*resultobj
; 
9865     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9866     wxLayoutAlignment arg2 
; 
9867     PyObject 
* obj0 
= 0 ; 
9868     PyObject 
* obj1 
= 0 ; 
9870         (char *) "self",(char *) "align", NULL 
 
9873     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:QueryLayoutInfoEvent_SetAlignment",kwnames
,&obj0
,&obj1
)) goto fail
; 
9874     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9875     if (SWIG_arg_fail(1)) SWIG_fail
; 
9877         arg2 
= (wxLayoutAlignment
)(SWIG_As_int(obj1
));  
9878         if (SWIG_arg_fail(2)) SWIG_fail
; 
9881         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9882         (arg1
)->SetAlignment((wxLayoutAlignment 
)arg2
); 
9884         wxPyEndAllowThreads(__tstate
); 
9885         if (PyErr_Occurred()) SWIG_fail
; 
9887     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9894 static PyObject 
*_wrap_QueryLayoutInfoEvent_GetAlignment(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9895     PyObject 
*resultobj
; 
9896     wxQueryLayoutInfoEvent 
*arg1 
= (wxQueryLayoutInfoEvent 
*) 0 ; 
9897     wxLayoutAlignment result
; 
9898     PyObject 
* obj0 
= 0 ; 
9900         (char *) "self", NULL 
 
9903     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:QueryLayoutInfoEvent_GetAlignment",kwnames
,&obj0
)) goto fail
; 
9904     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxQueryLayoutInfoEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9905     if (SWIG_arg_fail(1)) SWIG_fail
; 
9907         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9908         result 
= (wxLayoutAlignment
)((wxQueryLayoutInfoEvent 
const *)arg1
)->GetAlignment(); 
9910         wxPyEndAllowThreads(__tstate
); 
9911         if (PyErr_Occurred()) SWIG_fail
; 
9913     resultobj 
= SWIG_From_int((result
)); 
9920 static PyObject 
* QueryLayoutInfoEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
9922     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9923     SWIG_TypeClientData(SWIGTYPE_p_wxQueryLayoutInfoEvent
, obj
); 
9925     return Py_BuildValue((char *)""); 
9927 static PyObject 
*_wrap_new_CalculateLayoutEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9928     PyObject 
*resultobj
; 
9929     int arg1 
= (int) 0 ; 
9930     wxCalculateLayoutEvent 
*result
; 
9931     PyObject 
* obj0 
= 0 ; 
9936     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_CalculateLayoutEvent",kwnames
,&obj0
)) goto fail
; 
9939             arg1 
= (int)(SWIG_As_int(obj0
));  
9940             if (SWIG_arg_fail(1)) SWIG_fail
; 
9944         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9945         result 
= (wxCalculateLayoutEvent 
*)new wxCalculateLayoutEvent(arg1
); 
9947         wxPyEndAllowThreads(__tstate
); 
9948         if (PyErr_Occurred()) SWIG_fail
; 
9950     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxCalculateLayoutEvent
, 1); 
9957 static PyObject 
*_wrap_CalculateLayoutEvent_SetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9958     PyObject 
*resultobj
; 
9959     wxCalculateLayoutEvent 
*arg1 
= (wxCalculateLayoutEvent 
*) 0 ; 
9961     PyObject 
* obj0 
= 0 ; 
9962     PyObject 
* obj1 
= 0 ; 
9964         (char *) "self",(char *) "flags", NULL 
 
9967     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
; 
9968     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9969     if (SWIG_arg_fail(1)) SWIG_fail
; 
9971         arg2 
= (int)(SWIG_As_int(obj1
));  
9972         if (SWIG_arg_fail(2)) SWIG_fail
; 
9975         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9976         (arg1
)->SetFlags(arg2
); 
9978         wxPyEndAllowThreads(__tstate
); 
9979         if (PyErr_Occurred()) SWIG_fail
; 
9981     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9988 static PyObject 
*_wrap_CalculateLayoutEvent_GetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9989     PyObject 
*resultobj
; 
9990     wxCalculateLayoutEvent 
*arg1 
= (wxCalculateLayoutEvent 
*) 0 ; 
9992     PyObject 
* obj0 
= 0 ; 
9994         (char *) "self", NULL 
 
9997     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CalculateLayoutEvent_GetFlags",kwnames
,&obj0
)) goto fail
; 
9998     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
9999     if (SWIG_arg_fail(1)) SWIG_fail
; 
10001         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10002         result 
= (int)((wxCalculateLayoutEvent 
const *)arg1
)->GetFlags(); 
10004         wxPyEndAllowThreads(__tstate
); 
10005         if (PyErr_Occurred()) SWIG_fail
; 
10008         resultobj 
= SWIG_From_int((int)(result
));  
10016 static PyObject 
*_wrap_CalculateLayoutEvent_SetRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10017     PyObject 
*resultobj
; 
10018     wxCalculateLayoutEvent 
*arg1 
= (wxCalculateLayoutEvent 
*) 0 ; 
10021     PyObject 
* obj0 
= 0 ; 
10022     PyObject 
* obj1 
= 0 ; 
10023     char *kwnames
[] = { 
10024         (char *) "self",(char *) "rect", NULL 
 
10027     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:CalculateLayoutEvent_SetRect",kwnames
,&obj0
,&obj1
)) goto fail
; 
10028     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
10029     if (SWIG_arg_fail(1)) SWIG_fail
; 
10032         if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
; 
10035         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10036         (arg1
)->SetRect((wxRect 
const &)*arg2
); 
10038         wxPyEndAllowThreads(__tstate
); 
10039         if (PyErr_Occurred()) SWIG_fail
; 
10041     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10048 static PyObject 
*_wrap_CalculateLayoutEvent_GetRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10049     PyObject 
*resultobj
; 
10050     wxCalculateLayoutEvent 
*arg1 
= (wxCalculateLayoutEvent 
*) 0 ; 
10052     PyObject 
* obj0 
= 0 ; 
10053     char *kwnames
[] = { 
10054         (char *) "self", NULL 
 
10057     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:CalculateLayoutEvent_GetRect",kwnames
,&obj0
)) goto fail
; 
10058     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxCalculateLayoutEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
10059     if (SWIG_arg_fail(1)) SWIG_fail
; 
10061         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10062         result 
= ((wxCalculateLayoutEvent 
const *)arg1
)->GetRect(); 
10064         wxPyEndAllowThreads(__tstate
); 
10065         if (PyErr_Occurred()) SWIG_fail
; 
10068         wxRect 
* resultptr
; 
10069         resultptr 
= new wxRect((wxRect 
&)(result
)); 
10070         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxRect
, 1); 
10078 static PyObject 
* CalculateLayoutEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
10080     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10081     SWIG_TypeClientData(SWIGTYPE_p_wxCalculateLayoutEvent
, obj
); 
10083     return Py_BuildValue((char *)""); 
10085 static PyObject 
*_wrap_new_SashLayoutWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10086     PyObject 
*resultobj
; 
10087     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
10088     int arg2 
= (int) -1 ; 
10089     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
10090     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
10091     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
10092     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
10093     long arg5 
= (long) wxCLIP_CHILDREN
|wxSW_3D 
; 
10094     wxString 
const &arg6_defvalue 
= wxPySashLayoutNameStr 
; 
10095     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
10096     wxSashLayoutWindow 
*result
; 
10099     bool temp6 
= false ; 
10100     PyObject 
* obj0 
= 0 ; 
10101     PyObject 
* obj1 
= 0 ; 
10102     PyObject 
* obj2 
= 0 ; 
10103     PyObject 
* obj3 
= 0 ; 
10104     PyObject 
* obj4 
= 0 ; 
10105     PyObject 
* obj5 
= 0 ; 
10106     char *kwnames
[] = { 
10107         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
10110     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_SashLayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
10111     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10112     if (SWIG_arg_fail(1)) SWIG_fail
; 
10115             arg2 
= (int)(SWIG_As_int(obj1
));  
10116             if (SWIG_arg_fail(2)) SWIG_fail
; 
10122             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
10128             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
10133             arg5 
= (long)(SWIG_As_long(obj4
));  
10134             if (SWIG_arg_fail(5)) SWIG_fail
; 
10139             arg6 
= wxString_in_helper(obj5
); 
10140             if (arg6 
== NULL
) SWIG_fail
; 
10145         if (!wxPyCheckForApp()) SWIG_fail
; 
10146         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10147         result 
= (wxSashLayoutWindow 
*)new wxSashLayoutWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
10149         wxPyEndAllowThreads(__tstate
); 
10150         if (PyErr_Occurred()) SWIG_fail
; 
10152     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSashLayoutWindow
, 1); 
10167 static PyObject 
*_wrap_new_PreSashLayoutWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10168     PyObject 
*resultobj
; 
10169     wxSashLayoutWindow 
*result
; 
10170     char *kwnames
[] = { 
10174     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreSashLayoutWindow",kwnames
)) goto fail
; 
10176         if (!wxPyCheckForApp()) SWIG_fail
; 
10177         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10178         result 
= (wxSashLayoutWindow 
*)new wxSashLayoutWindow(); 
10180         wxPyEndAllowThreads(__tstate
); 
10181         if (PyErr_Occurred()) SWIG_fail
; 
10183     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSashLayoutWindow
, 1); 
10190 static PyObject 
*_wrap_SashLayoutWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10191     PyObject 
*resultobj
; 
10192     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10193     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
10194     int arg3 
= (int) -1 ; 
10195     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
10196     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
10197     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
10198     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
10199     long arg6 
= (long) wxCLIP_CHILDREN
|wxSW_3D 
; 
10200     wxString 
const &arg7_defvalue 
= wxPySashLayoutNameStr 
; 
10201     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
10205     bool temp7 
= false ; 
10206     PyObject 
* obj0 
= 0 ; 
10207     PyObject 
* obj1 
= 0 ; 
10208     PyObject 
* obj2 
= 0 ; 
10209     PyObject 
* obj3 
= 0 ; 
10210     PyObject 
* obj4 
= 0 ; 
10211     PyObject 
* obj5 
= 0 ; 
10212     PyObject 
* obj6 
= 0 ; 
10213     char *kwnames
[] = { 
10214         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
10217     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:SashLayoutWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
10218     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10219     if (SWIG_arg_fail(1)) SWIG_fail
; 
10220     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10221     if (SWIG_arg_fail(2)) SWIG_fail
; 
10224             arg3 
= (int)(SWIG_As_int(obj2
));  
10225             if (SWIG_arg_fail(3)) SWIG_fail
; 
10231             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
10237             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
10242             arg6 
= (long)(SWIG_As_long(obj5
));  
10243             if (SWIG_arg_fail(6)) SWIG_fail
; 
10248             arg7 
= wxString_in_helper(obj6
); 
10249             if (arg7 
== NULL
) SWIG_fail
; 
10254         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10255         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
10257         wxPyEndAllowThreads(__tstate
); 
10258         if (PyErr_Occurred()) SWIG_fail
; 
10261         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10277 static PyObject 
*_wrap_SashLayoutWindow_GetAlignment(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10278     PyObject 
*resultobj
; 
10279     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10280     wxLayoutAlignment result
; 
10281     PyObject 
* obj0 
= 0 ; 
10282     char *kwnames
[] = { 
10283         (char *) "self", NULL 
 
10286     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashLayoutWindow_GetAlignment",kwnames
,&obj0
)) goto fail
; 
10287     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10288     if (SWIG_arg_fail(1)) SWIG_fail
; 
10290         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10291         result 
= (wxLayoutAlignment
)(arg1
)->GetAlignment(); 
10293         wxPyEndAllowThreads(__tstate
); 
10294         if (PyErr_Occurred()) SWIG_fail
; 
10296     resultobj 
= SWIG_From_int((result
)); 
10303 static PyObject 
*_wrap_SashLayoutWindow_GetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10304     PyObject 
*resultobj
; 
10305     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10306     wxLayoutOrientation result
; 
10307     PyObject 
* obj0 
= 0 ; 
10308     char *kwnames
[] = { 
10309         (char *) "self", NULL 
 
10312     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SashLayoutWindow_GetOrientation",kwnames
,&obj0
)) goto fail
; 
10313     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10314     if (SWIG_arg_fail(1)) SWIG_fail
; 
10316         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10317         result 
= (wxLayoutOrientation
)(arg1
)->GetOrientation(); 
10319         wxPyEndAllowThreads(__tstate
); 
10320         if (PyErr_Occurred()) SWIG_fail
; 
10322     resultobj 
= SWIG_From_int((result
)); 
10329 static PyObject 
*_wrap_SashLayoutWindow_SetAlignment(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10330     PyObject 
*resultobj
; 
10331     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10332     wxLayoutAlignment arg2 
; 
10333     PyObject 
* obj0 
= 0 ; 
10334     PyObject 
* obj1 
= 0 ; 
10335     char *kwnames
[] = { 
10336         (char *) "self",(char *) "alignment", NULL 
 
10339     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetAlignment",kwnames
,&obj0
,&obj1
)) goto fail
; 
10340     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10341     if (SWIG_arg_fail(1)) SWIG_fail
; 
10343         arg2 
= (wxLayoutAlignment
)(SWIG_As_int(obj1
));  
10344         if (SWIG_arg_fail(2)) SWIG_fail
; 
10347         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10348         (arg1
)->SetAlignment((wxLayoutAlignment 
)arg2
); 
10350         wxPyEndAllowThreads(__tstate
); 
10351         if (PyErr_Occurred()) SWIG_fail
; 
10353     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10360 static PyObject 
*_wrap_SashLayoutWindow_SetDefaultSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10361     PyObject 
*resultobj
; 
10362     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10365     PyObject 
* obj0 
= 0 ; 
10366     PyObject 
* obj1 
= 0 ; 
10367     char *kwnames
[] = { 
10368         (char *) "self",(char *) "size", NULL 
 
10371     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetDefaultSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
10372     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10373     if (SWIG_arg_fail(1)) SWIG_fail
; 
10376         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
10379         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10380         (arg1
)->SetDefaultSize((wxSize 
const &)*arg2
); 
10382         wxPyEndAllowThreads(__tstate
); 
10383         if (PyErr_Occurred()) SWIG_fail
; 
10385     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10392 static PyObject 
*_wrap_SashLayoutWindow_SetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10393     PyObject 
*resultobj
; 
10394     wxSashLayoutWindow 
*arg1 
= (wxSashLayoutWindow 
*) 0 ; 
10395     wxLayoutOrientation arg2 
; 
10396     PyObject 
* obj0 
= 0 ; 
10397     PyObject 
* obj1 
= 0 ; 
10398     char *kwnames
[] = { 
10399         (char *) "self",(char *) "orientation", NULL 
 
10402     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SashLayoutWindow_SetOrientation",kwnames
,&obj0
,&obj1
)) goto fail
; 
10403     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSashLayoutWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10404     if (SWIG_arg_fail(1)) SWIG_fail
; 
10406         arg2 
= (wxLayoutOrientation
)(SWIG_As_int(obj1
));  
10407         if (SWIG_arg_fail(2)) SWIG_fail
; 
10410         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10411         (arg1
)->SetOrientation((wxLayoutOrientation 
)arg2
); 
10413         wxPyEndAllowThreads(__tstate
); 
10414         if (PyErr_Occurred()) SWIG_fail
; 
10416     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10423 static PyObject 
* SashLayoutWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
10425     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10426     SWIG_TypeClientData(SWIGTYPE_p_wxSashLayoutWindow
, obj
); 
10428     return Py_BuildValue((char *)""); 
10430 static PyObject 
*_wrap_new_LayoutAlgorithm(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10431     PyObject 
*resultobj
; 
10432     wxLayoutAlgorithm 
*result
; 
10433     char *kwnames
[] = { 
10437     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_LayoutAlgorithm",kwnames
)) goto fail
; 
10439         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10440         result 
= (wxLayoutAlgorithm 
*)new wxLayoutAlgorithm(); 
10442         wxPyEndAllowThreads(__tstate
); 
10443         if (PyErr_Occurred()) SWIG_fail
; 
10445     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxLayoutAlgorithm
, 1); 
10452 static PyObject 
*_wrap_delete_LayoutAlgorithm(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10453     PyObject 
*resultobj
; 
10454     wxLayoutAlgorithm 
*arg1 
= (wxLayoutAlgorithm 
*) 0 ; 
10455     PyObject 
* obj0 
= 0 ; 
10456     char *kwnames
[] = { 
10457         (char *) "self", NULL 
 
10460     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_LayoutAlgorithm",kwnames
,&obj0
)) goto fail
; 
10461     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_EXCEPTION 
| 0); 
10462     if (SWIG_arg_fail(1)) SWIG_fail
; 
10464         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10467         wxPyEndAllowThreads(__tstate
); 
10468         if (PyErr_Occurred()) SWIG_fail
; 
10470     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10477 static PyObject 
*_wrap_LayoutAlgorithm_LayoutMDIFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10478     PyObject 
*resultobj
; 
10479     wxLayoutAlgorithm 
*arg1 
= (wxLayoutAlgorithm 
*) 0 ; 
10480     wxMDIParentFrame 
*arg2 
= (wxMDIParentFrame 
*) 0 ; 
10481     wxRect 
*arg3 
= (wxRect 
*) NULL 
; 
10483     PyObject 
* obj0 
= 0 ; 
10484     PyObject 
* obj1 
= 0 ; 
10485     PyObject 
* obj2 
= 0 ; 
10486     char *kwnames
[] = { 
10487         (char *) "self",(char *) "frame",(char *) "rect", NULL 
 
10490     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutMDIFrame",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10491     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_EXCEPTION 
| 0); 
10492     if (SWIG_arg_fail(1)) SWIG_fail
; 
10493     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
10494     if (SWIG_arg_fail(2)) SWIG_fail
; 
10496         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxRect
, SWIG_POINTER_EXCEPTION 
| 0); 
10497         if (SWIG_arg_fail(3)) SWIG_fail
; 
10500         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10501         result 
= (bool)(arg1
)->LayoutMDIFrame(arg2
,arg3
); 
10503         wxPyEndAllowThreads(__tstate
); 
10504         if (PyErr_Occurred()) SWIG_fail
; 
10507         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10515 static PyObject 
*_wrap_LayoutAlgorithm_LayoutFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10516     PyObject 
*resultobj
; 
10517     wxLayoutAlgorithm 
*arg1 
= (wxLayoutAlgorithm 
*) 0 ; 
10518     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
10519     wxWindow 
*arg3 
= (wxWindow 
*) NULL 
; 
10521     PyObject 
* obj0 
= 0 ; 
10522     PyObject 
* obj1 
= 0 ; 
10523     PyObject 
* obj2 
= 0 ; 
10524     char *kwnames
[] = { 
10525         (char *) "self",(char *) "frame",(char *) "mainWindow", NULL 
 
10528     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutFrame",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10529     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_EXCEPTION 
| 0); 
10530     if (SWIG_arg_fail(1)) SWIG_fail
; 
10531     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
10532     if (SWIG_arg_fail(2)) SWIG_fail
; 
10534         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10535         if (SWIG_arg_fail(3)) SWIG_fail
; 
10538         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10539         result 
= (bool)(arg1
)->LayoutFrame(arg2
,arg3
); 
10541         wxPyEndAllowThreads(__tstate
); 
10542         if (PyErr_Occurred()) SWIG_fail
; 
10545         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10553 static PyObject 
*_wrap_LayoutAlgorithm_LayoutWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10554     PyObject 
*resultobj
; 
10555     wxLayoutAlgorithm 
*arg1 
= (wxLayoutAlgorithm 
*) 0 ; 
10556     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
10557     wxWindow 
*arg3 
= (wxWindow 
*) NULL 
; 
10559     PyObject 
* obj0 
= 0 ; 
10560     PyObject 
* obj1 
= 0 ; 
10561     PyObject 
* obj2 
= 0 ; 
10562     char *kwnames
[] = { 
10563         (char *) "self",(char *) "parent",(char *) "mainWindow", NULL 
 
10566     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:LayoutAlgorithm_LayoutWindow",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10567     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxLayoutAlgorithm
, SWIG_POINTER_EXCEPTION 
| 0); 
10568     if (SWIG_arg_fail(1)) SWIG_fail
; 
10569     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10570     if (SWIG_arg_fail(2)) SWIG_fail
; 
10572         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10573         if (SWIG_arg_fail(3)) SWIG_fail
; 
10576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10577         result 
= (bool)(arg1
)->LayoutWindow(arg2
,arg3
); 
10579         wxPyEndAllowThreads(__tstate
); 
10580         if (PyErr_Occurred()) SWIG_fail
; 
10583         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10591 static PyObject 
* LayoutAlgorithm_swigregister(PyObject 
*, PyObject 
*args
) { 
10593     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10594     SWIG_TypeClientData(SWIGTYPE_p_wxLayoutAlgorithm
, obj
); 
10596     return Py_BuildValue((char *)""); 
10598 static PyObject 
*_wrap_new_PopupWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10599     PyObject 
*resultobj
; 
10600     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
10601     int arg2 
= (int) wxBORDER_NONE 
; 
10602     wxPopupWindow 
*result
; 
10603     PyObject 
* obj0 
= 0 ; 
10604     PyObject 
* obj1 
= 0 ; 
10605     char *kwnames
[] = { 
10606         (char *) "parent",(char *) "flags", NULL 
 
10609     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
10610     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10611     if (SWIG_arg_fail(1)) SWIG_fail
; 
10614             arg2 
= (int)(SWIG_As_int(obj1
));  
10615             if (SWIG_arg_fail(2)) SWIG_fail
; 
10619         if (!wxPyCheckForApp()) SWIG_fail
; 
10620         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10621         result 
= (wxPopupWindow 
*)new wxPopupWindow(arg1
,arg2
); 
10623         wxPyEndAllowThreads(__tstate
); 
10624         if (PyErr_Occurred()) SWIG_fail
; 
10626     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPopupWindow
, 1); 
10633 static PyObject 
*_wrap_new_PrePopupWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10634     PyObject 
*resultobj
; 
10635     wxPopupWindow 
*result
; 
10636     char *kwnames
[] = { 
10640     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePopupWindow",kwnames
)) goto fail
; 
10642         if (!wxPyCheckForApp()) SWIG_fail
; 
10643         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10644         result 
= (wxPopupWindow 
*)new wxPopupWindow(); 
10646         wxPyEndAllowThreads(__tstate
); 
10647         if (PyErr_Occurred()) SWIG_fail
; 
10649     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPopupWindow
, 1); 
10656 static PyObject 
*_wrap_PopupWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10657     PyObject 
*resultobj
; 
10658     wxPopupWindow 
*arg1 
= (wxPopupWindow 
*) 0 ; 
10659     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
10660     int arg3 
= (int) wxBORDER_NONE 
; 
10662     PyObject 
* obj0 
= 0 ; 
10663     PyObject 
* obj1 
= 0 ; 
10664     PyObject 
* obj2 
= 0 ; 
10665     char *kwnames
[] = { 
10666         (char *) "self",(char *) "parent",(char *) "flags", NULL 
 
10669     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:PopupWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10670     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10671     if (SWIG_arg_fail(1)) SWIG_fail
; 
10672     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10673     if (SWIG_arg_fail(2)) SWIG_fail
; 
10676             arg3 
= (int)(SWIG_As_int(obj2
));  
10677             if (SWIG_arg_fail(3)) SWIG_fail
; 
10681         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10682         result 
= (bool)(arg1
)->Create(arg2
,arg3
); 
10684         wxPyEndAllowThreads(__tstate
); 
10685         if (PyErr_Occurred()) SWIG_fail
; 
10688         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10696 static PyObject 
*_wrap_PopupWindow_Position(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10697     PyObject 
*resultobj
; 
10698     wxPopupWindow 
*arg1 
= (wxPopupWindow 
*) 0 ; 
10699     wxPoint 
*arg2 
= 0 ; 
10703     PyObject 
* obj0 
= 0 ; 
10704     PyObject 
* obj1 
= 0 ; 
10705     PyObject 
* obj2 
= 0 ; 
10706     char *kwnames
[] = { 
10707         (char *) "self",(char *) "ptOrigin",(char *) "size", NULL 
 
10710     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PopupWindow_Position",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10711     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPopupWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10712     if (SWIG_arg_fail(1)) SWIG_fail
; 
10715         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
10719         if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
; 
10722         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10723         (arg1
)->Position((wxPoint 
const &)*arg2
,(wxSize 
const &)*arg3
); 
10725         wxPyEndAllowThreads(__tstate
); 
10726         if (PyErr_Occurred()) SWIG_fail
; 
10728     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10735 static PyObject 
* PopupWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
10737     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10738     SWIG_TypeClientData(SWIGTYPE_p_wxPopupWindow
, obj
); 
10740     return Py_BuildValue((char *)""); 
10742 static PyObject 
*_wrap_new_PopupTransientWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10743     PyObject 
*resultobj
; 
10744     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
10745     int arg2 
= (int) wxBORDER_NONE 
; 
10746     wxPyPopupTransientWindow 
*result
; 
10747     PyObject 
* obj0 
= 0 ; 
10748     PyObject 
* obj1 
= 0 ; 
10749     char *kwnames
[] = { 
10750         (char *) "parent",(char *) "style", NULL 
 
10753     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PopupTransientWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
10754     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10755     if (SWIG_arg_fail(1)) SWIG_fail
; 
10758             arg2 
= (int)(SWIG_As_int(obj1
));  
10759             if (SWIG_arg_fail(2)) SWIG_fail
; 
10763         if (!wxPyCheckForApp()) SWIG_fail
; 
10764         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10765         result 
= (wxPyPopupTransientWindow 
*)new wxPyPopupTransientWindow(arg1
,arg2
); 
10767         wxPyEndAllowThreads(__tstate
); 
10768         if (PyErr_Occurred()) SWIG_fail
; 
10770     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, 1); 
10777 static PyObject 
*_wrap_new_PrePopupTransientWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10778     PyObject 
*resultobj
; 
10779     wxPyPopupTransientWindow 
*result
; 
10780     char *kwnames
[] = { 
10784     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePopupTransientWindow",kwnames
)) goto fail
; 
10786         if (!wxPyCheckForApp()) SWIG_fail
; 
10787         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10788         result 
= (wxPyPopupTransientWindow 
*)new wxPyPopupTransientWindow(); 
10790         wxPyEndAllowThreads(__tstate
); 
10791         if (PyErr_Occurred()) SWIG_fail
; 
10793     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPopupTransientWindow
, 1); 
10800 static PyObject 
*_wrap_PopupTransientWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10801     PyObject 
*resultobj
; 
10802     wxPyPopupTransientWindow 
*arg1 
= (wxPyPopupTransientWindow 
*) 0 ; 
10803     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
10804     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
10805     PyObject 
* obj0 
= 0 ; 
10806     PyObject 
* obj1 
= 0 ; 
10807     PyObject 
* obj2 
= 0 ; 
10808     char *kwnames
[] = { 
10809         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
10812     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PopupTransientWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10813     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10814     if (SWIG_arg_fail(1)) SWIG_fail
; 
10818         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10819         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
10821         wxPyEndAllowThreads(__tstate
); 
10822         if (PyErr_Occurred()) SWIG_fail
; 
10824     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10831 static PyObject 
*_wrap_PopupTransientWindow_Popup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10832     PyObject 
*resultobj
; 
10833     wxPyPopupTransientWindow 
*arg1 
= (wxPyPopupTransientWindow 
*) 0 ; 
10834     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
10835     PyObject 
* obj0 
= 0 ; 
10836     PyObject 
* obj1 
= 0 ; 
10837     char *kwnames
[] = { 
10838         (char *) "self",(char *) "focus", NULL 
 
10841     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:PopupTransientWindow_Popup",kwnames
,&obj0
,&obj1
)) goto fail
; 
10842     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10843     if (SWIG_arg_fail(1)) SWIG_fail
; 
10845         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10846         if (SWIG_arg_fail(2)) SWIG_fail
; 
10849         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10850         (arg1
)->Popup(arg2
); 
10852         wxPyEndAllowThreads(__tstate
); 
10853         if (PyErr_Occurred()) SWIG_fail
; 
10855     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10862 static PyObject 
*_wrap_PopupTransientWindow_Dismiss(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10863     PyObject 
*resultobj
; 
10864     wxPyPopupTransientWindow 
*arg1 
= (wxPyPopupTransientWindow 
*) 0 ; 
10865     PyObject 
* obj0 
= 0 ; 
10866     char *kwnames
[] = { 
10867         (char *) "self", NULL 
 
10870     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PopupTransientWindow_Dismiss",kwnames
,&obj0
)) goto fail
; 
10871     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPopupTransientWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10872     if (SWIG_arg_fail(1)) SWIG_fail
; 
10874         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10877         wxPyEndAllowThreads(__tstate
); 
10878         if (PyErr_Occurred()) SWIG_fail
; 
10880     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10887 static PyObject 
* PopupTransientWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
10889     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10890     SWIG_TypeClientData(SWIGTYPE_p_wxPyPopupTransientWindow
, obj
); 
10892     return Py_BuildValue((char *)""); 
10894 static PyObject 
*_wrap_new_TipWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10895     PyObject 
*resultobj
; 
10896     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
10897     wxString 
*arg2 
= 0 ; 
10898     int arg3 
= (int) 100 ; 
10899     wxRect 
*arg4 
= (wxRect 
*) NULL 
; 
10900     wxTipWindow 
*result
; 
10901     bool temp2 
= false ; 
10902     PyObject 
* obj0 
= 0 ; 
10903     PyObject 
* obj1 
= 0 ; 
10904     PyObject 
* obj2 
= 0 ; 
10905     PyObject 
* obj3 
= 0 ; 
10906     char *kwnames
[] = { 
10907         (char *) "parent",(char *) "text",(char *) "maxLength",(char *) "rectBound", NULL 
 
10910     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_TipWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10911     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10912     if (SWIG_arg_fail(1)) SWIG_fail
; 
10914         arg2 
= wxString_in_helper(obj1
); 
10915         if (arg2 
== NULL
) SWIG_fail
; 
10920             arg3 
= (int)(SWIG_As_int(obj2
));  
10921             if (SWIG_arg_fail(3)) SWIG_fail
; 
10925         SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxRect
, SWIG_POINTER_EXCEPTION 
| 0); 
10926         if (SWIG_arg_fail(4)) SWIG_fail
; 
10929         if (!wxPyCheckForApp()) SWIG_fail
; 
10930         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10931         result 
= (wxTipWindow 
*)new_wxTipWindow(arg1
,(wxString 
const &)*arg2
,arg3
,arg4
); 
10933         wxPyEndAllowThreads(__tstate
); 
10934         if (PyErr_Occurred()) SWIG_fail
; 
10936     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTipWindow
, 1); 
10951 static PyObject 
*_wrap_TipWindow_SetBoundingRect(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10952     PyObject 
*resultobj
; 
10953     wxTipWindow 
*arg1 
= (wxTipWindow 
*) 0 ; 
10956     PyObject 
* obj0 
= 0 ; 
10957     PyObject 
* obj1 
= 0 ; 
10958     char *kwnames
[] = { 
10959         (char *) "self",(char *) "rectBound", NULL 
 
10962     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TipWindow_SetBoundingRect",kwnames
,&obj0
,&obj1
)) goto fail
; 
10963     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTipWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10964     if (SWIG_arg_fail(1)) SWIG_fail
; 
10967         if ( ! wxRect_helper(obj1
, &arg2
)) SWIG_fail
; 
10970         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10971         (arg1
)->SetBoundingRect((wxRect 
const &)*arg2
); 
10973         wxPyEndAllowThreads(__tstate
); 
10974         if (PyErr_Occurred()) SWIG_fail
; 
10976     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10983 static PyObject 
*_wrap_TipWindow_Close(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10984     PyObject 
*resultobj
; 
10985     wxTipWindow 
*arg1 
= (wxTipWindow 
*) 0 ; 
10986     PyObject 
* obj0 
= 0 ; 
10987     char *kwnames
[] = { 
10988         (char *) "self", NULL 
 
10991     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TipWindow_Close",kwnames
,&obj0
)) goto fail
; 
10992     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTipWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
10993     if (SWIG_arg_fail(1)) SWIG_fail
; 
10995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10998         wxPyEndAllowThreads(__tstate
); 
10999         if (PyErr_Occurred()) SWIG_fail
; 
11001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11008 static PyObject 
* TipWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
11010     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11011     SWIG_TypeClientData(SWIGTYPE_p_wxTipWindow
, obj
); 
11013     return Py_BuildValue((char *)""); 
11015 static PyObject 
*_wrap_new_VScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11016     PyObject 
*resultobj
; 
11017     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11018     int arg2 
= (int) wxID_ANY 
; 
11019     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
11020     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
11021     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
11022     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
11023     long arg5 
= (long) 0 ; 
11024     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
11025     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
11026     wxPyVScrolledWindow 
*result
; 
11029     bool temp6 
= false ; 
11030     PyObject 
* obj0 
= 0 ; 
11031     PyObject 
* obj1 
= 0 ; 
11032     PyObject 
* obj2 
= 0 ; 
11033     PyObject 
* obj3 
= 0 ; 
11034     PyObject 
* obj4 
= 0 ; 
11035     PyObject 
* obj5 
= 0 ; 
11036     char *kwnames
[] = { 
11037         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
11040     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
11041     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11042     if (SWIG_arg_fail(1)) SWIG_fail
; 
11045             arg2 
= (int)(SWIG_As_int(obj1
));  
11046             if (SWIG_arg_fail(2)) SWIG_fail
; 
11052             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
11058             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
11063             arg5 
= (long)(SWIG_As_long(obj4
));  
11064             if (SWIG_arg_fail(5)) SWIG_fail
; 
11069             arg6 
= wxString_in_helper(obj5
); 
11070             if (arg6 
== NULL
) SWIG_fail
; 
11075         if (!wxPyCheckForApp()) SWIG_fail
; 
11076         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11077         result 
= (wxPyVScrolledWindow 
*)new wxPyVScrolledWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
11079         wxPyEndAllowThreads(__tstate
); 
11080         if (PyErr_Occurred()) SWIG_fail
; 
11082     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyVScrolledWindow
, 1); 
11097 static PyObject 
*_wrap_new_PreVScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11098     PyObject 
*resultobj
; 
11099     wxPyVScrolledWindow 
*result
; 
11100     char *kwnames
[] = { 
11104     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreVScrolledWindow",kwnames
)) goto fail
; 
11106         if (!wxPyCheckForApp()) SWIG_fail
; 
11107         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11108         result 
= (wxPyVScrolledWindow 
*)new wxPyVScrolledWindow(); 
11110         wxPyEndAllowThreads(__tstate
); 
11111         if (PyErr_Occurred()) SWIG_fail
; 
11113     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyVScrolledWindow
, 1); 
11120 static PyObject 
*_wrap_VScrolledWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11121     PyObject 
*resultobj
; 
11122     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11123     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
11124     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
11125     PyObject 
* obj0 
= 0 ; 
11126     PyObject 
* obj1 
= 0 ; 
11127     PyObject 
* obj2 
= 0 ; 
11128     char *kwnames
[] = { 
11129         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
11132     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11133     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11134     if (SWIG_arg_fail(1)) SWIG_fail
; 
11138         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11139         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
11141         wxPyEndAllowThreads(__tstate
); 
11142         if (PyErr_Occurred()) SWIG_fail
; 
11144     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11151 static PyObject 
*_wrap_VScrolledWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11152     PyObject 
*resultobj
; 
11153     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11154     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
11155     int arg3 
= (int) wxID_ANY 
; 
11156     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
11157     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
11158     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
11159     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
11160     long arg6 
= (long) 0 ; 
11161     wxString 
const &arg7_defvalue 
= wxPyPanelNameStr 
; 
11162     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
11166     bool temp7 
= false ; 
11167     PyObject 
* obj0 
= 0 ; 
11168     PyObject 
* obj1 
= 0 ; 
11169     PyObject 
* obj2 
= 0 ; 
11170     PyObject 
* obj3 
= 0 ; 
11171     PyObject 
* obj4 
= 0 ; 
11172     PyObject 
* obj5 
= 0 ; 
11173     PyObject 
* obj6 
= 0 ; 
11174     char *kwnames
[] = { 
11175         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
11178     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VScrolledWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
11179     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11180     if (SWIG_arg_fail(1)) SWIG_fail
; 
11181     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11182     if (SWIG_arg_fail(2)) SWIG_fail
; 
11185             arg3 
= (int)(SWIG_As_int(obj2
));  
11186             if (SWIG_arg_fail(3)) SWIG_fail
; 
11192             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
11198             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
11203             arg6 
= (long)(SWIG_As_long(obj5
));  
11204             if (SWIG_arg_fail(6)) SWIG_fail
; 
11209             arg7 
= wxString_in_helper(obj6
); 
11210             if (arg7 
== NULL
) SWIG_fail
; 
11215         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11216         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
11218         wxPyEndAllowThreads(__tstate
); 
11219         if (PyErr_Occurred()) SWIG_fail
; 
11222         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11238 static PyObject 
*_wrap_VScrolledWindow_SetLineCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11239     PyObject 
*resultobj
; 
11240     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11242     PyObject 
* obj0 
= 0 ; 
11243     PyObject 
* obj1 
= 0 ; 
11244     char *kwnames
[] = { 
11245         (char *) "self",(char *) "count", NULL 
 
11248     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_SetLineCount",kwnames
,&obj0
,&obj1
)) goto fail
; 
11249     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11250     if (SWIG_arg_fail(1)) SWIG_fail
; 
11252         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
11253         if (SWIG_arg_fail(2)) SWIG_fail
; 
11256         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11257         (arg1
)->SetLineCount(arg2
); 
11259         wxPyEndAllowThreads(__tstate
); 
11260         if (PyErr_Occurred()) SWIG_fail
; 
11262     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11269 static PyObject 
*_wrap_VScrolledWindow_ScrollToLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11270     PyObject 
*resultobj
; 
11271     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11274     PyObject 
* obj0 
= 0 ; 
11275     PyObject 
* obj1 
= 0 ; 
11276     char *kwnames
[] = { 
11277         (char *) "self",(char *) "line", NULL 
 
11280     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_ScrollToLine",kwnames
,&obj0
,&obj1
)) goto fail
; 
11281     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11282     if (SWIG_arg_fail(1)) SWIG_fail
; 
11284         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
11285         if (SWIG_arg_fail(2)) SWIG_fail
; 
11288         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11289         result 
= (bool)(arg1
)->ScrollToLine(arg2
); 
11291         wxPyEndAllowThreads(__tstate
); 
11292         if (PyErr_Occurred()) SWIG_fail
; 
11295         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11303 static PyObject 
*_wrap_VScrolledWindow_ScrollLines(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11304     PyObject 
*resultobj
; 
11305     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11308     PyObject 
* obj0 
= 0 ; 
11309     PyObject 
* obj1 
= 0 ; 
11310     char *kwnames
[] = { 
11311         (char *) "self",(char *) "lines", NULL 
 
11314     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_ScrollLines",kwnames
,&obj0
,&obj1
)) goto fail
; 
11315     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11316     if (SWIG_arg_fail(1)) SWIG_fail
; 
11318         arg2 
= (int)(SWIG_As_int(obj1
));  
11319         if (SWIG_arg_fail(2)) SWIG_fail
; 
11322         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11323         result 
= (bool)(arg1
)->ScrollLines(arg2
); 
11325         wxPyEndAllowThreads(__tstate
); 
11326         if (PyErr_Occurred()) SWIG_fail
; 
11329         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11337 static PyObject 
*_wrap_VScrolledWindow_ScrollPages(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11338     PyObject 
*resultobj
; 
11339     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11342     PyObject 
* obj0 
= 0 ; 
11343     PyObject 
* obj1 
= 0 ; 
11344     char *kwnames
[] = { 
11345         (char *) "self",(char *) "pages", NULL 
 
11348     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_ScrollPages",kwnames
,&obj0
,&obj1
)) goto fail
; 
11349     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11350     if (SWIG_arg_fail(1)) SWIG_fail
; 
11352         arg2 
= (int)(SWIG_As_int(obj1
));  
11353         if (SWIG_arg_fail(2)) SWIG_fail
; 
11356         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11357         result 
= (bool)(arg1
)->ScrollPages(arg2
); 
11359         wxPyEndAllowThreads(__tstate
); 
11360         if (PyErr_Occurred()) SWIG_fail
; 
11363         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11371 static PyObject 
*_wrap_VScrolledWindow_RefreshLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11372     PyObject 
*resultobj
; 
11373     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11375     PyObject 
* obj0 
= 0 ; 
11376     PyObject 
* obj1 
= 0 ; 
11377     char *kwnames
[] = { 
11378         (char *) "self",(char *) "line", NULL 
 
11381     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_RefreshLine",kwnames
,&obj0
,&obj1
)) goto fail
; 
11382     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11383     if (SWIG_arg_fail(1)) SWIG_fail
; 
11385         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
11386         if (SWIG_arg_fail(2)) SWIG_fail
; 
11389         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11390         (arg1
)->RefreshLine(arg2
); 
11392         wxPyEndAllowThreads(__tstate
); 
11393         if (PyErr_Occurred()) SWIG_fail
; 
11395     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11402 static PyObject 
*_wrap_VScrolledWindow_RefreshLines(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11403     PyObject 
*resultobj
; 
11404     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11407     PyObject 
* obj0 
= 0 ; 
11408     PyObject 
* obj1 
= 0 ; 
11409     PyObject 
* obj2 
= 0 ; 
11410     char *kwnames
[] = { 
11411         (char *) "self",(char *) "from",(char *) "to", NULL 
 
11414     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_RefreshLines",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11415     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11416     if (SWIG_arg_fail(1)) SWIG_fail
; 
11418         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
11419         if (SWIG_arg_fail(2)) SWIG_fail
; 
11422         arg3 
= (size_t)(SWIG_As_unsigned_SS_long(obj2
));  
11423         if (SWIG_arg_fail(3)) SWIG_fail
; 
11426         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11427         (arg1
)->RefreshLines(arg2
,arg3
); 
11429         wxPyEndAllowThreads(__tstate
); 
11430         if (PyErr_Occurred()) SWIG_fail
; 
11432     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11439 static PyObject 
*_wrap_VScrolledWindow_HitTestXY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11440     PyObject 
*resultobj
; 
11441     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11445     PyObject 
* obj0 
= 0 ; 
11446     PyObject 
* obj1 
= 0 ; 
11447     PyObject 
* obj2 
= 0 ; 
11448     char *kwnames
[] = { 
11449         (char *) "self",(char *) "x",(char *) "y", NULL 
 
11452     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VScrolledWindow_HitTestXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11453     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11454     if (SWIG_arg_fail(1)) SWIG_fail
; 
11456         arg2 
= (int)(SWIG_As_int(obj1
));  
11457         if (SWIG_arg_fail(2)) SWIG_fail
; 
11460         arg3 
= (int)(SWIG_As_int(obj2
));  
11461         if (SWIG_arg_fail(3)) SWIG_fail
; 
11464         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11465         result 
= (int)((wxPyVScrolledWindow 
const *)arg1
)->HitTest(arg2
,arg3
); 
11467         wxPyEndAllowThreads(__tstate
); 
11468         if (PyErr_Occurred()) SWIG_fail
; 
11471         resultobj 
= SWIG_From_int((int)(result
));  
11479 static PyObject 
*_wrap_VScrolledWindow_HitTest(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11480     PyObject 
*resultobj
; 
11481     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11482     wxPoint 
*arg2 
= 0 ; 
11485     PyObject 
* obj0 
= 0 ; 
11486     PyObject 
* obj1 
= 0 ; 
11487     char *kwnames
[] = { 
11488         (char *) "self",(char *) "pt", NULL 
 
11491     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_HitTest",kwnames
,&obj0
,&obj1
)) goto fail
; 
11492     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11493     if (SWIG_arg_fail(1)) SWIG_fail
; 
11496         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
11499         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11500         result 
= (int)((wxPyVScrolledWindow 
const *)arg1
)->HitTest((wxPoint 
const &)*arg2
); 
11502         wxPyEndAllowThreads(__tstate
); 
11503         if (PyErr_Occurred()) SWIG_fail
; 
11506         resultobj 
= SWIG_From_int((int)(result
));  
11514 static PyObject 
*_wrap_VScrolledWindow_RefreshAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11515     PyObject 
*resultobj
; 
11516     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11517     PyObject 
* obj0 
= 0 ; 
11518     char *kwnames
[] = { 
11519         (char *) "self", NULL 
 
11522     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_RefreshAll",kwnames
,&obj0
)) goto fail
; 
11523     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11524     if (SWIG_arg_fail(1)) SWIG_fail
; 
11526         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11527         (arg1
)->RefreshAll(); 
11529         wxPyEndAllowThreads(__tstate
); 
11530         if (PyErr_Occurred()) SWIG_fail
; 
11532     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11539 static PyObject 
*_wrap_VScrolledWindow_GetLineCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11540     PyObject 
*resultobj
; 
11541     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11543     PyObject 
* obj0 
= 0 ; 
11544     char *kwnames
[] = { 
11545         (char *) "self", NULL 
 
11548     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_GetLineCount",kwnames
,&obj0
)) goto fail
; 
11549     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11550     if (SWIG_arg_fail(1)) SWIG_fail
; 
11552         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11553         result 
= (size_t)((wxPyVScrolledWindow 
const *)arg1
)->GetLineCount(); 
11555         wxPyEndAllowThreads(__tstate
); 
11556         if (PyErr_Occurred()) SWIG_fail
; 
11559         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11567 static PyObject 
*_wrap_VScrolledWindow_GetVisibleBegin(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11568     PyObject 
*resultobj
; 
11569     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11571     PyObject 
* obj0 
= 0 ; 
11572     char *kwnames
[] = { 
11573         (char *) "self", NULL 
 
11576     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_GetVisibleBegin",kwnames
,&obj0
)) goto fail
; 
11577     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11578     if (SWIG_arg_fail(1)) SWIG_fail
; 
11580         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11581         result 
= (size_t)((wxPyVScrolledWindow 
const *)arg1
)->GetVisibleBegin(); 
11583         wxPyEndAllowThreads(__tstate
); 
11584         if (PyErr_Occurred()) SWIG_fail
; 
11587         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11595 static PyObject 
*_wrap_VScrolledWindow_GetVisibleEnd(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11596     PyObject 
*resultobj
; 
11597     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11599     PyObject 
* obj0 
= 0 ; 
11600     char *kwnames
[] = { 
11601         (char *) "self", NULL 
 
11604     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_GetVisibleEnd",kwnames
,&obj0
)) goto fail
; 
11605     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11606     if (SWIG_arg_fail(1)) SWIG_fail
; 
11608         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11609         result 
= (size_t)((wxPyVScrolledWindow 
const *)arg1
)->GetVisibleEnd(); 
11611         wxPyEndAllowThreads(__tstate
); 
11612         if (PyErr_Occurred()) SWIG_fail
; 
11615         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11623 static PyObject 
*_wrap_VScrolledWindow_IsVisible(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11624     PyObject 
*resultobj
; 
11625     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11628     PyObject 
* obj0 
= 0 ; 
11629     PyObject 
* obj1 
= 0 ; 
11630     char *kwnames
[] = { 
11631         (char *) "self",(char *) "line", NULL 
 
11634     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VScrolledWindow_IsVisible",kwnames
,&obj0
,&obj1
)) goto fail
; 
11635     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11636     if (SWIG_arg_fail(1)) SWIG_fail
; 
11638         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
11639         if (SWIG_arg_fail(2)) SWIG_fail
; 
11642         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11643         result 
= (bool)((wxPyVScrolledWindow 
const *)arg1
)->IsVisible(arg2
); 
11645         wxPyEndAllowThreads(__tstate
); 
11646         if (PyErr_Occurred()) SWIG_fail
; 
11649         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11657 static PyObject 
*_wrap_VScrolledWindow_GetFirstVisibleLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11658     PyObject 
*resultobj
; 
11659     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11661     PyObject 
* obj0 
= 0 ; 
11662     char *kwnames
[] = { 
11663         (char *) "self", NULL 
 
11666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_GetFirstVisibleLine",kwnames
,&obj0
)) goto fail
; 
11667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11668     if (SWIG_arg_fail(1)) SWIG_fail
; 
11670         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11671         result 
= (size_t)((wxPyVScrolledWindow 
const *)arg1
)->GetFirstVisibleLine(); 
11673         wxPyEndAllowThreads(__tstate
); 
11674         if (PyErr_Occurred()) SWIG_fail
; 
11677         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11685 static PyObject 
*_wrap_VScrolledWindow_GetLastVisibleLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11686     PyObject 
*resultobj
; 
11687     wxPyVScrolledWindow 
*arg1 
= (wxPyVScrolledWindow 
*) 0 ; 
11689     PyObject 
* obj0 
= 0 ; 
11690     char *kwnames
[] = { 
11691         (char *) "self", NULL 
 
11694     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VScrolledWindow_GetLastVisibleLine",kwnames
,&obj0
)) goto fail
; 
11695     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11696     if (SWIG_arg_fail(1)) SWIG_fail
; 
11698         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11699         result 
= (size_t)((wxPyVScrolledWindow 
const *)arg1
)->GetLastVisibleLine(); 
11701         wxPyEndAllowThreads(__tstate
); 
11702         if (PyErr_Occurred()) SWIG_fail
; 
11705         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11713 static PyObject 
* VScrolledWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
11715     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11716     SWIG_TypeClientData(SWIGTYPE_p_wxPyVScrolledWindow
, obj
); 
11718     return Py_BuildValue((char *)""); 
11720 static int _wrap_VListBoxNameStr_set(PyObject 
*) { 
11721     PyErr_SetString(PyExc_TypeError
,"Variable VListBoxNameStr is read-only."); 
11726 static PyObject 
*_wrap_VListBoxNameStr_get(void) { 
11731         pyobj 
= PyUnicode_FromWideChar((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len()); 
11733         pyobj 
= PyString_FromStringAndSize((&wxPyVListBoxNameStr
)->c_str(), (&wxPyVListBoxNameStr
)->Len()); 
11740 static PyObject 
*_wrap_new_VListBox(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11741     PyObject 
*resultobj
; 
11742     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11743     int arg2 
= (int) wxID_ANY 
; 
11744     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
11745     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
11746     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
11747     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
11748     long arg5 
= (long) 0 ; 
11749     wxString 
const &arg6_defvalue 
= wxPyVListBoxNameStr 
; 
11750     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
11751     wxPyVListBox 
*result
; 
11754     bool temp6 
= false ; 
11755     PyObject 
* obj0 
= 0 ; 
11756     PyObject 
* obj1 
= 0 ; 
11757     PyObject 
* obj2 
= 0 ; 
11758     PyObject 
* obj3 
= 0 ; 
11759     PyObject 
* obj4 
= 0 ; 
11760     PyObject 
* obj5 
= 0 ; 
11761     char *kwnames
[] = { 
11762         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
11765     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_VListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
11766     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11767     if (SWIG_arg_fail(1)) SWIG_fail
; 
11770             arg2 
= (int)(SWIG_As_int(obj1
));  
11771             if (SWIG_arg_fail(2)) SWIG_fail
; 
11777             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
11783             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
11788             arg5 
= (long)(SWIG_As_long(obj4
));  
11789             if (SWIG_arg_fail(5)) SWIG_fail
; 
11794             arg6 
= wxString_in_helper(obj5
); 
11795             if (arg6 
== NULL
) SWIG_fail
; 
11800         if (!wxPyCheckForApp()) SWIG_fail
; 
11801         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11802         result 
= (wxPyVListBox 
*)new wxPyVListBox(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
11804         wxPyEndAllowThreads(__tstate
); 
11805         if (PyErr_Occurred()) SWIG_fail
; 
11807     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyVListBox
, 1); 
11822 static PyObject 
*_wrap_new_PreVListBox(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11823     PyObject 
*resultobj
; 
11824     wxPyVListBox 
*result
; 
11825     char *kwnames
[] = { 
11829     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreVListBox",kwnames
)) goto fail
; 
11831         if (!wxPyCheckForApp()) SWIG_fail
; 
11832         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11833         result 
= (wxPyVListBox 
*)new wxPyVListBox(); 
11835         wxPyEndAllowThreads(__tstate
); 
11836         if (PyErr_Occurred()) SWIG_fail
; 
11838     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyVListBox
, 1); 
11845 static PyObject 
*_wrap_VListBox__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11846     PyObject 
*resultobj
; 
11847     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
11848     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
11849     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
11850     PyObject 
* obj0 
= 0 ; 
11851     PyObject 
* obj1 
= 0 ; 
11852     PyObject 
* obj2 
= 0 ; 
11853     char *kwnames
[] = { 
11854         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
11857     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11858     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
11859     if (SWIG_arg_fail(1)) SWIG_fail
; 
11863         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11864         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
11866         wxPyEndAllowThreads(__tstate
); 
11867         if (PyErr_Occurred()) SWIG_fail
; 
11869     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11876 static PyObject 
*_wrap_VListBox_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11877     PyObject 
*resultobj
; 
11878     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
11879     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
11880     int arg3 
= (int) wxID_ANY 
; 
11881     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
11882     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
11883     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
11884     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
11885     long arg6 
= (long) 0 ; 
11886     wxString 
const &arg7_defvalue 
= wxPyVListBoxNameStr 
; 
11887     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
11891     bool temp7 
= false ; 
11892     PyObject 
* obj0 
= 0 ; 
11893     PyObject 
* obj1 
= 0 ; 
11894     PyObject 
* obj2 
= 0 ; 
11895     PyObject 
* obj3 
= 0 ; 
11896     PyObject 
* obj4 
= 0 ; 
11897     PyObject 
* obj5 
= 0 ; 
11898     PyObject 
* obj6 
= 0 ; 
11899     char *kwnames
[] = { 
11900         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
11903     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:VListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
11904     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
11905     if (SWIG_arg_fail(1)) SWIG_fail
; 
11906     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11907     if (SWIG_arg_fail(2)) SWIG_fail
; 
11910             arg3 
= (int)(SWIG_As_int(obj2
));  
11911             if (SWIG_arg_fail(3)) SWIG_fail
; 
11917             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
11923             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
11928             arg6 
= (long)(SWIG_As_long(obj5
));  
11929             if (SWIG_arg_fail(6)) SWIG_fail
; 
11934             arg7 
= wxString_in_helper(obj6
); 
11935             if (arg7 
== NULL
) SWIG_fail
; 
11940         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11941         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
11943         wxPyEndAllowThreads(__tstate
); 
11944         if (PyErr_Occurred()) SWIG_fail
; 
11947         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11963 static PyObject 
*_wrap_VListBox_GetItemCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11964     PyObject 
*resultobj
; 
11965     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
11967     PyObject 
* obj0 
= 0 ; 
11968     char *kwnames
[] = { 
11969         (char *) "self", NULL 
 
11972     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetItemCount",kwnames
,&obj0
)) goto fail
; 
11973     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
11974     if (SWIG_arg_fail(1)) SWIG_fail
; 
11976         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11977         result 
= (size_t)((wxPyVListBox 
const *)arg1
)->GetItemCount(); 
11979         wxPyEndAllowThreads(__tstate
); 
11980         if (PyErr_Occurred()) SWIG_fail
; 
11983         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
11991 static PyObject 
*_wrap_VListBox_HasMultipleSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11992     PyObject 
*resultobj
; 
11993     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
11995     PyObject 
* obj0 
= 0 ; 
11996     char *kwnames
[] = { 
11997         (char *) "self", NULL 
 
12000     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_HasMultipleSelection",kwnames
,&obj0
)) goto fail
; 
12001     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12002     if (SWIG_arg_fail(1)) SWIG_fail
; 
12004         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12005         result 
= (bool)((wxPyVListBox 
const *)arg1
)->HasMultipleSelection(); 
12007         wxPyEndAllowThreads(__tstate
); 
12008         if (PyErr_Occurred()) SWIG_fail
; 
12011         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12019 static PyObject 
*_wrap_VListBox_GetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12020     PyObject 
*resultobj
; 
12021     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12023     PyObject 
* obj0 
= 0 ; 
12024     char *kwnames
[] = { 
12025         (char *) "self", NULL 
 
12028     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetSelection",kwnames
,&obj0
)) goto fail
; 
12029     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12030     if (SWIG_arg_fail(1)) SWIG_fail
; 
12032         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12033         result 
= (int)((wxPyVListBox 
const *)arg1
)->GetSelection(); 
12035         wxPyEndAllowThreads(__tstate
); 
12036         if (PyErr_Occurred()) SWIG_fail
; 
12039         resultobj 
= SWIG_From_int((int)(result
));  
12047 static PyObject 
*_wrap_VListBox_IsCurrent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12048     PyObject 
*resultobj
; 
12049     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12052     PyObject 
* obj0 
= 0 ; 
12053     PyObject 
* obj1 
= 0 ; 
12054     char *kwnames
[] = { 
12055         (char *) "self",(char *) "item", NULL 
 
12058     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsCurrent",kwnames
,&obj0
,&obj1
)) goto fail
; 
12059     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12060     if (SWIG_arg_fail(1)) SWIG_fail
; 
12062         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12063         if (SWIG_arg_fail(2)) SWIG_fail
; 
12066         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12067         result 
= (bool)((wxPyVListBox 
const *)arg1
)->IsCurrent(arg2
); 
12069         wxPyEndAllowThreads(__tstate
); 
12070         if (PyErr_Occurred()) SWIG_fail
; 
12073         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12081 static PyObject 
*_wrap_VListBox_IsSelected(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12082     PyObject 
*resultobj
; 
12083     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12086     PyObject 
* obj0 
= 0 ; 
12087     PyObject 
* obj1 
= 0 ; 
12088     char *kwnames
[] = { 
12089         (char *) "self",(char *) "item", NULL 
 
12092     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_IsSelected",kwnames
,&obj0
,&obj1
)) goto fail
; 
12093     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12094     if (SWIG_arg_fail(1)) SWIG_fail
; 
12096         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12097         if (SWIG_arg_fail(2)) SWIG_fail
; 
12100         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12101         result 
= (bool)((wxPyVListBox 
const *)arg1
)->IsSelected(arg2
); 
12103         wxPyEndAllowThreads(__tstate
); 
12104         if (PyErr_Occurred()) SWIG_fail
; 
12107         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12115 static PyObject 
*_wrap_VListBox_GetSelectedCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12116     PyObject 
*resultobj
; 
12117     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12119     PyObject 
* obj0 
= 0 ; 
12120     char *kwnames
[] = { 
12121         (char *) "self", NULL 
 
12124     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetSelectedCount",kwnames
,&obj0
)) goto fail
; 
12125     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12126     if (SWIG_arg_fail(1)) SWIG_fail
; 
12128         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12129         result 
= (size_t)((wxPyVListBox 
const *)arg1
)->GetSelectedCount(); 
12131         wxPyEndAllowThreads(__tstate
); 
12132         if (PyErr_Occurred()) SWIG_fail
; 
12135         resultobj 
= SWIG_From_unsigned_SS_long((unsigned long)(result
));  
12143 static PyObject 
*_wrap_VListBox_GetFirstSelected(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12144     PyObject 
*resultobj
; 
12145     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12147     PyObject 
* obj0 
= 0 ; 
12148     char *kwnames
[] = { 
12149         (char *) "self", NULL 
 
12152     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetFirstSelected",kwnames
,&obj0
)) goto fail
; 
12153     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12154     if (SWIG_arg_fail(1)) SWIG_fail
; 
12156         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12157         result 
= (PyObject 
*)wxPyVListBox_GetFirstSelected(arg1
); 
12159         wxPyEndAllowThreads(__tstate
); 
12160         if (PyErr_Occurred()) SWIG_fail
; 
12162     resultobj 
= result
; 
12169 static PyObject 
*_wrap_VListBox_GetNextSelected(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12170     PyObject 
*resultobj
; 
12171     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12172     unsigned long arg2 
; 
12174     PyObject 
* obj0 
= 0 ; 
12175     PyObject 
* obj1 
= 0 ; 
12176     char *kwnames
[] = { 
12177         (char *) "self",(char *) "cookie", NULL 
 
12180     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_GetNextSelected",kwnames
,&obj0
,&obj1
)) goto fail
; 
12181     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12182     if (SWIG_arg_fail(1)) SWIG_fail
; 
12184         arg2 
= (unsigned long)(SWIG_As_unsigned_SS_long(obj1
));  
12185         if (SWIG_arg_fail(2)) SWIG_fail
; 
12188         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12189         result 
= (PyObject 
*)wxPyVListBox_GetNextSelected(arg1
,arg2
); 
12191         wxPyEndAllowThreads(__tstate
); 
12192         if (PyErr_Occurred()) SWIG_fail
; 
12194     resultobj 
= result
; 
12201 static PyObject 
*_wrap_VListBox_GetMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12202     PyObject 
*resultobj
; 
12203     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12205     PyObject 
* obj0 
= 0 ; 
12206     char *kwnames
[] = { 
12207         (char *) "self", NULL 
 
12210     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetMargins",kwnames
,&obj0
)) goto fail
; 
12211     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12212     if (SWIG_arg_fail(1)) SWIG_fail
; 
12214         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12215         result 
= ((wxPyVListBox 
const *)arg1
)->GetMargins(); 
12217         wxPyEndAllowThreads(__tstate
); 
12218         if (PyErr_Occurred()) SWIG_fail
; 
12221         wxPoint 
* resultptr
; 
12222         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
12223         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
12231 static PyObject 
*_wrap_VListBox_GetSelectionBackground(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12232     PyObject 
*resultobj
; 
12233     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12235     PyObject 
* obj0 
= 0 ; 
12236     char *kwnames
[] = { 
12237         (char *) "self", NULL 
 
12240     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_GetSelectionBackground",kwnames
,&obj0
)) goto fail
; 
12241     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12242     if (SWIG_arg_fail(1)) SWIG_fail
; 
12244         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12246             wxColour 
const &_result_ref 
= ((wxPyVListBox 
const *)arg1
)->GetSelectionBackground(); 
12247             result 
= (wxColour 
*) &_result_ref
; 
12250         wxPyEndAllowThreads(__tstate
); 
12251         if (PyErr_Occurred()) SWIG_fail
; 
12253     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0); 
12260 static PyObject 
*_wrap_VListBox_SetItemCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12261     PyObject 
*resultobj
; 
12262     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12264     PyObject 
* obj0 
= 0 ; 
12265     PyObject 
* obj1 
= 0 ; 
12266     char *kwnames
[] = { 
12267         (char *) "self",(char *) "count", NULL 
 
12270     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) goto fail
; 
12271     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12272     if (SWIG_arg_fail(1)) SWIG_fail
; 
12274         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12275         if (SWIG_arg_fail(2)) SWIG_fail
; 
12278         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12279         (arg1
)->SetItemCount(arg2
); 
12281         wxPyEndAllowThreads(__tstate
); 
12282         if (PyErr_Occurred()) SWIG_fail
; 
12284     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12291 static PyObject 
*_wrap_VListBox_Clear(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12292     PyObject 
*resultobj
; 
12293     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12294     PyObject 
* obj0 
= 0 ; 
12295     char *kwnames
[] = { 
12296         (char *) "self", NULL 
 
12299     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_Clear",kwnames
,&obj0
)) goto fail
; 
12300     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12301     if (SWIG_arg_fail(1)) SWIG_fail
; 
12303         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12306         wxPyEndAllowThreads(__tstate
); 
12307         if (PyErr_Occurred()) SWIG_fail
; 
12309     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12316 static PyObject 
*_wrap_VListBox_SetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12317     PyObject 
*resultobj
; 
12318     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12320     PyObject 
* obj0 
= 0 ; 
12321     PyObject 
* obj1 
= 0 ; 
12322     char *kwnames
[] = { 
12323         (char *) "self",(char *) "selection", NULL 
 
12326     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
12327     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12328     if (SWIG_arg_fail(1)) SWIG_fail
; 
12330         arg2 
= (int)(SWIG_As_int(obj1
));  
12331         if (SWIG_arg_fail(2)) SWIG_fail
; 
12334         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12335         (arg1
)->SetSelection(arg2
); 
12337         wxPyEndAllowThreads(__tstate
); 
12338         if (PyErr_Occurred()) SWIG_fail
; 
12340     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12347 static PyObject 
*_wrap_VListBox_Select(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12348     PyObject 
*resultobj
; 
12349     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12351     bool arg3 
= (bool) true ; 
12353     PyObject 
* obj0 
= 0 ; 
12354     PyObject 
* obj1 
= 0 ; 
12355     PyObject 
* obj2 
= 0 ; 
12356     char *kwnames
[] = { 
12357         (char *) "self",(char *) "item",(char *) "select", NULL 
 
12360     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:VListBox_Select",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12361     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12362     if (SWIG_arg_fail(1)) SWIG_fail
; 
12364         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12365         if (SWIG_arg_fail(2)) SWIG_fail
; 
12369             arg3 
= (bool)(SWIG_As_bool(obj2
));  
12370             if (SWIG_arg_fail(3)) SWIG_fail
; 
12374         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12375         result 
= (bool)(arg1
)->Select(arg2
,arg3
); 
12377         wxPyEndAllowThreads(__tstate
); 
12378         if (PyErr_Occurred()) SWIG_fail
; 
12381         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12389 static PyObject 
*_wrap_VListBox_SelectRange(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12390     PyObject 
*resultobj
; 
12391     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12395     PyObject 
* obj0 
= 0 ; 
12396     PyObject 
* obj1 
= 0 ; 
12397     PyObject 
* obj2 
= 0 ; 
12398     char *kwnames
[] = { 
12399         (char *) "self",(char *) "from",(char *) "to", NULL 
 
12402     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SelectRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12403     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12404     if (SWIG_arg_fail(1)) SWIG_fail
; 
12406         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12407         if (SWIG_arg_fail(2)) SWIG_fail
; 
12410         arg3 
= (size_t)(SWIG_As_unsigned_SS_long(obj2
));  
12411         if (SWIG_arg_fail(3)) SWIG_fail
; 
12414         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12415         result 
= (bool)(arg1
)->SelectRange(arg2
,arg3
); 
12417         wxPyEndAllowThreads(__tstate
); 
12418         if (PyErr_Occurred()) SWIG_fail
; 
12421         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12429 static PyObject 
*_wrap_VListBox_Toggle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12430     PyObject 
*resultobj
; 
12431     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12433     PyObject 
* obj0 
= 0 ; 
12434     PyObject 
* obj1 
= 0 ; 
12435     char *kwnames
[] = { 
12436         (char *) "self",(char *) "item", NULL 
 
12439     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_Toggle",kwnames
,&obj0
,&obj1
)) goto fail
; 
12440     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12441     if (SWIG_arg_fail(1)) SWIG_fail
; 
12443         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12444         if (SWIG_arg_fail(2)) SWIG_fail
; 
12447         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12448         (arg1
)->Toggle(arg2
); 
12450         wxPyEndAllowThreads(__tstate
); 
12451         if (PyErr_Occurred()) SWIG_fail
; 
12453     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12460 static PyObject 
*_wrap_VListBox_SelectAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12461     PyObject 
*resultobj
; 
12462     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12464     PyObject 
* obj0 
= 0 ; 
12465     char *kwnames
[] = { 
12466         (char *) "self", NULL 
 
12469     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_SelectAll",kwnames
,&obj0
)) goto fail
; 
12470     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12471     if (SWIG_arg_fail(1)) SWIG_fail
; 
12473         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12474         result 
= (bool)(arg1
)->SelectAll(); 
12476         wxPyEndAllowThreads(__tstate
); 
12477         if (PyErr_Occurred()) SWIG_fail
; 
12480         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12488 static PyObject 
*_wrap_VListBox_DeselectAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12489     PyObject 
*resultobj
; 
12490     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12492     PyObject 
* obj0 
= 0 ; 
12493     char *kwnames
[] = { 
12494         (char *) "self", NULL 
 
12497     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:VListBox_DeselectAll",kwnames
,&obj0
)) goto fail
; 
12498     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12499     if (SWIG_arg_fail(1)) SWIG_fail
; 
12501         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12502         result 
= (bool)(arg1
)->DeselectAll(); 
12504         wxPyEndAllowThreads(__tstate
); 
12505         if (PyErr_Occurred()) SWIG_fail
; 
12508         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12516 static PyObject 
*_wrap_VListBox_SetMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12517     PyObject 
*resultobj
; 
12518     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12519     wxPoint 
*arg2 
= 0 ; 
12521     PyObject 
* obj0 
= 0 ; 
12522     PyObject 
* obj1 
= 0 ; 
12523     char *kwnames
[] = { 
12524         (char *) "self",(char *) "pt", NULL 
 
12527     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetMargins",kwnames
,&obj0
,&obj1
)) goto fail
; 
12528     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12529     if (SWIG_arg_fail(1)) SWIG_fail
; 
12532         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
12535         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12536         (arg1
)->SetMargins((wxPoint 
const &)*arg2
); 
12538         wxPyEndAllowThreads(__tstate
); 
12539         if (PyErr_Occurred()) SWIG_fail
; 
12541     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12548 static PyObject 
*_wrap_VListBox_SetMarginsXY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12549     PyObject 
*resultobj
; 
12550     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12553     PyObject 
* obj0 
= 0 ; 
12554     PyObject 
* obj1 
= 0 ; 
12555     PyObject 
* obj2 
= 0 ; 
12556     char *kwnames
[] = { 
12557         (char *) "self",(char *) "x",(char *) "y", NULL 
 
12560     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:VListBox_SetMarginsXY",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12561     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12562     if (SWIG_arg_fail(1)) SWIG_fail
; 
12564         arg2 
= (int)(SWIG_As_int(obj1
));  
12565         if (SWIG_arg_fail(2)) SWIG_fail
; 
12568         arg3 
= (int)(SWIG_As_int(obj2
));  
12569         if (SWIG_arg_fail(3)) SWIG_fail
; 
12572         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12573         (arg1
)->SetMargins(arg2
,arg3
); 
12575         wxPyEndAllowThreads(__tstate
); 
12576         if (PyErr_Occurred()) SWIG_fail
; 
12578     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12585 static PyObject 
*_wrap_VListBox_SetSelectionBackground(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12586     PyObject 
*resultobj
; 
12587     wxPyVListBox 
*arg1 
= (wxPyVListBox 
*) 0 ; 
12588     wxColour 
*arg2 
= 0 ; 
12590     PyObject 
* obj0 
= 0 ; 
12591     PyObject 
* obj1 
= 0 ; 
12592     char *kwnames
[] = { 
12593         (char *) "self",(char *) "col", NULL 
 
12596     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:VListBox_SetSelectionBackground",kwnames
,&obj0
,&obj1
)) goto fail
; 
12597     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyVListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12598     if (SWIG_arg_fail(1)) SWIG_fail
; 
12601         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
12604         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12605         (arg1
)->SetSelectionBackground((wxColour 
const &)*arg2
); 
12607         wxPyEndAllowThreads(__tstate
); 
12608         if (PyErr_Occurred()) SWIG_fail
; 
12610     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12617 static PyObject 
* VListBox_swigregister(PyObject 
*, PyObject 
*args
) { 
12619     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12620     SWIG_TypeClientData(SWIGTYPE_p_wxPyVListBox
, obj
); 
12622     return Py_BuildValue((char *)""); 
12624 static PyObject 
*_wrap_new_HtmlListBox(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12625     PyObject 
*resultobj
; 
12626     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
12627     int arg2 
= (int) wxID_ANY 
; 
12628     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
12629     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
12630     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
12631     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
12632     long arg5 
= (long) 0 ; 
12633     wxString 
const &arg6_defvalue 
= wxPyVListBoxNameStr 
; 
12634     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
12635     wxPyHtmlListBox 
*result
; 
12638     bool temp6 
= false ; 
12639     PyObject 
* obj0 
= 0 ; 
12640     PyObject 
* obj1 
= 0 ; 
12641     PyObject 
* obj2 
= 0 ; 
12642     PyObject 
* obj3 
= 0 ; 
12643     PyObject 
* obj4 
= 0 ; 
12644     PyObject 
* obj5 
= 0 ; 
12645     char *kwnames
[] = { 
12646         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
12649     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlListBox",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
12650     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12651     if (SWIG_arg_fail(1)) SWIG_fail
; 
12654             arg2 
= (int)(SWIG_As_int(obj1
));  
12655             if (SWIG_arg_fail(2)) SWIG_fail
; 
12661             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
12667             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
12672             arg5 
= (long)(SWIG_As_long(obj4
));  
12673             if (SWIG_arg_fail(5)) SWIG_fail
; 
12678             arg6 
= wxString_in_helper(obj5
); 
12679             if (arg6 
== NULL
) SWIG_fail
; 
12684         if (!wxPyCheckForApp()) SWIG_fail
; 
12685         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12686         result 
= (wxPyHtmlListBox 
*)new wxPyHtmlListBox(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
12688         wxPyEndAllowThreads(__tstate
); 
12689         if (PyErr_Occurred()) SWIG_fail
; 
12691     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlListBox
, 1); 
12706 static PyObject 
*_wrap_new_PreHtmlListBox(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12707     PyObject 
*resultobj
; 
12708     wxPyHtmlListBox 
*result
; 
12709     char *kwnames
[] = { 
12713     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreHtmlListBox",kwnames
)) goto fail
; 
12715         if (!wxPyCheckForApp()) SWIG_fail
; 
12716         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12717         result 
= (wxPyHtmlListBox 
*)new wxPyHtmlListBox(); 
12719         wxPyEndAllowThreads(__tstate
); 
12720         if (PyErr_Occurred()) SWIG_fail
; 
12722     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlListBox
, 1); 
12729 static PyObject 
*_wrap_HtmlListBox__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12730     PyObject 
*resultobj
; 
12731     wxPyHtmlListBox 
*arg1 
= (wxPyHtmlListBox 
*) 0 ; 
12732     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
12733     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
12734     PyObject 
* obj0 
= 0 ; 
12735     PyObject 
* obj1 
= 0 ; 
12736     PyObject 
* obj2 
= 0 ; 
12737     char *kwnames
[] = { 
12738         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
12741     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlListBox__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12742     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12743     if (SWIG_arg_fail(1)) SWIG_fail
; 
12747         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12748         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
12750         wxPyEndAllowThreads(__tstate
); 
12751         if (PyErr_Occurred()) SWIG_fail
; 
12753     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12760 static PyObject 
*_wrap_HtmlListBox_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12761     PyObject 
*resultobj
; 
12762     wxPyHtmlListBox 
*arg1 
= (wxPyHtmlListBox 
*) 0 ; 
12763     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
12764     int arg3 
= (int) wxID_ANY 
; 
12765     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
12766     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
12767     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
12768     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
12769     long arg6 
= (long) 0 ; 
12770     wxString 
const &arg7_defvalue 
= wxPyVListBoxNameStr 
; 
12771     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
12775     bool temp7 
= false ; 
12776     PyObject 
* obj0 
= 0 ; 
12777     PyObject 
* obj1 
= 0 ; 
12778     PyObject 
* obj2 
= 0 ; 
12779     PyObject 
* obj3 
= 0 ; 
12780     PyObject 
* obj4 
= 0 ; 
12781     PyObject 
* obj5 
= 0 ; 
12782     PyObject 
* obj6 
= 0 ; 
12783     char *kwnames
[] = { 
12784         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
12787     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlListBox_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
12788     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12789     if (SWIG_arg_fail(1)) SWIG_fail
; 
12790     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12791     if (SWIG_arg_fail(2)) SWIG_fail
; 
12794             arg3 
= (int)(SWIG_As_int(obj2
));  
12795             if (SWIG_arg_fail(3)) SWIG_fail
; 
12801             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
12807             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
12812             arg6 
= (long)(SWIG_As_long(obj5
));  
12813             if (SWIG_arg_fail(6)) SWIG_fail
; 
12818             arg7 
= wxString_in_helper(obj6
); 
12819             if (arg7 
== NULL
) SWIG_fail
; 
12824         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12825         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
12827         wxPyEndAllowThreads(__tstate
); 
12828         if (PyErr_Occurred()) SWIG_fail
; 
12831         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12847 static PyObject 
*_wrap_HtmlListBox_RefreshAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12848     PyObject 
*resultobj
; 
12849     wxPyHtmlListBox 
*arg1 
= (wxPyHtmlListBox 
*) 0 ; 
12850     PyObject 
* obj0 
= 0 ; 
12851     char *kwnames
[] = { 
12852         (char *) "self", NULL 
 
12855     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlListBox_RefreshAll",kwnames
,&obj0
)) goto fail
; 
12856     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12857     if (SWIG_arg_fail(1)) SWIG_fail
; 
12859         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12860         (arg1
)->RefreshAll(); 
12862         wxPyEndAllowThreads(__tstate
); 
12863         if (PyErr_Occurred()) SWIG_fail
; 
12865     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12872 static PyObject 
*_wrap_HtmlListBox_SetItemCount(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12873     PyObject 
*resultobj
; 
12874     wxPyHtmlListBox 
*arg1 
= (wxPyHtmlListBox 
*) 0 ; 
12876     PyObject 
* obj0 
= 0 ; 
12877     PyObject 
* obj1 
= 0 ; 
12878     char *kwnames
[] = { 
12879         (char *) "self",(char *) "count", NULL 
 
12882     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlListBox_SetItemCount",kwnames
,&obj0
,&obj1
)) goto fail
; 
12883     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12884     if (SWIG_arg_fail(1)) SWIG_fail
; 
12886         arg2 
= (size_t)(SWIG_As_unsigned_SS_long(obj1
));  
12887         if (SWIG_arg_fail(2)) SWIG_fail
; 
12890         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12891         (arg1
)->SetItemCount(arg2
); 
12893         wxPyEndAllowThreads(__tstate
); 
12894         if (PyErr_Occurred()) SWIG_fail
; 
12896     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12903 static PyObject 
*_wrap_HtmlListBox_GetFileSystem(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12904     PyObject 
*resultobj
; 
12905     wxPyHtmlListBox 
*arg1 
= (wxPyHtmlListBox 
*) 0 ; 
12906     wxFileSystem 
*result
; 
12907     PyObject 
* obj0 
= 0 ; 
12908     char *kwnames
[] = { 
12909         (char *) "self", NULL 
 
12912     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlListBox_GetFileSystem",kwnames
,&obj0
)) goto fail
; 
12913     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlListBox
, SWIG_POINTER_EXCEPTION 
| 0); 
12914     if (SWIG_arg_fail(1)) SWIG_fail
; 
12916         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12918             wxFileSystem 
&_result_ref 
= (arg1
)->GetFileSystem(); 
12919             result 
= (wxFileSystem 
*) &_result_ref
; 
12922         wxPyEndAllowThreads(__tstate
); 
12923         if (PyErr_Occurred()) SWIG_fail
; 
12925     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFileSystem
, 0); 
12932 static PyObject 
* HtmlListBox_swigregister(PyObject 
*, PyObject 
*args
) { 
12934     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12935     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlListBox
, obj
); 
12937     return Py_BuildValue((char *)""); 
12939 static PyObject 
*_wrap_new_TaskBarIcon(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12940     PyObject 
*resultobj
; 
12941     wxPyTaskBarIcon 
*result
; 
12942     char *kwnames
[] = { 
12946     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_TaskBarIcon",kwnames
)) goto fail
; 
12948         if (!wxPyCheckForApp()) SWIG_fail
; 
12949         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12950         result 
= (wxPyTaskBarIcon 
*)new wxPyTaskBarIcon(); 
12952         wxPyEndAllowThreads(__tstate
); 
12953         if (PyErr_Occurred()) SWIG_fail
; 
12955     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyTaskBarIcon
, 1); 
12962 static PyObject 
*_wrap_TaskBarIcon__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12963     PyObject 
*resultobj
; 
12964     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
12965     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
12966     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
12968     PyObject 
* obj0 
= 0 ; 
12969     PyObject 
* obj1 
= 0 ; 
12970     PyObject 
* obj2 
= 0 ; 
12971     PyObject 
* obj3 
= 0 ; 
12972     char *kwnames
[] = { 
12973         (char *) "self",(char *) "self",(char *) "_class",(char *) "incref", NULL 
 
12976     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:TaskBarIcon__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
12977     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
12978     if (SWIG_arg_fail(1)) SWIG_fail
; 
12982         arg4 
= (int)(SWIG_As_int(obj3
));  
12983         if (SWIG_arg_fail(4)) SWIG_fail
; 
12986         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12987         (arg1
)->_setCallbackInfo(arg2
,arg3
,arg4
); 
12989         wxPyEndAllowThreads(__tstate
); 
12990         if (PyErr_Occurred()) SWIG_fail
; 
12992     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12999 static PyObject 
*_wrap_TaskBarIcon_Destroy(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13000     PyObject 
*resultobj
; 
13001     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13002     PyObject 
* obj0 
= 0 ; 
13003     char *kwnames
[] = { 
13004         (char *) "self", NULL 
 
13007     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TaskBarIcon_Destroy",kwnames
,&obj0
)) goto fail
; 
13008     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13009     if (SWIG_arg_fail(1)) SWIG_fail
; 
13011         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13012         wxPyTaskBarIcon_Destroy(arg1
); 
13014         wxPyEndAllowThreads(__tstate
); 
13015         if (PyErr_Occurred()) SWIG_fail
; 
13017     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13024 static PyObject 
*_wrap_TaskBarIcon_IsOk(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13025     PyObject 
*resultobj
; 
13026     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13028     PyObject 
* obj0 
= 0 ; 
13029     char *kwnames
[] = { 
13030         (char *) "self", NULL 
 
13033     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TaskBarIcon_IsOk",kwnames
,&obj0
)) goto fail
; 
13034     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13035     if (SWIG_arg_fail(1)) SWIG_fail
; 
13037         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13038         result 
= (bool)((wxPyTaskBarIcon 
const *)arg1
)->IsOk(); 
13040         wxPyEndAllowThreads(__tstate
); 
13041         if (PyErr_Occurred()) SWIG_fail
; 
13044         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13052 static PyObject 
*_wrap_TaskBarIcon_IsIconInstalled(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13053     PyObject 
*resultobj
; 
13054     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13056     PyObject 
* obj0 
= 0 ; 
13057     char *kwnames
[] = { 
13058         (char *) "self", NULL 
 
13061     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TaskBarIcon_IsIconInstalled",kwnames
,&obj0
)) goto fail
; 
13062     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13063     if (SWIG_arg_fail(1)) SWIG_fail
; 
13065         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13066         result 
= (bool)((wxPyTaskBarIcon 
const *)arg1
)->IsIconInstalled(); 
13068         wxPyEndAllowThreads(__tstate
); 
13069         if (PyErr_Occurred()) SWIG_fail
; 
13072         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13080 static PyObject 
*_wrap_TaskBarIcon_SetIcon(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13081     PyObject 
*resultobj
; 
13082     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13084     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
13085     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
13087     bool temp3 
= false ; 
13088     PyObject 
* obj0 
= 0 ; 
13089     PyObject 
* obj1 
= 0 ; 
13090     PyObject 
* obj2 
= 0 ; 
13091     char *kwnames
[] = { 
13092         (char *) "self",(char *) "icon",(char *) "tooltip", NULL 
 
13095     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:TaskBarIcon_SetIcon",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
13096     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13097     if (SWIG_arg_fail(1)) SWIG_fail
; 
13099         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13100         if (SWIG_arg_fail(2)) SWIG_fail
; 
13101         if (arg2 
== NULL
) { 
13102             SWIG_null_ref("wxIcon"); 
13104         if (SWIG_arg_fail(2)) SWIG_fail
; 
13108             arg3 
= wxString_in_helper(obj2
); 
13109             if (arg3 
== NULL
) SWIG_fail
; 
13114         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13115         result 
= (bool)(arg1
)->SetIcon((wxIcon 
const &)*arg2
,(wxString 
const &)*arg3
); 
13117         wxPyEndAllowThreads(__tstate
); 
13118         if (PyErr_Occurred()) SWIG_fail
; 
13121         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13137 static PyObject 
*_wrap_TaskBarIcon_RemoveIcon(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13138     PyObject 
*resultobj
; 
13139     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13141     PyObject 
* obj0 
= 0 ; 
13142     char *kwnames
[] = { 
13143         (char *) "self", NULL 
 
13146     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TaskBarIcon_RemoveIcon",kwnames
,&obj0
)) goto fail
; 
13147     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13148     if (SWIG_arg_fail(1)) SWIG_fail
; 
13150         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13151         result 
= (bool)(arg1
)->RemoveIcon(); 
13153         wxPyEndAllowThreads(__tstate
); 
13154         if (PyErr_Occurred()) SWIG_fail
; 
13157         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13165 static PyObject 
*_wrap_TaskBarIcon_PopupMenu(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13166     PyObject 
*resultobj
; 
13167     wxPyTaskBarIcon 
*arg1 
= (wxPyTaskBarIcon 
*) 0 ; 
13168     wxMenu 
*arg2 
= (wxMenu 
*) 0 ; 
13170     PyObject 
* obj0 
= 0 ; 
13171     PyObject 
* obj1 
= 0 ; 
13172     char *kwnames
[] = { 
13173         (char *) "self",(char *) "menu", NULL 
 
13176     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TaskBarIcon_PopupMenu",kwnames
,&obj0
,&obj1
)) goto fail
; 
13177     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13178     if (SWIG_arg_fail(1)) SWIG_fail
; 
13179     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMenu
, SWIG_POINTER_EXCEPTION 
| 0); 
13180     if (SWIG_arg_fail(2)) SWIG_fail
; 
13182         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13183         result 
= (bool)(arg1
)->PopupMenu(arg2
); 
13185         wxPyEndAllowThreads(__tstate
); 
13186         if (PyErr_Occurred()) SWIG_fail
; 
13189         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13197 static PyObject 
* TaskBarIcon_swigregister(PyObject 
*, PyObject 
*args
) { 
13199     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13200     SWIG_TypeClientData(SWIGTYPE_p_wxPyTaskBarIcon
, obj
); 
13202     return Py_BuildValue((char *)""); 
13204 static PyObject 
*_wrap_new_TaskBarIconEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13205     PyObject 
*resultobj
; 
13207     wxTaskBarIcon 
*arg2 
= (wxTaskBarIcon 
*) 0 ; 
13208     wxTaskBarIconEvent 
*result
; 
13209     PyObject 
* obj0 
= 0 ; 
13210     PyObject 
* obj1 
= 0 ; 
13211     char *kwnames
[] = { 
13212         (char *) "evtType",(char *) "tbIcon", NULL 
 
13215     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_TaskBarIconEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
13217         arg1 
= (wxEventType
)(SWIG_As_int(obj0
));  
13218         if (SWIG_arg_fail(1)) SWIG_fail
; 
13220     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxTaskBarIcon
, SWIG_POINTER_EXCEPTION 
| 0); 
13221     if (SWIG_arg_fail(2)) SWIG_fail
; 
13223         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13224         result 
= (wxTaskBarIconEvent 
*)new wxTaskBarIconEvent(arg1
,arg2
); 
13226         wxPyEndAllowThreads(__tstate
); 
13227         if (PyErr_Occurred()) SWIG_fail
; 
13229     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTaskBarIconEvent
, 1); 
13236 static PyObject 
* TaskBarIconEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
13238     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13239     SWIG_TypeClientData(SWIGTYPE_p_wxTaskBarIconEvent
, obj
); 
13241     return Py_BuildValue((char *)""); 
13243 static int _wrap_FileSelectorPromptStr_set(PyObject 
*) { 
13244     PyErr_SetString(PyExc_TypeError
,"Variable FileSelectorPromptStr is read-only."); 
13249 static PyObject 
*_wrap_FileSelectorPromptStr_get(void) { 
13254         pyobj 
= PyUnicode_FromWideChar((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len()); 
13256         pyobj 
= PyString_FromStringAndSize((&wxPyFileSelectorPromptStr
)->c_str(), (&wxPyFileSelectorPromptStr
)->Len()); 
13263 static int _wrap_DirSelectorPromptStr_set(PyObject 
*) { 
13264     PyErr_SetString(PyExc_TypeError
,"Variable DirSelectorPromptStr is read-only."); 
13269 static PyObject 
*_wrap_DirSelectorPromptStr_get(void) { 
13274         pyobj 
= PyUnicode_FromWideChar((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len()); 
13276         pyobj 
= PyString_FromStringAndSize((&wxPyDirSelectorPromptStr
)->c_str(), (&wxPyDirSelectorPromptStr
)->Len()); 
13283 static int _wrap_DirDialogNameStr_set(PyObject 
*) { 
13284     PyErr_SetString(PyExc_TypeError
,"Variable DirDialogNameStr is read-only."); 
13289 static PyObject 
*_wrap_DirDialogNameStr_get(void) { 
13294         pyobj 
= PyUnicode_FromWideChar((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len()); 
13296         pyobj 
= PyString_FromStringAndSize((&wxPyDirDialogNameStr
)->c_str(), (&wxPyDirDialogNameStr
)->Len()); 
13303 static int _wrap_FileSelectorDefaultWildcardStr_set(PyObject 
*) { 
13304     PyErr_SetString(PyExc_TypeError
,"Variable FileSelectorDefaultWildcardStr is read-only."); 
13309 static PyObject 
*_wrap_FileSelectorDefaultWildcardStr_get(void) { 
13314         pyobj 
= PyUnicode_FromWideChar((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len()); 
13316         pyobj 
= PyString_FromStringAndSize((&wxPyFileSelectorDefaultWildcardStr
)->c_str(), (&wxPyFileSelectorDefaultWildcardStr
)->Len()); 
13323 static int _wrap_GetTextFromUserPromptStr_set(PyObject 
*) { 
13324     PyErr_SetString(PyExc_TypeError
,"Variable GetTextFromUserPromptStr is read-only."); 
13329 static PyObject 
*_wrap_GetTextFromUserPromptStr_get(void) { 
13334         pyobj 
= PyUnicode_FromWideChar((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len()); 
13336         pyobj 
= PyString_FromStringAndSize((&wxPyGetTextFromUserPromptStr
)->c_str(), (&wxPyGetTextFromUserPromptStr
)->Len()); 
13343 static int _wrap_MessageBoxCaptionStr_set(PyObject 
*) { 
13344     PyErr_SetString(PyExc_TypeError
,"Variable MessageBoxCaptionStr is read-only."); 
13349 static PyObject 
*_wrap_MessageBoxCaptionStr_get(void) { 
13354         pyobj 
= PyUnicode_FromWideChar((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len()); 
13356         pyobj 
= PyString_FromStringAndSize((&wxPyMessageBoxCaptionStr
)->c_str(), (&wxPyMessageBoxCaptionStr
)->Len()); 
13363 static PyObject 
*_wrap_new_ColourData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13364     PyObject 
*resultobj
; 
13365     wxColourData 
*result
; 
13366     char *kwnames
[] = { 
13370     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_ColourData",kwnames
)) goto fail
; 
13372         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13373         result 
= (wxColourData 
*)new wxColourData(); 
13375         wxPyEndAllowThreads(__tstate
); 
13376         if (PyErr_Occurred()) SWIG_fail
; 
13378     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColourData
, 1); 
13385 static PyObject 
*_wrap_delete_ColourData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13386     PyObject 
*resultobj
; 
13387     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13388     PyObject 
* obj0 
= 0 ; 
13389     char *kwnames
[] = { 
13390         (char *) "self", NULL 
 
13393     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_ColourData",kwnames
,&obj0
)) goto fail
; 
13394     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13395     if (SWIG_arg_fail(1)) SWIG_fail
; 
13397         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13400         wxPyEndAllowThreads(__tstate
); 
13401         if (PyErr_Occurred()) SWIG_fail
; 
13403     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13410 static PyObject 
*_wrap_ColourData_GetChooseFull(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13411     PyObject 
*resultobj
; 
13412     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13414     PyObject 
* obj0 
= 0 ; 
13415     char *kwnames
[] = { 
13416         (char *) "self", NULL 
 
13419     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ColourData_GetChooseFull",kwnames
,&obj0
)) goto fail
; 
13420     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13421     if (SWIG_arg_fail(1)) SWIG_fail
; 
13423         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13424         result 
= (bool)(arg1
)->GetChooseFull(); 
13426         wxPyEndAllowThreads(__tstate
); 
13427         if (PyErr_Occurred()) SWIG_fail
; 
13430         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13438 static PyObject 
*_wrap_ColourData_GetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13439     PyObject 
*resultobj
; 
13440     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13442     PyObject 
* obj0 
= 0 ; 
13443     char *kwnames
[] = { 
13444         (char *) "self", NULL 
 
13447     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ColourData_GetColour",kwnames
,&obj0
)) goto fail
; 
13448     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13449     if (SWIG_arg_fail(1)) SWIG_fail
; 
13451         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13452         result 
= (arg1
)->GetColour(); 
13454         wxPyEndAllowThreads(__tstate
); 
13455         if (PyErr_Occurred()) SWIG_fail
; 
13458         wxColour 
* resultptr
; 
13459         resultptr 
= new wxColour((wxColour 
&)(result
)); 
13460         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
13468 static PyObject 
*_wrap_ColourData_GetCustomColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13469     PyObject 
*resultobj
; 
13470     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13473     PyObject 
* obj0 
= 0 ; 
13474     PyObject 
* obj1 
= 0 ; 
13475     char *kwnames
[] = { 
13476         (char *) "self",(char *) "i", NULL 
 
13479     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_GetCustomColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
13480     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13481     if (SWIG_arg_fail(1)) SWIG_fail
; 
13483         arg2 
= (int)(SWIG_As_int(obj1
));  
13484         if (SWIG_arg_fail(2)) SWIG_fail
; 
13487         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13488         result 
= (arg1
)->GetCustomColour(arg2
); 
13490         wxPyEndAllowThreads(__tstate
); 
13491         if (PyErr_Occurred()) SWIG_fail
; 
13494         wxColour 
* resultptr
; 
13495         resultptr 
= new wxColour((wxColour 
&)(result
)); 
13496         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
13504 static PyObject 
*_wrap_ColourData_SetChooseFull(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13505     PyObject 
*resultobj
; 
13506     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13508     PyObject 
* obj0 
= 0 ; 
13509     PyObject 
* obj1 
= 0 ; 
13510     char *kwnames
[] = { 
13511         (char *) "self",(char *) "flag", NULL 
 
13514     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetChooseFull",kwnames
,&obj0
,&obj1
)) goto fail
; 
13515     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13516     if (SWIG_arg_fail(1)) SWIG_fail
; 
13518         arg2 
= (int)(SWIG_As_int(obj1
));  
13519         if (SWIG_arg_fail(2)) SWIG_fail
; 
13522         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13523         (arg1
)->SetChooseFull(arg2
); 
13525         wxPyEndAllowThreads(__tstate
); 
13526         if (PyErr_Occurred()) SWIG_fail
; 
13528     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13535 static PyObject 
*_wrap_ColourData_SetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13536     PyObject 
*resultobj
; 
13537     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13538     wxColour 
*arg2 
= 0 ; 
13540     PyObject 
* obj0 
= 0 ; 
13541     PyObject 
* obj1 
= 0 ; 
13542     char *kwnames
[] = { 
13543         (char *) "self",(char *) "colour", NULL 
 
13546     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:ColourData_SetColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
13547     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13548     if (SWIG_arg_fail(1)) SWIG_fail
; 
13551         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
13554         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13555         (arg1
)->SetColour((wxColour 
const &)*arg2
); 
13557         wxPyEndAllowThreads(__tstate
); 
13558         if (PyErr_Occurred()) SWIG_fail
; 
13560     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13567 static PyObject 
*_wrap_ColourData_SetCustomColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13568     PyObject 
*resultobj
; 
13569     wxColourData 
*arg1 
= (wxColourData 
*) 0 ; 
13571     wxColour 
*arg3 
= 0 ; 
13573     PyObject 
* obj0 
= 0 ; 
13574     PyObject 
* obj1 
= 0 ; 
13575     PyObject 
* obj2 
= 0 ; 
13576     char *kwnames
[] = { 
13577         (char *) "self",(char *) "i",(char *) "colour", NULL 
 
13580     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:ColourData_SetCustomColour",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
13581     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13582     if (SWIG_arg_fail(1)) SWIG_fail
; 
13584         arg2 
= (int)(SWIG_As_int(obj1
));  
13585         if (SWIG_arg_fail(2)) SWIG_fail
; 
13589         if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
13592         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13593         (arg1
)->SetCustomColour(arg2
,(wxColour 
const &)*arg3
); 
13595         wxPyEndAllowThreads(__tstate
); 
13596         if (PyErr_Occurred()) SWIG_fail
; 
13598     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13605 static PyObject 
* ColourData_swigregister(PyObject 
*, PyObject 
*args
) { 
13607     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13608     SWIG_TypeClientData(SWIGTYPE_p_wxColourData
, obj
); 
13610     return Py_BuildValue((char *)""); 
13612 static PyObject 
*_wrap_new_ColourDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13613     PyObject 
*resultobj
; 
13614     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
13615     wxColourData 
*arg2 
= (wxColourData 
*) NULL 
; 
13616     wxColourDialog 
*result
; 
13617     PyObject 
* obj0 
= 0 ; 
13618     PyObject 
* obj1 
= 0 ; 
13619     char *kwnames
[] = { 
13620         (char *) "parent",(char *) "data", NULL 
 
13623     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_ColourDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
13624     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
13625     if (SWIG_arg_fail(1)) SWIG_fail
; 
13627         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxColourData
, SWIG_POINTER_EXCEPTION 
| 0); 
13628         if (SWIG_arg_fail(2)) SWIG_fail
; 
13631         if (!wxPyCheckForApp()) SWIG_fail
; 
13632         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13633         result 
= (wxColourDialog 
*)new wxColourDialog(arg1
,arg2
); 
13635         wxPyEndAllowThreads(__tstate
); 
13636         if (PyErr_Occurred()) SWIG_fail
; 
13638     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColourDialog
, 1); 
13645 static PyObject 
*_wrap_ColourDialog_GetColourData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13646     PyObject 
*resultobj
; 
13647     wxColourDialog 
*arg1 
= (wxColourDialog 
*) 0 ; 
13648     wxColourData 
*result
; 
13649     PyObject 
* obj0 
= 0 ; 
13650     char *kwnames
[] = { 
13651         (char *) "self", NULL 
 
13654     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ColourDialog_GetColourData",kwnames
,&obj0
)) goto fail
; 
13655     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxColourDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13656     if (SWIG_arg_fail(1)) SWIG_fail
; 
13658         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13660             wxColourData 
&_result_ref 
= (arg1
)->GetColourData(); 
13661             result 
= (wxColourData 
*) &_result_ref
; 
13664         wxPyEndAllowThreads(__tstate
); 
13665         if (PyErr_Occurred()) SWIG_fail
; 
13667     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColourData
, 0); 
13674 static PyObject 
* ColourDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
13676     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13677     SWIG_TypeClientData(SWIGTYPE_p_wxColourDialog
, obj
); 
13679     return Py_BuildValue((char *)""); 
13681 static PyObject 
*_wrap_new_DirDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13682     PyObject 
*resultobj
; 
13683     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
13684     wxString 
const &arg2_defvalue 
= wxPyDirSelectorPromptStr 
; 
13685     wxString 
*arg2 
= (wxString 
*) &arg2_defvalue 
; 
13686     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
13687     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
13688     long arg4 
= (long) 0 ; 
13689     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
13690     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
13691     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
13692     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
13693     wxString 
const &arg7_defvalue 
= wxPyDirDialogNameStr 
; 
13694     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
13695     wxDirDialog 
*result
; 
13696     bool temp2 
= false ; 
13697     bool temp3 
= false ; 
13700     bool temp7 
= false ; 
13701     PyObject 
* obj0 
= 0 ; 
13702     PyObject 
* obj1 
= 0 ; 
13703     PyObject 
* obj2 
= 0 ; 
13704     PyObject 
* obj3 
= 0 ; 
13705     PyObject 
* obj4 
= 0 ; 
13706     PyObject 
* obj5 
= 0 ; 
13707     PyObject 
* obj6 
= 0 ; 
13708     char *kwnames
[] = { 
13709         (char *) "parent",(char *) "message",(char *) "defaultPath",(char *) "style",(char *) "pos",(char *) "size",(char *) "name", NULL 
 
13712     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_DirDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
13713     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
13714     if (SWIG_arg_fail(1)) SWIG_fail
; 
13717             arg2 
= wxString_in_helper(obj1
); 
13718             if (arg2 
== NULL
) SWIG_fail
; 
13724             arg3 
= wxString_in_helper(obj2
); 
13725             if (arg3 
== NULL
) SWIG_fail
; 
13731             arg4 
= (long)(SWIG_As_long(obj3
));  
13732             if (SWIG_arg_fail(4)) SWIG_fail
; 
13738             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
13744             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
13749             arg7 
= wxString_in_helper(obj6
); 
13750             if (arg7 
== NULL
) SWIG_fail
; 
13755         if (!wxPyCheckForApp()) SWIG_fail
; 
13756         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13757         result 
= (wxDirDialog 
*)new wxDirDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,(wxString 
const &)*arg7
); 
13759         wxPyEndAllowThreads(__tstate
); 
13760         if (PyErr_Occurred()) SWIG_fail
; 
13762     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxDirDialog
, 1); 
13793 static PyObject 
*_wrap_DirDialog_GetPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13794     PyObject 
*resultobj
; 
13795     wxDirDialog 
*arg1 
= (wxDirDialog 
*) 0 ; 
13797     PyObject 
* obj0 
= 0 ; 
13798     char *kwnames
[] = { 
13799         (char *) "self", NULL 
 
13802     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DirDialog_GetPath",kwnames
,&obj0
)) goto fail
; 
13803     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13804     if (SWIG_arg_fail(1)) SWIG_fail
; 
13806         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13807         result 
= (arg1
)->GetPath(); 
13809         wxPyEndAllowThreads(__tstate
); 
13810         if (PyErr_Occurred()) SWIG_fail
; 
13814         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
13816         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
13825 static PyObject 
*_wrap_DirDialog_GetMessage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13826     PyObject 
*resultobj
; 
13827     wxDirDialog 
*arg1 
= (wxDirDialog 
*) 0 ; 
13829     PyObject 
* obj0 
= 0 ; 
13830     char *kwnames
[] = { 
13831         (char *) "self", NULL 
 
13834     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DirDialog_GetMessage",kwnames
,&obj0
)) goto fail
; 
13835     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13836     if (SWIG_arg_fail(1)) SWIG_fail
; 
13838         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13839         result 
= (arg1
)->GetMessage(); 
13841         wxPyEndAllowThreads(__tstate
); 
13842         if (PyErr_Occurred()) SWIG_fail
; 
13846         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
13848         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
13857 static PyObject 
*_wrap_DirDialog_GetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13858     PyObject 
*resultobj
; 
13859     wxDirDialog 
*arg1 
= (wxDirDialog 
*) 0 ; 
13861     PyObject 
* obj0 
= 0 ; 
13862     char *kwnames
[] = { 
13863         (char *) "self", NULL 
 
13866     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:DirDialog_GetStyle",kwnames
,&obj0
)) goto fail
; 
13867     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13868     if (SWIG_arg_fail(1)) SWIG_fail
; 
13870         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13871         result 
= (long)(arg1
)->GetStyle(); 
13873         wxPyEndAllowThreads(__tstate
); 
13874         if (PyErr_Occurred()) SWIG_fail
; 
13877         resultobj 
= SWIG_From_long((long)(result
));  
13885 static PyObject 
*_wrap_DirDialog_SetMessage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13886     PyObject 
*resultobj
; 
13887     wxDirDialog 
*arg1 
= (wxDirDialog 
*) 0 ; 
13888     wxString 
*arg2 
= 0 ; 
13889     bool temp2 
= false ; 
13890     PyObject 
* obj0 
= 0 ; 
13891     PyObject 
* obj1 
= 0 ; 
13892     char *kwnames
[] = { 
13893         (char *) "self",(char *) "message", NULL 
 
13896     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetMessage",kwnames
,&obj0
,&obj1
)) goto fail
; 
13897     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13898     if (SWIG_arg_fail(1)) SWIG_fail
; 
13900         arg2 
= wxString_in_helper(obj1
); 
13901         if (arg2 
== NULL
) SWIG_fail
; 
13905         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13906         (arg1
)->SetMessage((wxString 
const &)*arg2
); 
13908         wxPyEndAllowThreads(__tstate
); 
13909         if (PyErr_Occurred()) SWIG_fail
; 
13911     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13926 static PyObject 
*_wrap_DirDialog_SetPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13927     PyObject 
*resultobj
; 
13928     wxDirDialog 
*arg1 
= (wxDirDialog 
*) 0 ; 
13929     wxString 
*arg2 
= 0 ; 
13930     bool temp2 
= false ; 
13931     PyObject 
* obj0 
= 0 ; 
13932     PyObject 
* obj1 
= 0 ; 
13933     char *kwnames
[] = { 
13934         (char *) "self",(char *) "path", NULL 
 
13937     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DirDialog_SetPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
13938     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDirDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
13939     if (SWIG_arg_fail(1)) SWIG_fail
; 
13941         arg2 
= wxString_in_helper(obj1
); 
13942         if (arg2 
== NULL
) SWIG_fail
; 
13946         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13947         (arg1
)->SetPath((wxString 
const &)*arg2
); 
13949         wxPyEndAllowThreads(__tstate
); 
13950         if (PyErr_Occurred()) SWIG_fail
; 
13952     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13967 static PyObject 
* DirDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
13969     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13970     SWIG_TypeClientData(SWIGTYPE_p_wxDirDialog
, obj
); 
13972     return Py_BuildValue((char *)""); 
13974 static PyObject 
*_wrap_new_FileDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13975     PyObject 
*resultobj
; 
13976     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
13977     wxString 
const &arg2_defvalue 
= wxPyFileSelectorPromptStr 
; 
13978     wxString 
*arg2 
= (wxString 
*) &arg2_defvalue 
; 
13979     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
13980     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
13981     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
13982     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
13983     wxString 
const &arg5_defvalue 
= wxPyFileSelectorDefaultWildcardStr 
; 
13984     wxString 
*arg5 
= (wxString 
*) &arg5_defvalue 
; 
13985     long arg6 
= (long) 0 ; 
13986     wxPoint 
const &arg7_defvalue 
= wxDefaultPosition 
; 
13987     wxPoint 
*arg7 
= (wxPoint 
*) &arg7_defvalue 
; 
13988     wxFileDialog 
*result
; 
13989     bool temp2 
= false ; 
13990     bool temp3 
= false ; 
13991     bool temp4 
= false ; 
13992     bool temp5 
= false ; 
13994     PyObject 
* obj0 
= 0 ; 
13995     PyObject 
* obj1 
= 0 ; 
13996     PyObject 
* obj2 
= 0 ; 
13997     PyObject 
* obj3 
= 0 ; 
13998     PyObject 
* obj4 
= 0 ; 
13999     PyObject 
* obj5 
= 0 ; 
14000     PyObject 
* obj6 
= 0 ; 
14001     char *kwnames
[] = { 
14002         (char *) "parent",(char *) "message",(char *) "defaultDir",(char *) "defaultFile",(char *) "wildcard",(char *) "style",(char *) "pos", NULL 
 
14005     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_FileDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
14006     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
14007     if (SWIG_arg_fail(1)) SWIG_fail
; 
14010             arg2 
= wxString_in_helper(obj1
); 
14011             if (arg2 
== NULL
) SWIG_fail
; 
14017             arg3 
= wxString_in_helper(obj2
); 
14018             if (arg3 
== NULL
) SWIG_fail
; 
14024             arg4 
= wxString_in_helper(obj3
); 
14025             if (arg4 
== NULL
) SWIG_fail
; 
14031             arg5 
= wxString_in_helper(obj4
); 
14032             if (arg5 
== NULL
) SWIG_fail
; 
14038             arg6 
= (long)(SWIG_As_long(obj5
));  
14039             if (SWIG_arg_fail(6)) SWIG_fail
; 
14045             if ( ! wxPoint_helper(obj6
, &arg7
)) SWIG_fail
; 
14049         if (!wxPyCheckForApp()) SWIG_fail
; 
14050         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14051         result 
= (wxFileDialog 
*)new wxFileDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
,(wxString 
const &)*arg5
,arg6
,(wxPoint 
const &)*arg7
); 
14053         wxPyEndAllowThreads(__tstate
); 
14054         if (PyErr_Occurred()) SWIG_fail
; 
14056     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFileDialog
, 1); 
14095 static PyObject 
*_wrap_FileDialog_SetMessage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14096     PyObject 
*resultobj
; 
14097     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14098     wxString 
*arg2 
= 0 ; 
14099     bool temp2 
= false ; 
14100     PyObject 
* obj0 
= 0 ; 
14101     PyObject 
* obj1 
= 0 ; 
14102     char *kwnames
[] = { 
14103         (char *) "self",(char *) "message", NULL 
 
14106     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetMessage",kwnames
,&obj0
,&obj1
)) goto fail
; 
14107     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14108     if (SWIG_arg_fail(1)) SWIG_fail
; 
14110         arg2 
= wxString_in_helper(obj1
); 
14111         if (arg2 
== NULL
) SWIG_fail
; 
14115         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14116         (arg1
)->SetMessage((wxString 
const &)*arg2
); 
14118         wxPyEndAllowThreads(__tstate
); 
14119         if (PyErr_Occurred()) SWIG_fail
; 
14121     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14136 static PyObject 
*_wrap_FileDialog_SetPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14137     PyObject 
*resultobj
; 
14138     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14139     wxString 
*arg2 
= 0 ; 
14140     bool temp2 
= false ; 
14141     PyObject 
* obj0 
= 0 ; 
14142     PyObject 
* obj1 
= 0 ; 
14143     char *kwnames
[] = { 
14144         (char *) "self",(char *) "path", NULL 
 
14147     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
14148     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14149     if (SWIG_arg_fail(1)) SWIG_fail
; 
14151         arg2 
= wxString_in_helper(obj1
); 
14152         if (arg2 
== NULL
) SWIG_fail
; 
14156         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14157         (arg1
)->SetPath((wxString 
const &)*arg2
); 
14159         wxPyEndAllowThreads(__tstate
); 
14160         if (PyErr_Occurred()) SWIG_fail
; 
14162     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14177 static PyObject 
*_wrap_FileDialog_SetDirectory(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14178     PyObject 
*resultobj
; 
14179     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14180     wxString 
*arg2 
= 0 ; 
14181     bool temp2 
= false ; 
14182     PyObject 
* obj0 
= 0 ; 
14183     PyObject 
* obj1 
= 0 ; 
14184     char *kwnames
[] = { 
14185         (char *) "self",(char *) "dir", NULL 
 
14188     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetDirectory",kwnames
,&obj0
,&obj1
)) goto fail
; 
14189     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14190     if (SWIG_arg_fail(1)) SWIG_fail
; 
14192         arg2 
= wxString_in_helper(obj1
); 
14193         if (arg2 
== NULL
) SWIG_fail
; 
14197         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14198         (arg1
)->SetDirectory((wxString 
const &)*arg2
); 
14200         wxPyEndAllowThreads(__tstate
); 
14201         if (PyErr_Occurred()) SWIG_fail
; 
14203     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14218 static PyObject 
*_wrap_FileDialog_SetFilename(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14219     PyObject 
*resultobj
; 
14220     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14221     wxString 
*arg2 
= 0 ; 
14222     bool temp2 
= false ; 
14223     PyObject 
* obj0 
= 0 ; 
14224     PyObject 
* obj1 
= 0 ; 
14225     char *kwnames
[] = { 
14226         (char *) "self",(char *) "name", NULL 
 
14229     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilename",kwnames
,&obj0
,&obj1
)) goto fail
; 
14230     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14231     if (SWIG_arg_fail(1)) SWIG_fail
; 
14233         arg2 
= wxString_in_helper(obj1
); 
14234         if (arg2 
== NULL
) SWIG_fail
; 
14238         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14239         (arg1
)->SetFilename((wxString 
const &)*arg2
); 
14241         wxPyEndAllowThreads(__tstate
); 
14242         if (PyErr_Occurred()) SWIG_fail
; 
14244     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14259 static PyObject 
*_wrap_FileDialog_SetWildcard(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14260     PyObject 
*resultobj
; 
14261     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14262     wxString 
*arg2 
= 0 ; 
14263     bool temp2 
= false ; 
14264     PyObject 
* obj0 
= 0 ; 
14265     PyObject 
* obj1 
= 0 ; 
14266     char *kwnames
[] = { 
14267         (char *) "self",(char *) "wildCard", NULL 
 
14270     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetWildcard",kwnames
,&obj0
,&obj1
)) goto fail
; 
14271     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14272     if (SWIG_arg_fail(1)) SWIG_fail
; 
14274         arg2 
= wxString_in_helper(obj1
); 
14275         if (arg2 
== NULL
) SWIG_fail
; 
14279         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14280         (arg1
)->SetWildcard((wxString 
const &)*arg2
); 
14282         wxPyEndAllowThreads(__tstate
); 
14283         if (PyErr_Occurred()) SWIG_fail
; 
14285     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14300 static PyObject 
*_wrap_FileDialog_SetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14301     PyObject 
*resultobj
; 
14302     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14304     PyObject 
* obj0 
= 0 ; 
14305     PyObject 
* obj1 
= 0 ; 
14306     char *kwnames
[] = { 
14307         (char *) "self",(char *) "style", NULL 
 
14310     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetStyle",kwnames
,&obj0
,&obj1
)) goto fail
; 
14311     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14312     if (SWIG_arg_fail(1)) SWIG_fail
; 
14314         arg2 
= (long)(SWIG_As_long(obj1
));  
14315         if (SWIG_arg_fail(2)) SWIG_fail
; 
14318         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14319         (arg1
)->SetStyle(arg2
); 
14321         wxPyEndAllowThreads(__tstate
); 
14322         if (PyErr_Occurred()) SWIG_fail
; 
14324     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14331 static PyObject 
*_wrap_FileDialog_SetFilterIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14332     PyObject 
*resultobj
; 
14333     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14335     PyObject 
* obj0 
= 0 ; 
14336     PyObject 
* obj1 
= 0 ; 
14337     char *kwnames
[] = { 
14338         (char *) "self",(char *) "filterIndex", NULL 
 
14341     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FileDialog_SetFilterIndex",kwnames
,&obj0
,&obj1
)) goto fail
; 
14342     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14343     if (SWIG_arg_fail(1)) SWIG_fail
; 
14345         arg2 
= (int)(SWIG_As_int(obj1
));  
14346         if (SWIG_arg_fail(2)) SWIG_fail
; 
14349         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14350         (arg1
)->SetFilterIndex(arg2
); 
14352         wxPyEndAllowThreads(__tstate
); 
14353         if (PyErr_Occurred()) SWIG_fail
; 
14355     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14362 static PyObject 
*_wrap_FileDialog_GetMessage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14363     PyObject 
*resultobj
; 
14364     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14366     PyObject 
* obj0 
= 0 ; 
14367     char *kwnames
[] = { 
14368         (char *) "self", NULL 
 
14371     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetMessage",kwnames
,&obj0
)) goto fail
; 
14372     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14373     if (SWIG_arg_fail(1)) SWIG_fail
; 
14375         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14376         result 
= ((wxFileDialog 
const *)arg1
)->GetMessage(); 
14378         wxPyEndAllowThreads(__tstate
); 
14379         if (PyErr_Occurred()) SWIG_fail
; 
14383         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14385         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14394 static PyObject 
*_wrap_FileDialog_GetPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14395     PyObject 
*resultobj
; 
14396     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14398     PyObject 
* obj0 
= 0 ; 
14399     char *kwnames
[] = { 
14400         (char *) "self", NULL 
 
14403     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetPath",kwnames
,&obj0
)) goto fail
; 
14404     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14405     if (SWIG_arg_fail(1)) SWIG_fail
; 
14407         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14408         result 
= ((wxFileDialog 
const *)arg1
)->GetPath(); 
14410         wxPyEndAllowThreads(__tstate
); 
14411         if (PyErr_Occurred()) SWIG_fail
; 
14415         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14417         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14426 static PyObject 
*_wrap_FileDialog_GetDirectory(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14427     PyObject 
*resultobj
; 
14428     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14430     PyObject 
* obj0 
= 0 ; 
14431     char *kwnames
[] = { 
14432         (char *) "self", NULL 
 
14435     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetDirectory",kwnames
,&obj0
)) goto fail
; 
14436     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14437     if (SWIG_arg_fail(1)) SWIG_fail
; 
14439         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14440         result 
= ((wxFileDialog 
const *)arg1
)->GetDirectory(); 
14442         wxPyEndAllowThreads(__tstate
); 
14443         if (PyErr_Occurred()) SWIG_fail
; 
14447         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14449         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14458 static PyObject 
*_wrap_FileDialog_GetFilename(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14459     PyObject 
*resultobj
; 
14460     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14462     PyObject 
* obj0 
= 0 ; 
14463     char *kwnames
[] = { 
14464         (char *) "self", NULL 
 
14467     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetFilename",kwnames
,&obj0
)) goto fail
; 
14468     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14469     if (SWIG_arg_fail(1)) SWIG_fail
; 
14471         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14472         result 
= ((wxFileDialog 
const *)arg1
)->GetFilename(); 
14474         wxPyEndAllowThreads(__tstate
); 
14475         if (PyErr_Occurred()) SWIG_fail
; 
14479         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14481         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14490 static PyObject 
*_wrap_FileDialog_GetWildcard(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14491     PyObject 
*resultobj
; 
14492     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14494     PyObject 
* obj0 
= 0 ; 
14495     char *kwnames
[] = { 
14496         (char *) "self", NULL 
 
14499     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetWildcard",kwnames
,&obj0
)) goto fail
; 
14500     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14501     if (SWIG_arg_fail(1)) SWIG_fail
; 
14503         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14504         result 
= ((wxFileDialog 
const *)arg1
)->GetWildcard(); 
14506         wxPyEndAllowThreads(__tstate
); 
14507         if (PyErr_Occurred()) SWIG_fail
; 
14511         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14513         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14522 static PyObject 
*_wrap_FileDialog_GetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14523     PyObject 
*resultobj
; 
14524     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14526     PyObject 
* obj0 
= 0 ; 
14527     char *kwnames
[] = { 
14528         (char *) "self", NULL 
 
14531     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetStyle",kwnames
,&obj0
)) goto fail
; 
14532     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14533     if (SWIG_arg_fail(1)) SWIG_fail
; 
14535         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14536         result 
= (long)((wxFileDialog 
const *)arg1
)->GetStyle(); 
14538         wxPyEndAllowThreads(__tstate
); 
14539         if (PyErr_Occurred()) SWIG_fail
; 
14542         resultobj 
= SWIG_From_long((long)(result
));  
14550 static PyObject 
*_wrap_FileDialog_GetFilterIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14551     PyObject 
*resultobj
; 
14552     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14554     PyObject 
* obj0 
= 0 ; 
14555     char *kwnames
[] = { 
14556         (char *) "self", NULL 
 
14559     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetFilterIndex",kwnames
,&obj0
)) goto fail
; 
14560     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14561     if (SWIG_arg_fail(1)) SWIG_fail
; 
14563         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14564         result 
= (int)((wxFileDialog 
const *)arg1
)->GetFilterIndex(); 
14566         wxPyEndAllowThreads(__tstate
); 
14567         if (PyErr_Occurred()) SWIG_fail
; 
14570         resultobj 
= SWIG_From_int((int)(result
));  
14578 static PyObject 
*_wrap_FileDialog_GetFilenames(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14579     PyObject 
*resultobj
; 
14580     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14582     PyObject 
* obj0 
= 0 ; 
14583     char *kwnames
[] = { 
14584         (char *) "self", NULL 
 
14587     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetFilenames",kwnames
,&obj0
)) goto fail
; 
14588     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14589     if (SWIG_arg_fail(1)) SWIG_fail
; 
14591         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14592         result 
= (PyObject 
*)wxFileDialog_GetFilenames(arg1
); 
14594         wxPyEndAllowThreads(__tstate
); 
14595         if (PyErr_Occurred()) SWIG_fail
; 
14597     resultobj 
= result
; 
14604 static PyObject 
*_wrap_FileDialog_GetPaths(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14605     PyObject 
*resultobj
; 
14606     wxFileDialog 
*arg1 
= (wxFileDialog 
*) 0 ; 
14608     PyObject 
* obj0 
= 0 ; 
14609     char *kwnames
[] = { 
14610         (char *) "self", NULL 
 
14613     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FileDialog_GetPaths",kwnames
,&obj0
)) goto fail
; 
14614     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFileDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14615     if (SWIG_arg_fail(1)) SWIG_fail
; 
14617         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14618         result 
= (PyObject 
*)wxFileDialog_GetPaths(arg1
); 
14620         wxPyEndAllowThreads(__tstate
); 
14621         if (PyErr_Occurred()) SWIG_fail
; 
14623     resultobj 
= result
; 
14630 static PyObject 
* FileDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
14632     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
14633     SWIG_TypeClientData(SWIGTYPE_p_wxFileDialog
, obj
); 
14635     return Py_BuildValue((char *)""); 
14637 static PyObject 
*_wrap_new_MultiChoiceDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14638     PyObject 
*resultobj
; 
14639     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
14640     wxString 
*arg2 
= 0 ; 
14641     wxString 
*arg3 
= 0 ; 
14642     int arg4 
= (int) 0 ; 
14643     wxString 
*arg5 
= (wxString 
*) NULL 
; 
14644     long arg6 
= (long) wxCHOICEDLG_STYLE 
; 
14645     wxPoint 
const &arg7_defvalue 
= wxDefaultPosition 
; 
14646     wxPoint 
*arg7 
= (wxPoint 
*) &arg7_defvalue 
; 
14647     wxMultiChoiceDialog 
*result
; 
14648     bool temp2 
= false ; 
14649     bool temp3 
= false ; 
14651     PyObject 
* obj0 
= 0 ; 
14652     PyObject 
* obj1 
= 0 ; 
14653     PyObject 
* obj2 
= 0 ; 
14654     PyObject 
* obj3 
= 0 ; 
14655     PyObject 
* obj4 
= 0 ; 
14656     PyObject 
* obj5 
= 0 ; 
14657     char *kwnames
[] = { 
14658         (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL 
 
14661     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOO:new_MultiChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
14662     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
14663     if (SWIG_arg_fail(1)) SWIG_fail
; 
14665         arg2 
= wxString_in_helper(obj1
); 
14666         if (arg2 
== NULL
) SWIG_fail
; 
14670         arg3 
= wxString_in_helper(obj2
); 
14671         if (arg3 
== NULL
) SWIG_fail
; 
14676             arg4 
= PyList_Size(obj3
); 
14677             arg5 
= wxString_LIST_helper(obj3
); 
14678             if (arg5 
== NULL
) SWIG_fail
; 
14683             arg6 
= (long)(SWIG_As_long(obj4
));  
14684             if (SWIG_arg_fail(6)) SWIG_fail
; 
14690             if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
; 
14694         if (!wxPyCheckForApp()) SWIG_fail
; 
14695         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14696         result 
= (wxMultiChoiceDialog 
*)new wxMultiChoiceDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint 
const &)*arg7
); 
14698         wxPyEndAllowThreads(__tstate
); 
14699         if (PyErr_Occurred()) SWIG_fail
; 
14701     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMultiChoiceDialog
, 1); 
14711         if (arg5
) delete [] arg5
; 
14724         if (arg5
) delete [] arg5
; 
14730 static PyObject 
*_wrap_MultiChoiceDialog_SetSelections(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14731     PyObject 
*resultobj
; 
14732     wxMultiChoiceDialog 
*arg1 
= (wxMultiChoiceDialog 
*) 0 ; 
14733     wxArrayInt 
*arg2 
= 0 ; 
14734     bool temp2 
= false ; 
14735     PyObject 
* obj0 
= 0 ; 
14736     PyObject 
* obj1 
= 0 ; 
14737     char *kwnames
[] = { 
14738         (char *) "self",(char *) "selections", NULL 
 
14741     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:MultiChoiceDialog_SetSelections",kwnames
,&obj0
,&obj1
)) goto fail
; 
14742     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14743     if (SWIG_arg_fail(1)) SWIG_fail
; 
14745         if (! PySequence_Check(obj1
)) { 
14746             PyErr_SetString(PyExc_TypeError
, "Sequence of integers expected."); 
14749         arg2 
= new wxArrayInt
; 
14751         int i
, len
=PySequence_Length(obj1
); 
14752         for (i
=0; i
<len
; i
++) { 
14753             PyObject
* item 
= PySequence_GetItem(obj1
, i
); 
14754             PyObject
* number  
= PyNumber_Int(item
); 
14755             arg2
->Add(PyInt_AS_LONG(number
)); 
14761         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14762         (arg1
)->SetSelections((wxArrayInt 
const &)*arg2
); 
14764         wxPyEndAllowThreads(__tstate
); 
14765         if (PyErr_Occurred()) SWIG_fail
; 
14767     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14769         if (temp2
) delete arg2
; 
14774         if (temp2
) delete arg2
; 
14780 static PyObject 
*_wrap_MultiChoiceDialog_GetSelections(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14781     PyObject 
*resultobj
; 
14782     wxMultiChoiceDialog 
*arg1 
= (wxMultiChoiceDialog 
*) 0 ; 
14784     PyObject 
* obj0 
= 0 ; 
14785     char *kwnames
[] = { 
14786         (char *) "self", NULL 
 
14789     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MultiChoiceDialog_GetSelections",kwnames
,&obj0
)) goto fail
; 
14790     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMultiChoiceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14791     if (SWIG_arg_fail(1)) SWIG_fail
; 
14793         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14794         result 
= (PyObject 
*)wxMultiChoiceDialog_GetSelections(arg1
); 
14796         wxPyEndAllowThreads(__tstate
); 
14797         if (PyErr_Occurred()) SWIG_fail
; 
14799     resultobj 
= result
; 
14806 static PyObject 
* MultiChoiceDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
14808     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
14809     SWIG_TypeClientData(SWIGTYPE_p_wxMultiChoiceDialog
, obj
); 
14811     return Py_BuildValue((char *)""); 
14813 static PyObject 
*_wrap_new_SingleChoiceDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14814     PyObject 
*resultobj
; 
14815     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
14816     wxString 
*arg2 
= 0 ; 
14817     wxString 
*arg3 
= 0 ; 
14819     wxString 
*arg5 
= (wxString 
*) 0 ; 
14820     long arg6 
= (long) wxCHOICEDLG_STYLE 
; 
14821     wxPoint 
const &arg7_defvalue 
= wxDefaultPosition 
; 
14822     wxPoint 
*arg7 
= (wxPoint 
*) &arg7_defvalue 
; 
14823     wxSingleChoiceDialog 
*result
; 
14824     bool temp2 
= false ; 
14825     bool temp3 
= false ; 
14827     PyObject 
* obj0 
= 0 ; 
14828     PyObject 
* obj1 
= 0 ; 
14829     PyObject 
* obj2 
= 0 ; 
14830     PyObject 
* obj3 
= 0 ; 
14831     PyObject 
* obj4 
= 0 ; 
14832     PyObject 
* obj5 
= 0 ; 
14833     char *kwnames
[] = { 
14834         (char *) "parent",(char *) "message",(char *) "caption",(char *) "choices",(char *) "style",(char *) "pos", NULL 
 
14837     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|OO:new_SingleChoiceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
14838     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
14839     if (SWIG_arg_fail(1)) SWIG_fail
; 
14841         arg2 
= wxString_in_helper(obj1
); 
14842         if (arg2 
== NULL
) SWIG_fail
; 
14846         arg3 
= wxString_in_helper(obj2
); 
14847         if (arg3 
== NULL
) SWIG_fail
; 
14851         arg4 
= PyList_Size(obj3
); 
14852         arg5 
= wxString_LIST_helper(obj3
); 
14853         if (arg5 
== NULL
) SWIG_fail
; 
14857             arg6 
= (long)(SWIG_As_long(obj4
));  
14858             if (SWIG_arg_fail(6)) SWIG_fail
; 
14864             if ( ! wxPoint_helper(obj5
, &arg7
)) SWIG_fail
; 
14868         if (!wxPyCheckForApp()) SWIG_fail
; 
14869         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14870         result 
= (wxSingleChoiceDialog 
*)new_wxSingleChoiceDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
,arg5
,arg6
,(wxPoint 
const &)*arg7
); 
14872         wxPyEndAllowThreads(__tstate
); 
14873         if (PyErr_Occurred()) SWIG_fail
; 
14875     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSingleChoiceDialog
, 1); 
14885         if (arg5
) delete [] arg5
; 
14898         if (arg5
) delete [] arg5
; 
14904 static PyObject 
*_wrap_SingleChoiceDialog_GetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14905     PyObject 
*resultobj
; 
14906     wxSingleChoiceDialog 
*arg1 
= (wxSingleChoiceDialog 
*) 0 ; 
14908     PyObject 
* obj0 
= 0 ; 
14909     char *kwnames
[] = { 
14910         (char *) "self", NULL 
 
14913     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SingleChoiceDialog_GetSelection",kwnames
,&obj0
)) goto fail
; 
14914     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14915     if (SWIG_arg_fail(1)) SWIG_fail
; 
14917         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14918         result 
= (int)(arg1
)->GetSelection(); 
14920         wxPyEndAllowThreads(__tstate
); 
14921         if (PyErr_Occurred()) SWIG_fail
; 
14924         resultobj 
= SWIG_From_int((int)(result
));  
14932 static PyObject 
*_wrap_SingleChoiceDialog_GetStringSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14933     PyObject 
*resultobj
; 
14934     wxSingleChoiceDialog 
*arg1 
= (wxSingleChoiceDialog 
*) 0 ; 
14936     PyObject 
* obj0 
= 0 ; 
14937     char *kwnames
[] = { 
14938         (char *) "self", NULL 
 
14941     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:SingleChoiceDialog_GetStringSelection",kwnames
,&obj0
)) goto fail
; 
14942     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14943     if (SWIG_arg_fail(1)) SWIG_fail
; 
14945         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14946         result 
= (arg1
)->GetStringSelection(); 
14948         wxPyEndAllowThreads(__tstate
); 
14949         if (PyErr_Occurred()) SWIG_fail
; 
14953         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
14955         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
14964 static PyObject 
*_wrap_SingleChoiceDialog_SetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14965     PyObject 
*resultobj
; 
14966     wxSingleChoiceDialog 
*arg1 
= (wxSingleChoiceDialog 
*) 0 ; 
14968     PyObject 
* obj0 
= 0 ; 
14969     PyObject 
* obj1 
= 0 ; 
14970     char *kwnames
[] = { 
14971         (char *) "self",(char *) "sel", NULL 
 
14974     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:SingleChoiceDialog_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
14975     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxSingleChoiceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
14976     if (SWIG_arg_fail(1)) SWIG_fail
; 
14978         arg2 
= (int)(SWIG_As_int(obj1
));  
14979         if (SWIG_arg_fail(2)) SWIG_fail
; 
14982         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14983         (arg1
)->SetSelection(arg2
); 
14985         wxPyEndAllowThreads(__tstate
); 
14986         if (PyErr_Occurred()) SWIG_fail
; 
14988     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14995 static PyObject 
* SingleChoiceDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
14997     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
14998     SWIG_TypeClientData(SWIGTYPE_p_wxSingleChoiceDialog
, obj
); 
15000     return Py_BuildValue((char *)""); 
15002 static PyObject 
*_wrap_new_TextEntryDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15003     PyObject 
*resultobj
; 
15004     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
15005     wxString 
*arg2 
= 0 ; 
15006     wxString 
const &arg3_defvalue 
= wxPyGetTextFromUserPromptStr 
; 
15007     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
15008     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
15009     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
15010     long arg5 
= (long) wxTextEntryDialogStyle 
; 
15011     wxPoint 
const &arg6_defvalue 
= wxDefaultPosition 
; 
15012     wxPoint 
*arg6 
= (wxPoint 
*) &arg6_defvalue 
; 
15013     wxTextEntryDialog 
*result
; 
15014     bool temp2 
= false ; 
15015     bool temp3 
= false ; 
15016     bool temp4 
= false ; 
15018     PyObject 
* obj0 
= 0 ; 
15019     PyObject 
* obj1 
= 0 ; 
15020     PyObject 
* obj2 
= 0 ; 
15021     PyObject 
* obj3 
= 0 ; 
15022     PyObject 
* obj4 
= 0 ; 
15023     PyObject 
* obj5 
= 0 ; 
15024     char *kwnames
[] = { 
15025         (char *) "parent",(char *) "message",(char *) "caption",(char *) "defaultValue",(char *) "style",(char *) "pos", NULL 
 
15028     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_TextEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
15029     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
15030     if (SWIG_arg_fail(1)) SWIG_fail
; 
15032         arg2 
= wxString_in_helper(obj1
); 
15033         if (arg2 
== NULL
) SWIG_fail
; 
15038             arg3 
= wxString_in_helper(obj2
); 
15039             if (arg3 
== NULL
) SWIG_fail
; 
15045             arg4 
= wxString_in_helper(obj3
); 
15046             if (arg4 
== NULL
) SWIG_fail
; 
15052             arg5 
= (long)(SWIG_As_long(obj4
));  
15053             if (SWIG_arg_fail(5)) SWIG_fail
; 
15059             if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
; 
15063         if (!wxPyCheckForApp()) SWIG_fail
; 
15064         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15065         result 
= (wxTextEntryDialog 
*)new wxTextEntryDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
,arg5
,(wxPoint 
const &)*arg6
); 
15067         wxPyEndAllowThreads(__tstate
); 
15068         if (PyErr_Occurred()) SWIG_fail
; 
15070     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTextEntryDialog
, 1); 
15101 static PyObject 
*_wrap_TextEntryDialog_GetValue(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15102     PyObject 
*resultobj
; 
15103     wxTextEntryDialog 
*arg1 
= (wxTextEntryDialog 
*) 0 ; 
15105     PyObject 
* obj0 
= 0 ; 
15106     char *kwnames
[] = { 
15107         (char *) "self", NULL 
 
15110     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:TextEntryDialog_GetValue",kwnames
,&obj0
)) goto fail
; 
15111     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextEntryDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
15112     if (SWIG_arg_fail(1)) SWIG_fail
; 
15114         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15115         result 
= (arg1
)->GetValue(); 
15117         wxPyEndAllowThreads(__tstate
); 
15118         if (PyErr_Occurred()) SWIG_fail
; 
15122         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
15124         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
15133 static PyObject 
*_wrap_TextEntryDialog_SetValue(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15134     PyObject 
*resultobj
; 
15135     wxTextEntryDialog 
*arg1 
= (wxTextEntryDialog 
*) 0 ; 
15136     wxString 
*arg2 
= 0 ; 
15137     bool temp2 
= false ; 
15138     PyObject 
* obj0 
= 0 ; 
15139     PyObject 
* obj1 
= 0 ; 
15140     char *kwnames
[] = { 
15141         (char *) "self",(char *) "value", NULL 
 
15144     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:TextEntryDialog_SetValue",kwnames
,&obj0
,&obj1
)) goto fail
; 
15145     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxTextEntryDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
15146     if (SWIG_arg_fail(1)) SWIG_fail
; 
15148         arg2 
= wxString_in_helper(obj1
); 
15149         if (arg2 
== NULL
) SWIG_fail
; 
15153         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15154         (arg1
)->SetValue((wxString 
const &)*arg2
); 
15156         wxPyEndAllowThreads(__tstate
); 
15157         if (PyErr_Occurred()) SWIG_fail
; 
15159     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15174 static PyObject 
* TextEntryDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
15176     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
15177     SWIG_TypeClientData(SWIGTYPE_p_wxTextEntryDialog
, obj
); 
15179     return Py_BuildValue((char *)""); 
15181 static int _wrap_GetPasswordFromUserPromptStr_set(PyObject 
*) { 
15182     PyErr_SetString(PyExc_TypeError
,"Variable GetPasswordFromUserPromptStr is read-only."); 
15187 static PyObject 
*_wrap_GetPasswordFromUserPromptStr_get(void) { 
15192         pyobj 
= PyUnicode_FromWideChar((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len()); 
15194         pyobj 
= PyString_FromStringAndSize((&wxPyGetPasswordFromUserPromptStr
)->c_str(), (&wxPyGetPasswordFromUserPromptStr
)->Len()); 
15201 static PyObject 
*_wrap_new_PasswordEntryDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15202     PyObject 
*resultobj
; 
15203     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
15204     wxString 
*arg2 
= 0 ; 
15205     wxString 
const &arg3_defvalue 
= wxPyGetPasswordFromUserPromptStr 
; 
15206     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
15207     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
15208     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
15209     long arg5 
= (long) wxTextEntryDialogStyle 
; 
15210     wxPoint 
const &arg6_defvalue 
= wxDefaultPosition 
; 
15211     wxPoint 
*arg6 
= (wxPoint 
*) &arg6_defvalue 
; 
15212     wxPasswordEntryDialog 
*result
; 
15213     bool temp2 
= false ; 
15214     bool temp3 
= false ; 
15215     bool temp4 
= false ; 
15217     PyObject 
* obj0 
= 0 ; 
15218     PyObject 
* obj1 
= 0 ; 
15219     PyObject 
* obj2 
= 0 ; 
15220     PyObject 
* obj3 
= 0 ; 
15221     PyObject 
* obj4 
= 0 ; 
15222     PyObject 
* obj5 
= 0 ; 
15223     char *kwnames
[] = { 
15224         (char *) "parent",(char *) "message",(char *) "caption",(char *) "value",(char *) "style",(char *) "pos", NULL 
 
15227     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PasswordEntryDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
15228     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
15229     if (SWIG_arg_fail(1)) SWIG_fail
; 
15231         arg2 
= wxString_in_helper(obj1
); 
15232         if (arg2 
== NULL
) SWIG_fail
; 
15237             arg3 
= wxString_in_helper(obj2
); 
15238             if (arg3 
== NULL
) SWIG_fail
; 
15244             arg4 
= wxString_in_helper(obj3
); 
15245             if (arg4 
== NULL
) SWIG_fail
; 
15251             arg5 
= (long)(SWIG_As_long(obj4
));  
15252             if (SWIG_arg_fail(5)) SWIG_fail
; 
15258             if ( ! wxPoint_helper(obj5
, &arg6
)) SWIG_fail
; 
15262         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15263         result 
= (wxPasswordEntryDialog 
*)new wxPasswordEntryDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
,arg5
,(wxPoint 
const &)*arg6
); 
15265         wxPyEndAllowThreads(__tstate
); 
15266         if (PyErr_Occurred()) SWIG_fail
; 
15268     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPasswordEntryDialog
, 1); 
15299 static PyObject 
* PasswordEntryDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
15301     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
15302     SWIG_TypeClientData(SWIGTYPE_p_wxPasswordEntryDialog
, obj
); 
15304     return Py_BuildValue((char *)""); 
15306 static PyObject 
*_wrap_new_FontData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15307     PyObject 
*resultobj
; 
15308     wxFontData 
*result
; 
15309     char *kwnames
[] = { 
15313     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_FontData",kwnames
)) goto fail
; 
15315         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15316         result 
= (wxFontData 
*)new wxFontData(); 
15318         wxPyEndAllowThreads(__tstate
); 
15319         if (PyErr_Occurred()) SWIG_fail
; 
15321     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFontData
, 1); 
15328 static PyObject 
*_wrap_delete_FontData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15329     PyObject 
*resultobj
; 
15330     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15331     PyObject 
* obj0 
= 0 ; 
15332     char *kwnames
[] = { 
15333         (char *) "self", NULL 
 
15336     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_FontData",kwnames
,&obj0
)) goto fail
; 
15337     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15338     if (SWIG_arg_fail(1)) SWIG_fail
; 
15340         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15343         wxPyEndAllowThreads(__tstate
); 
15344         if (PyErr_Occurred()) SWIG_fail
; 
15346     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15353 static PyObject 
*_wrap_FontData_EnableEffects(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15354     PyObject 
*resultobj
; 
15355     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15357     PyObject 
* obj0 
= 0 ; 
15358     PyObject 
* obj1 
= 0 ; 
15359     char *kwnames
[] = { 
15360         (char *) "self",(char *) "enable", NULL 
 
15363     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_EnableEffects",kwnames
,&obj0
,&obj1
)) goto fail
; 
15364     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15365     if (SWIG_arg_fail(1)) SWIG_fail
; 
15367         arg2 
= (bool)(SWIG_As_bool(obj1
));  
15368         if (SWIG_arg_fail(2)) SWIG_fail
; 
15371         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15372         (arg1
)->EnableEffects(arg2
); 
15374         wxPyEndAllowThreads(__tstate
); 
15375         if (PyErr_Occurred()) SWIG_fail
; 
15377     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15384 static PyObject 
*_wrap_FontData_GetAllowSymbols(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15385     PyObject 
*resultobj
; 
15386     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15388     PyObject 
* obj0 
= 0 ; 
15389     char *kwnames
[] = { 
15390         (char *) "self", NULL 
 
15393     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetAllowSymbols",kwnames
,&obj0
)) goto fail
; 
15394     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15395     if (SWIG_arg_fail(1)) SWIG_fail
; 
15397         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15398         result 
= (bool)(arg1
)->GetAllowSymbols(); 
15400         wxPyEndAllowThreads(__tstate
); 
15401         if (PyErr_Occurred()) SWIG_fail
; 
15404         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15412 static PyObject 
*_wrap_FontData_GetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15413     PyObject 
*resultobj
; 
15414     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15416     PyObject 
* obj0 
= 0 ; 
15417     char *kwnames
[] = { 
15418         (char *) "self", NULL 
 
15421     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetColour",kwnames
,&obj0
)) goto fail
; 
15422     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15423     if (SWIG_arg_fail(1)) SWIG_fail
; 
15425         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15426         result 
= (arg1
)->GetColour(); 
15428         wxPyEndAllowThreads(__tstate
); 
15429         if (PyErr_Occurred()) SWIG_fail
; 
15432         wxColour 
* resultptr
; 
15433         resultptr 
= new wxColour((wxColour 
&)(result
)); 
15434         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
15442 static PyObject 
*_wrap_FontData_GetChosenFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15443     PyObject 
*resultobj
; 
15444     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15446     PyObject 
* obj0 
= 0 ; 
15447     char *kwnames
[] = { 
15448         (char *) "self", NULL 
 
15451     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetChosenFont",kwnames
,&obj0
)) goto fail
; 
15452     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15453     if (SWIG_arg_fail(1)) SWIG_fail
; 
15455         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15456         result 
= (arg1
)->GetChosenFont(); 
15458         wxPyEndAllowThreads(__tstate
); 
15459         if (PyErr_Occurred()) SWIG_fail
; 
15462         wxFont 
* resultptr
; 
15463         resultptr 
= new wxFont((wxFont 
&)(result
)); 
15464         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1); 
15472 static PyObject 
*_wrap_FontData_GetEnableEffects(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15473     PyObject 
*resultobj
; 
15474     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15476     PyObject 
* obj0 
= 0 ; 
15477     char *kwnames
[] = { 
15478         (char *) "self", NULL 
 
15481     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetEnableEffects",kwnames
,&obj0
)) goto fail
; 
15482     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15483     if (SWIG_arg_fail(1)) SWIG_fail
; 
15485         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15486         result 
= (bool)(arg1
)->GetEnableEffects(); 
15488         wxPyEndAllowThreads(__tstate
); 
15489         if (PyErr_Occurred()) SWIG_fail
; 
15492         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15500 static PyObject 
*_wrap_FontData_GetInitialFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15501     PyObject 
*resultobj
; 
15502     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15504     PyObject 
* obj0 
= 0 ; 
15505     char *kwnames
[] = { 
15506         (char *) "self", NULL 
 
15509     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetInitialFont",kwnames
,&obj0
)) goto fail
; 
15510     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15511     if (SWIG_arg_fail(1)) SWIG_fail
; 
15513         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15514         result 
= (arg1
)->GetInitialFont(); 
15516         wxPyEndAllowThreads(__tstate
); 
15517         if (PyErr_Occurred()) SWIG_fail
; 
15520         wxFont 
* resultptr
; 
15521         resultptr 
= new wxFont((wxFont 
&)(result
)); 
15522         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxFont
, 1); 
15530 static PyObject 
*_wrap_FontData_GetShowHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15531     PyObject 
*resultobj
; 
15532     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15534     PyObject 
* obj0 
= 0 ; 
15535     char *kwnames
[] = { 
15536         (char *) "self", NULL 
 
15539     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontData_GetShowHelp",kwnames
,&obj0
)) goto fail
; 
15540     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15541     if (SWIG_arg_fail(1)) SWIG_fail
; 
15543         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15544         result 
= (bool)(arg1
)->GetShowHelp(); 
15546         wxPyEndAllowThreads(__tstate
); 
15547         if (PyErr_Occurred()) SWIG_fail
; 
15550         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15558 static PyObject 
*_wrap_FontData_SetAllowSymbols(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15559     PyObject 
*resultobj
; 
15560     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15562     PyObject 
* obj0 
= 0 ; 
15563     PyObject 
* obj1 
= 0 ; 
15564     char *kwnames
[] = { 
15565         (char *) "self",(char *) "allowSymbols", NULL 
 
15568     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetAllowSymbols",kwnames
,&obj0
,&obj1
)) goto fail
; 
15569     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15570     if (SWIG_arg_fail(1)) SWIG_fail
; 
15572         arg2 
= (bool)(SWIG_As_bool(obj1
));  
15573         if (SWIG_arg_fail(2)) SWIG_fail
; 
15576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15577         (arg1
)->SetAllowSymbols(arg2
); 
15579         wxPyEndAllowThreads(__tstate
); 
15580         if (PyErr_Occurred()) SWIG_fail
; 
15582     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15589 static PyObject 
*_wrap_FontData_SetChosenFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15590     PyObject 
*resultobj
; 
15591     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15593     PyObject 
* obj0 
= 0 ; 
15594     PyObject 
* obj1 
= 0 ; 
15595     char *kwnames
[] = { 
15596         (char *) "self",(char *) "font", NULL 
 
15599     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetChosenFont",kwnames
,&obj0
,&obj1
)) goto fail
; 
15600     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15601     if (SWIG_arg_fail(1)) SWIG_fail
; 
15603         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION 
| 0); 
15604         if (SWIG_arg_fail(2)) SWIG_fail
; 
15605         if (arg2 
== NULL
) { 
15606             SWIG_null_ref("wxFont"); 
15608         if (SWIG_arg_fail(2)) SWIG_fail
; 
15611         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15612         (arg1
)->SetChosenFont((wxFont 
const &)*arg2
); 
15614         wxPyEndAllowThreads(__tstate
); 
15615         if (PyErr_Occurred()) SWIG_fail
; 
15617     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15624 static PyObject 
*_wrap_FontData_SetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15625     PyObject 
*resultobj
; 
15626     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15627     wxColour 
*arg2 
= 0 ; 
15629     PyObject 
* obj0 
= 0 ; 
15630     PyObject 
* obj1 
= 0 ; 
15631     char *kwnames
[] = { 
15632         (char *) "self",(char *) "colour", NULL 
 
15635     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
15636     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15637     if (SWIG_arg_fail(1)) SWIG_fail
; 
15640         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
15643         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15644         (arg1
)->SetColour((wxColour 
const &)*arg2
); 
15646         wxPyEndAllowThreads(__tstate
); 
15647         if (PyErr_Occurred()) SWIG_fail
; 
15649     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15656 static PyObject 
*_wrap_FontData_SetInitialFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15657     PyObject 
*resultobj
; 
15658     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15660     PyObject 
* obj0 
= 0 ; 
15661     PyObject 
* obj1 
= 0 ; 
15662     char *kwnames
[] = { 
15663         (char *) "self",(char *) "font", NULL 
 
15666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetInitialFont",kwnames
,&obj0
,&obj1
)) goto fail
; 
15667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15668     if (SWIG_arg_fail(1)) SWIG_fail
; 
15670         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION 
| 0); 
15671         if (SWIG_arg_fail(2)) SWIG_fail
; 
15672         if (arg2 
== NULL
) { 
15673             SWIG_null_ref("wxFont"); 
15675         if (SWIG_arg_fail(2)) SWIG_fail
; 
15678         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15679         (arg1
)->SetInitialFont((wxFont 
const &)*arg2
); 
15681         wxPyEndAllowThreads(__tstate
); 
15682         if (PyErr_Occurred()) SWIG_fail
; 
15684     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15691 static PyObject 
*_wrap_FontData_SetRange(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15692     PyObject 
*resultobj
; 
15693     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15696     PyObject 
* obj0 
= 0 ; 
15697     PyObject 
* obj1 
= 0 ; 
15698     PyObject 
* obj2 
= 0 ; 
15699     char *kwnames
[] = { 
15700         (char *) "self",(char *) "min",(char *) "max", NULL 
 
15703     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:FontData_SetRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
15704     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15705     if (SWIG_arg_fail(1)) SWIG_fail
; 
15707         arg2 
= (int)(SWIG_As_int(obj1
));  
15708         if (SWIG_arg_fail(2)) SWIG_fail
; 
15711         arg3 
= (int)(SWIG_As_int(obj2
));  
15712         if (SWIG_arg_fail(3)) SWIG_fail
; 
15715         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15716         (arg1
)->SetRange(arg2
,arg3
); 
15718         wxPyEndAllowThreads(__tstate
); 
15719         if (PyErr_Occurred()) SWIG_fail
; 
15721     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15728 static PyObject 
*_wrap_FontData_SetShowHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15729     PyObject 
*resultobj
; 
15730     wxFontData 
*arg1 
= (wxFontData 
*) 0 ; 
15732     PyObject 
* obj0 
= 0 ; 
15733     PyObject 
* obj1 
= 0 ; 
15734     char *kwnames
[] = { 
15735         (char *) "self",(char *) "showHelp", NULL 
 
15738     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FontData_SetShowHelp",kwnames
,&obj0
,&obj1
)) goto fail
; 
15739     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15740     if (SWIG_arg_fail(1)) SWIG_fail
; 
15742         arg2 
= (bool)(SWIG_As_bool(obj1
));  
15743         if (SWIG_arg_fail(2)) SWIG_fail
; 
15746         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15747         (arg1
)->SetShowHelp(arg2
); 
15749         wxPyEndAllowThreads(__tstate
); 
15750         if (PyErr_Occurred()) SWIG_fail
; 
15752     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
15759 static PyObject 
* FontData_swigregister(PyObject 
*, PyObject 
*args
) { 
15761     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
15762     SWIG_TypeClientData(SWIGTYPE_p_wxFontData
, obj
); 
15764     return Py_BuildValue((char *)""); 
15766 static PyObject 
*_wrap_new_FontDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15767     PyObject 
*resultobj
; 
15768     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
15769     wxFontData 
*arg2 
= 0 ; 
15770     wxFontDialog 
*result
; 
15771     PyObject 
* obj0 
= 0 ; 
15772     PyObject 
* obj1 
= 0 ; 
15773     char *kwnames
[] = { 
15774         (char *) "parent",(char *) "data", NULL 
 
15777     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_FontDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
15778     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
15779     if (SWIG_arg_fail(1)) SWIG_fail
; 
15781         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFontData
, SWIG_POINTER_EXCEPTION 
| 0); 
15782         if (SWIG_arg_fail(2)) SWIG_fail
; 
15783         if (arg2 
== NULL
) { 
15784             SWIG_null_ref("wxFontData"); 
15786         if (SWIG_arg_fail(2)) SWIG_fail
; 
15789         if (!wxPyCheckForApp()) SWIG_fail
; 
15790         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15791         result 
= (wxFontDialog 
*)new wxFontDialog(arg1
,(wxFontData 
const &)*arg2
); 
15793         wxPyEndAllowThreads(__tstate
); 
15794         if (PyErr_Occurred()) SWIG_fail
; 
15796     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFontDialog
, 1); 
15803 static PyObject 
*_wrap_FontDialog_GetFontData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15804     PyObject 
*resultobj
; 
15805     wxFontDialog 
*arg1 
= (wxFontDialog 
*) 0 ; 
15806     wxFontData 
*result
; 
15807     PyObject 
* obj0 
= 0 ; 
15808     char *kwnames
[] = { 
15809         (char *) "self", NULL 
 
15812     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FontDialog_GetFontData",kwnames
,&obj0
)) goto fail
; 
15813     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFontDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
15814     if (SWIG_arg_fail(1)) SWIG_fail
; 
15816         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15818             wxFontData 
&_result_ref 
= (arg1
)->GetFontData(); 
15819             result 
= (wxFontData 
*) &_result_ref
; 
15822         wxPyEndAllowThreads(__tstate
); 
15823         if (PyErr_Occurred()) SWIG_fail
; 
15825     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFontData
, 0); 
15832 static PyObject 
* FontDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
15834     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
15835     SWIG_TypeClientData(SWIGTYPE_p_wxFontDialog
, obj
); 
15837     return Py_BuildValue((char *)""); 
15839 static PyObject 
*_wrap_new_MessageDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15840     PyObject 
*resultobj
; 
15841     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
15842     wxString 
*arg2 
= 0 ; 
15843     wxString 
const &arg3_defvalue 
= wxPyMessageBoxCaptionStr 
; 
15844     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
15845     long arg4 
= (long) wxOK
|wxCANCEL
|wxCENTRE 
; 
15846     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
15847     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
15848     wxMessageDialog 
*result
; 
15849     bool temp2 
= false ; 
15850     bool temp3 
= false ; 
15852     PyObject 
* obj0 
= 0 ; 
15853     PyObject 
* obj1 
= 0 ; 
15854     PyObject 
* obj2 
= 0 ; 
15855     PyObject 
* obj3 
= 0 ; 
15856     PyObject 
* obj4 
= 0 ; 
15857     char *kwnames
[] = { 
15858         (char *) "parent",(char *) "message",(char *) "caption",(char *) "style",(char *) "pos", NULL 
 
15861     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_MessageDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
15862     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
15863     if (SWIG_arg_fail(1)) SWIG_fail
; 
15865         arg2 
= wxString_in_helper(obj1
); 
15866         if (arg2 
== NULL
) SWIG_fail
; 
15871             arg3 
= wxString_in_helper(obj2
); 
15872             if (arg3 
== NULL
) SWIG_fail
; 
15878             arg4 
= (long)(SWIG_As_long(obj3
));  
15879             if (SWIG_arg_fail(4)) SWIG_fail
; 
15885             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
15889         if (!wxPyCheckForApp()) SWIG_fail
; 
15890         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15891         result 
= (wxMessageDialog 
*)new wxMessageDialog(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
,(wxPoint 
const &)*arg5
); 
15893         wxPyEndAllowThreads(__tstate
); 
15894         if (PyErr_Occurred()) SWIG_fail
; 
15896     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMessageDialog
, 1); 
15919 static PyObject 
* MessageDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
15921     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
15922     SWIG_TypeClientData(SWIGTYPE_p_wxMessageDialog
, obj
); 
15924     return Py_BuildValue((char *)""); 
15926 static PyObject 
*_wrap_new_ProgressDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
15927     PyObject 
*resultobj
; 
15928     wxString 
*arg1 
= 0 ; 
15929     wxString 
*arg2 
= 0 ; 
15930     int arg3 
= (int) 100 ; 
15931     wxWindow 
*arg4 
= (wxWindow 
*) NULL 
; 
15932     int arg5 
= (int) wxPD_AUTO_HIDE
|wxPD_APP_MODAL 
; 
15933     wxProgressDialog 
*result
; 
15934     bool temp1 
= false ; 
15935     bool temp2 
= false ; 
15936     PyObject 
* obj0 
= 0 ; 
15937     PyObject 
* obj1 
= 0 ; 
15938     PyObject 
* obj2 
= 0 ; 
15939     PyObject 
* obj3 
= 0 ; 
15940     PyObject 
* obj4 
= 0 ; 
15941     char *kwnames
[] = { 
15942         (char *) "title",(char *) "message",(char *) "maximum",(char *) "parent",(char *) "style", NULL 
 
15945     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_ProgressDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
15947         arg1 
= wxString_in_helper(obj0
); 
15948         if (arg1 
== NULL
) SWIG_fail
; 
15952         arg2 
= wxString_in_helper(obj1
); 
15953         if (arg2 
== NULL
) SWIG_fail
; 
15958             arg3 
= (int)(SWIG_As_int(obj2
));  
15959             if (SWIG_arg_fail(3)) SWIG_fail
; 
15963         SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
15964         if (SWIG_arg_fail(4)) SWIG_fail
; 
15968             arg5 
= (int)(SWIG_As_int(obj4
));  
15969             if (SWIG_arg_fail(5)) SWIG_fail
; 
15973         if (!wxPyCheckForApp()) SWIG_fail
; 
15974         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15975         result 
= (wxProgressDialog 
*)new wxProgressDialog((wxString 
const &)*arg1
,(wxString 
const &)*arg2
,arg3
,arg4
,arg5
); 
15977         wxPyEndAllowThreads(__tstate
); 
15978         if (PyErr_Occurred()) SWIG_fail
; 
15980     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxProgressDialog
, 1); 
16003 static PyObject 
*_wrap_ProgressDialog_Update(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16004     PyObject 
*resultobj
; 
16005     wxProgressDialog 
*arg1 
= (wxProgressDialog 
*) 0 ; 
16007     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
16008     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
16010     bool temp3 
= false ; 
16011     PyObject 
* obj0 
= 0 ; 
16012     PyObject 
* obj1 
= 0 ; 
16013     PyObject 
* obj2 
= 0 ; 
16014     char *kwnames
[] = { 
16015         (char *) "self",(char *) "value",(char *) "newmsg", NULL 
 
16018     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:ProgressDialog_Update",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
16019     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxProgressDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
16020     if (SWIG_arg_fail(1)) SWIG_fail
; 
16022         arg2 
= (int)(SWIG_As_int(obj1
));  
16023         if (SWIG_arg_fail(2)) SWIG_fail
; 
16027             arg3 
= wxString_in_helper(obj2
); 
16028             if (arg3 
== NULL
) SWIG_fail
; 
16033         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16034         result 
= (bool)(arg1
)->Update(arg2
,(wxString 
const &)*arg3
); 
16036         wxPyEndAllowThreads(__tstate
); 
16037         if (PyErr_Occurred()) SWIG_fail
; 
16040         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
16056 static PyObject 
*_wrap_ProgressDialog_Resume(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16057     PyObject 
*resultobj
; 
16058     wxProgressDialog 
*arg1 
= (wxProgressDialog 
*) 0 ; 
16059     PyObject 
* obj0 
= 0 ; 
16060     char *kwnames
[] = { 
16061         (char *) "self", NULL 
 
16064     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:ProgressDialog_Resume",kwnames
,&obj0
)) goto fail
; 
16065     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxProgressDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
16066     if (SWIG_arg_fail(1)) SWIG_fail
; 
16068         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16071         wxPyEndAllowThreads(__tstate
); 
16072         if (PyErr_Occurred()) SWIG_fail
; 
16074     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16081 static PyObject 
* ProgressDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
16083     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
16084     SWIG_TypeClientData(SWIGTYPE_p_wxProgressDialog
, obj
); 
16086     return Py_BuildValue((char *)""); 
16088 static PyObject 
*_wrap_new_FindDialogEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16089     PyObject 
*resultobj
; 
16090     wxEventType arg1 
= (wxEventType
) wxEVT_NULL 
; 
16091     int arg2 
= (int) 0 ; 
16092     wxFindDialogEvent 
*result
; 
16093     PyObject 
* obj0 
= 0 ; 
16094     PyObject 
* obj1 
= 0 ; 
16095     char *kwnames
[] = { 
16096         (char *) "commandType",(char *) "id", NULL 
 
16099     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_FindDialogEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
16102             arg1 
= (wxEventType
)(SWIG_As_int(obj0
));  
16103             if (SWIG_arg_fail(1)) SWIG_fail
; 
16108             arg2 
= (int)(SWIG_As_int(obj1
));  
16109             if (SWIG_arg_fail(2)) SWIG_fail
; 
16113         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16114         result 
= (wxFindDialogEvent 
*)new wxFindDialogEvent(arg1
,arg2
); 
16116         wxPyEndAllowThreads(__tstate
); 
16117         if (PyErr_Occurred()) SWIG_fail
; 
16119     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindDialogEvent
, 1); 
16126 static PyObject 
*_wrap_FindDialogEvent_GetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16127     PyObject 
*resultobj
; 
16128     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16130     PyObject 
* obj0 
= 0 ; 
16131     char *kwnames
[] = { 
16132         (char *) "self", NULL 
 
16135     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindDialogEvent_GetFlags",kwnames
,&obj0
)) goto fail
; 
16136     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16137     if (SWIG_arg_fail(1)) SWIG_fail
; 
16139         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16140         result 
= (int)(arg1
)->GetFlags(); 
16142         wxPyEndAllowThreads(__tstate
); 
16143         if (PyErr_Occurred()) SWIG_fail
; 
16146         resultobj 
= SWIG_From_int((int)(result
));  
16154 static PyObject 
*_wrap_FindDialogEvent_GetFindString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16155     PyObject 
*resultobj
; 
16156     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16158     PyObject 
* obj0 
= 0 ; 
16159     char *kwnames
[] = { 
16160         (char *) "self", NULL 
 
16163     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindDialogEvent_GetFindString",kwnames
,&obj0
)) goto fail
; 
16164     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16165     if (SWIG_arg_fail(1)) SWIG_fail
; 
16167         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16169             wxString 
const &_result_ref 
= (arg1
)->GetFindString(); 
16170             result 
= (wxString 
*) &_result_ref
; 
16173         wxPyEndAllowThreads(__tstate
); 
16174         if (PyErr_Occurred()) SWIG_fail
; 
16178         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
16180         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
16189 static PyObject 
*_wrap_FindDialogEvent_GetReplaceString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16190     PyObject 
*resultobj
; 
16191     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16193     PyObject 
* obj0 
= 0 ; 
16194     char *kwnames
[] = { 
16195         (char *) "self", NULL 
 
16198     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindDialogEvent_GetReplaceString",kwnames
,&obj0
)) goto fail
; 
16199     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16200     if (SWIG_arg_fail(1)) SWIG_fail
; 
16202         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16204             wxString 
const &_result_ref 
= (arg1
)->GetReplaceString(); 
16205             result 
= (wxString 
*) &_result_ref
; 
16208         wxPyEndAllowThreads(__tstate
); 
16209         if (PyErr_Occurred()) SWIG_fail
; 
16213         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
16215         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
16224 static PyObject 
*_wrap_FindDialogEvent_GetDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16225     PyObject 
*resultobj
; 
16226     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16227     wxFindReplaceDialog 
*result
; 
16228     PyObject 
* obj0 
= 0 ; 
16229     char *kwnames
[] = { 
16230         (char *) "self", NULL 
 
16233     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindDialogEvent_GetDialog",kwnames
,&obj0
)) goto fail
; 
16234     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16235     if (SWIG_arg_fail(1)) SWIG_fail
; 
16237         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16238         result 
= (wxFindReplaceDialog 
*)(arg1
)->GetDialog(); 
16240         wxPyEndAllowThreads(__tstate
); 
16241         if (PyErr_Occurred()) SWIG_fail
; 
16243     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindReplaceDialog
, 0); 
16250 static PyObject 
*_wrap_FindDialogEvent_SetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16251     PyObject 
*resultobj
; 
16252     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16254     PyObject 
* obj0 
= 0 ; 
16255     PyObject 
* obj1 
= 0 ; 
16256     char *kwnames
[] = { 
16257         (char *) "self",(char *) "flags", NULL 
 
16260     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
; 
16261     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16262     if (SWIG_arg_fail(1)) SWIG_fail
; 
16264         arg2 
= (int)(SWIG_As_int(obj1
));  
16265         if (SWIG_arg_fail(2)) SWIG_fail
; 
16268         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16269         (arg1
)->SetFlags(arg2
); 
16271         wxPyEndAllowThreads(__tstate
); 
16272         if (PyErr_Occurred()) SWIG_fail
; 
16274     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16281 static PyObject 
*_wrap_FindDialogEvent_SetFindString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16282     PyObject 
*resultobj
; 
16283     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16284     wxString 
*arg2 
= 0 ; 
16285     bool temp2 
= false ; 
16286     PyObject 
* obj0 
= 0 ; 
16287     PyObject 
* obj1 
= 0 ; 
16288     char *kwnames
[] = { 
16289         (char *) "self",(char *) "str", NULL 
 
16292     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetFindString",kwnames
,&obj0
,&obj1
)) goto fail
; 
16293     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16294     if (SWIG_arg_fail(1)) SWIG_fail
; 
16296         arg2 
= wxString_in_helper(obj1
); 
16297         if (arg2 
== NULL
) SWIG_fail
; 
16301         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16302         (arg1
)->SetFindString((wxString 
const &)*arg2
); 
16304         wxPyEndAllowThreads(__tstate
); 
16305         if (PyErr_Occurred()) SWIG_fail
; 
16307     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16322 static PyObject 
*_wrap_FindDialogEvent_SetReplaceString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16323     PyObject 
*resultobj
; 
16324     wxFindDialogEvent 
*arg1 
= (wxFindDialogEvent 
*) 0 ; 
16325     wxString 
*arg2 
= 0 ; 
16326     bool temp2 
= false ; 
16327     PyObject 
* obj0 
= 0 ; 
16328     PyObject 
* obj1 
= 0 ; 
16329     char *kwnames
[] = { 
16330         (char *) "self",(char *) "str", NULL 
 
16333     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindDialogEvent_SetReplaceString",kwnames
,&obj0
,&obj1
)) goto fail
; 
16334     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindDialogEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
16335     if (SWIG_arg_fail(1)) SWIG_fail
; 
16337         arg2 
= wxString_in_helper(obj1
); 
16338         if (arg2 
== NULL
) SWIG_fail
; 
16342         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16343         (arg1
)->SetReplaceString((wxString 
const &)*arg2
); 
16345         wxPyEndAllowThreads(__tstate
); 
16346         if (PyErr_Occurred()) SWIG_fail
; 
16348     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16363 static PyObject 
* FindDialogEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
16365     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
16366     SWIG_TypeClientData(SWIGTYPE_p_wxFindDialogEvent
, obj
); 
16368     return Py_BuildValue((char *)""); 
16370 static PyObject 
*_wrap_new_FindReplaceData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16371     PyObject 
*resultobj
; 
16372     int arg1 
= (int) 0 ; 
16373     wxFindReplaceData 
*result
; 
16374     PyObject 
* obj0 
= 0 ; 
16375     char *kwnames
[] = { 
16376         (char *) "flags", NULL 
 
16379     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_FindReplaceData",kwnames
,&obj0
)) goto fail
; 
16382             arg1 
= (int)(SWIG_As_int(obj0
));  
16383             if (SWIG_arg_fail(1)) SWIG_fail
; 
16387         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16388         result 
= (wxFindReplaceData 
*)new wxFindReplaceData(arg1
); 
16390         wxPyEndAllowThreads(__tstate
); 
16391         if (PyErr_Occurred()) SWIG_fail
; 
16393     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindReplaceData
, 1); 
16400 static PyObject 
*_wrap_delete_FindReplaceData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16401     PyObject 
*resultobj
; 
16402     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16403     PyObject 
* obj0 
= 0 ; 
16404     char *kwnames
[] = { 
16405         (char *) "self", NULL 
 
16408     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_FindReplaceData",kwnames
,&obj0
)) goto fail
; 
16409     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16410     if (SWIG_arg_fail(1)) SWIG_fail
; 
16412         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16415         wxPyEndAllowThreads(__tstate
); 
16416         if (PyErr_Occurred()) SWIG_fail
; 
16418     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16425 static PyObject 
*_wrap_FindReplaceData_GetFindString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16426     PyObject 
*resultobj
; 
16427     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16429     PyObject 
* obj0 
= 0 ; 
16430     char *kwnames
[] = { 
16431         (char *) "self", NULL 
 
16434     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindReplaceData_GetFindString",kwnames
,&obj0
)) goto fail
; 
16435     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16436     if (SWIG_arg_fail(1)) SWIG_fail
; 
16438         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16440             wxString 
const &_result_ref 
= (arg1
)->GetFindString(); 
16441             result 
= (wxString 
*) &_result_ref
; 
16444         wxPyEndAllowThreads(__tstate
); 
16445         if (PyErr_Occurred()) SWIG_fail
; 
16449         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
16451         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
16460 static PyObject 
*_wrap_FindReplaceData_GetReplaceString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16461     PyObject 
*resultobj
; 
16462     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16464     PyObject 
* obj0 
= 0 ; 
16465     char *kwnames
[] = { 
16466         (char *) "self", NULL 
 
16469     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindReplaceData_GetReplaceString",kwnames
,&obj0
)) goto fail
; 
16470     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16471     if (SWIG_arg_fail(1)) SWIG_fail
; 
16473         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16475             wxString 
const &_result_ref 
= (arg1
)->GetReplaceString(); 
16476             result 
= (wxString 
*) &_result_ref
; 
16479         wxPyEndAllowThreads(__tstate
); 
16480         if (PyErr_Occurred()) SWIG_fail
; 
16484         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
16486         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
16495 static PyObject 
*_wrap_FindReplaceData_GetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16496     PyObject 
*resultobj
; 
16497     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16499     PyObject 
* obj0 
= 0 ; 
16500     char *kwnames
[] = { 
16501         (char *) "self", NULL 
 
16504     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindReplaceData_GetFlags",kwnames
,&obj0
)) goto fail
; 
16505     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16506     if (SWIG_arg_fail(1)) SWIG_fail
; 
16508         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16509         result 
= (int)(arg1
)->GetFlags(); 
16511         wxPyEndAllowThreads(__tstate
); 
16512         if (PyErr_Occurred()) SWIG_fail
; 
16515         resultobj 
= SWIG_From_int((int)(result
));  
16523 static PyObject 
*_wrap_FindReplaceData_SetFlags(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16524     PyObject 
*resultobj
; 
16525     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16527     PyObject 
* obj0 
= 0 ; 
16528     PyObject 
* obj1 
= 0 ; 
16529     char *kwnames
[] = { 
16530         (char *) "self",(char *) "flags", NULL 
 
16533     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFlags",kwnames
,&obj0
,&obj1
)) goto fail
; 
16534     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16535     if (SWIG_arg_fail(1)) SWIG_fail
; 
16537         arg2 
= (int)(SWIG_As_int(obj1
));  
16538         if (SWIG_arg_fail(2)) SWIG_fail
; 
16541         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16542         (arg1
)->SetFlags(arg2
); 
16544         wxPyEndAllowThreads(__tstate
); 
16545         if (PyErr_Occurred()) SWIG_fail
; 
16547     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16554 static PyObject 
*_wrap_FindReplaceData_SetFindString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16555     PyObject 
*resultobj
; 
16556     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16557     wxString 
*arg2 
= 0 ; 
16558     bool temp2 
= false ; 
16559     PyObject 
* obj0 
= 0 ; 
16560     PyObject 
* obj1 
= 0 ; 
16561     char *kwnames
[] = { 
16562         (char *) "self",(char *) "str", NULL 
 
16565     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetFindString",kwnames
,&obj0
,&obj1
)) goto fail
; 
16566     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16567     if (SWIG_arg_fail(1)) SWIG_fail
; 
16569         arg2 
= wxString_in_helper(obj1
); 
16570         if (arg2 
== NULL
) SWIG_fail
; 
16574         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16575         (arg1
)->SetFindString((wxString 
const &)*arg2
); 
16577         wxPyEndAllowThreads(__tstate
); 
16578         if (PyErr_Occurred()) SWIG_fail
; 
16580     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16595 static PyObject 
*_wrap_FindReplaceData_SetReplaceString(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16596     PyObject 
*resultobj
; 
16597     wxFindReplaceData 
*arg1 
= (wxFindReplaceData 
*) 0 ; 
16598     wxString 
*arg2 
= 0 ; 
16599     bool temp2 
= false ; 
16600     PyObject 
* obj0 
= 0 ; 
16601     PyObject 
* obj1 
= 0 ; 
16602     char *kwnames
[] = { 
16603         (char *) "self",(char *) "str", NULL 
 
16606     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceData_SetReplaceString",kwnames
,&obj0
,&obj1
)) goto fail
; 
16607     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16608     if (SWIG_arg_fail(1)) SWIG_fail
; 
16610         arg2 
= wxString_in_helper(obj1
); 
16611         if (arg2 
== NULL
) SWIG_fail
; 
16615         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16616         (arg1
)->SetReplaceString((wxString 
const &)*arg2
); 
16618         wxPyEndAllowThreads(__tstate
); 
16619         if (PyErr_Occurred()) SWIG_fail
; 
16621     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16636 static PyObject 
* FindReplaceData_swigregister(PyObject 
*, PyObject 
*args
) { 
16638     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
16639     SWIG_TypeClientData(SWIGTYPE_p_wxFindReplaceData
, obj
); 
16641     return Py_BuildValue((char *)""); 
16643 static PyObject 
*_wrap_new_FindReplaceDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16644     PyObject 
*resultobj
; 
16645     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
16646     wxFindReplaceData 
*arg2 
= (wxFindReplaceData 
*) 0 ; 
16647     wxString 
*arg3 
= 0 ; 
16648     int arg4 
= (int) 0 ; 
16649     wxFindReplaceDialog 
*result
; 
16650     bool temp3 
= false ; 
16651     PyObject 
* obj0 
= 0 ; 
16652     PyObject 
* obj1 
= 0 ; 
16653     PyObject 
* obj2 
= 0 ; 
16654     PyObject 
* obj3 
= 0 ; 
16655     char *kwnames
[] = { 
16656         (char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL 
 
16659     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:new_FindReplaceDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
16660     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
16661     if (SWIG_arg_fail(1)) SWIG_fail
; 
16662     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16663     if (SWIG_arg_fail(2)) SWIG_fail
; 
16665         arg3 
= wxString_in_helper(obj2
); 
16666         if (arg3 
== NULL
) SWIG_fail
; 
16671             arg4 
= (int)(SWIG_As_int(obj3
));  
16672             if (SWIG_arg_fail(4)) SWIG_fail
; 
16676         if (!wxPyCheckForApp()) SWIG_fail
; 
16677         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16678         result 
= (wxFindReplaceDialog 
*)new wxFindReplaceDialog(arg1
,arg2
,(wxString 
const &)*arg3
,arg4
); 
16680         wxPyEndAllowThreads(__tstate
); 
16681         if (PyErr_Occurred()) SWIG_fail
; 
16683     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindReplaceDialog
, 1); 
16698 static PyObject 
*_wrap_new_PreFindReplaceDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16699     PyObject 
*resultobj
; 
16700     wxFindReplaceDialog 
*result
; 
16701     char *kwnames
[] = { 
16705     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreFindReplaceDialog",kwnames
)) goto fail
; 
16707         if (!wxPyCheckForApp()) SWIG_fail
; 
16708         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16709         result 
= (wxFindReplaceDialog 
*)new wxFindReplaceDialog(); 
16711         wxPyEndAllowThreads(__tstate
); 
16712         if (PyErr_Occurred()) SWIG_fail
; 
16714     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindReplaceDialog
, 1); 
16721 static PyObject 
*_wrap_FindReplaceDialog_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16722     PyObject 
*resultobj
; 
16723     wxFindReplaceDialog 
*arg1 
= (wxFindReplaceDialog 
*) 0 ; 
16724     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
16725     wxFindReplaceData 
*arg3 
= (wxFindReplaceData 
*) 0 ; 
16726     wxString 
*arg4 
= 0 ; 
16727     int arg5 
= (int) 0 ; 
16729     bool temp4 
= false ; 
16730     PyObject 
* obj0 
= 0 ; 
16731     PyObject 
* obj1 
= 0 ; 
16732     PyObject 
* obj2 
= 0 ; 
16733     PyObject 
* obj3 
= 0 ; 
16734     PyObject 
* obj4 
= 0 ; 
16735     char *kwnames
[] = { 
16736         (char *) "self",(char *) "parent",(char *) "data",(char *) "title",(char *) "style", NULL 
 
16739     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:FindReplaceDialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
16740     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
16741     if (SWIG_arg_fail(1)) SWIG_fail
; 
16742     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
16743     if (SWIG_arg_fail(2)) SWIG_fail
; 
16744     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16745     if (SWIG_arg_fail(3)) SWIG_fail
; 
16747         arg4 
= wxString_in_helper(obj3
); 
16748         if (arg4 
== NULL
) SWIG_fail
; 
16753             arg5 
= (int)(SWIG_As_int(obj4
));  
16754             if (SWIG_arg_fail(5)) SWIG_fail
; 
16758         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16759         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
); 
16761         wxPyEndAllowThreads(__tstate
); 
16762         if (PyErr_Occurred()) SWIG_fail
; 
16765         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
16781 static PyObject 
*_wrap_FindReplaceDialog_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16782     PyObject 
*resultobj
; 
16783     wxFindReplaceDialog 
*arg1 
= (wxFindReplaceDialog 
*) 0 ; 
16784     wxFindReplaceData 
*result
; 
16785     PyObject 
* obj0 
= 0 ; 
16786     char *kwnames
[] = { 
16787         (char *) "self", NULL 
 
16790     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:FindReplaceDialog_GetData",kwnames
,&obj0
)) goto fail
; 
16791     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
16792     if (SWIG_arg_fail(1)) SWIG_fail
; 
16794         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16795         result 
= (wxFindReplaceData 
*)(arg1
)->GetData(); 
16797         wxPyEndAllowThreads(__tstate
); 
16798         if (PyErr_Occurred()) SWIG_fail
; 
16800     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFindReplaceData
, 0); 
16807 static PyObject 
*_wrap_FindReplaceDialog_SetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16808     PyObject 
*resultobj
; 
16809     wxFindReplaceDialog 
*arg1 
= (wxFindReplaceDialog 
*) 0 ; 
16810     wxFindReplaceData 
*arg2 
= (wxFindReplaceData 
*) 0 ; 
16811     PyObject 
* obj0 
= 0 ; 
16812     PyObject 
* obj1 
= 0 ; 
16813     char *kwnames
[] = { 
16814         (char *) "self",(char *) "data", NULL 
 
16817     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:FindReplaceDialog_SetData",kwnames
,&obj0
,&obj1
)) goto fail
; 
16818     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFindReplaceDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
16819     if (SWIG_arg_fail(1)) SWIG_fail
; 
16820     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFindReplaceData
, SWIG_POINTER_EXCEPTION 
| 0); 
16821     if (SWIG_arg_fail(2)) SWIG_fail
; 
16823         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16824         (arg1
)->SetData(arg2
); 
16826         wxPyEndAllowThreads(__tstate
); 
16827         if (PyErr_Occurred()) SWIG_fail
; 
16829     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
16836 static PyObject 
* FindReplaceDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
16838     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
16839     SWIG_TypeClientData(SWIGTYPE_p_wxFindReplaceDialog
, obj
); 
16841     return Py_BuildValue((char *)""); 
16843 static PyObject 
*_wrap_new_MDIParentFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16844     PyObject 
*resultobj
; 
16845     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
16846     int arg2 
= (int) (int)-1 ; 
16847     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
16848     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
16849     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
16850     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
16851     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
16852     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
16853     long arg6 
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL 
; 
16854     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
16855     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
16856     wxMDIParentFrame 
*result
; 
16857     bool temp3 
= false ; 
16860     bool temp7 
= false ; 
16861     PyObject 
* obj0 
= 0 ; 
16862     PyObject 
* obj1 
= 0 ; 
16863     PyObject 
* obj2 
= 0 ; 
16864     PyObject 
* obj3 
= 0 ; 
16865     PyObject 
* obj4 
= 0 ; 
16866     PyObject 
* obj5 
= 0 ; 
16867     PyObject 
* obj6 
= 0 ; 
16868     char *kwnames
[] = { 
16869         (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
16872     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIParentFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
16873     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
16874     if (SWIG_arg_fail(1)) SWIG_fail
; 
16877             arg2 
= (int const)(SWIG_As_int(obj1
));  
16878             if (SWIG_arg_fail(2)) SWIG_fail
; 
16883             arg3 
= wxString_in_helper(obj2
); 
16884             if (arg3 
== NULL
) SWIG_fail
; 
16891             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
16897             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
16902             arg6 
= (long)(SWIG_As_long(obj5
));  
16903             if (SWIG_arg_fail(6)) SWIG_fail
; 
16908             arg7 
= wxString_in_helper(obj6
); 
16909             if (arg7 
== NULL
) SWIG_fail
; 
16914         if (!wxPyCheckForApp()) SWIG_fail
; 
16915         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16916         result 
= (wxMDIParentFrame 
*)new wxMDIParentFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
16918         wxPyEndAllowThreads(__tstate
); 
16919         if (PyErr_Occurred()) SWIG_fail
; 
16921     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIParentFrame
, 1); 
16944 static PyObject 
*_wrap_new_PreMDIParentFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16945     PyObject 
*resultobj
; 
16946     wxMDIParentFrame 
*result
; 
16947     char *kwnames
[] = { 
16951     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreMDIParentFrame",kwnames
)) goto fail
; 
16953         if (!wxPyCheckForApp()) SWIG_fail
; 
16954         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16955         result 
= (wxMDIParentFrame 
*)new wxMDIParentFrame(); 
16957         wxPyEndAllowThreads(__tstate
); 
16958         if (PyErr_Occurred()) SWIG_fail
; 
16960     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIParentFrame
, 1); 
16967 static PyObject 
*_wrap_MDIParentFrame_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
16968     PyObject 
*resultobj
; 
16969     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
16970     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
16971     int arg3 
= (int) (int)-1 ; 
16972     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
16973     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
16974     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
16975     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
16976     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
16977     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
16978     long arg7 
= (long) wxDEFAULT_FRAME_STYLE
|wxVSCROLL
|wxHSCROLL 
; 
16979     wxString 
const &arg8_defvalue 
= wxPyFrameNameStr 
; 
16980     wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
16982     bool temp4 
= false ; 
16985     bool temp8 
= false ; 
16986     PyObject 
* obj0 
= 0 ; 
16987     PyObject 
* obj1 
= 0 ; 
16988     PyObject 
* obj2 
= 0 ; 
16989     PyObject 
* obj3 
= 0 ; 
16990     PyObject 
* obj4 
= 0 ; 
16991     PyObject 
* obj5 
= 0 ; 
16992     PyObject 
* obj6 
= 0 ; 
16993     PyObject 
* obj7 
= 0 ; 
16994     char *kwnames
[] = { 
16995         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
16998     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIParentFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
16999     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17000     if (SWIG_arg_fail(1)) SWIG_fail
; 
17001     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17002     if (SWIG_arg_fail(2)) SWIG_fail
; 
17005             arg3 
= (int const)(SWIG_As_int(obj2
));  
17006             if (SWIG_arg_fail(3)) SWIG_fail
; 
17011             arg4 
= wxString_in_helper(obj3
); 
17012             if (arg4 
== NULL
) SWIG_fail
; 
17019             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
17025             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
17030             arg7 
= (long)(SWIG_As_long(obj6
));  
17031             if (SWIG_arg_fail(7)) SWIG_fail
; 
17036             arg8 
= wxString_in_helper(obj7
); 
17037             if (arg8 
== NULL
) SWIG_fail
; 
17042         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17043         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
17045         wxPyEndAllowThreads(__tstate
); 
17046         if (PyErr_Occurred()) SWIG_fail
; 
17049         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17073 static PyObject 
*_wrap_MDIParentFrame_ActivateNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17074     PyObject 
*resultobj
; 
17075     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17076     PyObject 
* obj0 
= 0 ; 
17077     char *kwnames
[] = { 
17078         (char *) "self", NULL 
 
17081     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_ActivateNext",kwnames
,&obj0
)) goto fail
; 
17082     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17083     if (SWIG_arg_fail(1)) SWIG_fail
; 
17085         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17086         (arg1
)->ActivateNext(); 
17088         wxPyEndAllowThreads(__tstate
); 
17089         if (PyErr_Occurred()) SWIG_fail
; 
17091     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17098 static PyObject 
*_wrap_MDIParentFrame_ActivatePrevious(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17099     PyObject 
*resultobj
; 
17100     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17101     PyObject 
* obj0 
= 0 ; 
17102     char *kwnames
[] = { 
17103         (char *) "self", NULL 
 
17106     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_ActivatePrevious",kwnames
,&obj0
)) goto fail
; 
17107     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17108     if (SWIG_arg_fail(1)) SWIG_fail
; 
17110         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17111         (arg1
)->ActivatePrevious(); 
17113         wxPyEndAllowThreads(__tstate
); 
17114         if (PyErr_Occurred()) SWIG_fail
; 
17116     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17123 static PyObject 
*_wrap_MDIParentFrame_ArrangeIcons(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17124     PyObject 
*resultobj
; 
17125     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17126     PyObject 
* obj0 
= 0 ; 
17127     char *kwnames
[] = { 
17128         (char *) "self", NULL 
 
17131     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_ArrangeIcons",kwnames
,&obj0
)) goto fail
; 
17132     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17133     if (SWIG_arg_fail(1)) SWIG_fail
; 
17135         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17136         (arg1
)->ArrangeIcons(); 
17138         wxPyEndAllowThreads(__tstate
); 
17139         if (PyErr_Occurred()) SWIG_fail
; 
17141     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17148 static PyObject 
*_wrap_MDIParentFrame_Cascade(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17149     PyObject 
*resultobj
; 
17150     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17151     PyObject 
* obj0 
= 0 ; 
17152     char *kwnames
[] = { 
17153         (char *) "self", NULL 
 
17156     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_Cascade",kwnames
,&obj0
)) goto fail
; 
17157     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17158     if (SWIG_arg_fail(1)) SWIG_fail
; 
17160         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17163         wxPyEndAllowThreads(__tstate
); 
17164         if (PyErr_Occurred()) SWIG_fail
; 
17166     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17173 static PyObject 
*_wrap_MDIParentFrame_GetActiveChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17174     PyObject 
*resultobj
; 
17175     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17176     wxMDIChildFrame 
*result
; 
17177     PyObject 
* obj0 
= 0 ; 
17178     char *kwnames
[] = { 
17179         (char *) "self", NULL 
 
17182     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_GetActiveChild",kwnames
,&obj0
)) goto fail
; 
17183     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17184     if (SWIG_arg_fail(1)) SWIG_fail
; 
17186         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17187         result 
= (wxMDIChildFrame 
*)(arg1
)->GetActiveChild(); 
17189         wxPyEndAllowThreads(__tstate
); 
17190         if (PyErr_Occurred()) SWIG_fail
; 
17193         resultobj 
= wxPyMake_wxObject(result
, 0);  
17201 static PyObject 
*_wrap_MDIParentFrame_GetClientWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17202     PyObject 
*resultobj
; 
17203     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17204     wxMDIClientWindow 
*result
; 
17205     PyObject 
* obj0 
= 0 ; 
17206     char *kwnames
[] = { 
17207         (char *) "self", NULL 
 
17210     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_GetClientWindow",kwnames
,&obj0
)) goto fail
; 
17211     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17212     if (SWIG_arg_fail(1)) SWIG_fail
; 
17214         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17215         result 
= (wxMDIClientWindow 
*)(arg1
)->GetClientWindow(); 
17217         wxPyEndAllowThreads(__tstate
); 
17218         if (PyErr_Occurred()) SWIG_fail
; 
17221         resultobj 
= wxPyMake_wxObject(result
, 0);  
17229 static PyObject 
*_wrap_MDIParentFrame_GetToolBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17230     PyObject 
*resultobj
; 
17231     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17233     PyObject 
* obj0 
= 0 ; 
17234     char *kwnames
[] = { 
17235         (char *) "self", NULL 
 
17238     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIParentFrame_GetToolBar",kwnames
,&obj0
)) goto fail
; 
17239     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17240     if (SWIG_arg_fail(1)) SWIG_fail
; 
17242         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17243         result 
= (wxWindow 
*)(arg1
)->GetToolBar(); 
17245         wxPyEndAllowThreads(__tstate
); 
17246         if (PyErr_Occurred()) SWIG_fail
; 
17249         resultobj 
= wxPyMake_wxObject(result
, 0);  
17257 static PyObject 
*_wrap_MDIParentFrame_Tile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17258     PyObject 
*resultobj
; 
17259     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17260     wxOrientation arg2 
= (wxOrientation
) wxHORIZONTAL 
; 
17261     PyObject 
* obj0 
= 0 ; 
17262     PyObject 
* obj1 
= 0 ; 
17263     char *kwnames
[] = { 
17264         (char *) "self",(char *) "orient", NULL 
 
17267     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:MDIParentFrame_Tile",kwnames
,&obj0
,&obj1
)) goto fail
; 
17268     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17269     if (SWIG_arg_fail(1)) SWIG_fail
; 
17272             arg2 
= (wxOrientation
)(SWIG_As_int(obj1
));  
17273             if (SWIG_arg_fail(2)) SWIG_fail
; 
17277         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17278         (arg1
)->Tile((wxOrientation 
)arg2
); 
17280         wxPyEndAllowThreads(__tstate
); 
17281         if (PyErr_Occurred()) SWIG_fail
; 
17283     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17290 static PyObject 
* MDIParentFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
17292     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
17293     SWIG_TypeClientData(SWIGTYPE_p_wxMDIParentFrame
, obj
); 
17295     return Py_BuildValue((char *)""); 
17297 static PyObject 
*_wrap_new_MDIChildFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17298     PyObject 
*resultobj
; 
17299     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17300     int arg2 
= (int) (int)-1 ; 
17301     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
17302     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
17303     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
17304     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
17305     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
17306     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
17307     long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
17308     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
17309     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
17310     wxMDIChildFrame 
*result
; 
17311     bool temp3 
= false ; 
17314     bool temp7 
= false ; 
17315     PyObject 
* obj0 
= 0 ; 
17316     PyObject 
* obj1 
= 0 ; 
17317     PyObject 
* obj2 
= 0 ; 
17318     PyObject 
* obj3 
= 0 ; 
17319     PyObject 
* obj4 
= 0 ; 
17320     PyObject 
* obj5 
= 0 ; 
17321     PyObject 
* obj6 
= 0 ; 
17322     char *kwnames
[] = { 
17323         (char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
17326     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOOO:new_MDIChildFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
17327     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17328     if (SWIG_arg_fail(1)) SWIG_fail
; 
17331             arg2 
= (int const)(SWIG_As_int(obj1
));  
17332             if (SWIG_arg_fail(2)) SWIG_fail
; 
17337             arg3 
= wxString_in_helper(obj2
); 
17338             if (arg3 
== NULL
) SWIG_fail
; 
17345             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
17351             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
17356             arg6 
= (long)(SWIG_As_long(obj5
));  
17357             if (SWIG_arg_fail(6)) SWIG_fail
; 
17362             arg7 
= wxString_in_helper(obj6
); 
17363             if (arg7 
== NULL
) SWIG_fail
; 
17368         if (!wxPyCheckForApp()) SWIG_fail
; 
17369         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17370         result 
= (wxMDIChildFrame 
*)new wxMDIChildFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
17372         wxPyEndAllowThreads(__tstate
); 
17373         if (PyErr_Occurred()) SWIG_fail
; 
17375     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIChildFrame
, 1); 
17398 static PyObject 
*_wrap_new_PreMDIChildFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17399     PyObject 
*resultobj
; 
17400     wxMDIChildFrame 
*result
; 
17401     char *kwnames
[] = { 
17405     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreMDIChildFrame",kwnames
)) goto fail
; 
17407         if (!wxPyCheckForApp()) SWIG_fail
; 
17408         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17409         result 
= (wxMDIChildFrame 
*)new wxMDIChildFrame(); 
17411         wxPyEndAllowThreads(__tstate
); 
17412         if (PyErr_Occurred()) SWIG_fail
; 
17414     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIChildFrame
, 1); 
17421 static PyObject 
*_wrap_MDIChildFrame_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17422     PyObject 
*resultobj
; 
17423     wxMDIChildFrame 
*arg1 
= (wxMDIChildFrame 
*) 0 ; 
17424     wxMDIParentFrame 
*arg2 
= (wxMDIParentFrame 
*) 0 ; 
17425     int arg3 
= (int) (int)-1 ; 
17426     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
17427     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
17428     wxPoint 
const &arg5_defvalue 
= wxDefaultPosition 
; 
17429     wxPoint 
*arg5 
= (wxPoint 
*) &arg5_defvalue 
; 
17430     wxSize 
const &arg6_defvalue 
= wxDefaultSize 
; 
17431     wxSize 
*arg6 
= (wxSize 
*) &arg6_defvalue 
; 
17432     long arg7 
= (long) wxDEFAULT_FRAME_STYLE 
; 
17433     wxString 
const &arg8_defvalue 
= wxPyFrameNameStr 
; 
17434     wxString 
*arg8 
= (wxString 
*) &arg8_defvalue 
; 
17436     bool temp4 
= false ; 
17439     bool temp8 
= false ; 
17440     PyObject 
* obj0 
= 0 ; 
17441     PyObject 
* obj1 
= 0 ; 
17442     PyObject 
* obj2 
= 0 ; 
17443     PyObject 
* obj3 
= 0 ; 
17444     PyObject 
* obj4 
= 0 ; 
17445     PyObject 
* obj5 
= 0 ; 
17446     PyObject 
* obj6 
= 0 ; 
17447     PyObject 
* obj7 
= 0 ; 
17448     char *kwnames
[] = { 
17449         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
17452     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOOO:MDIChildFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
17453     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17454     if (SWIG_arg_fail(1)) SWIG_fail
; 
17455     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17456     if (SWIG_arg_fail(2)) SWIG_fail
; 
17459             arg3 
= (int const)(SWIG_As_int(obj2
));  
17460             if (SWIG_arg_fail(3)) SWIG_fail
; 
17465             arg4 
= wxString_in_helper(obj3
); 
17466             if (arg4 
== NULL
) SWIG_fail
; 
17473             if ( ! wxPoint_helper(obj4
, &arg5
)) SWIG_fail
; 
17479             if ( ! wxSize_helper(obj5
, &arg6
)) SWIG_fail
; 
17484             arg7 
= (long)(SWIG_As_long(obj6
));  
17485             if (SWIG_arg_fail(7)) SWIG_fail
; 
17490             arg8 
= wxString_in_helper(obj7
); 
17491             if (arg8 
== NULL
) SWIG_fail
; 
17496         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17497         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,(wxPoint 
const &)*arg5
,(wxSize 
const &)*arg6
,arg7
,(wxString 
const &)*arg8
); 
17499         wxPyEndAllowThreads(__tstate
); 
17500         if (PyErr_Occurred()) SWIG_fail
; 
17503         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17527 static PyObject 
*_wrap_MDIChildFrame_Activate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17528     PyObject 
*resultobj
; 
17529     wxMDIChildFrame 
*arg1 
= (wxMDIChildFrame 
*) 0 ; 
17530     PyObject 
* obj0 
= 0 ; 
17531     char *kwnames
[] = { 
17532         (char *) "self", NULL 
 
17535     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIChildFrame_Activate",kwnames
,&obj0
)) goto fail
; 
17536     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17537     if (SWIG_arg_fail(1)) SWIG_fail
; 
17539         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17540         (arg1
)->Activate(); 
17542         wxPyEndAllowThreads(__tstate
); 
17543         if (PyErr_Occurred()) SWIG_fail
; 
17545     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17552 static PyObject 
*_wrap_MDIChildFrame_Maximize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17553     PyObject 
*resultobj
; 
17554     wxMDIChildFrame 
*arg1 
= (wxMDIChildFrame 
*) 0 ; 
17555     bool arg2 
= (bool) true ; 
17556     PyObject 
* obj0 
= 0 ; 
17557     PyObject 
* obj1 
= 0 ; 
17558     char *kwnames
[] = { 
17559         (char *) "self",(char *) "maximize", NULL 
 
17562     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:MDIChildFrame_Maximize",kwnames
,&obj0
,&obj1
)) goto fail
; 
17563     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17564     if (SWIG_arg_fail(1)) SWIG_fail
; 
17567             arg2 
= (bool)(SWIG_As_bool(obj1
));  
17568             if (SWIG_arg_fail(2)) SWIG_fail
; 
17572         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17573         (arg1
)->Maximize(arg2
); 
17575         wxPyEndAllowThreads(__tstate
); 
17576         if (PyErr_Occurred()) SWIG_fail
; 
17578     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17585 static PyObject 
*_wrap_MDIChildFrame_Restore(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17586     PyObject 
*resultobj
; 
17587     wxMDIChildFrame 
*arg1 
= (wxMDIChildFrame 
*) 0 ; 
17588     PyObject 
* obj0 
= 0 ; 
17589     char *kwnames
[] = { 
17590         (char *) "self", NULL 
 
17593     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:MDIChildFrame_Restore",kwnames
,&obj0
)) goto fail
; 
17594     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIChildFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17595     if (SWIG_arg_fail(1)) SWIG_fail
; 
17597         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17600         wxPyEndAllowThreads(__tstate
); 
17601         if (PyErr_Occurred()) SWIG_fail
; 
17603     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17610 static PyObject 
* MDIChildFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
17612     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
17613     SWIG_TypeClientData(SWIGTYPE_p_wxMDIChildFrame
, obj
); 
17615     return Py_BuildValue((char *)""); 
17617 static PyObject 
*_wrap_new_MDIClientWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17618     PyObject 
*resultobj
; 
17619     wxMDIParentFrame 
*arg1 
= (wxMDIParentFrame 
*) 0 ; 
17620     long arg2 
= (long) 0 ; 
17621     wxMDIClientWindow 
*result
; 
17622     PyObject 
* obj0 
= 0 ; 
17623     PyObject 
* obj1 
= 0 ; 
17624     char *kwnames
[] = { 
17625         (char *) "parent",(char *) "style", NULL 
 
17628     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_MDIClientWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
17629     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17630     if (SWIG_arg_fail(1)) SWIG_fail
; 
17633             arg2 
= (long)(SWIG_As_long(obj1
));  
17634             if (SWIG_arg_fail(2)) SWIG_fail
; 
17638         if (!wxPyCheckForApp()) SWIG_fail
; 
17639         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17640         result 
= (wxMDIClientWindow 
*)new wxMDIClientWindow(arg1
,arg2
); 
17642         wxPyEndAllowThreads(__tstate
); 
17643         if (PyErr_Occurred()) SWIG_fail
; 
17645     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIClientWindow
, 1); 
17652 static PyObject 
*_wrap_new_PreMDIClientWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17653     PyObject 
*resultobj
; 
17654     wxMDIClientWindow 
*result
; 
17655     char *kwnames
[] = { 
17659     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreMDIClientWindow",kwnames
)) goto fail
; 
17661         if (!wxPyCheckForApp()) SWIG_fail
; 
17662         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17663         result 
= (wxMDIClientWindow 
*)new wxMDIClientWindow(); 
17665         wxPyEndAllowThreads(__tstate
); 
17666         if (PyErr_Occurred()) SWIG_fail
; 
17668     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxMDIClientWindow
, 1); 
17675 static PyObject 
*_wrap_MDIClientWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17676     PyObject 
*resultobj
; 
17677     wxMDIClientWindow 
*arg1 
= (wxMDIClientWindow 
*) 0 ; 
17678     wxMDIParentFrame 
*arg2 
= (wxMDIParentFrame 
*) 0 ; 
17679     long arg3 
= (long) 0 ; 
17681     PyObject 
* obj0 
= 0 ; 
17682     PyObject 
* obj1 
= 0 ; 
17683     PyObject 
* obj2 
= 0 ; 
17684     char *kwnames
[] = { 
17685         (char *) "self",(char *) "parent",(char *) "style", NULL 
 
17688     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:MDIClientWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
17689     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxMDIClientWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17690     if (SWIG_arg_fail(1)) SWIG_fail
; 
17691     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMDIParentFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
17692     if (SWIG_arg_fail(2)) SWIG_fail
; 
17695             arg3 
= (long)(SWIG_As_long(obj2
));  
17696             if (SWIG_arg_fail(3)) SWIG_fail
; 
17700         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17701         result 
= (bool)(arg1
)->Create(arg2
,arg3
); 
17703         wxPyEndAllowThreads(__tstate
); 
17704         if (PyErr_Occurred()) SWIG_fail
; 
17707         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17715 static PyObject 
* MDIClientWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
17717     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
17718     SWIG_TypeClientData(SWIGTYPE_p_wxMDIClientWindow
, obj
); 
17720     return Py_BuildValue((char *)""); 
17722 static PyObject 
*_wrap_new_PyWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17723     PyObject 
*resultobj
; 
17724     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
17725     int arg2 
= (int) (int)-1 ; 
17726     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
17727     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
17728     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
17729     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
17730     long arg5 
= (long) 0 ; 
17731     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
17732     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
17733     wxPyWindow 
*result
; 
17736     bool temp6 
= false ; 
17737     PyObject 
* obj0 
= 0 ; 
17738     PyObject 
* obj1 
= 0 ; 
17739     PyObject 
* obj2 
= 0 ; 
17740     PyObject 
* obj3 
= 0 ; 
17741     PyObject 
* obj4 
= 0 ; 
17742     PyObject 
* obj5 
= 0 ; 
17743     char *kwnames
[] = { 
17744         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
17747     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
17748     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17749     if (SWIG_arg_fail(1)) SWIG_fail
; 
17752             arg2 
= (int const)(SWIG_As_int(obj1
));  
17753             if (SWIG_arg_fail(2)) SWIG_fail
; 
17759             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
17765             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
17770             arg5 
= (long)(SWIG_As_long(obj4
));  
17771             if (SWIG_arg_fail(5)) SWIG_fail
; 
17776             arg6 
= wxString_in_helper(obj5
); 
17777             if (arg6 
== NULL
) SWIG_fail
; 
17782         if (!wxPyCheckForApp()) SWIG_fail
; 
17783         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17784         result 
= (wxPyWindow 
*)new wxPyWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
17786         wxPyEndAllowThreads(__tstate
); 
17787         if (PyErr_Occurred()) SWIG_fail
; 
17789     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyWindow
, 1); 
17804 static PyObject 
*_wrap_new_PrePyWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17805     PyObject 
*resultobj
; 
17806     wxPyWindow 
*result
; 
17807     char *kwnames
[] = { 
17811     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePyWindow",kwnames
)) goto fail
; 
17813         if (!wxPyCheckForApp()) SWIG_fail
; 
17814         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17815         result 
= (wxPyWindow 
*)new wxPyWindow(); 
17817         wxPyEndAllowThreads(__tstate
); 
17818         if (PyErr_Occurred()) SWIG_fail
; 
17820     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyWindow
, 1); 
17827 static PyObject 
*_wrap_PyWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17828     PyObject 
*resultobj
; 
17829     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
17830     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
17831     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
17832     PyObject 
* obj0 
= 0 ; 
17833     PyObject 
* obj1 
= 0 ; 
17834     PyObject 
* obj2 
= 0 ; 
17835     char *kwnames
[] = { 
17836         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
17839     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
17840     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17841     if (SWIG_arg_fail(1)) SWIG_fail
; 
17845         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17846         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
17848         wxPyEndAllowThreads(__tstate
); 
17849         if (PyErr_Occurred()) SWIG_fail
; 
17851     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17858 static PyObject 
*_wrap_PyWindow_SetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17859     PyObject 
*resultobj
; 
17860     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
17863     PyObject 
* obj0 
= 0 ; 
17864     PyObject 
* obj1 
= 0 ; 
17865     char *kwnames
[] = { 
17866         (char *) "self",(char *) "size", NULL 
 
17869     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
17870     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17871     if (SWIG_arg_fail(1)) SWIG_fail
; 
17874         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
17877         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17878         (arg1
)->SetBestSize((wxSize 
const &)*arg2
); 
17880         wxPyEndAllowThreads(__tstate
); 
17881         if (PyErr_Occurred()) SWIG_fail
; 
17883     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17890 static PyObject 
*_wrap_PyWindow_DoEraseBackground(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17891     PyObject 
*resultobj
; 
17892     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
17893     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
17895     PyObject 
* obj0 
= 0 ; 
17896     PyObject 
* obj1 
= 0 ; 
17897     char *kwnames
[] = { 
17898         (char *) "self",(char *) "dc", NULL 
 
17901     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) goto fail
; 
17902     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17903     if (SWIG_arg_fail(1)) SWIG_fail
; 
17904     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
17905     if (SWIG_arg_fail(2)) SWIG_fail
; 
17907         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17908         result 
= (bool)(arg1
)->DoEraseBackground(arg2
); 
17910         wxPyEndAllowThreads(__tstate
); 
17911         if (PyErr_Occurred()) SWIG_fail
; 
17914         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17922 static PyObject 
*_wrap_PyWindow_base_DoMoveWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17923     PyObject 
*resultobj
; 
17924     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
17929     PyObject 
* obj0 
= 0 ; 
17930     PyObject 
* obj1 
= 0 ; 
17931     PyObject 
* obj2 
= 0 ; 
17932     PyObject 
* obj3 
= 0 ; 
17933     PyObject 
* obj4 
= 0 ; 
17934     char *kwnames
[] = { 
17935         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL 
 
17938     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyWindow_base_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
17939     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17940     if (SWIG_arg_fail(1)) SWIG_fail
; 
17942         arg2 
= (int)(SWIG_As_int(obj1
));  
17943         if (SWIG_arg_fail(2)) SWIG_fail
; 
17946         arg3 
= (int)(SWIG_As_int(obj2
));  
17947         if (SWIG_arg_fail(3)) SWIG_fail
; 
17950         arg4 
= (int)(SWIG_As_int(obj3
));  
17951         if (SWIG_arg_fail(4)) SWIG_fail
; 
17954         arg5 
= (int)(SWIG_As_int(obj4
));  
17955         if (SWIG_arg_fail(5)) SWIG_fail
; 
17958         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17959         (arg1
)->base_DoMoveWindow(arg2
,arg3
,arg4
,arg5
); 
17961         wxPyEndAllowThreads(__tstate
); 
17962         if (PyErr_Occurred()) SWIG_fail
; 
17964     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
17971 static PyObject 
*_wrap_PyWindow_base_DoSetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
17972     PyObject 
*resultobj
; 
17973     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
17978     int arg6 
= (int) wxSIZE_AUTO 
; 
17979     PyObject 
* obj0 
= 0 ; 
17980     PyObject 
* obj1 
= 0 ; 
17981     PyObject 
* obj2 
= 0 ; 
17982     PyObject 
* obj3 
= 0 ; 
17983     PyObject 
* obj4 
= 0 ; 
17984     PyObject 
* obj5 
= 0 ; 
17985     char *kwnames
[] = { 
17986         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL 
 
17989     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyWindow_base_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
17990     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
17991     if (SWIG_arg_fail(1)) SWIG_fail
; 
17993         arg2 
= (int)(SWIG_As_int(obj1
));  
17994         if (SWIG_arg_fail(2)) SWIG_fail
; 
17997         arg3 
= (int)(SWIG_As_int(obj2
));  
17998         if (SWIG_arg_fail(3)) SWIG_fail
; 
18001         arg4 
= (int)(SWIG_As_int(obj3
));  
18002         if (SWIG_arg_fail(4)) SWIG_fail
; 
18005         arg5 
= (int)(SWIG_As_int(obj4
));  
18006         if (SWIG_arg_fail(5)) SWIG_fail
; 
18010             arg6 
= (int)(SWIG_As_int(obj5
));  
18011             if (SWIG_arg_fail(6)) SWIG_fail
; 
18015         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18016         (arg1
)->base_DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
); 
18018         wxPyEndAllowThreads(__tstate
); 
18019         if (PyErr_Occurred()) SWIG_fail
; 
18021     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18028 static PyObject 
*_wrap_PyWindow_base_DoSetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18029     PyObject 
*resultobj
; 
18030     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18033     PyObject 
* obj0 
= 0 ; 
18034     PyObject 
* obj1 
= 0 ; 
18035     PyObject 
* obj2 
= 0 ; 
18036     char *kwnames
[] = { 
18037         (char *) "self",(char *) "width",(char *) "height", NULL 
 
18040     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_base_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
18041     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18042     if (SWIG_arg_fail(1)) SWIG_fail
; 
18044         arg2 
= (int)(SWIG_As_int(obj1
));  
18045         if (SWIG_arg_fail(2)) SWIG_fail
; 
18048         arg3 
= (int)(SWIG_As_int(obj2
));  
18049         if (SWIG_arg_fail(3)) SWIG_fail
; 
18052         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18053         (arg1
)->base_DoSetClientSize(arg2
,arg3
); 
18055         wxPyEndAllowThreads(__tstate
); 
18056         if (PyErr_Occurred()) SWIG_fail
; 
18058     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18065 static PyObject 
*_wrap_PyWindow_base_DoSetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18066     PyObject 
*resultobj
; 
18067     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18070     PyObject 
* obj0 
= 0 ; 
18071     PyObject 
* obj1 
= 0 ; 
18072     PyObject 
* obj2 
= 0 ; 
18073     char *kwnames
[] = { 
18074         (char *) "self",(char *) "x",(char *) "y", NULL 
 
18077     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyWindow_base_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
18078     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18079     if (SWIG_arg_fail(1)) SWIG_fail
; 
18081         arg2 
= (int)(SWIG_As_int(obj1
));  
18082         if (SWIG_arg_fail(2)) SWIG_fail
; 
18085         arg3 
= (int)(SWIG_As_int(obj2
));  
18086         if (SWIG_arg_fail(3)) SWIG_fail
; 
18089         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18090         (arg1
)->base_DoSetVirtualSize(arg2
,arg3
); 
18092         wxPyEndAllowThreads(__tstate
); 
18093         if (PyErr_Occurred()) SWIG_fail
; 
18095     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18102 static PyObject 
*_wrap_PyWindow_base_DoGetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18103     PyObject 
*resultobj
; 
18104     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18105     int *arg2 
= (int *) 0 ; 
18106     int *arg3 
= (int *) 0 ; 
18111     PyObject 
* obj0 
= 0 ; 
18112     char *kwnames
[] = { 
18113         (char *) "self", NULL 
 
18116     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
18117     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
18118     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_DoGetSize",kwnames
,&obj0
)) goto fail
; 
18119     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18120     if (SWIG_arg_fail(1)) SWIG_fail
; 
18122         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18123         ((wxPyWindow 
const *)arg1
)->base_DoGetSize(arg2
,arg3
); 
18125         wxPyEndAllowThreads(__tstate
); 
18126         if (PyErr_Occurred()) SWIG_fail
; 
18128     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18129     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
18130     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
18131     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
18132     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
18139 static PyObject 
*_wrap_PyWindow_base_DoGetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18140     PyObject 
*resultobj
; 
18141     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18142     int *arg2 
= (int *) 0 ; 
18143     int *arg3 
= (int *) 0 ; 
18148     PyObject 
* obj0 
= 0 ; 
18149     char *kwnames
[] = { 
18150         (char *) "self", NULL 
 
18153     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
18154     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
18155     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_DoGetClientSize",kwnames
,&obj0
)) goto fail
; 
18156     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18157     if (SWIG_arg_fail(1)) SWIG_fail
; 
18159         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18160         ((wxPyWindow 
const *)arg1
)->base_DoGetClientSize(arg2
,arg3
); 
18162         wxPyEndAllowThreads(__tstate
); 
18163         if (PyErr_Occurred()) SWIG_fail
; 
18165     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18166     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
18167     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
18168     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
18169     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
18176 static PyObject 
*_wrap_PyWindow_base_DoGetPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18177     PyObject 
*resultobj
; 
18178     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18179     int *arg2 
= (int *) 0 ; 
18180     int *arg3 
= (int *) 0 ; 
18185     PyObject 
* obj0 
= 0 ; 
18186     char *kwnames
[] = { 
18187         (char *) "self", NULL 
 
18190     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
18191     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
18192     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_DoGetPosition",kwnames
,&obj0
)) goto fail
; 
18193     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18194     if (SWIG_arg_fail(1)) SWIG_fail
; 
18196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18197         ((wxPyWindow 
const *)arg1
)->base_DoGetPosition(arg2
,arg3
); 
18199         wxPyEndAllowThreads(__tstate
); 
18200         if (PyErr_Occurred()) SWIG_fail
; 
18202     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18203     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
18204     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
18205     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
18206     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
18213 static PyObject 
*_wrap_PyWindow_base_DoGetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18214     PyObject 
*resultobj
; 
18215     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18217     PyObject 
* obj0 
= 0 ; 
18218     char *kwnames
[] = { 
18219         (char *) "self", NULL 
 
18222     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_DoGetVirtualSize",kwnames
,&obj0
)) goto fail
; 
18223     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18224     if (SWIG_arg_fail(1)) SWIG_fail
; 
18226         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18227         result 
= ((wxPyWindow 
const *)arg1
)->base_DoGetVirtualSize(); 
18229         wxPyEndAllowThreads(__tstate
); 
18230         if (PyErr_Occurred()) SWIG_fail
; 
18233         wxSize 
* resultptr
; 
18234         resultptr 
= new wxSize((wxSize 
&)(result
)); 
18235         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
18243 static PyObject 
*_wrap_PyWindow_base_DoGetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18244     PyObject 
*resultobj
; 
18245     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18247     PyObject 
* obj0 
= 0 ; 
18248     char *kwnames
[] = { 
18249         (char *) "self", NULL 
 
18252     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_DoGetBestSize",kwnames
,&obj0
)) goto fail
; 
18253     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18254     if (SWIG_arg_fail(1)) SWIG_fail
; 
18256         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18257         result 
= ((wxPyWindow 
const *)arg1
)->base_DoGetBestSize(); 
18259         wxPyEndAllowThreads(__tstate
); 
18260         if (PyErr_Occurred()) SWIG_fail
; 
18263         wxSize 
* resultptr
; 
18264         resultptr 
= new wxSize((wxSize 
&)(result
)); 
18265         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
18273 static PyObject 
*_wrap_PyWindow_base_InitDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18274     PyObject 
*resultobj
; 
18275     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18276     PyObject 
* obj0 
= 0 ; 
18277     char *kwnames
[] = { 
18278         (char *) "self", NULL 
 
18281     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_InitDialog",kwnames
,&obj0
)) goto fail
; 
18282     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18283     if (SWIG_arg_fail(1)) SWIG_fail
; 
18285         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18286         (arg1
)->base_InitDialog(); 
18288         wxPyEndAllowThreads(__tstate
); 
18289         if (PyErr_Occurred()) SWIG_fail
; 
18291     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18298 static PyObject 
*_wrap_PyWindow_base_TransferDataToWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18299     PyObject 
*resultobj
; 
18300     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18302     PyObject 
* obj0 
= 0 ; 
18303     char *kwnames
[] = { 
18304         (char *) "self", NULL 
 
18307     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_TransferDataToWindow",kwnames
,&obj0
)) goto fail
; 
18308     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18309     if (SWIG_arg_fail(1)) SWIG_fail
; 
18311         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18312         result 
= (bool)(arg1
)->base_TransferDataToWindow(); 
18314         wxPyEndAllowThreads(__tstate
); 
18315         if (PyErr_Occurred()) SWIG_fail
; 
18318         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18326 static PyObject 
*_wrap_PyWindow_base_TransferDataFromWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18327     PyObject 
*resultobj
; 
18328     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18330     PyObject 
* obj0 
= 0 ; 
18331     char *kwnames
[] = { 
18332         (char *) "self", NULL 
 
18335     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_TransferDataFromWindow",kwnames
,&obj0
)) goto fail
; 
18336     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18337     if (SWIG_arg_fail(1)) SWIG_fail
; 
18339         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18340         result 
= (bool)(arg1
)->base_TransferDataFromWindow(); 
18342         wxPyEndAllowThreads(__tstate
); 
18343         if (PyErr_Occurred()) SWIG_fail
; 
18346         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18354 static PyObject 
*_wrap_PyWindow_base_Validate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18355     PyObject 
*resultobj
; 
18356     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18358     PyObject 
* obj0 
= 0 ; 
18359     char *kwnames
[] = { 
18360         (char *) "self", NULL 
 
18363     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_Validate",kwnames
,&obj0
)) goto fail
; 
18364     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18365     if (SWIG_arg_fail(1)) SWIG_fail
; 
18367         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18368         result 
= (bool)(arg1
)->base_Validate(); 
18370         wxPyEndAllowThreads(__tstate
); 
18371         if (PyErr_Occurred()) SWIG_fail
; 
18374         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18382 static PyObject 
*_wrap_PyWindow_base_AcceptsFocus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18383     PyObject 
*resultobj
; 
18384     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18386     PyObject 
* obj0 
= 0 ; 
18387     char *kwnames
[] = { 
18388         (char *) "self", NULL 
 
18391     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_AcceptsFocus",kwnames
,&obj0
)) goto fail
; 
18392     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18393     if (SWIG_arg_fail(1)) SWIG_fail
; 
18395         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18396         result 
= (bool)((wxPyWindow 
const *)arg1
)->base_AcceptsFocus(); 
18398         wxPyEndAllowThreads(__tstate
); 
18399         if (PyErr_Occurred()) SWIG_fail
; 
18402         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18410 static PyObject 
*_wrap_PyWindow_base_AcceptsFocusFromKeyboard(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18411     PyObject 
*resultobj
; 
18412     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18414     PyObject 
* obj0 
= 0 ; 
18415     char *kwnames
[] = { 
18416         (char *) "self", NULL 
 
18419     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_AcceptsFocusFromKeyboard",kwnames
,&obj0
)) goto fail
; 
18420     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18421     if (SWIG_arg_fail(1)) SWIG_fail
; 
18423         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18424         result 
= (bool)((wxPyWindow 
const *)arg1
)->base_AcceptsFocusFromKeyboard(); 
18426         wxPyEndAllowThreads(__tstate
); 
18427         if (PyErr_Occurred()) SWIG_fail
; 
18430         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18438 static PyObject 
*_wrap_PyWindow_base_GetMaxSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18439     PyObject 
*resultobj
; 
18440     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18442     PyObject 
* obj0 
= 0 ; 
18443     char *kwnames
[] = { 
18444         (char *) "self", NULL 
 
18447     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_GetMaxSize",kwnames
,&obj0
)) goto fail
; 
18448     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18449     if (SWIG_arg_fail(1)) SWIG_fail
; 
18451         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18452         result 
= ((wxPyWindow 
const *)arg1
)->base_GetMaxSize(); 
18454         wxPyEndAllowThreads(__tstate
); 
18455         if (PyErr_Occurred()) SWIG_fail
; 
18458         wxSize 
* resultptr
; 
18459         resultptr 
= new wxSize((wxSize 
&)(result
)); 
18460         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
18468 static PyObject 
*_wrap_PyWindow_base_AddChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18469     PyObject 
*resultobj
; 
18470     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18471     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
18472     PyObject 
* obj0 
= 0 ; 
18473     PyObject 
* obj1 
= 0 ; 
18474     char *kwnames
[] = { 
18475         (char *) "self",(char *) "child", NULL 
 
18478     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_base_AddChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
18479     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18480     if (SWIG_arg_fail(1)) SWIG_fail
; 
18481     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18482     if (SWIG_arg_fail(2)) SWIG_fail
; 
18484         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18485         (arg1
)->base_AddChild(arg2
); 
18487         wxPyEndAllowThreads(__tstate
); 
18488         if (PyErr_Occurred()) SWIG_fail
; 
18490     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18497 static PyObject 
*_wrap_PyWindow_base_RemoveChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18498     PyObject 
*resultobj
; 
18499     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18500     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
18501     PyObject 
* obj0 
= 0 ; 
18502     PyObject 
* obj1 
= 0 ; 
18503     char *kwnames
[] = { 
18504         (char *) "self",(char *) "child", NULL 
 
18507     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyWindow_base_RemoveChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
18508     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18509     if (SWIG_arg_fail(1)) SWIG_fail
; 
18510     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18511     if (SWIG_arg_fail(2)) SWIG_fail
; 
18513         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18514         (arg1
)->base_RemoveChild(arg2
); 
18516         wxPyEndAllowThreads(__tstate
); 
18517         if (PyErr_Occurred()) SWIG_fail
; 
18519     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18526 static PyObject 
*_wrap_PyWindow_base_ShouldInheritColours(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18527     PyObject 
*resultobj
; 
18528     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18530     PyObject 
* obj0 
= 0 ; 
18531     char *kwnames
[] = { 
18532         (char *) "self", NULL 
 
18535     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_ShouldInheritColours",kwnames
,&obj0
)) goto fail
; 
18536     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18537     if (SWIG_arg_fail(1)) SWIG_fail
; 
18539         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18540         result 
= (bool)((wxPyWindow 
const *)arg1
)->base_ShouldInheritColours(); 
18542         wxPyEndAllowThreads(__tstate
); 
18543         if (PyErr_Occurred()) SWIG_fail
; 
18546         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18554 static PyObject 
*_wrap_PyWindow_base_GetDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18555     PyObject 
*resultobj
; 
18556     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18557     wxVisualAttributes result
; 
18558     PyObject 
* obj0 
= 0 ; 
18559     char *kwnames
[] = { 
18560         (char *) "self", NULL 
 
18563     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_GetDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
18564     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18565     if (SWIG_arg_fail(1)) SWIG_fail
; 
18567         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18568         result 
= (arg1
)->base_GetDefaultAttributes(); 
18570         wxPyEndAllowThreads(__tstate
); 
18571         if (PyErr_Occurred()) SWIG_fail
; 
18574         wxVisualAttributes 
* resultptr
; 
18575         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
18576         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
18584 static PyObject 
*_wrap_PyWindow_base_OnInternalIdle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18585     PyObject 
*resultobj
; 
18586     wxPyWindow 
*arg1 
= (wxPyWindow 
*) 0 ; 
18587     PyObject 
* obj0 
= 0 ; 
18588     char *kwnames
[] = { 
18589         (char *) "self", NULL 
 
18592     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyWindow_base_OnInternalIdle",kwnames
,&obj0
)) goto fail
; 
18593     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18594     if (SWIG_arg_fail(1)) SWIG_fail
; 
18596         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18597         (arg1
)->base_OnInternalIdle(); 
18599         wxPyEndAllowThreads(__tstate
); 
18600         if (PyErr_Occurred()) SWIG_fail
; 
18602     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18609 static PyObject 
* PyWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
18611     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
18612     SWIG_TypeClientData(SWIGTYPE_p_wxPyWindow
, obj
); 
18614     return Py_BuildValue((char *)""); 
18616 static PyObject 
*_wrap_new_PyPanel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18617     PyObject 
*resultobj
; 
18618     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
18619     int arg2 
= (int) (int)-1 ; 
18620     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
18621     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
18622     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
18623     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
18624     long arg5 
= (long) 0 ; 
18625     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
18626     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
18630     bool temp6 
= false ; 
18631     PyObject 
* obj0 
= 0 ; 
18632     PyObject 
* obj1 
= 0 ; 
18633     PyObject 
* obj2 
= 0 ; 
18634     PyObject 
* obj3 
= 0 ; 
18635     PyObject 
* obj4 
= 0 ; 
18636     PyObject 
* obj5 
= 0 ; 
18637     char *kwnames
[] = { 
18638         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
18641     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyPanel",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
18642     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
18643     if (SWIG_arg_fail(1)) SWIG_fail
; 
18646             arg2 
= (int const)(SWIG_As_int(obj1
));  
18647             if (SWIG_arg_fail(2)) SWIG_fail
; 
18653             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
18659             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
18664             arg5 
= (long)(SWIG_As_long(obj4
));  
18665             if (SWIG_arg_fail(5)) SWIG_fail
; 
18670             arg6 
= wxString_in_helper(obj5
); 
18671             if (arg6 
== NULL
) SWIG_fail
; 
18676         if (!wxPyCheckForApp()) SWIG_fail
; 
18677         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18678         result 
= (wxPyPanel 
*)new wxPyPanel(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
18680         wxPyEndAllowThreads(__tstate
); 
18681         if (PyErr_Occurred()) SWIG_fail
; 
18683     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPanel
, 1); 
18698 static PyObject 
*_wrap_new_PrePyPanel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18699     PyObject 
*resultobj
; 
18701     char *kwnames
[] = { 
18705     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePyPanel",kwnames
)) goto fail
; 
18707         if (!wxPyCheckForApp()) SWIG_fail
; 
18708         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18709         result 
= (wxPyPanel 
*)new wxPyPanel(); 
18711         wxPyEndAllowThreads(__tstate
); 
18712         if (PyErr_Occurred()) SWIG_fail
; 
18714     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPanel
, 1); 
18721 static PyObject 
*_wrap_PyPanel__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18722     PyObject 
*resultobj
; 
18723     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18724     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
18725     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
18726     PyObject 
* obj0 
= 0 ; 
18727     PyObject 
* obj1 
= 0 ; 
18728     PyObject 
* obj2 
= 0 ; 
18729     char *kwnames
[] = { 
18730         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
18733     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
18734     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18735     if (SWIG_arg_fail(1)) SWIG_fail
; 
18739         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18740         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
18742         wxPyEndAllowThreads(__tstate
); 
18743         if (PyErr_Occurred()) SWIG_fail
; 
18745     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18752 static PyObject 
*_wrap_PyPanel_SetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18753     PyObject 
*resultobj
; 
18754     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18757     PyObject 
* obj0 
= 0 ; 
18758     PyObject 
* obj1 
= 0 ; 
18759     char *kwnames
[] = { 
18760         (char *) "self",(char *) "size", NULL 
 
18763     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_SetBestSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
18764     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18765     if (SWIG_arg_fail(1)) SWIG_fail
; 
18768         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
18771         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18772         (arg1
)->SetBestSize((wxSize 
const &)*arg2
); 
18774         wxPyEndAllowThreads(__tstate
); 
18775         if (PyErr_Occurred()) SWIG_fail
; 
18777     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18784 static PyObject 
*_wrap_PyPanel_DoEraseBackground(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18785     PyObject 
*resultobj
; 
18786     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18787     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
18789     PyObject 
* obj0 
= 0 ; 
18790     PyObject 
* obj1 
= 0 ; 
18791     char *kwnames
[] = { 
18792         (char *) "self",(char *) "dc", NULL 
 
18795     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_DoEraseBackground",kwnames
,&obj0
,&obj1
)) goto fail
; 
18796     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18797     if (SWIG_arg_fail(1)) SWIG_fail
; 
18798     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
18799     if (SWIG_arg_fail(2)) SWIG_fail
; 
18801         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18802         result 
= (bool)(arg1
)->DoEraseBackground(arg2
); 
18804         wxPyEndAllowThreads(__tstate
); 
18805         if (PyErr_Occurred()) SWIG_fail
; 
18808         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18816 static PyObject 
*_wrap_PyPanel_base_DoMoveWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18817     PyObject 
*resultobj
; 
18818     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18823     PyObject 
* obj0 
= 0 ; 
18824     PyObject 
* obj1 
= 0 ; 
18825     PyObject 
* obj2 
= 0 ; 
18826     PyObject 
* obj3 
= 0 ; 
18827     PyObject 
* obj4 
= 0 ; 
18828     char *kwnames
[] = { 
18829         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL 
 
18832     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyPanel_base_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
18833     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18834     if (SWIG_arg_fail(1)) SWIG_fail
; 
18836         arg2 
= (int)(SWIG_As_int(obj1
));  
18837         if (SWIG_arg_fail(2)) SWIG_fail
; 
18840         arg3 
= (int)(SWIG_As_int(obj2
));  
18841         if (SWIG_arg_fail(3)) SWIG_fail
; 
18844         arg4 
= (int)(SWIG_As_int(obj3
));  
18845         if (SWIG_arg_fail(4)) SWIG_fail
; 
18848         arg5 
= (int)(SWIG_As_int(obj4
));  
18849         if (SWIG_arg_fail(5)) SWIG_fail
; 
18852         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18853         (arg1
)->base_DoMoveWindow(arg2
,arg3
,arg4
,arg5
); 
18855         wxPyEndAllowThreads(__tstate
); 
18856         if (PyErr_Occurred()) SWIG_fail
; 
18858     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18865 static PyObject 
*_wrap_PyPanel_base_DoSetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18866     PyObject 
*resultobj
; 
18867     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18872     int arg6 
= (int) wxSIZE_AUTO 
; 
18873     PyObject 
* obj0 
= 0 ; 
18874     PyObject 
* obj1 
= 0 ; 
18875     PyObject 
* obj2 
= 0 ; 
18876     PyObject 
* obj3 
= 0 ; 
18877     PyObject 
* obj4 
= 0 ; 
18878     PyObject 
* obj5 
= 0 ; 
18879     char *kwnames
[] = { 
18880         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL 
 
18883     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyPanel_base_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
18884     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18885     if (SWIG_arg_fail(1)) SWIG_fail
; 
18887         arg2 
= (int)(SWIG_As_int(obj1
));  
18888         if (SWIG_arg_fail(2)) SWIG_fail
; 
18891         arg3 
= (int)(SWIG_As_int(obj2
));  
18892         if (SWIG_arg_fail(3)) SWIG_fail
; 
18895         arg4 
= (int)(SWIG_As_int(obj3
));  
18896         if (SWIG_arg_fail(4)) SWIG_fail
; 
18899         arg5 
= (int)(SWIG_As_int(obj4
));  
18900         if (SWIG_arg_fail(5)) SWIG_fail
; 
18904             arg6 
= (int)(SWIG_As_int(obj5
));  
18905             if (SWIG_arg_fail(6)) SWIG_fail
; 
18909         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18910         (arg1
)->base_DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
); 
18912         wxPyEndAllowThreads(__tstate
); 
18913         if (PyErr_Occurred()) SWIG_fail
; 
18915     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18922 static PyObject 
*_wrap_PyPanel_base_DoSetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18923     PyObject 
*resultobj
; 
18924     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18927     PyObject 
* obj0 
= 0 ; 
18928     PyObject 
* obj1 
= 0 ; 
18929     PyObject 
* obj2 
= 0 ; 
18930     char *kwnames
[] = { 
18931         (char *) "self",(char *) "width",(char *) "height", NULL 
 
18934     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_base_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
18935     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18936     if (SWIG_arg_fail(1)) SWIG_fail
; 
18938         arg2 
= (int)(SWIG_As_int(obj1
));  
18939         if (SWIG_arg_fail(2)) SWIG_fail
; 
18942         arg3 
= (int)(SWIG_As_int(obj2
));  
18943         if (SWIG_arg_fail(3)) SWIG_fail
; 
18946         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18947         (arg1
)->base_DoSetClientSize(arg2
,arg3
); 
18949         wxPyEndAllowThreads(__tstate
); 
18950         if (PyErr_Occurred()) SWIG_fail
; 
18952     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18959 static PyObject 
*_wrap_PyPanel_base_DoSetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18960     PyObject 
*resultobj
; 
18961     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18964     PyObject 
* obj0 
= 0 ; 
18965     PyObject 
* obj1 
= 0 ; 
18966     PyObject 
* obj2 
= 0 ; 
18967     char *kwnames
[] = { 
18968         (char *) "self",(char *) "x",(char *) "y", NULL 
 
18971     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPanel_base_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
18972     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
18973     if (SWIG_arg_fail(1)) SWIG_fail
; 
18975         arg2 
= (int)(SWIG_As_int(obj1
));  
18976         if (SWIG_arg_fail(2)) SWIG_fail
; 
18979         arg3 
= (int)(SWIG_As_int(obj2
));  
18980         if (SWIG_arg_fail(3)) SWIG_fail
; 
18983         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18984         (arg1
)->base_DoSetVirtualSize(arg2
,arg3
); 
18986         wxPyEndAllowThreads(__tstate
); 
18987         if (PyErr_Occurred()) SWIG_fail
; 
18989     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
18996 static PyObject 
*_wrap_PyPanel_base_DoGetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
18997     PyObject 
*resultobj
; 
18998     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
18999     int *arg2 
= (int *) 0 ; 
19000     int *arg3 
= (int *) 0 ; 
19005     PyObject 
* obj0 
= 0 ; 
19006     char *kwnames
[] = { 
19007         (char *) "self", NULL 
 
19010     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19011     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19012     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_DoGetSize",kwnames
,&obj0
)) goto fail
; 
19013     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19014     if (SWIG_arg_fail(1)) SWIG_fail
; 
19016         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19017         ((wxPyPanel 
const *)arg1
)->base_DoGetSize(arg2
,arg3
); 
19019         wxPyEndAllowThreads(__tstate
); 
19020         if (PyErr_Occurred()) SWIG_fail
; 
19022     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19023     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19024     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19025     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19026     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
19033 static PyObject 
*_wrap_PyPanel_base_DoGetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19034     PyObject 
*resultobj
; 
19035     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19036     int *arg2 
= (int *) 0 ; 
19037     int *arg3 
= (int *) 0 ; 
19042     PyObject 
* obj0 
= 0 ; 
19043     char *kwnames
[] = { 
19044         (char *) "self", NULL 
 
19047     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19048     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19049     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_DoGetClientSize",kwnames
,&obj0
)) goto fail
; 
19050     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19051     if (SWIG_arg_fail(1)) SWIG_fail
; 
19053         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19054         ((wxPyPanel 
const *)arg1
)->base_DoGetClientSize(arg2
,arg3
); 
19056         wxPyEndAllowThreads(__tstate
); 
19057         if (PyErr_Occurred()) SWIG_fail
; 
19059     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19060     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19061     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19062     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19063     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
19070 static PyObject 
*_wrap_PyPanel_base_DoGetPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19071     PyObject 
*resultobj
; 
19072     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19073     int *arg2 
= (int *) 0 ; 
19074     int *arg3 
= (int *) 0 ; 
19079     PyObject 
* obj0 
= 0 ; 
19080     char *kwnames
[] = { 
19081         (char *) "self", NULL 
 
19084     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19085     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19086     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_DoGetPosition",kwnames
,&obj0
)) goto fail
; 
19087     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19088     if (SWIG_arg_fail(1)) SWIG_fail
; 
19090         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19091         ((wxPyPanel 
const *)arg1
)->base_DoGetPosition(arg2
,arg3
); 
19093         wxPyEndAllowThreads(__tstate
); 
19094         if (PyErr_Occurred()) SWIG_fail
; 
19096     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19097     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19098     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19099     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19100     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
19107 static PyObject 
*_wrap_PyPanel_base_DoGetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19108     PyObject 
*resultobj
; 
19109     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19111     PyObject 
* obj0 
= 0 ; 
19112     char *kwnames
[] = { 
19113         (char *) "self", NULL 
 
19116     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_DoGetVirtualSize",kwnames
,&obj0
)) goto fail
; 
19117     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19118     if (SWIG_arg_fail(1)) SWIG_fail
; 
19120         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19121         result 
= ((wxPyPanel 
const *)arg1
)->base_DoGetVirtualSize(); 
19123         wxPyEndAllowThreads(__tstate
); 
19124         if (PyErr_Occurred()) SWIG_fail
; 
19127         wxSize 
* resultptr
; 
19128         resultptr 
= new wxSize((wxSize 
&)(result
)); 
19129         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
19137 static PyObject 
*_wrap_PyPanel_base_DoGetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19138     PyObject 
*resultobj
; 
19139     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19141     PyObject 
* obj0 
= 0 ; 
19142     char *kwnames
[] = { 
19143         (char *) "self", NULL 
 
19146     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_DoGetBestSize",kwnames
,&obj0
)) goto fail
; 
19147     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19148     if (SWIG_arg_fail(1)) SWIG_fail
; 
19150         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19151         result 
= ((wxPyPanel 
const *)arg1
)->base_DoGetBestSize(); 
19153         wxPyEndAllowThreads(__tstate
); 
19154         if (PyErr_Occurred()) SWIG_fail
; 
19157         wxSize 
* resultptr
; 
19158         resultptr 
= new wxSize((wxSize 
&)(result
)); 
19159         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
19167 static PyObject 
*_wrap_PyPanel_base_InitDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19168     PyObject 
*resultobj
; 
19169     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19170     PyObject 
* obj0 
= 0 ; 
19171     char *kwnames
[] = { 
19172         (char *) "self", NULL 
 
19175     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_InitDialog",kwnames
,&obj0
)) goto fail
; 
19176     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19177     if (SWIG_arg_fail(1)) SWIG_fail
; 
19179         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19180         (arg1
)->base_InitDialog(); 
19182         wxPyEndAllowThreads(__tstate
); 
19183         if (PyErr_Occurred()) SWIG_fail
; 
19185     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19192 static PyObject 
*_wrap_PyPanel_base_TransferDataToWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19193     PyObject 
*resultobj
; 
19194     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19196     PyObject 
* obj0 
= 0 ; 
19197     char *kwnames
[] = { 
19198         (char *) "self", NULL 
 
19201     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_TransferDataToWindow",kwnames
,&obj0
)) goto fail
; 
19202     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19203     if (SWIG_arg_fail(1)) SWIG_fail
; 
19205         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19206         result 
= (bool)(arg1
)->base_TransferDataToWindow(); 
19208         wxPyEndAllowThreads(__tstate
); 
19209         if (PyErr_Occurred()) SWIG_fail
; 
19212         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19220 static PyObject 
*_wrap_PyPanel_base_TransferDataFromWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19221     PyObject 
*resultobj
; 
19222     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19224     PyObject 
* obj0 
= 0 ; 
19225     char *kwnames
[] = { 
19226         (char *) "self", NULL 
 
19229     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_TransferDataFromWindow",kwnames
,&obj0
)) goto fail
; 
19230     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19231     if (SWIG_arg_fail(1)) SWIG_fail
; 
19233         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19234         result 
= (bool)(arg1
)->base_TransferDataFromWindow(); 
19236         wxPyEndAllowThreads(__tstate
); 
19237         if (PyErr_Occurred()) SWIG_fail
; 
19240         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19248 static PyObject 
*_wrap_PyPanel_base_Validate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19249     PyObject 
*resultobj
; 
19250     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19252     PyObject 
* obj0 
= 0 ; 
19253     char *kwnames
[] = { 
19254         (char *) "self", NULL 
 
19257     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_Validate",kwnames
,&obj0
)) goto fail
; 
19258     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19259     if (SWIG_arg_fail(1)) SWIG_fail
; 
19261         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19262         result 
= (bool)(arg1
)->base_Validate(); 
19264         wxPyEndAllowThreads(__tstate
); 
19265         if (PyErr_Occurred()) SWIG_fail
; 
19268         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19276 static PyObject 
*_wrap_PyPanel_base_AcceptsFocus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19277     PyObject 
*resultobj
; 
19278     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19280     PyObject 
* obj0 
= 0 ; 
19281     char *kwnames
[] = { 
19282         (char *) "self", NULL 
 
19285     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_AcceptsFocus",kwnames
,&obj0
)) goto fail
; 
19286     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19287     if (SWIG_arg_fail(1)) SWIG_fail
; 
19289         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19290         result 
= (bool)((wxPyPanel 
const *)arg1
)->base_AcceptsFocus(); 
19292         wxPyEndAllowThreads(__tstate
); 
19293         if (PyErr_Occurred()) SWIG_fail
; 
19296         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19304 static PyObject 
*_wrap_PyPanel_base_AcceptsFocusFromKeyboard(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19305     PyObject 
*resultobj
; 
19306     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19308     PyObject 
* obj0 
= 0 ; 
19309     char *kwnames
[] = { 
19310         (char *) "self", NULL 
 
19313     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_AcceptsFocusFromKeyboard",kwnames
,&obj0
)) goto fail
; 
19314     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19315     if (SWIG_arg_fail(1)) SWIG_fail
; 
19317         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19318         result 
= (bool)((wxPyPanel 
const *)arg1
)->base_AcceptsFocusFromKeyboard(); 
19320         wxPyEndAllowThreads(__tstate
); 
19321         if (PyErr_Occurred()) SWIG_fail
; 
19324         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19332 static PyObject 
*_wrap_PyPanel_base_GetMaxSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19333     PyObject 
*resultobj
; 
19334     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19336     PyObject 
* obj0 
= 0 ; 
19337     char *kwnames
[] = { 
19338         (char *) "self", NULL 
 
19341     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_GetMaxSize",kwnames
,&obj0
)) goto fail
; 
19342     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19343     if (SWIG_arg_fail(1)) SWIG_fail
; 
19345         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19346         result 
= ((wxPyPanel 
const *)arg1
)->base_GetMaxSize(); 
19348         wxPyEndAllowThreads(__tstate
); 
19349         if (PyErr_Occurred()) SWIG_fail
; 
19352         wxSize 
* resultptr
; 
19353         resultptr 
= new wxSize((wxSize 
&)(result
)); 
19354         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
19362 static PyObject 
*_wrap_PyPanel_base_AddChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19363     PyObject 
*resultobj
; 
19364     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19365     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
19366     PyObject 
* obj0 
= 0 ; 
19367     PyObject 
* obj1 
= 0 ; 
19368     char *kwnames
[] = { 
19369         (char *) "self",(char *) "child", NULL 
 
19372     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_base_AddChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
19373     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19374     if (SWIG_arg_fail(1)) SWIG_fail
; 
19375     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19376     if (SWIG_arg_fail(2)) SWIG_fail
; 
19378         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19379         (arg1
)->base_AddChild(arg2
); 
19381         wxPyEndAllowThreads(__tstate
); 
19382         if (PyErr_Occurred()) SWIG_fail
; 
19384     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19391 static PyObject 
*_wrap_PyPanel_base_RemoveChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19392     PyObject 
*resultobj
; 
19393     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19394     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
19395     PyObject 
* obj0 
= 0 ; 
19396     PyObject 
* obj1 
= 0 ; 
19397     char *kwnames
[] = { 
19398         (char *) "self",(char *) "child", NULL 
 
19401     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPanel_base_RemoveChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
19402     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19403     if (SWIG_arg_fail(1)) SWIG_fail
; 
19404     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19405     if (SWIG_arg_fail(2)) SWIG_fail
; 
19407         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19408         (arg1
)->base_RemoveChild(arg2
); 
19410         wxPyEndAllowThreads(__tstate
); 
19411         if (PyErr_Occurred()) SWIG_fail
; 
19413     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19420 static PyObject 
*_wrap_PyPanel_base_ShouldInheritColours(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19421     PyObject 
*resultobj
; 
19422     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19424     PyObject 
* obj0 
= 0 ; 
19425     char *kwnames
[] = { 
19426         (char *) "self", NULL 
 
19429     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_ShouldInheritColours",kwnames
,&obj0
)) goto fail
; 
19430     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19431     if (SWIG_arg_fail(1)) SWIG_fail
; 
19433         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19434         result 
= (bool)((wxPyPanel 
const *)arg1
)->base_ShouldInheritColours(); 
19436         wxPyEndAllowThreads(__tstate
); 
19437         if (PyErr_Occurred()) SWIG_fail
; 
19440         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19448 static PyObject 
*_wrap_PyPanel_base_GetDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19449     PyObject 
*resultobj
; 
19450     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19451     wxVisualAttributes result
; 
19452     PyObject 
* obj0 
= 0 ; 
19453     char *kwnames
[] = { 
19454         (char *) "self", NULL 
 
19457     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_GetDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
19458     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19459     if (SWIG_arg_fail(1)) SWIG_fail
; 
19461         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19462         result 
= (arg1
)->base_GetDefaultAttributes(); 
19464         wxPyEndAllowThreads(__tstate
); 
19465         if (PyErr_Occurred()) SWIG_fail
; 
19468         wxVisualAttributes 
* resultptr
; 
19469         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
19470         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
19478 static PyObject 
*_wrap_PyPanel_base_OnInternalIdle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19479     PyObject 
*resultobj
; 
19480     wxPyPanel 
*arg1 
= (wxPyPanel 
*) 0 ; 
19481     PyObject 
* obj0 
= 0 ; 
19482     char *kwnames
[] = { 
19483         (char *) "self", NULL 
 
19486     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPanel_base_OnInternalIdle",kwnames
,&obj0
)) goto fail
; 
19487     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPanel
, SWIG_POINTER_EXCEPTION 
| 0); 
19488     if (SWIG_arg_fail(1)) SWIG_fail
; 
19490         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19491         (arg1
)->base_OnInternalIdle(); 
19493         wxPyEndAllowThreads(__tstate
); 
19494         if (PyErr_Occurred()) SWIG_fail
; 
19496     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19503 static PyObject 
* PyPanel_swigregister(PyObject 
*, PyObject 
*args
) { 
19505     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
19506     SWIG_TypeClientData(SWIGTYPE_p_wxPyPanel
, obj
); 
19508     return Py_BuildValue((char *)""); 
19510 static PyObject 
*_wrap_new_PyScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19511     PyObject 
*resultobj
; 
19512     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
19513     int arg2 
= (int) (int)-1 ; 
19514     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
19515     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
19516     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
19517     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
19518     long arg5 
= (long) 0 ; 
19519     wxString 
const &arg6_defvalue 
= wxPyPanelNameStr 
; 
19520     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
19521     wxPyScrolledWindow 
*result
; 
19524     bool temp6 
= false ; 
19525     PyObject 
* obj0 
= 0 ; 
19526     PyObject 
* obj1 
= 0 ; 
19527     PyObject 
* obj2 
= 0 ; 
19528     PyObject 
* obj3 
= 0 ; 
19529     PyObject 
* obj4 
= 0 ; 
19530     PyObject 
* obj5 
= 0 ; 
19531     char *kwnames
[] = { 
19532         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
19535     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_PyScrolledWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
19536     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19537     if (SWIG_arg_fail(1)) SWIG_fail
; 
19540             arg2 
= (int const)(SWIG_As_int(obj1
));  
19541             if (SWIG_arg_fail(2)) SWIG_fail
; 
19547             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
19553             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
19558             arg5 
= (long)(SWIG_As_long(obj4
));  
19559             if (SWIG_arg_fail(5)) SWIG_fail
; 
19564             arg6 
= wxString_in_helper(obj5
); 
19565             if (arg6 
== NULL
) SWIG_fail
; 
19570         if (!wxPyCheckForApp()) SWIG_fail
; 
19571         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19572         result 
= (wxPyScrolledWindow 
*)new wxPyScrolledWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
19574         wxPyEndAllowThreads(__tstate
); 
19575         if (PyErr_Occurred()) SWIG_fail
; 
19577     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyScrolledWindow
, 1); 
19592 static PyObject 
*_wrap_new_PrePyScrolledWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19593     PyObject 
*resultobj
; 
19594     wxPyScrolledWindow 
*result
; 
19595     char *kwnames
[] = { 
19599     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PrePyScrolledWindow",kwnames
)) goto fail
; 
19601         if (!wxPyCheckForApp()) SWIG_fail
; 
19602         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19603         result 
= (wxPyScrolledWindow 
*)new wxPyScrolledWindow(); 
19605         wxPyEndAllowThreads(__tstate
); 
19606         if (PyErr_Occurred()) SWIG_fail
; 
19608     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyScrolledWindow
, 1); 
19615 static PyObject 
*_wrap_PyScrolledWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19616     PyObject 
*resultobj
; 
19617     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19618     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
19619     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
19620     PyObject 
* obj0 
= 0 ; 
19621     PyObject 
* obj1 
= 0 ; 
19622     PyObject 
* obj2 
= 0 ; 
19623     char *kwnames
[] = { 
19624         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
19627     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
19628     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19629     if (SWIG_arg_fail(1)) SWIG_fail
; 
19633         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19634         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
19636         wxPyEndAllowThreads(__tstate
); 
19637         if (PyErr_Occurred()) SWIG_fail
; 
19639     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19646 static PyObject 
*_wrap_PyScrolledWindow_SetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19647     PyObject 
*resultobj
; 
19648     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19651     PyObject 
* obj0 
= 0 ; 
19652     PyObject 
* obj1 
= 0 ; 
19653     char *kwnames
[] = { 
19654         (char *) "self",(char *) "size", NULL 
 
19657     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_SetBestSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
19658     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19659     if (SWIG_arg_fail(1)) SWIG_fail
; 
19662         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
19665         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19666         (arg1
)->SetBestSize((wxSize 
const &)*arg2
); 
19668         wxPyEndAllowThreads(__tstate
); 
19669         if (PyErr_Occurred()) SWIG_fail
; 
19671     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19678 static PyObject 
*_wrap_PyScrolledWindow_DoEraseBackground(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19679     PyObject 
*resultobj
; 
19680     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19681     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
19683     PyObject 
* obj0 
= 0 ; 
19684     PyObject 
* obj1 
= 0 ; 
19685     char *kwnames
[] = { 
19686         (char *) "self",(char *) "dc", NULL 
 
19689     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_DoEraseBackground",kwnames
,&obj0
,&obj1
)) goto fail
; 
19690     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19691     if (SWIG_arg_fail(1)) SWIG_fail
; 
19692     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
19693     if (SWIG_arg_fail(2)) SWIG_fail
; 
19695         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19696         result 
= (bool)(arg1
)->DoEraseBackground(arg2
); 
19698         wxPyEndAllowThreads(__tstate
); 
19699         if (PyErr_Occurred()) SWIG_fail
; 
19702         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19710 static PyObject 
*_wrap_PyScrolledWindow_base_DoMoveWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19711     PyObject 
*resultobj
; 
19712     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19717     PyObject 
* obj0 
= 0 ; 
19718     PyObject 
* obj1 
= 0 ; 
19719     PyObject 
* obj2 
= 0 ; 
19720     PyObject 
* obj3 
= 0 ; 
19721     PyObject 
* obj4 
= 0 ; 
19722     char *kwnames
[] = { 
19723         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height", NULL 
 
19726     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:PyScrolledWindow_base_DoMoveWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
19727     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19728     if (SWIG_arg_fail(1)) SWIG_fail
; 
19730         arg2 
= (int)(SWIG_As_int(obj1
));  
19731         if (SWIG_arg_fail(2)) SWIG_fail
; 
19734         arg3 
= (int)(SWIG_As_int(obj2
));  
19735         if (SWIG_arg_fail(3)) SWIG_fail
; 
19738         arg4 
= (int)(SWIG_As_int(obj3
));  
19739         if (SWIG_arg_fail(4)) SWIG_fail
; 
19742         arg5 
= (int)(SWIG_As_int(obj4
));  
19743         if (SWIG_arg_fail(5)) SWIG_fail
; 
19746         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19747         (arg1
)->base_DoMoveWindow(arg2
,arg3
,arg4
,arg5
); 
19749         wxPyEndAllowThreads(__tstate
); 
19750         if (PyErr_Occurred()) SWIG_fail
; 
19752     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19759 static PyObject 
*_wrap_PyScrolledWindow_base_DoSetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19760     PyObject 
*resultobj
; 
19761     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19766     int arg6 
= (int) wxSIZE_AUTO 
; 
19767     PyObject 
* obj0 
= 0 ; 
19768     PyObject 
* obj1 
= 0 ; 
19769     PyObject 
* obj2 
= 0 ; 
19770     PyObject 
* obj3 
= 0 ; 
19771     PyObject 
* obj4 
= 0 ; 
19772     PyObject 
* obj5 
= 0 ; 
19773     char *kwnames
[] = { 
19774         (char *) "self",(char *) "x",(char *) "y",(char *) "width",(char *) "height",(char *) "sizeFlags", NULL 
 
19777     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO|O:PyScrolledWindow_base_DoSetSize",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
19778     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19779     if (SWIG_arg_fail(1)) SWIG_fail
; 
19781         arg2 
= (int)(SWIG_As_int(obj1
));  
19782         if (SWIG_arg_fail(2)) SWIG_fail
; 
19785         arg3 
= (int)(SWIG_As_int(obj2
));  
19786         if (SWIG_arg_fail(3)) SWIG_fail
; 
19789         arg4 
= (int)(SWIG_As_int(obj3
));  
19790         if (SWIG_arg_fail(4)) SWIG_fail
; 
19793         arg5 
= (int)(SWIG_As_int(obj4
));  
19794         if (SWIG_arg_fail(5)) SWIG_fail
; 
19798             arg6 
= (int)(SWIG_As_int(obj5
));  
19799             if (SWIG_arg_fail(6)) SWIG_fail
; 
19803         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19804         (arg1
)->base_DoSetSize(arg2
,arg3
,arg4
,arg5
,arg6
); 
19806         wxPyEndAllowThreads(__tstate
); 
19807         if (PyErr_Occurred()) SWIG_fail
; 
19809     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19816 static PyObject 
*_wrap_PyScrolledWindow_base_DoSetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19817     PyObject 
*resultobj
; 
19818     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19821     PyObject 
* obj0 
= 0 ; 
19822     PyObject 
* obj1 
= 0 ; 
19823     PyObject 
* obj2 
= 0 ; 
19824     char *kwnames
[] = { 
19825         (char *) "self",(char *) "width",(char *) "height", NULL 
 
19828     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_base_DoSetClientSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
19829     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19830     if (SWIG_arg_fail(1)) SWIG_fail
; 
19832         arg2 
= (int)(SWIG_As_int(obj1
));  
19833         if (SWIG_arg_fail(2)) SWIG_fail
; 
19836         arg3 
= (int)(SWIG_As_int(obj2
));  
19837         if (SWIG_arg_fail(3)) SWIG_fail
; 
19840         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19841         (arg1
)->base_DoSetClientSize(arg2
,arg3
); 
19843         wxPyEndAllowThreads(__tstate
); 
19844         if (PyErr_Occurred()) SWIG_fail
; 
19846     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19853 static PyObject 
*_wrap_PyScrolledWindow_base_DoSetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19854     PyObject 
*resultobj
; 
19855     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19858     PyObject 
* obj0 
= 0 ; 
19859     PyObject 
* obj1 
= 0 ; 
19860     PyObject 
* obj2 
= 0 ; 
19861     char *kwnames
[] = { 
19862         (char *) "self",(char *) "x",(char *) "y", NULL 
 
19865     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyScrolledWindow_base_DoSetVirtualSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
19866     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19867     if (SWIG_arg_fail(1)) SWIG_fail
; 
19869         arg2 
= (int)(SWIG_As_int(obj1
));  
19870         if (SWIG_arg_fail(2)) SWIG_fail
; 
19873         arg3 
= (int)(SWIG_As_int(obj2
));  
19874         if (SWIG_arg_fail(3)) SWIG_fail
; 
19877         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19878         (arg1
)->base_DoSetVirtualSize(arg2
,arg3
); 
19880         wxPyEndAllowThreads(__tstate
); 
19881         if (PyErr_Occurred()) SWIG_fail
; 
19883     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19890 static PyObject 
*_wrap_PyScrolledWindow_base_DoGetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19891     PyObject 
*resultobj
; 
19892     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19893     int *arg2 
= (int *) 0 ; 
19894     int *arg3 
= (int *) 0 ; 
19899     PyObject 
* obj0 
= 0 ; 
19900     char *kwnames
[] = { 
19901         (char *) "self", NULL 
 
19904     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19905     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19906     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_DoGetSize",kwnames
,&obj0
)) goto fail
; 
19907     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19908     if (SWIG_arg_fail(1)) SWIG_fail
; 
19910         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19911         ((wxPyScrolledWindow 
const *)arg1
)->base_DoGetSize(arg2
,arg3
); 
19913         wxPyEndAllowThreads(__tstate
); 
19914         if (PyErr_Occurred()) SWIG_fail
; 
19916     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19917     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19918     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19919     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19920     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
19927 static PyObject 
*_wrap_PyScrolledWindow_base_DoGetClientSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19928     PyObject 
*resultobj
; 
19929     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19930     int *arg2 
= (int *) 0 ; 
19931     int *arg3 
= (int *) 0 ; 
19936     PyObject 
* obj0 
= 0 ; 
19937     char *kwnames
[] = { 
19938         (char *) "self", NULL 
 
19941     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19942     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19943     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_DoGetClientSize",kwnames
,&obj0
)) goto fail
; 
19944     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19945     if (SWIG_arg_fail(1)) SWIG_fail
; 
19947         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19948         ((wxPyScrolledWindow 
const *)arg1
)->base_DoGetClientSize(arg2
,arg3
); 
19950         wxPyEndAllowThreads(__tstate
); 
19951         if (PyErr_Occurred()) SWIG_fail
; 
19953     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19954     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19955     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19956     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19957     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
19964 static PyObject 
*_wrap_PyScrolledWindow_base_DoGetPosition(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
19965     PyObject 
*resultobj
; 
19966     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
19967     int *arg2 
= (int *) 0 ; 
19968     int *arg3 
= (int *) 0 ; 
19973     PyObject 
* obj0 
= 0 ; 
19974     char *kwnames
[] = { 
19975         (char *) "self", NULL 
 
19978     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
19979     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
19980     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_DoGetPosition",kwnames
,&obj0
)) goto fail
; 
19981     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
19982     if (SWIG_arg_fail(1)) SWIG_fail
; 
19984         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19985         ((wxPyScrolledWindow 
const *)arg1
)->base_DoGetPosition(arg2
,arg3
); 
19987         wxPyEndAllowThreads(__tstate
); 
19988         if (PyErr_Occurred()) SWIG_fail
; 
19990     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
19991     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
19992     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
19993     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
19994     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
20001 static PyObject 
*_wrap_PyScrolledWindow_base_DoGetVirtualSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20002     PyObject 
*resultobj
; 
20003     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20005     PyObject 
* obj0 
= 0 ; 
20006     char *kwnames
[] = { 
20007         (char *) "self", NULL 
 
20010     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_DoGetVirtualSize",kwnames
,&obj0
)) goto fail
; 
20011     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20012     if (SWIG_arg_fail(1)) SWIG_fail
; 
20014         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20015         result 
= ((wxPyScrolledWindow 
const *)arg1
)->base_DoGetVirtualSize(); 
20017         wxPyEndAllowThreads(__tstate
); 
20018         if (PyErr_Occurred()) SWIG_fail
; 
20021         wxSize 
* resultptr
; 
20022         resultptr 
= new wxSize((wxSize 
&)(result
)); 
20023         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
20031 static PyObject 
*_wrap_PyScrolledWindow_base_DoGetBestSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20032     PyObject 
*resultobj
; 
20033     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20035     PyObject 
* obj0 
= 0 ; 
20036     char *kwnames
[] = { 
20037         (char *) "self", NULL 
 
20040     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_DoGetBestSize",kwnames
,&obj0
)) goto fail
; 
20041     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20042     if (SWIG_arg_fail(1)) SWIG_fail
; 
20044         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20045         result 
= ((wxPyScrolledWindow 
const *)arg1
)->base_DoGetBestSize(); 
20047         wxPyEndAllowThreads(__tstate
); 
20048         if (PyErr_Occurred()) SWIG_fail
; 
20051         wxSize 
* resultptr
; 
20052         resultptr 
= new wxSize((wxSize 
&)(result
)); 
20053         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
20061 static PyObject 
*_wrap_PyScrolledWindow_base_InitDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20062     PyObject 
*resultobj
; 
20063     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20064     PyObject 
* obj0 
= 0 ; 
20065     char *kwnames
[] = { 
20066         (char *) "self", NULL 
 
20069     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_InitDialog",kwnames
,&obj0
)) goto fail
; 
20070     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20071     if (SWIG_arg_fail(1)) SWIG_fail
; 
20073         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20074         (arg1
)->base_InitDialog(); 
20076         wxPyEndAllowThreads(__tstate
); 
20077         if (PyErr_Occurred()) SWIG_fail
; 
20079     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20086 static PyObject 
*_wrap_PyScrolledWindow_base_TransferDataToWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20087     PyObject 
*resultobj
; 
20088     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20090     PyObject 
* obj0 
= 0 ; 
20091     char *kwnames
[] = { 
20092         (char *) "self", NULL 
 
20095     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_TransferDataToWindow",kwnames
,&obj0
)) goto fail
; 
20096     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20097     if (SWIG_arg_fail(1)) SWIG_fail
; 
20099         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20100         result 
= (bool)(arg1
)->base_TransferDataToWindow(); 
20102         wxPyEndAllowThreads(__tstate
); 
20103         if (PyErr_Occurred()) SWIG_fail
; 
20106         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20114 static PyObject 
*_wrap_PyScrolledWindow_base_TransferDataFromWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20115     PyObject 
*resultobj
; 
20116     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20118     PyObject 
* obj0 
= 0 ; 
20119     char *kwnames
[] = { 
20120         (char *) "self", NULL 
 
20123     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_TransferDataFromWindow",kwnames
,&obj0
)) goto fail
; 
20124     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20125     if (SWIG_arg_fail(1)) SWIG_fail
; 
20127         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20128         result 
= (bool)(arg1
)->base_TransferDataFromWindow(); 
20130         wxPyEndAllowThreads(__tstate
); 
20131         if (PyErr_Occurred()) SWIG_fail
; 
20134         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20142 static PyObject 
*_wrap_PyScrolledWindow_base_Validate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20143     PyObject 
*resultobj
; 
20144     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20146     PyObject 
* obj0 
= 0 ; 
20147     char *kwnames
[] = { 
20148         (char *) "self", NULL 
 
20151     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_Validate",kwnames
,&obj0
)) goto fail
; 
20152     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20153     if (SWIG_arg_fail(1)) SWIG_fail
; 
20155         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20156         result 
= (bool)(arg1
)->base_Validate(); 
20158         wxPyEndAllowThreads(__tstate
); 
20159         if (PyErr_Occurred()) SWIG_fail
; 
20162         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20170 static PyObject 
*_wrap_PyScrolledWindow_base_AcceptsFocus(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20171     PyObject 
*resultobj
; 
20172     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20174     PyObject 
* obj0 
= 0 ; 
20175     char *kwnames
[] = { 
20176         (char *) "self", NULL 
 
20179     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_AcceptsFocus",kwnames
,&obj0
)) goto fail
; 
20180     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20181     if (SWIG_arg_fail(1)) SWIG_fail
; 
20183         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20184         result 
= (bool)((wxPyScrolledWindow 
const *)arg1
)->base_AcceptsFocus(); 
20186         wxPyEndAllowThreads(__tstate
); 
20187         if (PyErr_Occurred()) SWIG_fail
; 
20190         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20198 static PyObject 
*_wrap_PyScrolledWindow_base_AcceptsFocusFromKeyboard(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20199     PyObject 
*resultobj
; 
20200     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20202     PyObject 
* obj0 
= 0 ; 
20203     char *kwnames
[] = { 
20204         (char *) "self", NULL 
 
20207     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_AcceptsFocusFromKeyboard",kwnames
,&obj0
)) goto fail
; 
20208     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20209     if (SWIG_arg_fail(1)) SWIG_fail
; 
20211         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20212         result 
= (bool)((wxPyScrolledWindow 
const *)arg1
)->base_AcceptsFocusFromKeyboard(); 
20214         wxPyEndAllowThreads(__tstate
); 
20215         if (PyErr_Occurred()) SWIG_fail
; 
20218         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20226 static PyObject 
*_wrap_PyScrolledWindow_base_GetMaxSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20227     PyObject 
*resultobj
; 
20228     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20230     PyObject 
* obj0 
= 0 ; 
20231     char *kwnames
[] = { 
20232         (char *) "self", NULL 
 
20235     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_GetMaxSize",kwnames
,&obj0
)) goto fail
; 
20236     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20237     if (SWIG_arg_fail(1)) SWIG_fail
; 
20239         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20240         result 
= ((wxPyScrolledWindow 
const *)arg1
)->base_GetMaxSize(); 
20242         wxPyEndAllowThreads(__tstate
); 
20243         if (PyErr_Occurred()) SWIG_fail
; 
20246         wxSize 
* resultptr
; 
20247         resultptr 
= new wxSize((wxSize 
&)(result
)); 
20248         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
20256 static PyObject 
*_wrap_PyScrolledWindow_base_AddChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20257     PyObject 
*resultobj
; 
20258     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20259     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
20260     PyObject 
* obj0 
= 0 ; 
20261     PyObject 
* obj1 
= 0 ; 
20262     char *kwnames
[] = { 
20263         (char *) "self",(char *) "child", NULL 
 
20266     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_base_AddChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
20267     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20268     if (SWIG_arg_fail(1)) SWIG_fail
; 
20269     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20270     if (SWIG_arg_fail(2)) SWIG_fail
; 
20272         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20273         (arg1
)->base_AddChild(arg2
); 
20275         wxPyEndAllowThreads(__tstate
); 
20276         if (PyErr_Occurred()) SWIG_fail
; 
20278     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20285 static PyObject 
*_wrap_PyScrolledWindow_base_RemoveChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20286     PyObject 
*resultobj
; 
20287     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20288     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
20289     PyObject 
* obj0 
= 0 ; 
20290     PyObject 
* obj1 
= 0 ; 
20291     char *kwnames
[] = { 
20292         (char *) "self",(char *) "child", NULL 
 
20295     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyScrolledWindow_base_RemoveChild",kwnames
,&obj0
,&obj1
)) goto fail
; 
20296     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20297     if (SWIG_arg_fail(1)) SWIG_fail
; 
20298     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20299     if (SWIG_arg_fail(2)) SWIG_fail
; 
20301         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20302         (arg1
)->base_RemoveChild(arg2
); 
20304         wxPyEndAllowThreads(__tstate
); 
20305         if (PyErr_Occurred()) SWIG_fail
; 
20307     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20314 static PyObject 
*_wrap_PyScrolledWindow_base_ShouldInheritColours(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20315     PyObject 
*resultobj
; 
20316     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20318     PyObject 
* obj0 
= 0 ; 
20319     char *kwnames
[] = { 
20320         (char *) "self", NULL 
 
20323     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_ShouldInheritColours",kwnames
,&obj0
)) goto fail
; 
20324     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20325     if (SWIG_arg_fail(1)) SWIG_fail
; 
20327         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20328         result 
= (bool)((wxPyScrolledWindow 
const *)arg1
)->base_ShouldInheritColours(); 
20330         wxPyEndAllowThreads(__tstate
); 
20331         if (PyErr_Occurred()) SWIG_fail
; 
20334         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20342 static PyObject 
*_wrap_PyScrolledWindow_base_GetDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20343     PyObject 
*resultobj
; 
20344     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20345     wxVisualAttributes result
; 
20346     PyObject 
* obj0 
= 0 ; 
20347     char *kwnames
[] = { 
20348         (char *) "self", NULL 
 
20351     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_GetDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
20352     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20353     if (SWIG_arg_fail(1)) SWIG_fail
; 
20355         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20356         result 
= (arg1
)->base_GetDefaultAttributes(); 
20358         wxPyEndAllowThreads(__tstate
); 
20359         if (PyErr_Occurred()) SWIG_fail
; 
20362         wxVisualAttributes 
* resultptr
; 
20363         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
20364         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
20372 static PyObject 
*_wrap_PyScrolledWindow_base_OnInternalIdle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20373     PyObject 
*resultobj
; 
20374     wxPyScrolledWindow 
*arg1 
= (wxPyScrolledWindow 
*) 0 ; 
20375     PyObject 
* obj0 
= 0 ; 
20376     char *kwnames
[] = { 
20377         (char *) "self", NULL 
 
20380     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyScrolledWindow_base_OnInternalIdle",kwnames
,&obj0
)) goto fail
; 
20381     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyScrolledWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
20382     if (SWIG_arg_fail(1)) SWIG_fail
; 
20384         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20385         (arg1
)->base_OnInternalIdle(); 
20387         wxPyEndAllowThreads(__tstate
); 
20388         if (PyErr_Occurred()) SWIG_fail
; 
20390     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20397 static PyObject 
* PyScrolledWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
20399     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
20400     SWIG_TypeClientData(SWIGTYPE_p_wxPyScrolledWindow
, obj
); 
20402     return Py_BuildValue((char *)""); 
20404 static int _wrap_PrintoutTitleStr_set(PyObject 
*) { 
20405     PyErr_SetString(PyExc_TypeError
,"Variable PrintoutTitleStr is read-only."); 
20410 static PyObject 
*_wrap_PrintoutTitleStr_get(void) { 
20415         pyobj 
= PyUnicode_FromWideChar((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len()); 
20417         pyobj 
= PyString_FromStringAndSize((&wxPyPrintoutTitleStr
)->c_str(), (&wxPyPrintoutTitleStr
)->Len()); 
20424 static int _wrap_PreviewCanvasNameStr_set(PyObject 
*) { 
20425     PyErr_SetString(PyExc_TypeError
,"Variable PreviewCanvasNameStr is read-only."); 
20430 static PyObject 
*_wrap_PreviewCanvasNameStr_get(void) { 
20435         pyobj 
= PyUnicode_FromWideChar((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len()); 
20437         pyobj 
= PyString_FromStringAndSize((&wxPyPreviewCanvasNameStr
)->c_str(), (&wxPyPreviewCanvasNameStr
)->Len()); 
20444 static PyObject 
*_wrap_new_PrintData__SWIG_0(PyObject 
*, PyObject 
*args
) { 
20445     PyObject 
*resultobj
; 
20446     wxPrintData 
*result
; 
20448     if(!PyArg_ParseTuple(args
,(char *)":new_PrintData")) goto fail
; 
20450         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20451         result 
= (wxPrintData 
*)new wxPrintData(); 
20453         wxPyEndAllowThreads(__tstate
); 
20454         if (PyErr_Occurred()) SWIG_fail
; 
20456     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 1); 
20463 static PyObject 
*_wrap_new_PrintData__SWIG_1(PyObject 
*, PyObject 
*args
) { 
20464     PyObject 
*resultobj
; 
20465     wxPrintData 
*arg1 
= 0 ; 
20466     wxPrintData 
*result
; 
20467     PyObject 
* obj0 
= 0 ; 
20469     if(!PyArg_ParseTuple(args
,(char *)"O:new_PrintData",&obj0
)) goto fail
; 
20471         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20472         if (SWIG_arg_fail(1)) SWIG_fail
; 
20473         if (arg1 
== NULL
) { 
20474             SWIG_null_ref("wxPrintData"); 
20476         if (SWIG_arg_fail(1)) SWIG_fail
; 
20479         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20480         result 
= (wxPrintData 
*)new wxPrintData((wxPrintData 
const &)*arg1
); 
20482         wxPyEndAllowThreads(__tstate
); 
20483         if (PyErr_Occurred()) SWIG_fail
; 
20485     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 1); 
20492 static PyObject 
*_wrap_new_PrintData(PyObject 
*self
, PyObject 
*args
) { 
20497     argc 
= PyObject_Length(args
); 
20498     for (ii 
= 0; (ii 
< argc
) && (ii 
< 1); ii
++) { 
20499         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
20502         return _wrap_new_PrintData__SWIG_0(self
,args
); 
20508             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPrintData
, 0) == -1) { 
20516             return _wrap_new_PrintData__SWIG_1(self
,args
); 
20520     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintData'"); 
20525 static PyObject 
*_wrap_delete_PrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20526     PyObject 
*resultobj
; 
20527     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20528     PyObject 
* obj0 
= 0 ; 
20529     char *kwnames
[] = { 
20530         (char *) "self", NULL 
 
20533     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_PrintData",kwnames
,&obj0
)) goto fail
; 
20534     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20535     if (SWIG_arg_fail(1)) SWIG_fail
; 
20537         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20540         wxPyEndAllowThreads(__tstate
); 
20541         if (PyErr_Occurred()) SWIG_fail
; 
20543     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20550 static PyObject 
*_wrap_PrintData_GetNoCopies(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20551     PyObject 
*resultobj
; 
20552     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20554     PyObject 
* obj0 
= 0 ; 
20555     char *kwnames
[] = { 
20556         (char *) "self", NULL 
 
20559     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetNoCopies",kwnames
,&obj0
)) goto fail
; 
20560     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20561     if (SWIG_arg_fail(1)) SWIG_fail
; 
20563         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20564         result 
= (int)(arg1
)->GetNoCopies(); 
20566         wxPyEndAllowThreads(__tstate
); 
20567         if (PyErr_Occurred()) SWIG_fail
; 
20570         resultobj 
= SWIG_From_int((int)(result
));  
20578 static PyObject 
*_wrap_PrintData_GetCollate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20579     PyObject 
*resultobj
; 
20580     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20582     PyObject 
* obj0 
= 0 ; 
20583     char *kwnames
[] = { 
20584         (char *) "self", NULL 
 
20587     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetCollate",kwnames
,&obj0
)) goto fail
; 
20588     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20589     if (SWIG_arg_fail(1)) SWIG_fail
; 
20591         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20592         result 
= (bool)(arg1
)->GetCollate(); 
20594         wxPyEndAllowThreads(__tstate
); 
20595         if (PyErr_Occurred()) SWIG_fail
; 
20598         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20606 static PyObject 
*_wrap_PrintData_GetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20607     PyObject 
*resultobj
; 
20608     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20610     PyObject 
* obj0 
= 0 ; 
20611     char *kwnames
[] = { 
20612         (char *) "self", NULL 
 
20615     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetOrientation",kwnames
,&obj0
)) goto fail
; 
20616     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20617     if (SWIG_arg_fail(1)) SWIG_fail
; 
20619         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20620         result 
= (int)(arg1
)->GetOrientation(); 
20622         wxPyEndAllowThreads(__tstate
); 
20623         if (PyErr_Occurred()) SWIG_fail
; 
20626         resultobj 
= SWIG_From_int((int)(result
));  
20634 static PyObject 
*_wrap_PrintData_Ok(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20635     PyObject 
*resultobj
; 
20636     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20638     PyObject 
* obj0 
= 0 ; 
20639     char *kwnames
[] = { 
20640         (char *) "self", NULL 
 
20643     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_Ok",kwnames
,&obj0
)) goto fail
; 
20644     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20645     if (SWIG_arg_fail(1)) SWIG_fail
; 
20647         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20648         result 
= (bool)(arg1
)->Ok(); 
20650         wxPyEndAllowThreads(__tstate
); 
20651         if (PyErr_Occurred()) SWIG_fail
; 
20654         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20662 static PyObject 
*_wrap_PrintData_GetPrinterName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20663     PyObject 
*resultobj
; 
20664     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20666     PyObject 
* obj0 
= 0 ; 
20667     char *kwnames
[] = { 
20668         (char *) "self", NULL 
 
20671     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterName",kwnames
,&obj0
)) goto fail
; 
20672     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20673     if (SWIG_arg_fail(1)) SWIG_fail
; 
20675         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20677             wxString 
const &_result_ref 
= (arg1
)->GetPrinterName(); 
20678             result 
= (wxString 
*) &_result_ref
; 
20681         wxPyEndAllowThreads(__tstate
); 
20682         if (PyErr_Occurred()) SWIG_fail
; 
20686         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
20688         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
20697 static PyObject 
*_wrap_PrintData_GetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20698     PyObject 
*resultobj
; 
20699     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20701     PyObject 
* obj0 
= 0 ; 
20702     char *kwnames
[] = { 
20703         (char *) "self", NULL 
 
20706     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetColour",kwnames
,&obj0
)) goto fail
; 
20707     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20708     if (SWIG_arg_fail(1)) SWIG_fail
; 
20710         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20711         result 
= (bool)(arg1
)->GetColour(); 
20713         wxPyEndAllowThreads(__tstate
); 
20714         if (PyErr_Occurred()) SWIG_fail
; 
20717         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
20725 static PyObject 
*_wrap_PrintData_GetDuplex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20726     PyObject 
*resultobj
; 
20727     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20728     wxDuplexMode result
; 
20729     PyObject 
* obj0 
= 0 ; 
20730     char *kwnames
[] = { 
20731         (char *) "self", NULL 
 
20734     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetDuplex",kwnames
,&obj0
)) goto fail
; 
20735     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20736     if (SWIG_arg_fail(1)) SWIG_fail
; 
20738         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20739         result 
= (wxDuplexMode
)(arg1
)->GetDuplex(); 
20741         wxPyEndAllowThreads(__tstate
); 
20742         if (PyErr_Occurred()) SWIG_fail
; 
20744     resultobj 
= SWIG_From_int((result
)); 
20751 static PyObject 
*_wrap_PrintData_GetPaperId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20752     PyObject 
*resultobj
; 
20753     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20754     wxPaperSize result
; 
20755     PyObject 
* obj0 
= 0 ; 
20756     char *kwnames
[] = { 
20757         (char *) "self", NULL 
 
20760     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPaperId",kwnames
,&obj0
)) goto fail
; 
20761     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20762     if (SWIG_arg_fail(1)) SWIG_fail
; 
20764         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20765         result 
= (wxPaperSize
)(arg1
)->GetPaperId(); 
20767         wxPyEndAllowThreads(__tstate
); 
20768         if (PyErr_Occurred()) SWIG_fail
; 
20770     resultobj 
= SWIG_From_int((result
)); 
20777 static PyObject 
*_wrap_PrintData_GetPaperSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20778     PyObject 
*resultobj
; 
20779     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20781     PyObject 
* obj0 
= 0 ; 
20782     char *kwnames
[] = { 
20783         (char *) "self", NULL 
 
20786     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPaperSize",kwnames
,&obj0
)) goto fail
; 
20787     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20788     if (SWIG_arg_fail(1)) SWIG_fail
; 
20790         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20792             wxSize 
const &_result_ref 
= (arg1
)->GetPaperSize(); 
20793             result 
= (wxSize 
*) &_result_ref
; 
20796         wxPyEndAllowThreads(__tstate
); 
20797         if (PyErr_Occurred()) SWIG_fail
; 
20799     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSize
, 0); 
20806 static PyObject 
*_wrap_PrintData_GetQuality(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20807     PyObject 
*resultobj
; 
20808     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20810     PyObject 
* obj0 
= 0 ; 
20811     char *kwnames
[] = { 
20812         (char *) "self", NULL 
 
20815     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetQuality",kwnames
,&obj0
)) goto fail
; 
20816     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20817     if (SWIG_arg_fail(1)) SWIG_fail
; 
20819         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20820         result 
= (int)(arg1
)->GetQuality(); 
20822         wxPyEndAllowThreads(__tstate
); 
20823         if (PyErr_Occurred()) SWIG_fail
; 
20826         resultobj 
= SWIG_From_int((int)(result
));  
20834 static PyObject 
*_wrap_PrintData_GetBin(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20835     PyObject 
*resultobj
; 
20836     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20838     PyObject 
* obj0 
= 0 ; 
20839     char *kwnames
[] = { 
20840         (char *) "self", NULL 
 
20843     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetBin",kwnames
,&obj0
)) goto fail
; 
20844     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20845     if (SWIG_arg_fail(1)) SWIG_fail
; 
20847         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20848         result 
= (wxPrintBin
)(arg1
)->GetBin(); 
20850         wxPyEndAllowThreads(__tstate
); 
20851         if (PyErr_Occurred()) SWIG_fail
; 
20853     resultobj 
= SWIG_From_int((result
)); 
20860 static PyObject 
*_wrap_PrintData_GetPrintMode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20861     PyObject 
*resultobj
; 
20862     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20863     wxPrintMode result
; 
20864     PyObject 
* obj0 
= 0 ; 
20865     char *kwnames
[] = { 
20866         (char *) "self", NULL 
 
20869     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrintMode",kwnames
,&obj0
)) goto fail
; 
20870     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20871     if (SWIG_arg_fail(1)) SWIG_fail
; 
20873         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20874         result 
= (wxPrintMode
)((wxPrintData 
const *)arg1
)->GetPrintMode(); 
20876         wxPyEndAllowThreads(__tstate
); 
20877         if (PyErr_Occurred()) SWIG_fail
; 
20879     resultobj 
= SWIG_From_int((result
)); 
20886 static PyObject 
*_wrap_PrintData_SetNoCopies(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20887     PyObject 
*resultobj
; 
20888     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20890     PyObject 
* obj0 
= 0 ; 
20891     PyObject 
* obj1 
= 0 ; 
20892     char *kwnames
[] = { 
20893         (char *) "self",(char *) "v", NULL 
 
20896     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetNoCopies",kwnames
,&obj0
,&obj1
)) goto fail
; 
20897     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20898     if (SWIG_arg_fail(1)) SWIG_fail
; 
20900         arg2 
= (int)(SWIG_As_int(obj1
));  
20901         if (SWIG_arg_fail(2)) SWIG_fail
; 
20904         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20905         (arg1
)->SetNoCopies(arg2
); 
20907         wxPyEndAllowThreads(__tstate
); 
20908         if (PyErr_Occurred()) SWIG_fail
; 
20910     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20917 static PyObject 
*_wrap_PrintData_SetCollate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20918     PyObject 
*resultobj
; 
20919     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20921     PyObject 
* obj0 
= 0 ; 
20922     PyObject 
* obj1 
= 0 ; 
20923     char *kwnames
[] = { 
20924         (char *) "self",(char *) "flag", NULL 
 
20927     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetCollate",kwnames
,&obj0
,&obj1
)) goto fail
; 
20928     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20929     if (SWIG_arg_fail(1)) SWIG_fail
; 
20931         arg2 
= (bool)(SWIG_As_bool(obj1
));  
20932         if (SWIG_arg_fail(2)) SWIG_fail
; 
20935         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20936         (arg1
)->SetCollate(arg2
); 
20938         wxPyEndAllowThreads(__tstate
); 
20939         if (PyErr_Occurred()) SWIG_fail
; 
20941     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20948 static PyObject 
*_wrap_PrintData_SetOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20949     PyObject 
*resultobj
; 
20950     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20952     PyObject 
* obj0 
= 0 ; 
20953     PyObject 
* obj1 
= 0 ; 
20954     char *kwnames
[] = { 
20955         (char *) "self",(char *) "orient", NULL 
 
20958     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetOrientation",kwnames
,&obj0
,&obj1
)) goto fail
; 
20959     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20960     if (SWIG_arg_fail(1)) SWIG_fail
; 
20962         arg2 
= (int)(SWIG_As_int(obj1
));  
20963         if (SWIG_arg_fail(2)) SWIG_fail
; 
20966         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20967         (arg1
)->SetOrientation(arg2
); 
20969         wxPyEndAllowThreads(__tstate
); 
20970         if (PyErr_Occurred()) SWIG_fail
; 
20972     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
20979 static PyObject 
*_wrap_PrintData_SetPrinterName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
20980     PyObject 
*resultobj
; 
20981     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
20982     wxString 
*arg2 
= 0 ; 
20983     bool temp2 
= false ; 
20984     PyObject 
* obj0 
= 0 ; 
20985     PyObject 
* obj1 
= 0 ; 
20986     char *kwnames
[] = { 
20987         (char *) "self",(char *) "name", NULL 
 
20990     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterName",kwnames
,&obj0
,&obj1
)) goto fail
; 
20991     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
20992     if (SWIG_arg_fail(1)) SWIG_fail
; 
20994         arg2 
= wxString_in_helper(obj1
); 
20995         if (arg2 
== NULL
) SWIG_fail
; 
20999         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21000         (arg1
)->SetPrinterName((wxString 
const &)*arg2
); 
21002         wxPyEndAllowThreads(__tstate
); 
21003         if (PyErr_Occurred()) SWIG_fail
; 
21005     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21020 static PyObject 
*_wrap_PrintData_SetColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21021     PyObject 
*resultobj
; 
21022     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21024     PyObject 
* obj0 
= 0 ; 
21025     PyObject 
* obj1 
= 0 ; 
21026     char *kwnames
[] = { 
21027         (char *) "self",(char *) "colour", NULL 
 
21030     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
21031     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21032     if (SWIG_arg_fail(1)) SWIG_fail
; 
21034         arg2 
= (bool)(SWIG_As_bool(obj1
));  
21035         if (SWIG_arg_fail(2)) SWIG_fail
; 
21038         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21039         (arg1
)->SetColour(arg2
); 
21041         wxPyEndAllowThreads(__tstate
); 
21042         if (PyErr_Occurred()) SWIG_fail
; 
21044     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21051 static PyObject 
*_wrap_PrintData_SetDuplex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21052     PyObject 
*resultobj
; 
21053     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21054     wxDuplexMode arg2 
; 
21055     PyObject 
* obj0 
= 0 ; 
21056     PyObject 
* obj1 
= 0 ; 
21057     char *kwnames
[] = { 
21058         (char *) "self",(char *) "duplex", NULL 
 
21061     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetDuplex",kwnames
,&obj0
,&obj1
)) goto fail
; 
21062     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21063     if (SWIG_arg_fail(1)) SWIG_fail
; 
21065         arg2 
= (wxDuplexMode
)(SWIG_As_int(obj1
));  
21066         if (SWIG_arg_fail(2)) SWIG_fail
; 
21069         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21070         (arg1
)->SetDuplex((wxDuplexMode 
)arg2
); 
21072         wxPyEndAllowThreads(__tstate
); 
21073         if (PyErr_Occurred()) SWIG_fail
; 
21075     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21082 static PyObject 
*_wrap_PrintData_SetPaperId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21083     PyObject 
*resultobj
; 
21084     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21086     PyObject 
* obj0 
= 0 ; 
21087     PyObject 
* obj1 
= 0 ; 
21088     char *kwnames
[] = { 
21089         (char *) "self",(char *) "sizeId", NULL 
 
21092     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperId",kwnames
,&obj0
,&obj1
)) goto fail
; 
21093     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21094     if (SWIG_arg_fail(1)) SWIG_fail
; 
21096         arg2 
= (wxPaperSize
)(SWIG_As_int(obj1
));  
21097         if (SWIG_arg_fail(2)) SWIG_fail
; 
21100         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21101         (arg1
)->SetPaperId((wxPaperSize 
)arg2
); 
21103         wxPyEndAllowThreads(__tstate
); 
21104         if (PyErr_Occurred()) SWIG_fail
; 
21106     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21113 static PyObject 
*_wrap_PrintData_SetPaperSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21114     PyObject 
*resultobj
; 
21115     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21118     PyObject 
* obj0 
= 0 ; 
21119     PyObject 
* obj1 
= 0 ; 
21120     char *kwnames
[] = { 
21121         (char *) "self",(char *) "sz", NULL 
 
21124     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPaperSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
21125     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21126     if (SWIG_arg_fail(1)) SWIG_fail
; 
21129         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
21132         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21133         (arg1
)->SetPaperSize((wxSize 
const &)*arg2
); 
21135         wxPyEndAllowThreads(__tstate
); 
21136         if (PyErr_Occurred()) SWIG_fail
; 
21138     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21145 static PyObject 
*_wrap_PrintData_SetQuality(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21146     PyObject 
*resultobj
; 
21147     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21149     PyObject 
* obj0 
= 0 ; 
21150     PyObject 
* obj1 
= 0 ; 
21151     char *kwnames
[] = { 
21152         (char *) "self",(char *) "quality", NULL 
 
21155     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetQuality",kwnames
,&obj0
,&obj1
)) goto fail
; 
21156     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21157     if (SWIG_arg_fail(1)) SWIG_fail
; 
21159         arg2 
= (int)(SWIG_As_int(obj1
));  
21160         if (SWIG_arg_fail(2)) SWIG_fail
; 
21163         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21164         (arg1
)->SetQuality(arg2
); 
21166         wxPyEndAllowThreads(__tstate
); 
21167         if (PyErr_Occurred()) SWIG_fail
; 
21169     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21176 static PyObject 
*_wrap_PrintData_SetBin(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21177     PyObject 
*resultobj
; 
21178     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21180     PyObject 
* obj0 
= 0 ; 
21181     PyObject 
* obj1 
= 0 ; 
21182     char *kwnames
[] = { 
21183         (char *) "self",(char *) "bin", NULL 
 
21186     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetBin",kwnames
,&obj0
,&obj1
)) goto fail
; 
21187     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21188     if (SWIG_arg_fail(1)) SWIG_fail
; 
21190         arg2 
= (wxPrintBin
)(SWIG_As_int(obj1
));  
21191         if (SWIG_arg_fail(2)) SWIG_fail
; 
21194         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21195         (arg1
)->SetBin((wxPrintBin 
)arg2
); 
21197         wxPyEndAllowThreads(__tstate
); 
21198         if (PyErr_Occurred()) SWIG_fail
; 
21200     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21207 static PyObject 
*_wrap_PrintData_SetPrintMode(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21208     PyObject 
*resultobj
; 
21209     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21211     PyObject 
* obj0 
= 0 ; 
21212     PyObject 
* obj1 
= 0 ; 
21213     char *kwnames
[] = { 
21214         (char *) "self",(char *) "printMode", NULL 
 
21217     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrintMode",kwnames
,&obj0
,&obj1
)) goto fail
; 
21218     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21219     if (SWIG_arg_fail(1)) SWIG_fail
; 
21221         arg2 
= (wxPrintMode
)(SWIG_As_int(obj1
));  
21222         if (SWIG_arg_fail(2)) SWIG_fail
; 
21225         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21226         (arg1
)->SetPrintMode((wxPrintMode 
)arg2
); 
21228         wxPyEndAllowThreads(__tstate
); 
21229         if (PyErr_Occurred()) SWIG_fail
; 
21231     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21238 static PyObject 
*_wrap_PrintData_GetFilename(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21239     PyObject 
*resultobj
; 
21240     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21242     PyObject 
* obj0 
= 0 ; 
21243     char *kwnames
[] = { 
21244         (char *) "self", NULL 
 
21247     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetFilename",kwnames
,&obj0
)) goto fail
; 
21248     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21249     if (SWIG_arg_fail(1)) SWIG_fail
; 
21251         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21252         result 
= ((wxPrintData 
const *)arg1
)->GetFilename(); 
21254         wxPyEndAllowThreads(__tstate
); 
21255         if (PyErr_Occurred()) SWIG_fail
; 
21259         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
21261         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
21270 static PyObject 
*_wrap_PrintData_SetFilename(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21271     PyObject 
*resultobj
; 
21272     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21273     wxString 
*arg2 
= 0 ; 
21274     bool temp2 
= false ; 
21275     PyObject 
* obj0 
= 0 ; 
21276     PyObject 
* obj1 
= 0 ; 
21277     char *kwnames
[] = { 
21278         (char *) "self",(char *) "filename", NULL 
 
21281     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetFilename",kwnames
,&obj0
,&obj1
)) goto fail
; 
21282     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21283     if (SWIG_arg_fail(1)) SWIG_fail
; 
21285         arg2 
= wxString_in_helper(obj1
); 
21286         if (arg2 
== NULL
) SWIG_fail
; 
21290         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21291         (arg1
)->SetFilename((wxString 
const &)*arg2
); 
21293         wxPyEndAllowThreads(__tstate
); 
21294         if (PyErr_Occurred()) SWIG_fail
; 
21296     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21311 static PyObject 
*_wrap_PrintData_GetPrivData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21312     PyObject 
*resultobj
; 
21313     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21315     PyObject 
* obj0 
= 0 ; 
21316     char *kwnames
[] = { 
21317         (char *) "self", NULL 
 
21320     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrivData",kwnames
,&obj0
)) goto fail
; 
21321     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21322     if (SWIG_arg_fail(1)) SWIG_fail
; 
21324         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21325         result 
= (PyObject 
*)wxPrintData_GetPrivData(arg1
); 
21327         wxPyEndAllowThreads(__tstate
); 
21328         if (PyErr_Occurred()) SWIG_fail
; 
21330     resultobj 
= result
; 
21337 static PyObject 
*_wrap_PrintData_SetPrivData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21338     PyObject 
*resultobj
; 
21339     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21340     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
21341     PyObject 
* obj0 
= 0 ; 
21342     PyObject 
* obj1 
= 0 ; 
21343     char *kwnames
[] = { 
21344         (char *) "self",(char *) "data", NULL 
 
21347     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrivData",kwnames
,&obj0
,&obj1
)) goto fail
; 
21348     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21349     if (SWIG_arg_fail(1)) SWIG_fail
; 
21352         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21353         wxPrintData_SetPrivData(arg1
,arg2
); 
21355         wxPyEndAllowThreads(__tstate
); 
21356         if (PyErr_Occurred()) SWIG_fail
; 
21358     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21365 static PyObject 
*_wrap_PrintData_GetPrinterCommand(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21366     PyObject 
*resultobj
; 
21367     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21369     PyObject 
* obj0 
= 0 ; 
21370     char *kwnames
[] = { 
21371         (char *) "self", NULL 
 
21374     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterCommand",kwnames
,&obj0
)) goto fail
; 
21375     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21376     if (SWIG_arg_fail(1)) SWIG_fail
; 
21378         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21380             wxString 
const &_result_ref 
= (arg1
)->GetPrinterCommand(); 
21381             result 
= (wxString 
*) &_result_ref
; 
21384         wxPyEndAllowThreads(__tstate
); 
21385         if (PyErr_Occurred()) SWIG_fail
; 
21389         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
21391         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
21400 static PyObject 
*_wrap_PrintData_GetPrinterOptions(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21401     PyObject 
*resultobj
; 
21402     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21404     PyObject 
* obj0 
= 0 ; 
21405     char *kwnames
[] = { 
21406         (char *) "self", NULL 
 
21409     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterOptions",kwnames
,&obj0
)) goto fail
; 
21410     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21411     if (SWIG_arg_fail(1)) SWIG_fail
; 
21413         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21415             wxString 
const &_result_ref 
= (arg1
)->GetPrinterOptions(); 
21416             result 
= (wxString 
*) &_result_ref
; 
21419         wxPyEndAllowThreads(__tstate
); 
21420         if (PyErr_Occurred()) SWIG_fail
; 
21424         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
21426         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
21435 static PyObject 
*_wrap_PrintData_GetPreviewCommand(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21436     PyObject 
*resultobj
; 
21437     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21439     PyObject 
* obj0 
= 0 ; 
21440     char *kwnames
[] = { 
21441         (char *) "self", NULL 
 
21444     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPreviewCommand",kwnames
,&obj0
)) goto fail
; 
21445     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21446     if (SWIG_arg_fail(1)) SWIG_fail
; 
21448         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21450             wxString 
const &_result_ref 
= (arg1
)->GetPreviewCommand(); 
21451             result 
= (wxString 
*) &_result_ref
; 
21454         wxPyEndAllowThreads(__tstate
); 
21455         if (PyErr_Occurred()) SWIG_fail
; 
21459         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
21461         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
21470 static PyObject 
*_wrap_PrintData_GetFontMetricPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21471     PyObject 
*resultobj
; 
21472     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21474     PyObject 
* obj0 
= 0 ; 
21475     char *kwnames
[] = { 
21476         (char *) "self", NULL 
 
21479     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetFontMetricPath",kwnames
,&obj0
)) goto fail
; 
21480     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21481     if (SWIG_arg_fail(1)) SWIG_fail
; 
21483         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21485             wxString 
const &_result_ref 
= (arg1
)->GetFontMetricPath(); 
21486             result 
= (wxString 
*) &_result_ref
; 
21489         wxPyEndAllowThreads(__tstate
); 
21490         if (PyErr_Occurred()) SWIG_fail
; 
21494         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
21496         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
21505 static PyObject 
*_wrap_PrintData_GetPrinterScaleX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21506     PyObject 
*resultobj
; 
21507     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21509     PyObject 
* obj0 
= 0 ; 
21510     char *kwnames
[] = { 
21511         (char *) "self", NULL 
 
21514     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterScaleX",kwnames
,&obj0
)) goto fail
; 
21515     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21516     if (SWIG_arg_fail(1)) SWIG_fail
; 
21518         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21519         result 
= (double)(arg1
)->GetPrinterScaleX(); 
21521         wxPyEndAllowThreads(__tstate
); 
21522         if (PyErr_Occurred()) SWIG_fail
; 
21525         resultobj 
= SWIG_From_double((double)(result
));  
21533 static PyObject 
*_wrap_PrintData_GetPrinterScaleY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21534     PyObject 
*resultobj
; 
21535     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21537     PyObject 
* obj0 
= 0 ; 
21538     char *kwnames
[] = { 
21539         (char *) "self", NULL 
 
21542     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterScaleY",kwnames
,&obj0
)) goto fail
; 
21543     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21544     if (SWIG_arg_fail(1)) SWIG_fail
; 
21546         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21547         result 
= (double)(arg1
)->GetPrinterScaleY(); 
21549         wxPyEndAllowThreads(__tstate
); 
21550         if (PyErr_Occurred()) SWIG_fail
; 
21553         resultobj 
= SWIG_From_double((double)(result
));  
21561 static PyObject 
*_wrap_PrintData_GetPrinterTranslateX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21562     PyObject 
*resultobj
; 
21563     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21565     PyObject 
* obj0 
= 0 ; 
21566     char *kwnames
[] = { 
21567         (char *) "self", NULL 
 
21570     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterTranslateX",kwnames
,&obj0
)) goto fail
; 
21571     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21572     if (SWIG_arg_fail(1)) SWIG_fail
; 
21574         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21575         result 
= (long)(arg1
)->GetPrinterTranslateX(); 
21577         wxPyEndAllowThreads(__tstate
); 
21578         if (PyErr_Occurred()) SWIG_fail
; 
21581         resultobj 
= SWIG_From_long((long)(result
));  
21589 static PyObject 
*_wrap_PrintData_GetPrinterTranslateY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21590     PyObject 
*resultobj
; 
21591     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21593     PyObject 
* obj0 
= 0 ; 
21594     char *kwnames
[] = { 
21595         (char *) "self", NULL 
 
21598     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintData_GetPrinterTranslateY",kwnames
,&obj0
)) goto fail
; 
21599     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21600     if (SWIG_arg_fail(1)) SWIG_fail
; 
21602         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21603         result 
= (long)(arg1
)->GetPrinterTranslateY(); 
21605         wxPyEndAllowThreads(__tstate
); 
21606         if (PyErr_Occurred()) SWIG_fail
; 
21609         resultobj 
= SWIG_From_long((long)(result
));  
21617 static PyObject 
*_wrap_PrintData_SetPrinterCommand(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21618     PyObject 
*resultobj
; 
21619     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21620     wxString 
*arg2 
= 0 ; 
21621     bool temp2 
= false ; 
21622     PyObject 
* obj0 
= 0 ; 
21623     PyObject 
* obj1 
= 0 ; 
21624     char *kwnames
[] = { 
21625         (char *) "self",(char *) "command", NULL 
 
21628     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterCommand",kwnames
,&obj0
,&obj1
)) goto fail
; 
21629     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21630     if (SWIG_arg_fail(1)) SWIG_fail
; 
21632         arg2 
= wxString_in_helper(obj1
); 
21633         if (arg2 
== NULL
) SWIG_fail
; 
21637         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21638         (arg1
)->SetPrinterCommand((wxString 
const &)*arg2
); 
21640         wxPyEndAllowThreads(__tstate
); 
21641         if (PyErr_Occurred()) SWIG_fail
; 
21643     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21658 static PyObject 
*_wrap_PrintData_SetPrinterOptions(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21659     PyObject 
*resultobj
; 
21660     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21661     wxString 
*arg2 
= 0 ; 
21662     bool temp2 
= false ; 
21663     PyObject 
* obj0 
= 0 ; 
21664     PyObject 
* obj1 
= 0 ; 
21665     char *kwnames
[] = { 
21666         (char *) "self",(char *) "options", NULL 
 
21669     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterOptions",kwnames
,&obj0
,&obj1
)) goto fail
; 
21670     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21671     if (SWIG_arg_fail(1)) SWIG_fail
; 
21673         arg2 
= wxString_in_helper(obj1
); 
21674         if (arg2 
== NULL
) SWIG_fail
; 
21678         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21679         (arg1
)->SetPrinterOptions((wxString 
const &)*arg2
); 
21681         wxPyEndAllowThreads(__tstate
); 
21682         if (PyErr_Occurred()) SWIG_fail
; 
21684     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21699 static PyObject 
*_wrap_PrintData_SetPreviewCommand(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21700     PyObject 
*resultobj
; 
21701     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21702     wxString 
*arg2 
= 0 ; 
21703     bool temp2 
= false ; 
21704     PyObject 
* obj0 
= 0 ; 
21705     PyObject 
* obj1 
= 0 ; 
21706     char *kwnames
[] = { 
21707         (char *) "self",(char *) "command", NULL 
 
21710     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPreviewCommand",kwnames
,&obj0
,&obj1
)) goto fail
; 
21711     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21712     if (SWIG_arg_fail(1)) SWIG_fail
; 
21714         arg2 
= wxString_in_helper(obj1
); 
21715         if (arg2 
== NULL
) SWIG_fail
; 
21719         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21720         (arg1
)->SetPreviewCommand((wxString 
const &)*arg2
); 
21722         wxPyEndAllowThreads(__tstate
); 
21723         if (PyErr_Occurred()) SWIG_fail
; 
21725     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21740 static PyObject 
*_wrap_PrintData_SetFontMetricPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21741     PyObject 
*resultobj
; 
21742     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21743     wxString 
*arg2 
= 0 ; 
21744     bool temp2 
= false ; 
21745     PyObject 
* obj0 
= 0 ; 
21746     PyObject 
* obj1 
= 0 ; 
21747     char *kwnames
[] = { 
21748         (char *) "self",(char *) "path", NULL 
 
21751     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetFontMetricPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
21752     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21753     if (SWIG_arg_fail(1)) SWIG_fail
; 
21755         arg2 
= wxString_in_helper(obj1
); 
21756         if (arg2 
== NULL
) SWIG_fail
; 
21760         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21761         (arg1
)->SetFontMetricPath((wxString 
const &)*arg2
); 
21763         wxPyEndAllowThreads(__tstate
); 
21764         if (PyErr_Occurred()) SWIG_fail
; 
21766     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21781 static PyObject 
*_wrap_PrintData_SetPrinterScaleX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21782     PyObject 
*resultobj
; 
21783     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21785     PyObject 
* obj0 
= 0 ; 
21786     PyObject 
* obj1 
= 0 ; 
21787     char *kwnames
[] = { 
21788         (char *) "self",(char *) "x", NULL 
 
21791     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterScaleX",kwnames
,&obj0
,&obj1
)) goto fail
; 
21792     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21793     if (SWIG_arg_fail(1)) SWIG_fail
; 
21795         arg2 
= (double)(SWIG_As_double(obj1
));  
21796         if (SWIG_arg_fail(2)) SWIG_fail
; 
21799         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21800         (arg1
)->SetPrinterScaleX(arg2
); 
21802         wxPyEndAllowThreads(__tstate
); 
21803         if (PyErr_Occurred()) SWIG_fail
; 
21805     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21812 static PyObject 
*_wrap_PrintData_SetPrinterScaleY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21813     PyObject 
*resultobj
; 
21814     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21816     PyObject 
* obj0 
= 0 ; 
21817     PyObject 
* obj1 
= 0 ; 
21818     char *kwnames
[] = { 
21819         (char *) "self",(char *) "y", NULL 
 
21822     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterScaleY",kwnames
,&obj0
,&obj1
)) goto fail
; 
21823     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21824     if (SWIG_arg_fail(1)) SWIG_fail
; 
21826         arg2 
= (double)(SWIG_As_double(obj1
));  
21827         if (SWIG_arg_fail(2)) SWIG_fail
; 
21830         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21831         (arg1
)->SetPrinterScaleY(arg2
); 
21833         wxPyEndAllowThreads(__tstate
); 
21834         if (PyErr_Occurred()) SWIG_fail
; 
21836     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21843 static PyObject 
*_wrap_PrintData_SetPrinterScaling(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21844     PyObject 
*resultobj
; 
21845     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21848     PyObject 
* obj0 
= 0 ; 
21849     PyObject 
* obj1 
= 0 ; 
21850     PyObject 
* obj2 
= 0 ; 
21851     char *kwnames
[] = { 
21852         (char *) "self",(char *) "x",(char *) "y", NULL 
 
21855     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintData_SetPrinterScaling",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
21856     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21857     if (SWIG_arg_fail(1)) SWIG_fail
; 
21859         arg2 
= (double)(SWIG_As_double(obj1
));  
21860         if (SWIG_arg_fail(2)) SWIG_fail
; 
21863         arg3 
= (double)(SWIG_As_double(obj2
));  
21864         if (SWIG_arg_fail(3)) SWIG_fail
; 
21867         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21868         (arg1
)->SetPrinterScaling(arg2
,arg3
); 
21870         wxPyEndAllowThreads(__tstate
); 
21871         if (PyErr_Occurred()) SWIG_fail
; 
21873     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21880 static PyObject 
*_wrap_PrintData_SetPrinterTranslateX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21881     PyObject 
*resultobj
; 
21882     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21884     PyObject 
* obj0 
= 0 ; 
21885     PyObject 
* obj1 
= 0 ; 
21886     char *kwnames
[] = { 
21887         (char *) "self",(char *) "x", NULL 
 
21890     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterTranslateX",kwnames
,&obj0
,&obj1
)) goto fail
; 
21891     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21892     if (SWIG_arg_fail(1)) SWIG_fail
; 
21894         arg2 
= (long)(SWIG_As_long(obj1
));  
21895         if (SWIG_arg_fail(2)) SWIG_fail
; 
21898         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21899         (arg1
)->SetPrinterTranslateX(arg2
); 
21901         wxPyEndAllowThreads(__tstate
); 
21902         if (PyErr_Occurred()) SWIG_fail
; 
21904     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21911 static PyObject 
*_wrap_PrintData_SetPrinterTranslateY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21912     PyObject 
*resultobj
; 
21913     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21915     PyObject 
* obj0 
= 0 ; 
21916     PyObject 
* obj1 
= 0 ; 
21917     char *kwnames
[] = { 
21918         (char *) "self",(char *) "y", NULL 
 
21921     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintData_SetPrinterTranslateY",kwnames
,&obj0
,&obj1
)) goto fail
; 
21922     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21923     if (SWIG_arg_fail(1)) SWIG_fail
; 
21925         arg2 
= (long)(SWIG_As_long(obj1
));  
21926         if (SWIG_arg_fail(2)) SWIG_fail
; 
21929         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21930         (arg1
)->SetPrinterTranslateY(arg2
); 
21932         wxPyEndAllowThreads(__tstate
); 
21933         if (PyErr_Occurred()) SWIG_fail
; 
21935     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21942 static PyObject 
*_wrap_PrintData_SetPrinterTranslation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
21943     PyObject 
*resultobj
; 
21944     wxPrintData 
*arg1 
= (wxPrintData 
*) 0 ; 
21947     PyObject 
* obj0 
= 0 ; 
21948     PyObject 
* obj1 
= 0 ; 
21949     PyObject 
* obj2 
= 0 ; 
21950     char *kwnames
[] = { 
21951         (char *) "self",(char *) "x",(char *) "y", NULL 
 
21954     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintData_SetPrinterTranslation",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
21955     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
21956     if (SWIG_arg_fail(1)) SWIG_fail
; 
21958         arg2 
= (long)(SWIG_As_long(obj1
));  
21959         if (SWIG_arg_fail(2)) SWIG_fail
; 
21962         arg3 
= (long)(SWIG_As_long(obj2
));  
21963         if (SWIG_arg_fail(3)) SWIG_fail
; 
21966         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21967         (arg1
)->SetPrinterTranslation(arg2
,arg3
); 
21969         wxPyEndAllowThreads(__tstate
); 
21970         if (PyErr_Occurred()) SWIG_fail
; 
21972     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
21979 static PyObject 
* PrintData_swigregister(PyObject 
*, PyObject 
*args
) { 
21981     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
21982     SWIG_TypeClientData(SWIGTYPE_p_wxPrintData
, obj
); 
21984     return Py_BuildValue((char *)""); 
21986 static PyObject 
*_wrap_new_PageSetupDialogData__SWIG_0(PyObject 
*, PyObject 
*args
) { 
21987     PyObject 
*resultobj
; 
21988     wxPageSetupDialogData 
*result
; 
21990     if(!PyArg_ParseTuple(args
,(char *)":new_PageSetupDialogData")) goto fail
; 
21992         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21993         result 
= (wxPageSetupDialogData 
*)new wxPageSetupDialogData(); 
21995         wxPyEndAllowThreads(__tstate
); 
21996         if (PyErr_Occurred()) SWIG_fail
; 
21998     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 1); 
22005 static PyObject 
*_wrap_new_PageSetupDialogData__SWIG_1(PyObject 
*, PyObject 
*args
) { 
22006     PyObject 
*resultobj
; 
22007     wxPageSetupDialogData 
*arg1 
= 0 ; 
22008     wxPageSetupDialogData 
*result
; 
22009     PyObject 
* obj0 
= 0 ; 
22011     if(!PyArg_ParseTuple(args
,(char *)"O:new_PageSetupDialogData",&obj0
)) goto fail
; 
22013         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22014         if (SWIG_arg_fail(1)) SWIG_fail
; 
22015         if (arg1 
== NULL
) { 
22016             SWIG_null_ref("wxPageSetupDialogData"); 
22018         if (SWIG_arg_fail(1)) SWIG_fail
; 
22021         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22022         result 
= (wxPageSetupDialogData 
*)new wxPageSetupDialogData((wxPageSetupDialogData 
const &)*arg1
); 
22024         wxPyEndAllowThreads(__tstate
); 
22025         if (PyErr_Occurred()) SWIG_fail
; 
22027     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 1); 
22034 static PyObject 
*_wrap_new_PageSetupDialogData__SWIG_2(PyObject 
*, PyObject 
*args
) { 
22035     PyObject 
*resultobj
; 
22036     wxPrintData 
*arg1 
= 0 ; 
22037     wxPageSetupDialogData 
*result
; 
22038     PyObject 
* obj0 
= 0 ; 
22040     if(!PyArg_ParseTuple(args
,(char *)"O:new_PageSetupDialogData",&obj0
)) goto fail
; 
22042         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
22043         if (SWIG_arg_fail(1)) SWIG_fail
; 
22044         if (arg1 
== NULL
) { 
22045             SWIG_null_ref("wxPrintData"); 
22047         if (SWIG_arg_fail(1)) SWIG_fail
; 
22050         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22051         result 
= (wxPageSetupDialogData 
*)new wxPageSetupDialogData((wxPrintData 
const &)*arg1
); 
22053         wxPyEndAllowThreads(__tstate
); 
22054         if (PyErr_Occurred()) SWIG_fail
; 
22056     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 1); 
22063 static PyObject 
*_wrap_new_PageSetupDialogData(PyObject 
*self
, PyObject 
*args
) { 
22068     argc 
= PyObject_Length(args
); 
22069     for (ii 
= 0; (ii 
< argc
) && (ii 
< 1); ii
++) { 
22070         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
22073         return _wrap_new_PageSetupDialogData__SWIG_0(self
,args
); 
22079             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPageSetupDialogData
, 0) == -1) { 
22087             return _wrap_new_PageSetupDialogData__SWIG_1(self
,args
); 
22094             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPrintData
, 0) == -1) { 
22102             return _wrap_new_PageSetupDialogData__SWIG_2(self
,args
); 
22106     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PageSetupDialogData'"); 
22111 static PyObject 
*_wrap_delete_PageSetupDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22112     PyObject 
*resultobj
; 
22113     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22114     PyObject 
* obj0 
= 0 ; 
22115     char *kwnames
[] = { 
22116         (char *) "self", NULL 
 
22119     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_PageSetupDialogData",kwnames
,&obj0
)) goto fail
; 
22120     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22121     if (SWIG_arg_fail(1)) SWIG_fail
; 
22123         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22126         wxPyEndAllowThreads(__tstate
); 
22127         if (PyErr_Occurred()) SWIG_fail
; 
22129     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22136 static PyObject 
*_wrap_PageSetupDialogData_EnableHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22137     PyObject 
*resultobj
; 
22138     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22140     PyObject 
* obj0 
= 0 ; 
22141     PyObject 
* obj1 
= 0 ; 
22142     char *kwnames
[] = { 
22143         (char *) "self",(char *) "flag", NULL 
 
22146     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) goto fail
; 
22147     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22148     if (SWIG_arg_fail(1)) SWIG_fail
; 
22150         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22151         if (SWIG_arg_fail(2)) SWIG_fail
; 
22154         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22155         (arg1
)->EnableHelp(arg2
); 
22157         wxPyEndAllowThreads(__tstate
); 
22158         if (PyErr_Occurred()) SWIG_fail
; 
22160     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22167 static PyObject 
*_wrap_PageSetupDialogData_EnableMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22168     PyObject 
*resultobj
; 
22169     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22171     PyObject 
* obj0 
= 0 ; 
22172     PyObject 
* obj1 
= 0 ; 
22173     char *kwnames
[] = { 
22174         (char *) "self",(char *) "flag", NULL 
 
22177     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableMargins",kwnames
,&obj0
,&obj1
)) goto fail
; 
22178     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22179     if (SWIG_arg_fail(1)) SWIG_fail
; 
22181         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22182         if (SWIG_arg_fail(2)) SWIG_fail
; 
22185         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22186         (arg1
)->EnableMargins(arg2
); 
22188         wxPyEndAllowThreads(__tstate
); 
22189         if (PyErr_Occurred()) SWIG_fail
; 
22191     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22198 static PyObject 
*_wrap_PageSetupDialogData_EnableOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22199     PyObject 
*resultobj
; 
22200     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22202     PyObject 
* obj0 
= 0 ; 
22203     PyObject 
* obj1 
= 0 ; 
22204     char *kwnames
[] = { 
22205         (char *) "self",(char *) "flag", NULL 
 
22208     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnableOrientation",kwnames
,&obj0
,&obj1
)) goto fail
; 
22209     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22210     if (SWIG_arg_fail(1)) SWIG_fail
; 
22212         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22213         if (SWIG_arg_fail(2)) SWIG_fail
; 
22216         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22217         (arg1
)->EnableOrientation(arg2
); 
22219         wxPyEndAllowThreads(__tstate
); 
22220         if (PyErr_Occurred()) SWIG_fail
; 
22222     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22229 static PyObject 
*_wrap_PageSetupDialogData_EnablePaper(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22230     PyObject 
*resultobj
; 
22231     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22233     PyObject 
* obj0 
= 0 ; 
22234     PyObject 
* obj1 
= 0 ; 
22235     char *kwnames
[] = { 
22236         (char *) "self",(char *) "flag", NULL 
 
22239     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePaper",kwnames
,&obj0
,&obj1
)) goto fail
; 
22240     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22241     if (SWIG_arg_fail(1)) SWIG_fail
; 
22243         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22244         if (SWIG_arg_fail(2)) SWIG_fail
; 
22247         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22248         (arg1
)->EnablePaper(arg2
); 
22250         wxPyEndAllowThreads(__tstate
); 
22251         if (PyErr_Occurred()) SWIG_fail
; 
22253     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22260 static PyObject 
*_wrap_PageSetupDialogData_EnablePrinter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22261     PyObject 
*resultobj
; 
22262     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22264     PyObject 
* obj0 
= 0 ; 
22265     PyObject 
* obj1 
= 0 ; 
22266     char *kwnames
[] = { 
22267         (char *) "self",(char *) "flag", NULL 
 
22270     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_EnablePrinter",kwnames
,&obj0
,&obj1
)) goto fail
; 
22271     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22272     if (SWIG_arg_fail(1)) SWIG_fail
; 
22274         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22275         if (SWIG_arg_fail(2)) SWIG_fail
; 
22278         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22279         (arg1
)->EnablePrinter(arg2
); 
22281         wxPyEndAllowThreads(__tstate
); 
22282         if (PyErr_Occurred()) SWIG_fail
; 
22284     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22291 static PyObject 
*_wrap_PageSetupDialogData_GetDefaultMinMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22292     PyObject 
*resultobj
; 
22293     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22295     PyObject 
* obj0 
= 0 ; 
22296     char *kwnames
[] = { 
22297         (char *) "self", NULL 
 
22300     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetDefaultMinMargins",kwnames
,&obj0
)) goto fail
; 
22301     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22302     if (SWIG_arg_fail(1)) SWIG_fail
; 
22304         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22305         result 
= (bool)(arg1
)->GetDefaultMinMargins(); 
22307         wxPyEndAllowThreads(__tstate
); 
22308         if (PyErr_Occurred()) SWIG_fail
; 
22311         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22319 static PyObject 
*_wrap_PageSetupDialogData_GetEnableMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22320     PyObject 
*resultobj
; 
22321     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22323     PyObject 
* obj0 
= 0 ; 
22324     char *kwnames
[] = { 
22325         (char *) "self", NULL 
 
22328     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetEnableMargins",kwnames
,&obj0
)) goto fail
; 
22329     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22330     if (SWIG_arg_fail(1)) SWIG_fail
; 
22332         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22333         result 
= (bool)(arg1
)->GetEnableMargins(); 
22335         wxPyEndAllowThreads(__tstate
); 
22336         if (PyErr_Occurred()) SWIG_fail
; 
22339         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22347 static PyObject 
*_wrap_PageSetupDialogData_GetEnableOrientation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22348     PyObject 
*resultobj
; 
22349     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22351     PyObject 
* obj0 
= 0 ; 
22352     char *kwnames
[] = { 
22353         (char *) "self", NULL 
 
22356     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetEnableOrientation",kwnames
,&obj0
)) goto fail
; 
22357     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22358     if (SWIG_arg_fail(1)) SWIG_fail
; 
22360         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22361         result 
= (bool)(arg1
)->GetEnableOrientation(); 
22363         wxPyEndAllowThreads(__tstate
); 
22364         if (PyErr_Occurred()) SWIG_fail
; 
22367         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22375 static PyObject 
*_wrap_PageSetupDialogData_GetEnablePaper(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22376     PyObject 
*resultobj
; 
22377     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22379     PyObject 
* obj0 
= 0 ; 
22380     char *kwnames
[] = { 
22381         (char *) "self", NULL 
 
22384     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetEnablePaper",kwnames
,&obj0
)) goto fail
; 
22385     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22386     if (SWIG_arg_fail(1)) SWIG_fail
; 
22388         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22389         result 
= (bool)(arg1
)->GetEnablePaper(); 
22391         wxPyEndAllowThreads(__tstate
); 
22392         if (PyErr_Occurred()) SWIG_fail
; 
22395         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22403 static PyObject 
*_wrap_PageSetupDialogData_GetEnablePrinter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22404     PyObject 
*resultobj
; 
22405     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22407     PyObject 
* obj0 
= 0 ; 
22408     char *kwnames
[] = { 
22409         (char *) "self", NULL 
 
22412     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetEnablePrinter",kwnames
,&obj0
)) goto fail
; 
22413     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22414     if (SWIG_arg_fail(1)) SWIG_fail
; 
22416         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22417         result 
= (bool)(arg1
)->GetEnablePrinter(); 
22419         wxPyEndAllowThreads(__tstate
); 
22420         if (PyErr_Occurred()) SWIG_fail
; 
22423         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22431 static PyObject 
*_wrap_PageSetupDialogData_GetEnableHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22432     PyObject 
*resultobj
; 
22433     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22435     PyObject 
* obj0 
= 0 ; 
22436     char *kwnames
[] = { 
22437         (char *) "self", NULL 
 
22440     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetEnableHelp",kwnames
,&obj0
)) goto fail
; 
22441     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22442     if (SWIG_arg_fail(1)) SWIG_fail
; 
22444         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22445         result 
= (bool)(arg1
)->GetEnableHelp(); 
22447         wxPyEndAllowThreads(__tstate
); 
22448         if (PyErr_Occurred()) SWIG_fail
; 
22451         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22459 static PyObject 
*_wrap_PageSetupDialogData_GetDefaultInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22460     PyObject 
*resultobj
; 
22461     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22463     PyObject 
* obj0 
= 0 ; 
22464     char *kwnames
[] = { 
22465         (char *) "self", NULL 
 
22468     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetDefaultInfo",kwnames
,&obj0
)) goto fail
; 
22469     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22470     if (SWIG_arg_fail(1)) SWIG_fail
; 
22472         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22473         result 
= (bool)(arg1
)->GetDefaultInfo(); 
22475         wxPyEndAllowThreads(__tstate
); 
22476         if (PyErr_Occurred()) SWIG_fail
; 
22479         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22487 static PyObject 
*_wrap_PageSetupDialogData_GetMarginTopLeft(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22488     PyObject 
*resultobj
; 
22489     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22491     PyObject 
* obj0 
= 0 ; 
22492     char *kwnames
[] = { 
22493         (char *) "self", NULL 
 
22496     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetMarginTopLeft",kwnames
,&obj0
)) goto fail
; 
22497     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22498     if (SWIG_arg_fail(1)) SWIG_fail
; 
22500         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22501         result 
= (arg1
)->GetMarginTopLeft(); 
22503         wxPyEndAllowThreads(__tstate
); 
22504         if (PyErr_Occurred()) SWIG_fail
; 
22507         wxPoint 
* resultptr
; 
22508         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
22509         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
22517 static PyObject 
*_wrap_PageSetupDialogData_GetMarginBottomRight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22518     PyObject 
*resultobj
; 
22519     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22521     PyObject 
* obj0 
= 0 ; 
22522     char *kwnames
[] = { 
22523         (char *) "self", NULL 
 
22526     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetMarginBottomRight",kwnames
,&obj0
)) goto fail
; 
22527     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22528     if (SWIG_arg_fail(1)) SWIG_fail
; 
22530         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22531         result 
= (arg1
)->GetMarginBottomRight(); 
22533         wxPyEndAllowThreads(__tstate
); 
22534         if (PyErr_Occurred()) SWIG_fail
; 
22537         wxPoint 
* resultptr
; 
22538         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
22539         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
22547 static PyObject 
*_wrap_PageSetupDialogData_GetMinMarginTopLeft(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22548     PyObject 
*resultobj
; 
22549     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22551     PyObject 
* obj0 
= 0 ; 
22552     char *kwnames
[] = { 
22553         (char *) "self", NULL 
 
22556     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetMinMarginTopLeft",kwnames
,&obj0
)) goto fail
; 
22557     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22558     if (SWIG_arg_fail(1)) SWIG_fail
; 
22560         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22561         result 
= (arg1
)->GetMinMarginTopLeft(); 
22563         wxPyEndAllowThreads(__tstate
); 
22564         if (PyErr_Occurred()) SWIG_fail
; 
22567         wxPoint 
* resultptr
; 
22568         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
22569         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
22577 static PyObject 
*_wrap_PageSetupDialogData_GetMinMarginBottomRight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22578     PyObject 
*resultobj
; 
22579     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22581     PyObject 
* obj0 
= 0 ; 
22582     char *kwnames
[] = { 
22583         (char *) "self", NULL 
 
22586     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetMinMarginBottomRight",kwnames
,&obj0
)) goto fail
; 
22587     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22588     if (SWIG_arg_fail(1)) SWIG_fail
; 
22590         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22591         result 
= (arg1
)->GetMinMarginBottomRight(); 
22593         wxPyEndAllowThreads(__tstate
); 
22594         if (PyErr_Occurred()) SWIG_fail
; 
22597         wxPoint 
* resultptr
; 
22598         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
22599         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
22607 static PyObject 
*_wrap_PageSetupDialogData_GetPaperId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22608     PyObject 
*resultobj
; 
22609     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22610     wxPaperSize result
; 
22611     PyObject 
* obj0 
= 0 ; 
22612     char *kwnames
[] = { 
22613         (char *) "self", NULL 
 
22616     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetPaperId",kwnames
,&obj0
)) goto fail
; 
22617     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22618     if (SWIG_arg_fail(1)) SWIG_fail
; 
22620         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22621         result 
= (wxPaperSize
)(arg1
)->GetPaperId(); 
22623         wxPyEndAllowThreads(__tstate
); 
22624         if (PyErr_Occurred()) SWIG_fail
; 
22626     resultobj 
= SWIG_From_int((result
)); 
22633 static PyObject 
*_wrap_PageSetupDialogData_GetPaperSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22634     PyObject 
*resultobj
; 
22635     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22637     PyObject 
* obj0 
= 0 ; 
22638     char *kwnames
[] = { 
22639         (char *) "self", NULL 
 
22642     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetPaperSize",kwnames
,&obj0
)) goto fail
; 
22643     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22644     if (SWIG_arg_fail(1)) SWIG_fail
; 
22646         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22647         result 
= (arg1
)->GetPaperSize(); 
22649         wxPyEndAllowThreads(__tstate
); 
22650         if (PyErr_Occurred()) SWIG_fail
; 
22653         wxSize 
* resultptr
; 
22654         resultptr 
= new wxSize((wxSize 
&)(result
)); 
22655         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxSize
, 1); 
22663 static PyObject 
*_wrap_PageSetupDialogData_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22664     PyObject 
*resultobj
; 
22665     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22666     wxPrintData 
*result
; 
22667     PyObject 
* obj0 
= 0 ; 
22668     char *kwnames
[] = { 
22669         (char *) "self", NULL 
 
22672     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_GetPrintData",kwnames
,&obj0
)) goto fail
; 
22673     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22674     if (SWIG_arg_fail(1)) SWIG_fail
; 
22676         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22678             wxPrintData 
&_result_ref 
= (arg1
)->GetPrintData(); 
22679             result 
= (wxPrintData 
*) &_result_ref
; 
22682         wxPyEndAllowThreads(__tstate
); 
22683         if (PyErr_Occurred()) SWIG_fail
; 
22685     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
22692 static PyObject 
*_wrap_PageSetupDialogData_Ok(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22693     PyObject 
*resultobj
; 
22694     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22696     PyObject 
* obj0 
= 0 ; 
22697     char *kwnames
[] = { 
22698         (char *) "self", NULL 
 
22701     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_Ok",kwnames
,&obj0
)) goto fail
; 
22702     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22703     if (SWIG_arg_fail(1)) SWIG_fail
; 
22705         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22706         result 
= (bool)(arg1
)->Ok(); 
22708         wxPyEndAllowThreads(__tstate
); 
22709         if (PyErr_Occurred()) SWIG_fail
; 
22712         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
22720 static PyObject 
*_wrap_PageSetupDialogData_SetDefaultInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22721     PyObject 
*resultobj
; 
22722     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22724     PyObject 
* obj0 
= 0 ; 
22725     PyObject 
* obj1 
= 0 ; 
22726     char *kwnames
[] = { 
22727         (char *) "self",(char *) "flag", NULL 
 
22730     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultInfo",kwnames
,&obj0
,&obj1
)) goto fail
; 
22731     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22732     if (SWIG_arg_fail(1)) SWIG_fail
; 
22734         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22735         if (SWIG_arg_fail(2)) SWIG_fail
; 
22738         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22739         (arg1
)->SetDefaultInfo(arg2
); 
22741         wxPyEndAllowThreads(__tstate
); 
22742         if (PyErr_Occurred()) SWIG_fail
; 
22744     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22751 static PyObject 
*_wrap_PageSetupDialogData_SetDefaultMinMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22752     PyObject 
*resultobj
; 
22753     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22755     PyObject 
* obj0 
= 0 ; 
22756     PyObject 
* obj1 
= 0 ; 
22757     char *kwnames
[] = { 
22758         (char *) "self",(char *) "flag", NULL 
 
22761     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetDefaultMinMargins",kwnames
,&obj0
,&obj1
)) goto fail
; 
22762     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22763     if (SWIG_arg_fail(1)) SWIG_fail
; 
22765         arg2 
= (bool)(SWIG_As_bool(obj1
));  
22766         if (SWIG_arg_fail(2)) SWIG_fail
; 
22769         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22770         (arg1
)->SetDefaultMinMargins(arg2
); 
22772         wxPyEndAllowThreads(__tstate
); 
22773         if (PyErr_Occurred()) SWIG_fail
; 
22775     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22782 static PyObject 
*_wrap_PageSetupDialogData_SetMarginTopLeft(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22783     PyObject 
*resultobj
; 
22784     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22785     wxPoint 
*arg2 
= 0 ; 
22787     PyObject 
* obj0 
= 0 ; 
22788     PyObject 
* obj1 
= 0 ; 
22789     char *kwnames
[] = { 
22790         (char *) "self",(char *) "pt", NULL 
 
22793     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginTopLeft",kwnames
,&obj0
,&obj1
)) goto fail
; 
22794     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22795     if (SWIG_arg_fail(1)) SWIG_fail
; 
22798         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
22801         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22802         (arg1
)->SetMarginTopLeft((wxPoint 
const &)*arg2
); 
22804         wxPyEndAllowThreads(__tstate
); 
22805         if (PyErr_Occurred()) SWIG_fail
; 
22807     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22814 static PyObject 
*_wrap_PageSetupDialogData_SetMarginBottomRight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22815     PyObject 
*resultobj
; 
22816     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22817     wxPoint 
*arg2 
= 0 ; 
22819     PyObject 
* obj0 
= 0 ; 
22820     PyObject 
* obj1 
= 0 ; 
22821     char *kwnames
[] = { 
22822         (char *) "self",(char *) "pt", NULL 
 
22825     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMarginBottomRight",kwnames
,&obj0
,&obj1
)) goto fail
; 
22826     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22827     if (SWIG_arg_fail(1)) SWIG_fail
; 
22830         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
22833         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22834         (arg1
)->SetMarginBottomRight((wxPoint 
const &)*arg2
); 
22836         wxPyEndAllowThreads(__tstate
); 
22837         if (PyErr_Occurred()) SWIG_fail
; 
22839     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22846 static PyObject 
*_wrap_PageSetupDialogData_SetMinMarginTopLeft(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22847     PyObject 
*resultobj
; 
22848     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22849     wxPoint 
*arg2 
= 0 ; 
22851     PyObject 
* obj0 
= 0 ; 
22852     PyObject 
* obj1 
= 0 ; 
22853     char *kwnames
[] = { 
22854         (char *) "self",(char *) "pt", NULL 
 
22857     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginTopLeft",kwnames
,&obj0
,&obj1
)) goto fail
; 
22858     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22859     if (SWIG_arg_fail(1)) SWIG_fail
; 
22862         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
22865         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22866         (arg1
)->SetMinMarginTopLeft((wxPoint 
const &)*arg2
); 
22868         wxPyEndAllowThreads(__tstate
); 
22869         if (PyErr_Occurred()) SWIG_fail
; 
22871     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22878 static PyObject 
*_wrap_PageSetupDialogData_SetMinMarginBottomRight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22879     PyObject 
*resultobj
; 
22880     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22881     wxPoint 
*arg2 
= 0 ; 
22883     PyObject 
* obj0 
= 0 ; 
22884     PyObject 
* obj1 
= 0 ; 
22885     char *kwnames
[] = { 
22886         (char *) "self",(char *) "pt", NULL 
 
22889     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetMinMarginBottomRight",kwnames
,&obj0
,&obj1
)) goto fail
; 
22890     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22891     if (SWIG_arg_fail(1)) SWIG_fail
; 
22894         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
22897         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22898         (arg1
)->SetMinMarginBottomRight((wxPoint 
const &)*arg2
); 
22900         wxPyEndAllowThreads(__tstate
); 
22901         if (PyErr_Occurred()) SWIG_fail
; 
22903     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22910 static PyObject 
*_wrap_PageSetupDialogData_SetPaperId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22911     PyObject 
*resultobj
; 
22912     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22914     PyObject 
* obj0 
= 0 ; 
22915     PyObject 
* obj1 
= 0 ; 
22916     char *kwnames
[] = { 
22917         (char *) "self",(char *) "id", NULL 
 
22920     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperId",kwnames
,&obj0
,&obj1
)) goto fail
; 
22921     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22922     if (SWIG_arg_fail(1)) SWIG_fail
; 
22924         arg2 
= (wxPaperSize
)(SWIG_As_int(obj1
));  
22925         if (SWIG_arg_fail(2)) SWIG_fail
; 
22928         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22929         (arg1
)->SetPaperId((wxPaperSize 
)arg2
); 
22931         wxPyEndAllowThreads(__tstate
); 
22932         if (PyErr_Occurred()) SWIG_fail
; 
22934     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22941 static PyObject 
*_wrap_PageSetupDialogData_SetPaperSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22942     PyObject 
*resultobj
; 
22943     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22946     PyObject 
* obj0 
= 0 ; 
22947     PyObject 
* obj1 
= 0 ; 
22948     char *kwnames
[] = { 
22949         (char *) "self",(char *) "size", NULL 
 
22952     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPaperSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
22953     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22954     if (SWIG_arg_fail(1)) SWIG_fail
; 
22957         if ( ! wxSize_helper(obj1
, &arg2
)) SWIG_fail
; 
22960         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22961         (arg1
)->SetPaperSize((wxSize 
const &)*arg2
); 
22963         wxPyEndAllowThreads(__tstate
); 
22964         if (PyErr_Occurred()) SWIG_fail
; 
22966     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
22973 static PyObject 
*_wrap_PageSetupDialogData_SetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
22974     PyObject 
*resultobj
; 
22975     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
22976     wxPrintData 
*arg2 
= 0 ; 
22977     PyObject 
* obj0 
= 0 ; 
22978     PyObject 
* obj1 
= 0 ; 
22979     char *kwnames
[] = { 
22980         (char *) "self",(char *) "printData", NULL 
 
22983     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PageSetupDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) goto fail
; 
22984     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
22985     if (SWIG_arg_fail(1)) SWIG_fail
; 
22987         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
22988         if (SWIG_arg_fail(2)) SWIG_fail
; 
22989         if (arg2 
== NULL
) { 
22990             SWIG_null_ref("wxPrintData"); 
22992         if (SWIG_arg_fail(2)) SWIG_fail
; 
22995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
22996         (arg1
)->SetPrintData((wxPrintData 
const &)*arg2
); 
22998         wxPyEndAllowThreads(__tstate
); 
22999         if (PyErr_Occurred()) SWIG_fail
; 
23001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23008 static PyObject 
*_wrap_PageSetupDialogData_CalculateIdFromPaperSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23009     PyObject 
*resultobj
; 
23010     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
23011     PyObject 
* obj0 
= 0 ; 
23012     char *kwnames
[] = { 
23013         (char *) "self", NULL 
 
23016     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_CalculateIdFromPaperSize",kwnames
,&obj0
)) goto fail
; 
23017     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23018     if (SWIG_arg_fail(1)) SWIG_fail
; 
23020         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23021         (arg1
)->CalculateIdFromPaperSize(); 
23023         wxPyEndAllowThreads(__tstate
); 
23024         if (PyErr_Occurred()) SWIG_fail
; 
23026     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23033 static PyObject 
*_wrap_PageSetupDialogData_CalculatePaperSizeFromId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23034     PyObject 
*resultobj
; 
23035     wxPageSetupDialogData 
*arg1 
= (wxPageSetupDialogData 
*) 0 ; 
23036     PyObject 
* obj0 
= 0 ; 
23037     char *kwnames
[] = { 
23038         (char *) "self", NULL 
 
23041     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialogData_CalculatePaperSizeFromId",kwnames
,&obj0
)) goto fail
; 
23042     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23043     if (SWIG_arg_fail(1)) SWIG_fail
; 
23045         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23046         (arg1
)->CalculatePaperSizeFromId(); 
23048         wxPyEndAllowThreads(__tstate
); 
23049         if (PyErr_Occurred()) SWIG_fail
; 
23051     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23058 static PyObject 
* PageSetupDialogData_swigregister(PyObject 
*, PyObject 
*args
) { 
23060     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
23061     SWIG_TypeClientData(SWIGTYPE_p_wxPageSetupDialogData
, obj
); 
23063     return Py_BuildValue((char *)""); 
23065 static PyObject 
*_wrap_new_PageSetupDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23066     PyObject 
*resultobj
; 
23067     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
23068     wxPageSetupDialogData 
*arg2 
= (wxPageSetupDialogData 
*) NULL 
; 
23069     wxPageSetupDialog 
*result
; 
23070     PyObject 
* obj0 
= 0 ; 
23071     PyObject 
* obj1 
= 0 ; 
23072     char *kwnames
[] = { 
23073         (char *) "parent",(char *) "data", NULL 
 
23076     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PageSetupDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
23077     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
23078     if (SWIG_arg_fail(1)) SWIG_fail
; 
23080         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPageSetupDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23081         if (SWIG_arg_fail(2)) SWIG_fail
; 
23084         if (!wxPyCheckForApp()) SWIG_fail
; 
23085         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23086         result 
= (wxPageSetupDialog 
*)new wxPageSetupDialog(arg1
,arg2
); 
23088         wxPyEndAllowThreads(__tstate
); 
23089         if (PyErr_Occurred()) SWIG_fail
; 
23091     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialog
, 1); 
23098 static PyObject 
*_wrap_PageSetupDialog_GetPageSetupData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23099     PyObject 
*resultobj
; 
23100     wxPageSetupDialog 
*arg1 
= (wxPageSetupDialog 
*) 0 ; 
23101     wxPageSetupDialogData 
*result
; 
23102     PyObject 
* obj0 
= 0 ; 
23103     char *kwnames
[] = { 
23104         (char *) "self", NULL 
 
23107     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialog_GetPageSetupData",kwnames
,&obj0
)) goto fail
; 
23108     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
23109     if (SWIG_arg_fail(1)) SWIG_fail
; 
23111         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23113             wxPageSetupDialogData 
&_result_ref 
= (arg1
)->GetPageSetupData(); 
23114             result 
= (wxPageSetupDialogData 
*) &_result_ref
; 
23117         wxPyEndAllowThreads(__tstate
); 
23118         if (PyErr_Occurred()) SWIG_fail
; 
23120     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0); 
23127 static PyObject 
*_wrap_PageSetupDialog_GetPageSetupDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23128     PyObject 
*resultobj
; 
23129     wxPageSetupDialog 
*arg1 
= (wxPageSetupDialog 
*) 0 ; 
23130     wxPageSetupDialogData 
*result
; 
23131     PyObject 
* obj0 
= 0 ; 
23132     char *kwnames
[] = { 
23133         (char *) "self", NULL 
 
23136     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialog_GetPageSetupDialogData",kwnames
,&obj0
)) goto fail
; 
23137     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
23138     if (SWIG_arg_fail(1)) SWIG_fail
; 
23140         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23142             wxPageSetupDialogData 
&_result_ref 
= (arg1
)->GetPageSetupDialogData(); 
23143             result 
= (wxPageSetupDialogData 
*) &_result_ref
; 
23146         wxPyEndAllowThreads(__tstate
); 
23147         if (PyErr_Occurred()) SWIG_fail
; 
23149     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0); 
23156 static PyObject 
*_wrap_PageSetupDialog_ShowModal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23157     PyObject 
*resultobj
; 
23158     wxPageSetupDialog 
*arg1 
= (wxPageSetupDialog 
*) 0 ; 
23160     PyObject 
* obj0 
= 0 ; 
23161     char *kwnames
[] = { 
23162         (char *) "self", NULL 
 
23165     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PageSetupDialog_ShowModal",kwnames
,&obj0
)) goto fail
; 
23166     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPageSetupDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
23167     if (SWIG_arg_fail(1)) SWIG_fail
; 
23169         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23170         result 
= (int)(arg1
)->ShowModal(); 
23172         wxPyEndAllowThreads(__tstate
); 
23173         if (PyErr_Occurred()) SWIG_fail
; 
23176         resultobj 
= SWIG_From_int((int)(result
));  
23184 static PyObject 
* PageSetupDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
23186     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
23187     SWIG_TypeClientData(SWIGTYPE_p_wxPageSetupDialog
, obj
); 
23189     return Py_BuildValue((char *)""); 
23191 static PyObject 
*_wrap_new_PrintDialogData__SWIG_0(PyObject 
*, PyObject 
*args
) { 
23192     PyObject 
*resultobj
; 
23193     wxPrintDialogData 
*result
; 
23195     if(!PyArg_ParseTuple(args
,(char *)":new_PrintDialogData")) goto fail
; 
23197         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23198         result 
= (wxPrintDialogData 
*)new wxPrintDialogData(); 
23200         wxPyEndAllowThreads(__tstate
); 
23201         if (PyErr_Occurred()) SWIG_fail
; 
23203     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 1); 
23210 static PyObject 
*_wrap_new_PrintDialogData__SWIG_1(PyObject 
*, PyObject 
*args
) { 
23211     PyObject 
*resultobj
; 
23212     wxPrintData 
*arg1 
= 0 ; 
23213     wxPrintDialogData 
*result
; 
23214     PyObject 
* obj0 
= 0 ; 
23216     if(!PyArg_ParseTuple(args
,(char *)"O:new_PrintDialogData",&obj0
)) goto fail
; 
23218         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
23219         if (SWIG_arg_fail(1)) SWIG_fail
; 
23220         if (arg1 
== NULL
) { 
23221             SWIG_null_ref("wxPrintData"); 
23223         if (SWIG_arg_fail(1)) SWIG_fail
; 
23226         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23227         result 
= (wxPrintDialogData 
*)new wxPrintDialogData((wxPrintData 
const &)*arg1
); 
23229         wxPyEndAllowThreads(__tstate
); 
23230         if (PyErr_Occurred()) SWIG_fail
; 
23232     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 1); 
23239 static PyObject 
*_wrap_new_PrintDialogData__SWIG_2(PyObject 
*, PyObject 
*args
) { 
23240     PyObject 
*resultobj
; 
23241     wxPrintDialogData 
*arg1 
= 0 ; 
23242     wxPrintDialogData 
*result
; 
23243     PyObject 
* obj0 
= 0 ; 
23245     if(!PyArg_ParseTuple(args
,(char *)"O:new_PrintDialogData",&obj0
)) goto fail
; 
23247         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23248         if (SWIG_arg_fail(1)) SWIG_fail
; 
23249         if (arg1 
== NULL
) { 
23250             SWIG_null_ref("wxPrintDialogData"); 
23252         if (SWIG_arg_fail(1)) SWIG_fail
; 
23255         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23256         result 
= (wxPrintDialogData 
*)new wxPrintDialogData((wxPrintDialogData 
const &)*arg1
); 
23258         wxPyEndAllowThreads(__tstate
); 
23259         if (PyErr_Occurred()) SWIG_fail
; 
23261     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 1); 
23268 static PyObject 
*_wrap_new_PrintDialogData(PyObject 
*self
, PyObject 
*args
) { 
23273     argc 
= PyObject_Length(args
); 
23274     for (ii 
= 0; (ii 
< argc
) && (ii 
< 1); ii
++) { 
23275         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
23278         return _wrap_new_PrintDialogData__SWIG_0(self
,args
); 
23284             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPrintData
, 0) == -1) { 
23292             return _wrap_new_PrintDialogData__SWIG_1(self
,args
); 
23299             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPrintDialogData
, 0) == -1) { 
23307             return _wrap_new_PrintDialogData__SWIG_2(self
,args
); 
23311     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintDialogData'"); 
23316 static PyObject 
*_wrap_delete_PrintDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23317     PyObject 
*resultobj
; 
23318     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23319     PyObject 
* obj0 
= 0 ; 
23320     char *kwnames
[] = { 
23321         (char *) "self", NULL 
 
23324     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_PrintDialogData",kwnames
,&obj0
)) goto fail
; 
23325     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23326     if (SWIG_arg_fail(1)) SWIG_fail
; 
23328         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23331         wxPyEndAllowThreads(__tstate
); 
23332         if (PyErr_Occurred()) SWIG_fail
; 
23334     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23341 static PyObject 
*_wrap_PrintDialogData_GetFromPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23342     PyObject 
*resultobj
; 
23343     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23345     PyObject 
* obj0 
= 0 ; 
23346     char *kwnames
[] = { 
23347         (char *) "self", NULL 
 
23350     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetFromPage",kwnames
,&obj0
)) goto fail
; 
23351     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23352     if (SWIG_arg_fail(1)) SWIG_fail
; 
23354         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23355         result 
= (int)((wxPrintDialogData 
const *)arg1
)->GetFromPage(); 
23357         wxPyEndAllowThreads(__tstate
); 
23358         if (PyErr_Occurred()) SWIG_fail
; 
23361         resultobj 
= SWIG_From_int((int)(result
));  
23369 static PyObject 
*_wrap_PrintDialogData_GetToPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23370     PyObject 
*resultobj
; 
23371     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23373     PyObject 
* obj0 
= 0 ; 
23374     char *kwnames
[] = { 
23375         (char *) "self", NULL 
 
23378     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetToPage",kwnames
,&obj0
)) goto fail
; 
23379     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23380     if (SWIG_arg_fail(1)) SWIG_fail
; 
23382         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23383         result 
= (int)((wxPrintDialogData 
const *)arg1
)->GetToPage(); 
23385         wxPyEndAllowThreads(__tstate
); 
23386         if (PyErr_Occurred()) SWIG_fail
; 
23389         resultobj 
= SWIG_From_int((int)(result
));  
23397 static PyObject 
*_wrap_PrintDialogData_GetMinPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23398     PyObject 
*resultobj
; 
23399     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23401     PyObject 
* obj0 
= 0 ; 
23402     char *kwnames
[] = { 
23403         (char *) "self", NULL 
 
23406     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetMinPage",kwnames
,&obj0
)) goto fail
; 
23407     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23408     if (SWIG_arg_fail(1)) SWIG_fail
; 
23410         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23411         result 
= (int)((wxPrintDialogData 
const *)arg1
)->GetMinPage(); 
23413         wxPyEndAllowThreads(__tstate
); 
23414         if (PyErr_Occurred()) SWIG_fail
; 
23417         resultobj 
= SWIG_From_int((int)(result
));  
23425 static PyObject 
*_wrap_PrintDialogData_GetMaxPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23426     PyObject 
*resultobj
; 
23427     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23429     PyObject 
* obj0 
= 0 ; 
23430     char *kwnames
[] = { 
23431         (char *) "self", NULL 
 
23434     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetMaxPage",kwnames
,&obj0
)) goto fail
; 
23435     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23436     if (SWIG_arg_fail(1)) SWIG_fail
; 
23438         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23439         result 
= (int)((wxPrintDialogData 
const *)arg1
)->GetMaxPage(); 
23441         wxPyEndAllowThreads(__tstate
); 
23442         if (PyErr_Occurred()) SWIG_fail
; 
23445         resultobj 
= SWIG_From_int((int)(result
));  
23453 static PyObject 
*_wrap_PrintDialogData_GetNoCopies(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23454     PyObject 
*resultobj
; 
23455     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23457     PyObject 
* obj0 
= 0 ; 
23458     char *kwnames
[] = { 
23459         (char *) "self", NULL 
 
23462     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetNoCopies",kwnames
,&obj0
)) goto fail
; 
23463     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23464     if (SWIG_arg_fail(1)) SWIG_fail
; 
23466         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23467         result 
= (int)((wxPrintDialogData 
const *)arg1
)->GetNoCopies(); 
23469         wxPyEndAllowThreads(__tstate
); 
23470         if (PyErr_Occurred()) SWIG_fail
; 
23473         resultobj 
= SWIG_From_int((int)(result
));  
23481 static PyObject 
*_wrap_PrintDialogData_GetAllPages(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23482     PyObject 
*resultobj
; 
23483     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23485     PyObject 
* obj0 
= 0 ; 
23486     char *kwnames
[] = { 
23487         (char *) "self", NULL 
 
23490     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetAllPages",kwnames
,&obj0
)) goto fail
; 
23491     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23492     if (SWIG_arg_fail(1)) SWIG_fail
; 
23494         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23495         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetAllPages(); 
23497         wxPyEndAllowThreads(__tstate
); 
23498         if (PyErr_Occurred()) SWIG_fail
; 
23501         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
23509 static PyObject 
*_wrap_PrintDialogData_GetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23510     PyObject 
*resultobj
; 
23511     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23513     PyObject 
* obj0 
= 0 ; 
23514     char *kwnames
[] = { 
23515         (char *) "self", NULL 
 
23518     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetSelection",kwnames
,&obj0
)) goto fail
; 
23519     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23520     if (SWIG_arg_fail(1)) SWIG_fail
; 
23522         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23523         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetSelection(); 
23525         wxPyEndAllowThreads(__tstate
); 
23526         if (PyErr_Occurred()) SWIG_fail
; 
23529         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
23537 static PyObject 
*_wrap_PrintDialogData_GetCollate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23538     PyObject 
*resultobj
; 
23539     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23541     PyObject 
* obj0 
= 0 ; 
23542     char *kwnames
[] = { 
23543         (char *) "self", NULL 
 
23546     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetCollate",kwnames
,&obj0
)) goto fail
; 
23547     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23548     if (SWIG_arg_fail(1)) SWIG_fail
; 
23550         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23551         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetCollate(); 
23553         wxPyEndAllowThreads(__tstate
); 
23554         if (PyErr_Occurred()) SWIG_fail
; 
23557         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
23565 static PyObject 
*_wrap_PrintDialogData_GetPrintToFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23566     PyObject 
*resultobj
; 
23567     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23569     PyObject 
* obj0 
= 0 ; 
23570     char *kwnames
[] = { 
23571         (char *) "self", NULL 
 
23574     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetPrintToFile",kwnames
,&obj0
)) goto fail
; 
23575     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23576     if (SWIG_arg_fail(1)) SWIG_fail
; 
23578         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23579         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetPrintToFile(); 
23581         wxPyEndAllowThreads(__tstate
); 
23582         if (PyErr_Occurred()) SWIG_fail
; 
23585         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
23593 static PyObject 
*_wrap_PrintDialogData_GetSetupDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23594     PyObject 
*resultobj
; 
23595     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23597     PyObject 
* obj0 
= 0 ; 
23598     char *kwnames
[] = { 
23599         (char *) "self", NULL 
 
23602     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetSetupDialog",kwnames
,&obj0
)) goto fail
; 
23603     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23604     if (SWIG_arg_fail(1)) SWIG_fail
; 
23606         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23607         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetSetupDialog(); 
23609         wxPyEndAllowThreads(__tstate
); 
23610         if (PyErr_Occurred()) SWIG_fail
; 
23613         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
23621 static PyObject 
*_wrap_PrintDialogData_SetSetupDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23622     PyObject 
*resultobj
; 
23623     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23625     PyObject 
* obj0 
= 0 ; 
23626     PyObject 
* obj1 
= 0 ; 
23627     char *kwnames
[] = { 
23628         (char *) "self",(char *) "flag", NULL 
 
23631     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetSetupDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
23632     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23633     if (SWIG_arg_fail(1)) SWIG_fail
; 
23635         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23636         if (SWIG_arg_fail(2)) SWIG_fail
; 
23639         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23640         (arg1
)->SetSetupDialog(arg2
); 
23642         wxPyEndAllowThreads(__tstate
); 
23643         if (PyErr_Occurred()) SWIG_fail
; 
23645     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23652 static PyObject 
*_wrap_PrintDialogData_SetFromPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23653     PyObject 
*resultobj
; 
23654     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23656     PyObject 
* obj0 
= 0 ; 
23657     PyObject 
* obj1 
= 0 ; 
23658     char *kwnames
[] = { 
23659         (char *) "self",(char *) "v", NULL 
 
23662     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetFromPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
23663     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23664     if (SWIG_arg_fail(1)) SWIG_fail
; 
23666         arg2 
= (int)(SWIG_As_int(obj1
));  
23667         if (SWIG_arg_fail(2)) SWIG_fail
; 
23670         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23671         (arg1
)->SetFromPage(arg2
); 
23673         wxPyEndAllowThreads(__tstate
); 
23674         if (PyErr_Occurred()) SWIG_fail
; 
23676     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23683 static PyObject 
*_wrap_PrintDialogData_SetToPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23684     PyObject 
*resultobj
; 
23685     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23687     PyObject 
* obj0 
= 0 ; 
23688     PyObject 
* obj1 
= 0 ; 
23689     char *kwnames
[] = { 
23690         (char *) "self",(char *) "v", NULL 
 
23693     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetToPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
23694     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23695     if (SWIG_arg_fail(1)) SWIG_fail
; 
23697         arg2 
= (int)(SWIG_As_int(obj1
));  
23698         if (SWIG_arg_fail(2)) SWIG_fail
; 
23701         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23702         (arg1
)->SetToPage(arg2
); 
23704         wxPyEndAllowThreads(__tstate
); 
23705         if (PyErr_Occurred()) SWIG_fail
; 
23707     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23714 static PyObject 
*_wrap_PrintDialogData_SetMinPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23715     PyObject 
*resultobj
; 
23716     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23718     PyObject 
* obj0 
= 0 ; 
23719     PyObject 
* obj1 
= 0 ; 
23720     char *kwnames
[] = { 
23721         (char *) "self",(char *) "v", NULL 
 
23724     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMinPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
23725     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23726     if (SWIG_arg_fail(1)) SWIG_fail
; 
23728         arg2 
= (int)(SWIG_As_int(obj1
));  
23729         if (SWIG_arg_fail(2)) SWIG_fail
; 
23732         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23733         (arg1
)->SetMinPage(arg2
); 
23735         wxPyEndAllowThreads(__tstate
); 
23736         if (PyErr_Occurred()) SWIG_fail
; 
23738     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23745 static PyObject 
*_wrap_PrintDialogData_SetMaxPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23746     PyObject 
*resultobj
; 
23747     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23749     PyObject 
* obj0 
= 0 ; 
23750     PyObject 
* obj1 
= 0 ; 
23751     char *kwnames
[] = { 
23752         (char *) "self",(char *) "v", NULL 
 
23755     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetMaxPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
23756     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23757     if (SWIG_arg_fail(1)) SWIG_fail
; 
23759         arg2 
= (int)(SWIG_As_int(obj1
));  
23760         if (SWIG_arg_fail(2)) SWIG_fail
; 
23763         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23764         (arg1
)->SetMaxPage(arg2
); 
23766         wxPyEndAllowThreads(__tstate
); 
23767         if (PyErr_Occurred()) SWIG_fail
; 
23769     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23776 static PyObject 
*_wrap_PrintDialogData_SetNoCopies(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23777     PyObject 
*resultobj
; 
23778     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23780     PyObject 
* obj0 
= 0 ; 
23781     PyObject 
* obj1 
= 0 ; 
23782     char *kwnames
[] = { 
23783         (char *) "self",(char *) "v", NULL 
 
23786     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetNoCopies",kwnames
,&obj0
,&obj1
)) goto fail
; 
23787     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23788     if (SWIG_arg_fail(1)) SWIG_fail
; 
23790         arg2 
= (int)(SWIG_As_int(obj1
));  
23791         if (SWIG_arg_fail(2)) SWIG_fail
; 
23794         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23795         (arg1
)->SetNoCopies(arg2
); 
23797         wxPyEndAllowThreads(__tstate
); 
23798         if (PyErr_Occurred()) SWIG_fail
; 
23800     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23807 static PyObject 
*_wrap_PrintDialogData_SetAllPages(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23808     PyObject 
*resultobj
; 
23809     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23811     PyObject 
* obj0 
= 0 ; 
23812     PyObject 
* obj1 
= 0 ; 
23813     char *kwnames
[] = { 
23814         (char *) "self",(char *) "flag", NULL 
 
23817     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetAllPages",kwnames
,&obj0
,&obj1
)) goto fail
; 
23818     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23819     if (SWIG_arg_fail(1)) SWIG_fail
; 
23821         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23822         if (SWIG_arg_fail(2)) SWIG_fail
; 
23825         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23826         (arg1
)->SetAllPages(arg2
); 
23828         wxPyEndAllowThreads(__tstate
); 
23829         if (PyErr_Occurred()) SWIG_fail
; 
23831     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23838 static PyObject 
*_wrap_PrintDialogData_SetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23839     PyObject 
*resultobj
; 
23840     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23842     PyObject 
* obj0 
= 0 ; 
23843     PyObject 
* obj1 
= 0 ; 
23844     char *kwnames
[] = { 
23845         (char *) "self",(char *) "flag", NULL 
 
23848     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
23849     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23850     if (SWIG_arg_fail(1)) SWIG_fail
; 
23852         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23853         if (SWIG_arg_fail(2)) SWIG_fail
; 
23856         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23857         (arg1
)->SetSelection(arg2
); 
23859         wxPyEndAllowThreads(__tstate
); 
23860         if (PyErr_Occurred()) SWIG_fail
; 
23862     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23869 static PyObject 
*_wrap_PrintDialogData_SetCollate(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23870     PyObject 
*resultobj
; 
23871     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23873     PyObject 
* obj0 
= 0 ; 
23874     PyObject 
* obj1 
= 0 ; 
23875     char *kwnames
[] = { 
23876         (char *) "self",(char *) "flag", NULL 
 
23879     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetCollate",kwnames
,&obj0
,&obj1
)) goto fail
; 
23880     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23881     if (SWIG_arg_fail(1)) SWIG_fail
; 
23883         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23884         if (SWIG_arg_fail(2)) SWIG_fail
; 
23887         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23888         (arg1
)->SetCollate(arg2
); 
23890         wxPyEndAllowThreads(__tstate
); 
23891         if (PyErr_Occurred()) SWIG_fail
; 
23893     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23900 static PyObject 
*_wrap_PrintDialogData_SetPrintToFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23901     PyObject 
*resultobj
; 
23902     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23904     PyObject 
* obj0 
= 0 ; 
23905     PyObject 
* obj1 
= 0 ; 
23906     char *kwnames
[] = { 
23907         (char *) "self",(char *) "flag", NULL 
 
23910     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintToFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
23911     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23912     if (SWIG_arg_fail(1)) SWIG_fail
; 
23914         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23915         if (SWIG_arg_fail(2)) SWIG_fail
; 
23918         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23919         (arg1
)->SetPrintToFile(arg2
); 
23921         wxPyEndAllowThreads(__tstate
); 
23922         if (PyErr_Occurred()) SWIG_fail
; 
23924     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23931 static PyObject 
*_wrap_PrintDialogData_EnablePrintToFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23932     PyObject 
*resultobj
; 
23933     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23935     PyObject 
* obj0 
= 0 ; 
23936     PyObject 
* obj1 
= 0 ; 
23937     char *kwnames
[] = { 
23938         (char *) "self",(char *) "flag", NULL 
 
23941     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePrintToFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
23942     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23943     if (SWIG_arg_fail(1)) SWIG_fail
; 
23945         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23946         if (SWIG_arg_fail(2)) SWIG_fail
; 
23949         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23950         (arg1
)->EnablePrintToFile(arg2
); 
23952         wxPyEndAllowThreads(__tstate
); 
23953         if (PyErr_Occurred()) SWIG_fail
; 
23955     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23962 static PyObject 
*_wrap_PrintDialogData_EnableSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23963     PyObject 
*resultobj
; 
23964     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23966     PyObject 
* obj0 
= 0 ; 
23967     PyObject 
* obj1 
= 0 ; 
23968     char *kwnames
[] = { 
23969         (char *) "self",(char *) "flag", NULL 
 
23972     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
23973     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
23974     if (SWIG_arg_fail(1)) SWIG_fail
; 
23976         arg2 
= (bool)(SWIG_As_bool(obj1
));  
23977         if (SWIG_arg_fail(2)) SWIG_fail
; 
23980         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
23981         (arg1
)->EnableSelection(arg2
); 
23983         wxPyEndAllowThreads(__tstate
); 
23984         if (PyErr_Occurred()) SWIG_fail
; 
23986     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
23993 static PyObject 
*_wrap_PrintDialogData_EnablePageNumbers(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
23994     PyObject 
*resultobj
; 
23995     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
23997     PyObject 
* obj0 
= 0 ; 
23998     PyObject 
* obj1 
= 0 ; 
23999     char *kwnames
[] = { 
24000         (char *) "self",(char *) "flag", NULL 
 
24003     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnablePageNumbers",kwnames
,&obj0
,&obj1
)) goto fail
; 
24004     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24005     if (SWIG_arg_fail(1)) SWIG_fail
; 
24007         arg2 
= (bool)(SWIG_As_bool(obj1
));  
24008         if (SWIG_arg_fail(2)) SWIG_fail
; 
24011         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24012         (arg1
)->EnablePageNumbers(arg2
); 
24014         wxPyEndAllowThreads(__tstate
); 
24015         if (PyErr_Occurred()) SWIG_fail
; 
24017     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24024 static PyObject 
*_wrap_PrintDialogData_EnableHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24025     PyObject 
*resultobj
; 
24026     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24028     PyObject 
* obj0 
= 0 ; 
24029     PyObject 
* obj1 
= 0 ; 
24030     char *kwnames
[] = { 
24031         (char *) "self",(char *) "flag", NULL 
 
24034     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_EnableHelp",kwnames
,&obj0
,&obj1
)) goto fail
; 
24035     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24036     if (SWIG_arg_fail(1)) SWIG_fail
; 
24038         arg2 
= (bool)(SWIG_As_bool(obj1
));  
24039         if (SWIG_arg_fail(2)) SWIG_fail
; 
24042         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24043         (arg1
)->EnableHelp(arg2
); 
24045         wxPyEndAllowThreads(__tstate
); 
24046         if (PyErr_Occurred()) SWIG_fail
; 
24048     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24055 static PyObject 
*_wrap_PrintDialogData_GetEnablePrintToFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24056     PyObject 
*resultobj
; 
24057     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24059     PyObject 
* obj0 
= 0 ; 
24060     char *kwnames
[] = { 
24061         (char *) "self", NULL 
 
24064     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetEnablePrintToFile",kwnames
,&obj0
)) goto fail
; 
24065     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24066     if (SWIG_arg_fail(1)) SWIG_fail
; 
24068         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24069         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetEnablePrintToFile(); 
24071         wxPyEndAllowThreads(__tstate
); 
24072         if (PyErr_Occurred()) SWIG_fail
; 
24075         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24083 static PyObject 
*_wrap_PrintDialogData_GetEnableSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24084     PyObject 
*resultobj
; 
24085     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24087     PyObject 
* obj0 
= 0 ; 
24088     char *kwnames
[] = { 
24089         (char *) "self", NULL 
 
24092     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetEnableSelection",kwnames
,&obj0
)) goto fail
; 
24093     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24094     if (SWIG_arg_fail(1)) SWIG_fail
; 
24096         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24097         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetEnableSelection(); 
24099         wxPyEndAllowThreads(__tstate
); 
24100         if (PyErr_Occurred()) SWIG_fail
; 
24103         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24111 static PyObject 
*_wrap_PrintDialogData_GetEnablePageNumbers(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24112     PyObject 
*resultobj
; 
24113     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24115     PyObject 
* obj0 
= 0 ; 
24116     char *kwnames
[] = { 
24117         (char *) "self", NULL 
 
24120     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetEnablePageNumbers",kwnames
,&obj0
)) goto fail
; 
24121     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24122     if (SWIG_arg_fail(1)) SWIG_fail
; 
24124         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24125         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetEnablePageNumbers(); 
24127         wxPyEndAllowThreads(__tstate
); 
24128         if (PyErr_Occurred()) SWIG_fail
; 
24131         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24139 static PyObject 
*_wrap_PrintDialogData_GetEnableHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24140     PyObject 
*resultobj
; 
24141     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24143     PyObject 
* obj0 
= 0 ; 
24144     char *kwnames
[] = { 
24145         (char *) "self", NULL 
 
24148     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetEnableHelp",kwnames
,&obj0
)) goto fail
; 
24149     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24150     if (SWIG_arg_fail(1)) SWIG_fail
; 
24152         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24153         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->GetEnableHelp(); 
24155         wxPyEndAllowThreads(__tstate
); 
24156         if (PyErr_Occurred()) SWIG_fail
; 
24159         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24167 static PyObject 
*_wrap_PrintDialogData_Ok(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24168     PyObject 
*resultobj
; 
24169     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24171     PyObject 
* obj0 
= 0 ; 
24172     char *kwnames
[] = { 
24173         (char *) "self", NULL 
 
24176     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_Ok",kwnames
,&obj0
)) goto fail
; 
24177     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24178     if (SWIG_arg_fail(1)) SWIG_fail
; 
24180         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24181         result 
= (bool)((wxPrintDialogData 
const *)arg1
)->Ok(); 
24183         wxPyEndAllowThreads(__tstate
); 
24184         if (PyErr_Occurred()) SWIG_fail
; 
24187         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24195 static PyObject 
*_wrap_PrintDialogData_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24196     PyObject 
*resultobj
; 
24197     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24198     wxPrintData 
*result
; 
24199     PyObject 
* obj0 
= 0 ; 
24200     char *kwnames
[] = { 
24201         (char *) "self", NULL 
 
24204     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialogData_GetPrintData",kwnames
,&obj0
)) goto fail
; 
24205     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24206     if (SWIG_arg_fail(1)) SWIG_fail
; 
24208         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24210             wxPrintData 
&_result_ref 
= (arg1
)->GetPrintData(); 
24211             result 
= (wxPrintData 
*) &_result_ref
; 
24214         wxPyEndAllowThreads(__tstate
); 
24215         if (PyErr_Occurred()) SWIG_fail
; 
24217     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
24224 static PyObject 
*_wrap_PrintDialogData_SetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24225     PyObject 
*resultobj
; 
24226     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) 0 ; 
24227     wxPrintData 
*arg2 
= 0 ; 
24228     PyObject 
* obj0 
= 0 ; 
24229     PyObject 
* obj1 
= 0 ; 
24230     char *kwnames
[] = { 
24231         (char *) "self",(char *) "printData", NULL 
 
24234     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintDialogData_SetPrintData",kwnames
,&obj0
,&obj1
)) goto fail
; 
24235     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24236     if (SWIG_arg_fail(1)) SWIG_fail
; 
24238         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
24239         if (SWIG_arg_fail(2)) SWIG_fail
; 
24240         if (arg2 
== NULL
) { 
24241             SWIG_null_ref("wxPrintData"); 
24243         if (SWIG_arg_fail(2)) SWIG_fail
; 
24246         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24247         (arg1
)->SetPrintData((wxPrintData 
const &)*arg2
); 
24249         wxPyEndAllowThreads(__tstate
); 
24250         if (PyErr_Occurred()) SWIG_fail
; 
24252     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24259 static PyObject 
* PrintDialogData_swigregister(PyObject 
*, PyObject 
*args
) { 
24261     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
24262     SWIG_TypeClientData(SWIGTYPE_p_wxPrintDialogData
, obj
); 
24264     return Py_BuildValue((char *)""); 
24266 static PyObject 
*_wrap_new_PrintDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24267     PyObject 
*resultobj
; 
24268     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
24269     wxPrintDialogData 
*arg2 
= (wxPrintDialogData 
*) NULL 
; 
24270     wxPrintDialog 
*result
; 
24271     PyObject 
* obj0 
= 0 ; 
24272     PyObject 
* obj1 
= 0 ; 
24273     char *kwnames
[] = { 
24274         (char *) "parent",(char *) "data", NULL 
 
24277     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_PrintDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
24278     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24279     if (SWIG_arg_fail(1)) SWIG_fail
; 
24281         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24282         if (SWIG_arg_fail(2)) SWIG_fail
; 
24285         if (!wxPyCheckForApp()) SWIG_fail
; 
24286         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24287         result 
= (wxPrintDialog 
*)new wxPrintDialog(arg1
,arg2
); 
24289         wxPyEndAllowThreads(__tstate
); 
24290         if (PyErr_Occurred()) SWIG_fail
; 
24292     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialog
, 1); 
24299 static PyObject 
*_wrap_PrintDialog_ShowModal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24300     PyObject 
*resultobj
; 
24301     wxPrintDialog 
*arg1 
= (wxPrintDialog 
*) 0 ; 
24303     PyObject 
* obj0 
= 0 ; 
24304     char *kwnames
[] = { 
24305         (char *) "self", NULL 
 
24308     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialog_ShowModal",kwnames
,&obj0
)) goto fail
; 
24309     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
24310     if (SWIG_arg_fail(1)) SWIG_fail
; 
24312         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24313         result 
= (int)(arg1
)->ShowModal(); 
24315         wxPyEndAllowThreads(__tstate
); 
24316         if (PyErr_Occurred()) SWIG_fail
; 
24319         resultobj 
= SWIG_From_int((int)(result
));  
24327 static PyObject 
*_wrap_PrintDialog_GetPrintDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24328     PyObject 
*resultobj
; 
24329     wxPrintDialog 
*arg1 
= (wxPrintDialog 
*) 0 ; 
24330     wxPrintDialogData 
*result
; 
24331     PyObject 
* obj0 
= 0 ; 
24332     char *kwnames
[] = { 
24333         (char *) "self", NULL 
 
24336     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialog_GetPrintDialogData",kwnames
,&obj0
)) goto fail
; 
24337     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
24338     if (SWIG_arg_fail(1)) SWIG_fail
; 
24340         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24342             wxPrintDialogData 
&_result_ref 
= (arg1
)->GetPrintDialogData(); 
24343             result 
= (wxPrintDialogData 
*) &_result_ref
; 
24346         wxPyEndAllowThreads(__tstate
); 
24347         if (PyErr_Occurred()) SWIG_fail
; 
24349     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 0); 
24356 static PyObject 
*_wrap_PrintDialog_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24357     PyObject 
*resultobj
; 
24358     wxPrintDialog 
*arg1 
= (wxPrintDialog 
*) 0 ; 
24359     wxPrintData 
*result
; 
24360     PyObject 
* obj0 
= 0 ; 
24361     char *kwnames
[] = { 
24362         (char *) "self", NULL 
 
24365     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialog_GetPrintData",kwnames
,&obj0
)) goto fail
; 
24366     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
24367     if (SWIG_arg_fail(1)) SWIG_fail
; 
24369         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24371             wxPrintData 
&_result_ref 
= (arg1
)->GetPrintData(); 
24372             result 
= (wxPrintData 
*) &_result_ref
; 
24375         wxPyEndAllowThreads(__tstate
); 
24376         if (PyErr_Occurred()) SWIG_fail
; 
24378     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
24385 static PyObject 
*_wrap_PrintDialog_GetPrintDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24386     PyObject 
*resultobj
; 
24387     wxPrintDialog 
*arg1 
= (wxPrintDialog 
*) 0 ; 
24389     PyObject 
* obj0 
= 0 ; 
24390     char *kwnames
[] = { 
24391         (char *) "self", NULL 
 
24394     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintDialog_GetPrintDC",kwnames
,&obj0
)) goto fail
; 
24395     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
24396     if (SWIG_arg_fail(1)) SWIG_fail
; 
24398         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24399         result 
= (wxDC 
*)(arg1
)->GetPrintDC(); 
24401         wxPyEndAllowThreads(__tstate
); 
24402         if (PyErr_Occurred()) SWIG_fail
; 
24405         resultobj 
= wxPyMake_wxObject(result
, 1);  
24413 static PyObject 
* PrintDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
24415     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
24416     SWIG_TypeClientData(SWIGTYPE_p_wxPrintDialog
, obj
); 
24418     return Py_BuildValue((char *)""); 
24420 static PyObject 
*_wrap_new_Printer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24421     PyObject 
*resultobj
; 
24422     wxPrintDialogData 
*arg1 
= (wxPrintDialogData 
*) NULL 
; 
24424     PyObject 
* obj0 
= 0 ; 
24425     char *kwnames
[] = { 
24426         (char *) "data", NULL 
 
24429     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printer",kwnames
,&obj0
)) goto fail
; 
24431         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
24432         if (SWIG_arg_fail(1)) SWIG_fail
; 
24435         if (!wxPyCheckForApp()) SWIG_fail
; 
24436         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24437         result 
= (wxPrinter 
*)new wxPrinter(arg1
); 
24439         wxPyEndAllowThreads(__tstate
); 
24440         if (PyErr_Occurred()) SWIG_fail
; 
24442     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrinter
, 1); 
24449 static PyObject 
*_wrap_delete_Printer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24450     PyObject 
*resultobj
; 
24451     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24452     PyObject 
* obj0 
= 0 ; 
24453     char *kwnames
[] = { 
24454         (char *) "self", NULL 
 
24457     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_Printer",kwnames
,&obj0
)) goto fail
; 
24458     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24459     if (SWIG_arg_fail(1)) SWIG_fail
; 
24461         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24464         wxPyEndAllowThreads(__tstate
); 
24465         if (PyErr_Occurred()) SWIG_fail
; 
24467     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24474 static PyObject 
*_wrap_Printer_CreateAbortWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24475     PyObject 
*resultobj
; 
24476     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24477     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
24478     wxPyPrintout 
*arg3 
= (wxPyPrintout 
*) 0 ; 
24480     PyObject 
* obj0 
= 0 ; 
24481     PyObject 
* obj1 
= 0 ; 
24482     PyObject 
* obj2 
= 0 ; 
24483     char *kwnames
[] = { 
24484         (char *) "self",(char *) "parent",(char *) "printout", NULL 
 
24487     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printer_CreateAbortWindow",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
24488     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24489     if (SWIG_arg_fail(1)) SWIG_fail
; 
24490     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24491     if (SWIG_arg_fail(2)) SWIG_fail
; 
24492     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24493     if (SWIG_arg_fail(3)) SWIG_fail
; 
24495         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24496         result 
= (wxWindow 
*)(arg1
)->CreateAbortWindow(arg2
,arg3
); 
24498         wxPyEndAllowThreads(__tstate
); 
24499         if (PyErr_Occurred()) SWIG_fail
; 
24502         resultobj 
= wxPyMake_wxObject(result
, 0);  
24510 static PyObject 
*_wrap_Printer_ReportError(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24511     PyObject 
*resultobj
; 
24512     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24513     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
24514     wxPyPrintout 
*arg3 
= (wxPyPrintout 
*) 0 ; 
24515     wxString 
*arg4 
= 0 ; 
24516     bool temp4 
= false ; 
24517     PyObject 
* obj0 
= 0 ; 
24518     PyObject 
* obj1 
= 0 ; 
24519     PyObject 
* obj2 
= 0 ; 
24520     PyObject 
* obj3 
= 0 ; 
24521     char *kwnames
[] = { 
24522         (char *) "self",(char *) "parent",(char *) "printout",(char *) "message", NULL 
 
24525     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:Printer_ReportError",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
24526     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24527     if (SWIG_arg_fail(1)) SWIG_fail
; 
24528     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24529     if (SWIG_arg_fail(2)) SWIG_fail
; 
24530     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24531     if (SWIG_arg_fail(3)) SWIG_fail
; 
24533         arg4 
= wxString_in_helper(obj3
); 
24534         if (arg4 
== NULL
) SWIG_fail
; 
24538         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24539         (arg1
)->ReportError(arg2
,arg3
,(wxString 
const &)*arg4
); 
24541         wxPyEndAllowThreads(__tstate
); 
24542         if (PyErr_Occurred()) SWIG_fail
; 
24544     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24559 static PyObject 
*_wrap_Printer_Setup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24560     PyObject 
*resultobj
; 
24561     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24562     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
24564     PyObject 
* obj0 
= 0 ; 
24565     PyObject 
* obj1 
= 0 ; 
24566     char *kwnames
[] = { 
24567         (char *) "self",(char *) "parent", NULL 
 
24570     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_Setup",kwnames
,&obj0
,&obj1
)) goto fail
; 
24571     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24572     if (SWIG_arg_fail(1)) SWIG_fail
; 
24573     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24574     if (SWIG_arg_fail(2)) SWIG_fail
; 
24576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24577         result 
= (bool)(arg1
)->Setup(arg2
); 
24579         wxPyEndAllowThreads(__tstate
); 
24580         if (PyErr_Occurred()) SWIG_fail
; 
24583         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24591 static PyObject 
*_wrap_Printer_Print(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24592     PyObject 
*resultobj
; 
24593     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24594     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
24595     wxPyPrintout 
*arg3 
= (wxPyPrintout 
*) 0 ; 
24596     bool arg4 
= (bool) true ; 
24598     PyObject 
* obj0 
= 0 ; 
24599     PyObject 
* obj1 
= 0 ; 
24600     PyObject 
* obj2 
= 0 ; 
24601     PyObject 
* obj3 
= 0 ; 
24602     char *kwnames
[] = { 
24603         (char *) "self",(char *) "parent",(char *) "printout",(char *) "prompt", NULL 
 
24606     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:Printer_Print",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
24607     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24608     if (SWIG_arg_fail(1)) SWIG_fail
; 
24609     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24610     if (SWIG_arg_fail(2)) SWIG_fail
; 
24611     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24612     if (SWIG_arg_fail(3)) SWIG_fail
; 
24615             arg4 
= (bool)(SWIG_As_bool(obj3
));  
24616             if (SWIG_arg_fail(4)) SWIG_fail
; 
24620         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24621         result 
= (bool)(arg1
)->Print(arg2
,arg3
,arg4
); 
24623         wxPyEndAllowThreads(__tstate
); 
24624         if (PyErr_Occurred()) SWIG_fail
; 
24627         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24635 static PyObject 
*_wrap_Printer_PrintDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24636     PyObject 
*resultobj
; 
24637     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24638     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
24640     PyObject 
* obj0 
= 0 ; 
24641     PyObject 
* obj1 
= 0 ; 
24642     char *kwnames
[] = { 
24643         (char *) "self",(char *) "parent", NULL 
 
24646     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printer_PrintDialog",kwnames
,&obj0
,&obj1
)) goto fail
; 
24647     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24648     if (SWIG_arg_fail(1)) SWIG_fail
; 
24649     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
24650     if (SWIG_arg_fail(2)) SWIG_fail
; 
24652         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24653         result 
= (wxDC 
*)(arg1
)->PrintDialog(arg2
); 
24655         wxPyEndAllowThreads(__tstate
); 
24656         if (PyErr_Occurred()) SWIG_fail
; 
24659         resultobj 
= wxPyMake_wxObject(result
, 0);  
24667 static PyObject 
*_wrap_Printer_GetPrintDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24668     PyObject 
*resultobj
; 
24669     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24670     wxPrintDialogData 
*result
; 
24671     PyObject 
* obj0 
= 0 ; 
24672     char *kwnames
[] = { 
24673         (char *) "self", NULL 
 
24676     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printer_GetPrintDialogData",kwnames
,&obj0
)) goto fail
; 
24677     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24678     if (SWIG_arg_fail(1)) SWIG_fail
; 
24680         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24682             wxPrintDialogData 
&_result_ref 
= ((wxPrinter 
const *)arg1
)->GetPrintDialogData(); 
24683             result 
= (wxPrintDialogData 
*) &_result_ref
; 
24686         wxPyEndAllowThreads(__tstate
); 
24687         if (PyErr_Occurred()) SWIG_fail
; 
24689     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 0); 
24696 static PyObject 
*_wrap_Printer_GetAbort(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24697     PyObject 
*resultobj
; 
24698     wxPrinter 
*arg1 
= (wxPrinter 
*) 0 ; 
24700     PyObject 
* obj0 
= 0 ; 
24701     char *kwnames
[] = { 
24702         (char *) "self", NULL 
 
24705     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printer_GetAbort",kwnames
,&obj0
)) goto fail
; 
24706     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrinter
, SWIG_POINTER_EXCEPTION 
| 0); 
24707     if (SWIG_arg_fail(1)) SWIG_fail
; 
24709         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24710         result 
= (bool)(arg1
)->GetAbort(); 
24712         wxPyEndAllowThreads(__tstate
); 
24713         if (PyErr_Occurred()) SWIG_fail
; 
24716         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
24724 static PyObject 
*_wrap_Printer_GetLastError(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24725     PyObject 
*resultobj
; 
24726     wxPrinterError result
; 
24727     char *kwnames
[] = { 
24731     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":Printer_GetLastError",kwnames
)) goto fail
; 
24733         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24734         result 
= (wxPrinterError
)wxPrinter::GetLastError(); 
24736         wxPyEndAllowThreads(__tstate
); 
24737         if (PyErr_Occurred()) SWIG_fail
; 
24739     resultobj 
= SWIG_From_int((result
)); 
24746 static PyObject 
* Printer_swigregister(PyObject 
*, PyObject 
*args
) { 
24748     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
24749     SWIG_TypeClientData(SWIGTYPE_p_wxPrinter
, obj
); 
24751     return Py_BuildValue((char *)""); 
24753 static PyObject 
*_wrap_new_Printout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24754     PyObject 
*resultobj
; 
24755     wxString 
const &arg1_defvalue 
= wxPyPrintoutTitleStr 
; 
24756     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
24757     wxPyPrintout 
*result
; 
24758     bool temp1 
= false ; 
24759     PyObject 
* obj0 
= 0 ; 
24760     char *kwnames
[] = { 
24761         (char *) "title", NULL 
 
24764     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_Printout",kwnames
,&obj0
)) goto fail
; 
24767             arg1 
= wxString_in_helper(obj0
); 
24768             if (arg1 
== NULL
) SWIG_fail
; 
24773         if (!wxPyCheckForApp()) SWIG_fail
; 
24774         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24775         result 
= (wxPyPrintout 
*)new wxPyPrintout((wxString 
const &)*arg1
); 
24777         wxPyEndAllowThreads(__tstate
); 
24778         if (PyErr_Occurred()) SWIG_fail
; 
24781         resultobj 
= wxPyMake_wxObject(result
, 1);  
24797 static PyObject 
*_wrap_Printout__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24798     PyObject 
*resultobj
; 
24799     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24800     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
24801     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
24802     PyObject 
* obj0 
= 0 ; 
24803     PyObject 
* obj1 
= 0 ; 
24804     PyObject 
* obj2 
= 0 ; 
24805     char *kwnames
[] = { 
24806         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
24809     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
24810     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24811     if (SWIG_arg_fail(1)) SWIG_fail
; 
24815         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24816         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
24818         wxPyEndAllowThreads(__tstate
); 
24819         if (PyErr_Occurred()) SWIG_fail
; 
24821     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24828 static PyObject 
*_wrap_Printout_GetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24829     PyObject 
*resultobj
; 
24830     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24832     PyObject 
* obj0 
= 0 ; 
24833     char *kwnames
[] = { 
24834         (char *) "self", NULL 
 
24837     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetTitle",kwnames
,&obj0
)) goto fail
; 
24838     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24839     if (SWIG_arg_fail(1)) SWIG_fail
; 
24841         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24842         result 
= ((wxPyPrintout 
const *)arg1
)->GetTitle(); 
24844         wxPyEndAllowThreads(__tstate
); 
24845         if (PyErr_Occurred()) SWIG_fail
; 
24849         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
24851         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
24860 static PyObject 
*_wrap_Printout_GetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24861     PyObject 
*resultobj
; 
24862     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24864     PyObject 
* obj0 
= 0 ; 
24865     char *kwnames
[] = { 
24866         (char *) "self", NULL 
 
24869     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetDC",kwnames
,&obj0
)) goto fail
; 
24870     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24871     if (SWIG_arg_fail(1)) SWIG_fail
; 
24873         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24874         result 
= (wxDC 
*)(arg1
)->GetDC(); 
24876         wxPyEndAllowThreads(__tstate
); 
24877         if (PyErr_Occurred()) SWIG_fail
; 
24880         resultobj 
= wxPyMake_wxObject(result
, 0);  
24888 static PyObject 
*_wrap_Printout_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24889     PyObject 
*resultobj
; 
24890     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24891     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
24892     PyObject 
* obj0 
= 0 ; 
24893     PyObject 
* obj1 
= 0 ; 
24894     char *kwnames
[] = { 
24895         (char *) "self",(char *) "dc", NULL 
 
24898     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetDC",kwnames
,&obj0
,&obj1
)) goto fail
; 
24899     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24900     if (SWIG_arg_fail(1)) SWIG_fail
; 
24901     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
24902     if (SWIG_arg_fail(2)) SWIG_fail
; 
24904         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24905         (arg1
)->SetDC(arg2
); 
24907         wxPyEndAllowThreads(__tstate
); 
24908         if (PyErr_Occurred()) SWIG_fail
; 
24910     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24917 static PyObject 
*_wrap_Printout_SetPageSizePixels(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24918     PyObject 
*resultobj
; 
24919     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24922     PyObject 
* obj0 
= 0 ; 
24923     PyObject 
* obj1 
= 0 ; 
24924     PyObject 
* obj2 
= 0 ; 
24925     char *kwnames
[] = { 
24926         (char *) "self",(char *) "w",(char *) "h", NULL 
 
24929     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizePixels",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
24930     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24931     if (SWIG_arg_fail(1)) SWIG_fail
; 
24933         arg2 
= (int)(SWIG_As_int(obj1
));  
24934         if (SWIG_arg_fail(2)) SWIG_fail
; 
24937         arg3 
= (int)(SWIG_As_int(obj2
));  
24938         if (SWIG_arg_fail(3)) SWIG_fail
; 
24941         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24942         (arg1
)->SetPageSizePixels(arg2
,arg3
); 
24944         wxPyEndAllowThreads(__tstate
); 
24945         if (PyErr_Occurred()) SWIG_fail
; 
24947     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24954 static PyObject 
*_wrap_Printout_GetPageSizePixels(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24955     PyObject 
*resultobj
; 
24956     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24957     int *arg2 
= (int *) 0 ; 
24958     int *arg3 
= (int *) 0 ; 
24963     PyObject 
* obj0 
= 0 ; 
24964     char *kwnames
[] = { 
24965         (char *) "self", NULL 
 
24968     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
24969     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
24970     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetPageSizePixels",kwnames
,&obj0
)) goto fail
; 
24971     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
24972     if (SWIG_arg_fail(1)) SWIG_fail
; 
24974         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
24975         (arg1
)->GetPageSizePixels(arg2
,arg3
); 
24977         wxPyEndAllowThreads(__tstate
); 
24978         if (PyErr_Occurred()) SWIG_fail
; 
24980     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
24981     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
24982     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
24983     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
24984     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
24991 static PyObject 
*_wrap_Printout_SetPageSizeMM(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
24992     PyObject 
*resultobj
; 
24993     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
24996     PyObject 
* obj0 
= 0 ; 
24997     PyObject 
* obj1 
= 0 ; 
24998     PyObject 
* obj2 
= 0 ; 
24999     char *kwnames
[] = { 
25000         (char *) "self",(char *) "w",(char *) "h", NULL 
 
25003     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPageSizeMM",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
25004     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25005     if (SWIG_arg_fail(1)) SWIG_fail
; 
25007         arg2 
= (int)(SWIG_As_int(obj1
));  
25008         if (SWIG_arg_fail(2)) SWIG_fail
; 
25011         arg3 
= (int)(SWIG_As_int(obj2
));  
25012         if (SWIG_arg_fail(3)) SWIG_fail
; 
25015         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25016         (arg1
)->SetPageSizeMM(arg2
,arg3
); 
25018         wxPyEndAllowThreads(__tstate
); 
25019         if (PyErr_Occurred()) SWIG_fail
; 
25021     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25028 static PyObject 
*_wrap_Printout_GetPageSizeMM(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25029     PyObject 
*resultobj
; 
25030     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25031     int *arg2 
= (int *) 0 ; 
25032     int *arg3 
= (int *) 0 ; 
25037     PyObject 
* obj0 
= 0 ; 
25038     char *kwnames
[] = { 
25039         (char *) "self", NULL 
 
25042     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
25043     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
25044     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetPageSizeMM",kwnames
,&obj0
)) goto fail
; 
25045     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25046     if (SWIG_arg_fail(1)) SWIG_fail
; 
25048         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25049         (arg1
)->GetPageSizeMM(arg2
,arg3
); 
25051         wxPyEndAllowThreads(__tstate
); 
25052         if (PyErr_Occurred()) SWIG_fail
; 
25054     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25055     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
25056     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
25057     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
25058     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
25065 static PyObject 
*_wrap_Printout_SetPPIScreen(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25066     PyObject 
*resultobj
; 
25067     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25070     PyObject 
* obj0 
= 0 ; 
25071     PyObject 
* obj1 
= 0 ; 
25072     PyObject 
* obj2 
= 0 ; 
25073     char *kwnames
[] = { 
25074         (char *) "self",(char *) "x",(char *) "y", NULL 
 
25077     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIScreen",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
25078     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25079     if (SWIG_arg_fail(1)) SWIG_fail
; 
25081         arg2 
= (int)(SWIG_As_int(obj1
));  
25082         if (SWIG_arg_fail(2)) SWIG_fail
; 
25085         arg3 
= (int)(SWIG_As_int(obj2
));  
25086         if (SWIG_arg_fail(3)) SWIG_fail
; 
25089         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25090         (arg1
)->SetPPIScreen(arg2
,arg3
); 
25092         wxPyEndAllowThreads(__tstate
); 
25093         if (PyErr_Occurred()) SWIG_fail
; 
25095     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25102 static PyObject 
*_wrap_Printout_GetPPIScreen(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25103     PyObject 
*resultobj
; 
25104     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25105     int *arg2 
= (int *) 0 ; 
25106     int *arg3 
= (int *) 0 ; 
25111     PyObject 
* obj0 
= 0 ; 
25112     char *kwnames
[] = { 
25113         (char *) "self", NULL 
 
25116     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
25117     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
25118     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetPPIScreen",kwnames
,&obj0
)) goto fail
; 
25119     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25120     if (SWIG_arg_fail(1)) SWIG_fail
; 
25122         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25123         (arg1
)->GetPPIScreen(arg2
,arg3
); 
25125         wxPyEndAllowThreads(__tstate
); 
25126         if (PyErr_Occurred()) SWIG_fail
; 
25128     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25129     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
25130     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
25131     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
25132     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
25139 static PyObject 
*_wrap_Printout_SetPPIPrinter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25140     PyObject 
*resultobj
; 
25141     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25144     PyObject 
* obj0 
= 0 ; 
25145     PyObject 
* obj1 
= 0 ; 
25146     PyObject 
* obj2 
= 0 ; 
25147     char *kwnames
[] = { 
25148         (char *) "self",(char *) "x",(char *) "y", NULL 
 
25151     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_SetPPIPrinter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
25152     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25153     if (SWIG_arg_fail(1)) SWIG_fail
; 
25155         arg2 
= (int)(SWIG_As_int(obj1
));  
25156         if (SWIG_arg_fail(2)) SWIG_fail
; 
25159         arg3 
= (int)(SWIG_As_int(obj2
));  
25160         if (SWIG_arg_fail(3)) SWIG_fail
; 
25163         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25164         (arg1
)->SetPPIPrinter(arg2
,arg3
); 
25166         wxPyEndAllowThreads(__tstate
); 
25167         if (PyErr_Occurred()) SWIG_fail
; 
25169     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25176 static PyObject 
*_wrap_Printout_GetPPIPrinter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25177     PyObject 
*resultobj
; 
25178     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25179     int *arg2 
= (int *) 0 ; 
25180     int *arg3 
= (int *) 0 ; 
25185     PyObject 
* obj0 
= 0 ; 
25186     char *kwnames
[] = { 
25187         (char *) "self", NULL 
 
25190     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
25191     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
25192     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_GetPPIPrinter",kwnames
,&obj0
)) goto fail
; 
25193     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25194     if (SWIG_arg_fail(1)) SWIG_fail
; 
25196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25197         (arg1
)->GetPPIPrinter(arg2
,arg3
); 
25199         wxPyEndAllowThreads(__tstate
); 
25200         if (PyErr_Occurred()) SWIG_fail
; 
25202     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25203     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
25204     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
25205     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
25206     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
25213 static PyObject 
*_wrap_Printout_IsPreview(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25214     PyObject 
*resultobj
; 
25215     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25217     PyObject 
* obj0 
= 0 ; 
25218     char *kwnames
[] = { 
25219         (char *) "self", NULL 
 
25222     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_IsPreview",kwnames
,&obj0
)) goto fail
; 
25223     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25224     if (SWIG_arg_fail(1)) SWIG_fail
; 
25226         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25227         result 
= (bool)(arg1
)->IsPreview(); 
25229         wxPyEndAllowThreads(__tstate
); 
25230         if (PyErr_Occurred()) SWIG_fail
; 
25233         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
25241 static PyObject 
*_wrap_Printout_SetIsPreview(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25242     PyObject 
*resultobj
; 
25243     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25245     PyObject 
* obj0 
= 0 ; 
25246     PyObject 
* obj1 
= 0 ; 
25247     char *kwnames
[] = { 
25248         (char *) "self",(char *) "p", NULL 
 
25251     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_SetIsPreview",kwnames
,&obj0
,&obj1
)) goto fail
; 
25252     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25253     if (SWIG_arg_fail(1)) SWIG_fail
; 
25255         arg2 
= (bool)(SWIG_As_bool(obj1
));  
25256         if (SWIG_arg_fail(2)) SWIG_fail
; 
25259         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25260         (arg1
)->SetIsPreview(arg2
); 
25262         wxPyEndAllowThreads(__tstate
); 
25263         if (PyErr_Occurred()) SWIG_fail
; 
25265     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25272 static PyObject 
*_wrap_Printout_base_OnBeginDocument(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25273     PyObject 
*resultobj
; 
25274     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25278     PyObject 
* obj0 
= 0 ; 
25279     PyObject 
* obj1 
= 0 ; 
25280     PyObject 
* obj2 
= 0 ; 
25281     char *kwnames
[] = { 
25282         (char *) "self",(char *) "startPage",(char *) "endPage", NULL 
 
25285     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:Printout_base_OnBeginDocument",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
25286     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25287     if (SWIG_arg_fail(1)) SWIG_fail
; 
25289         arg2 
= (int)(SWIG_As_int(obj1
));  
25290         if (SWIG_arg_fail(2)) SWIG_fail
; 
25293         arg3 
= (int)(SWIG_As_int(obj2
));  
25294         if (SWIG_arg_fail(3)) SWIG_fail
; 
25297         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25298         result 
= (bool)(arg1
)->base_OnBeginDocument(arg2
,arg3
); 
25300         wxPyEndAllowThreads(__tstate
); 
25301         if (PyErr_Occurred()) SWIG_fail
; 
25304         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
25312 static PyObject 
*_wrap_Printout_base_OnEndDocument(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25313     PyObject 
*resultobj
; 
25314     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25315     PyObject 
* obj0 
= 0 ; 
25316     char *kwnames
[] = { 
25317         (char *) "self", NULL 
 
25320     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_base_OnEndDocument",kwnames
,&obj0
)) goto fail
; 
25321     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25322     if (SWIG_arg_fail(1)) SWIG_fail
; 
25324         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25325         (arg1
)->base_OnEndDocument(); 
25327         wxPyEndAllowThreads(__tstate
); 
25328         if (PyErr_Occurred()) SWIG_fail
; 
25330     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25337 static PyObject 
*_wrap_Printout_base_OnBeginPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25338     PyObject 
*resultobj
; 
25339     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25340     PyObject 
* obj0 
= 0 ; 
25341     char *kwnames
[] = { 
25342         (char *) "self", NULL 
 
25345     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_base_OnBeginPrinting",kwnames
,&obj0
)) goto fail
; 
25346     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25347     if (SWIG_arg_fail(1)) SWIG_fail
; 
25349         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25350         (arg1
)->base_OnBeginPrinting(); 
25352         wxPyEndAllowThreads(__tstate
); 
25353         if (PyErr_Occurred()) SWIG_fail
; 
25355     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25362 static PyObject 
*_wrap_Printout_base_OnEndPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25363     PyObject 
*resultobj
; 
25364     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25365     PyObject 
* obj0 
= 0 ; 
25366     char *kwnames
[] = { 
25367         (char *) "self", NULL 
 
25370     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_base_OnEndPrinting",kwnames
,&obj0
)) goto fail
; 
25371     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25372     if (SWIG_arg_fail(1)) SWIG_fail
; 
25374         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25375         (arg1
)->base_OnEndPrinting(); 
25377         wxPyEndAllowThreads(__tstate
); 
25378         if (PyErr_Occurred()) SWIG_fail
; 
25380     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25387 static PyObject 
*_wrap_Printout_base_OnPreparePrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25388     PyObject 
*resultobj
; 
25389     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25390     PyObject 
* obj0 
= 0 ; 
25391     char *kwnames
[] = { 
25392         (char *) "self", NULL 
 
25395     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_base_OnPreparePrinting",kwnames
,&obj0
)) goto fail
; 
25396     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25397     if (SWIG_arg_fail(1)) SWIG_fail
; 
25399         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25400         (arg1
)->base_OnPreparePrinting(); 
25402         wxPyEndAllowThreads(__tstate
); 
25403         if (PyErr_Occurred()) SWIG_fail
; 
25405     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25412 static PyObject 
*_wrap_Printout_base_HasPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25413     PyObject 
*resultobj
; 
25414     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25417     PyObject 
* obj0 
= 0 ; 
25418     PyObject 
* obj1 
= 0 ; 
25419     char *kwnames
[] = { 
25420         (char *) "self",(char *) "page", NULL 
 
25423     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:Printout_base_HasPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
25424     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25425     if (SWIG_arg_fail(1)) SWIG_fail
; 
25427         arg2 
= (int)(SWIG_As_int(obj1
));  
25428         if (SWIG_arg_fail(2)) SWIG_fail
; 
25431         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25432         result 
= (bool)(arg1
)->base_HasPage(arg2
); 
25434         wxPyEndAllowThreads(__tstate
); 
25435         if (PyErr_Occurred()) SWIG_fail
; 
25438         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
25446 static PyObject 
*_wrap_Printout_base_GetPageInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25447     PyObject 
*resultobj
; 
25448     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
25449     int *arg2 
= (int *) 0 ; 
25450     int *arg3 
= (int *) 0 ; 
25451     int *arg4 
= (int *) 0 ; 
25452     int *arg5 
= (int *) 0 ; 
25461     PyObject 
* obj0 
= 0 ; 
25462     char *kwnames
[] = { 
25463         (char *) "self", NULL 
 
25466     arg2 
= &temp2
; res2 
= SWIG_NEWOBJ
; 
25467     arg3 
= &temp3
; res3 
= SWIG_NEWOBJ
; 
25468     arg4 
= &temp4
; res4 
= SWIG_NEWOBJ
; 
25469     arg5 
= &temp5
; res5 
= SWIG_NEWOBJ
; 
25470     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:Printout_base_GetPageInfo",kwnames
,&obj0
)) goto fail
; 
25471     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
25472     if (SWIG_arg_fail(1)) SWIG_fail
; 
25474         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25475         (arg1
)->base_GetPageInfo(arg2
,arg3
,arg4
,arg5
); 
25477         wxPyEndAllowThreads(__tstate
); 
25478         if (PyErr_Occurred()) SWIG_fail
; 
25480     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25481     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
25482     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
25483     resultobj 
= t_output_helper(resultobj
, ((res3 
== SWIG_NEWOBJ
) ? 
25484     SWIG_From_int((*arg3
)) : SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, 0))); 
25485     resultobj 
= t_output_helper(resultobj
, ((res4 
== SWIG_NEWOBJ
) ? 
25486     SWIG_From_int((*arg4
)) : SWIG_NewPointerObj((void*)(arg4
), SWIGTYPE_p_int
, 0))); 
25487     resultobj 
= t_output_helper(resultobj
, ((res5 
== SWIG_NEWOBJ
) ? 
25488     SWIG_From_int((*arg5
)) : SWIG_NewPointerObj((void*)(arg5
), SWIGTYPE_p_int
, 0))); 
25495 static PyObject 
* Printout_swigregister(PyObject 
*, PyObject 
*args
) { 
25497     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
25498     SWIG_TypeClientData(SWIGTYPE_p_wxPyPrintout
, obj
); 
25500     return Py_BuildValue((char *)""); 
25502 static PyObject 
*_wrap_new_PreviewCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25503     PyObject 
*resultobj
; 
25504     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
25505     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
25506     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
25507     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
25508     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
25509     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
25510     long arg5 
= (long) 0 ; 
25511     wxString 
const &arg6_defvalue 
= wxPyPreviewCanvasNameStr 
; 
25512     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
25513     wxPreviewCanvas 
*result
; 
25516     bool temp6 
= false ; 
25517     PyObject 
* obj0 
= 0 ; 
25518     PyObject 
* obj1 
= 0 ; 
25519     PyObject 
* obj2 
= 0 ; 
25520     PyObject 
* obj3 
= 0 ; 
25521     PyObject 
* obj4 
= 0 ; 
25522     PyObject 
* obj5 
= 0 ; 
25523     char *kwnames
[] = { 
25524         (char *) "preview",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
25527     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOO:new_PreviewCanvas",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
25528     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
25529     if (SWIG_arg_fail(1)) SWIG_fail
; 
25530     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
25531     if (SWIG_arg_fail(2)) SWIG_fail
; 
25535             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
25541             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
25546             arg5 
= (long)(SWIG_As_long(obj4
));  
25547             if (SWIG_arg_fail(5)) SWIG_fail
; 
25552             arg6 
= wxString_in_helper(obj5
); 
25553             if (arg6 
== NULL
) SWIG_fail
; 
25558         if (!wxPyCheckForApp()) SWIG_fail
; 
25559         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25560         result 
= (wxPreviewCanvas 
*)new wxPreviewCanvas(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
25562         wxPyEndAllowThreads(__tstate
); 
25563         if (PyErr_Occurred()) SWIG_fail
; 
25565     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPreviewCanvas
, 1); 
25580 static PyObject 
* PreviewCanvas_swigregister(PyObject 
*, PyObject 
*args
) { 
25582     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
25583     SWIG_TypeClientData(SWIGTYPE_p_wxPreviewCanvas
, obj
); 
25585     return Py_BuildValue((char *)""); 
25587 static PyObject 
*_wrap_new_PreviewFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25588     PyObject 
*resultobj
; 
25589     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
25590     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
25591     wxString 
*arg3 
= 0 ; 
25592     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
25593     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
25594     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
25595     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
25596     long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
25597     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
25598     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
25599     wxPreviewFrame 
*result
; 
25600     bool temp3 
= false ; 
25603     bool temp7 
= false ; 
25604     PyObject 
* obj0 
= 0 ; 
25605     PyObject 
* obj1 
= 0 ; 
25606     PyObject 
* obj2 
= 0 ; 
25607     PyObject 
* obj3 
= 0 ; 
25608     PyObject 
* obj4 
= 0 ; 
25609     PyObject 
* obj5 
= 0 ; 
25610     PyObject 
* obj6 
= 0 ; 
25611     char *kwnames
[] = { 
25612         (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
25615     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
25616     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
25617     if (SWIG_arg_fail(1)) SWIG_fail
; 
25618     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
25619     if (SWIG_arg_fail(2)) SWIG_fail
; 
25621         arg3 
= wxString_in_helper(obj2
); 
25622         if (arg3 
== NULL
) SWIG_fail
; 
25628             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
25634             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
25639             arg6 
= (long)(SWIG_As_long(obj5
));  
25640             if (SWIG_arg_fail(6)) SWIG_fail
; 
25645             arg7 
= wxString_in_helper(obj6
); 
25646             if (arg7 
== NULL
) SWIG_fail
; 
25651         if (!wxPyCheckForApp()) SWIG_fail
; 
25652         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25653         result 
= (wxPreviewFrame 
*)new wxPreviewFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
25655         wxPyEndAllowThreads(__tstate
); 
25656         if (PyErr_Occurred()) SWIG_fail
; 
25658     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPreviewFrame
, 1); 
25681 static PyObject 
*_wrap_PreviewFrame_Initialize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25682     PyObject 
*resultobj
; 
25683     wxPreviewFrame 
*arg1 
= (wxPreviewFrame 
*) 0 ; 
25684     PyObject 
* obj0 
= 0 ; 
25685     char *kwnames
[] = { 
25686         (char *) "self", NULL 
 
25689     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewFrame_Initialize",kwnames
,&obj0
)) goto fail
; 
25690     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
25691     if (SWIG_arg_fail(1)) SWIG_fail
; 
25693         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25694         (arg1
)->Initialize(); 
25696         wxPyEndAllowThreads(__tstate
); 
25697         if (PyErr_Occurred()) SWIG_fail
; 
25699     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25706 static PyObject 
*_wrap_PreviewFrame_CreateControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25707     PyObject 
*resultobj
; 
25708     wxPreviewFrame 
*arg1 
= (wxPreviewFrame 
*) 0 ; 
25709     PyObject 
* obj0 
= 0 ; 
25710     char *kwnames
[] = { 
25711         (char *) "self", NULL 
 
25714     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewFrame_CreateControlBar",kwnames
,&obj0
)) goto fail
; 
25715     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
25716     if (SWIG_arg_fail(1)) SWIG_fail
; 
25718         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25719         (arg1
)->CreateControlBar(); 
25721         wxPyEndAllowThreads(__tstate
); 
25722         if (PyErr_Occurred()) SWIG_fail
; 
25724     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25731 static PyObject 
*_wrap_PreviewFrame_CreateCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25732     PyObject 
*resultobj
; 
25733     wxPreviewFrame 
*arg1 
= (wxPreviewFrame 
*) 0 ; 
25734     PyObject 
* obj0 
= 0 ; 
25735     char *kwnames
[] = { 
25736         (char *) "self", NULL 
 
25739     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewFrame_CreateCanvas",kwnames
,&obj0
)) goto fail
; 
25740     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
25741     if (SWIG_arg_fail(1)) SWIG_fail
; 
25743         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25744         (arg1
)->CreateCanvas(); 
25746         wxPyEndAllowThreads(__tstate
); 
25747         if (PyErr_Occurred()) SWIG_fail
; 
25749     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25756 static PyObject 
*_wrap_PreviewFrame_GetControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25757     PyObject 
*resultobj
; 
25758     wxPreviewFrame 
*arg1 
= (wxPreviewFrame 
*) 0 ; 
25759     wxPreviewControlBar 
*result
; 
25760     PyObject 
* obj0 
= 0 ; 
25761     char *kwnames
[] = { 
25762         (char *) "self", NULL 
 
25765     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewFrame_GetControlBar",kwnames
,&obj0
)) goto fail
; 
25766     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
25767     if (SWIG_arg_fail(1)) SWIG_fail
; 
25769         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25770         result 
= (wxPreviewControlBar 
*)((wxPreviewFrame 
const *)arg1
)->GetControlBar(); 
25772         wxPyEndAllowThreads(__tstate
); 
25773         if (PyErr_Occurred()) SWIG_fail
; 
25775     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPreviewControlBar
, 0); 
25782 static PyObject 
* PreviewFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
25784     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
25785     SWIG_TypeClientData(SWIGTYPE_p_wxPreviewFrame
, obj
); 
25787     return Py_BuildValue((char *)""); 
25789 static PyObject 
*_wrap_new_PreviewControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25790     PyObject 
*resultobj
; 
25791     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
25793     wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
25794     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
25795     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
25796     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
25797     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
25798     long arg6 
= (long) wxTAB_TRAVERSAL 
; 
25799     wxString 
const &arg7_defvalue 
= wxPyPanelNameStr 
; 
25800     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
25801     wxPreviewControlBar 
*result
; 
25804     bool temp7 
= false ; 
25805     PyObject 
* obj0 
= 0 ; 
25806     PyObject 
* obj1 
= 0 ; 
25807     PyObject 
* obj2 
= 0 ; 
25808     PyObject 
* obj3 
= 0 ; 
25809     PyObject 
* obj4 
= 0 ; 
25810     PyObject 
* obj5 
= 0 ; 
25811     PyObject 
* obj6 
= 0 ; 
25812     char *kwnames
[] = { 
25813         (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
25816     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
25817     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
25818     if (SWIG_arg_fail(1)) SWIG_fail
; 
25820         arg2 
= (long)(SWIG_As_long(obj1
));  
25821         if (SWIG_arg_fail(2)) SWIG_fail
; 
25823     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
25824     if (SWIG_arg_fail(3)) SWIG_fail
; 
25828             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
25834             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
25839             arg6 
= (long)(SWIG_As_long(obj5
));  
25840             if (SWIG_arg_fail(6)) SWIG_fail
; 
25845             arg7 
= wxString_in_helper(obj6
); 
25846             if (arg7 
== NULL
) SWIG_fail
; 
25851         if (!wxPyCheckForApp()) SWIG_fail
; 
25852         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25853         result 
= (wxPreviewControlBar 
*)new wxPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
25855         wxPyEndAllowThreads(__tstate
); 
25856         if (PyErr_Occurred()) SWIG_fail
; 
25858     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPreviewControlBar
, 1); 
25873 static PyObject 
*_wrap_PreviewControlBar_GetZoomControl(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25874     PyObject 
*resultobj
; 
25875     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
25877     PyObject 
* obj0 
= 0 ; 
25878     char *kwnames
[] = { 
25879         (char *) "self", NULL 
 
25882     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_GetZoomControl",kwnames
,&obj0
)) goto fail
; 
25883     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
25884     if (SWIG_arg_fail(1)) SWIG_fail
; 
25886         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25887         result 
= (int)(arg1
)->GetZoomControl(); 
25889         wxPyEndAllowThreads(__tstate
); 
25890         if (PyErr_Occurred()) SWIG_fail
; 
25893         resultobj 
= SWIG_From_int((int)(result
));  
25901 static PyObject 
*_wrap_PreviewControlBar_SetZoomControl(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25902     PyObject 
*resultobj
; 
25903     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
25905     PyObject 
* obj0 
= 0 ; 
25906     PyObject 
* obj1 
= 0 ; 
25907     char *kwnames
[] = { 
25908         (char *) "self",(char *) "zoom", NULL 
 
25911     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PreviewControlBar_SetZoomControl",kwnames
,&obj0
,&obj1
)) goto fail
; 
25912     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
25913     if (SWIG_arg_fail(1)) SWIG_fail
; 
25915         arg2 
= (int)(SWIG_As_int(obj1
));  
25916         if (SWIG_arg_fail(2)) SWIG_fail
; 
25919         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25920         (arg1
)->SetZoomControl(arg2
); 
25922         wxPyEndAllowThreads(__tstate
); 
25923         if (PyErr_Occurred()) SWIG_fail
; 
25925     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25932 static PyObject 
*_wrap_PreviewControlBar_GetPrintPreview(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25933     PyObject 
*resultobj
; 
25934     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
25935     wxPrintPreview 
*result
; 
25936     PyObject 
* obj0 
= 0 ; 
25937     char *kwnames
[] = { 
25938         (char *) "self", NULL 
 
25941     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_GetPrintPreview",kwnames
,&obj0
)) goto fail
; 
25942     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
25943     if (SWIG_arg_fail(1)) SWIG_fail
; 
25945         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25946         result 
= (wxPrintPreview 
*)(arg1
)->GetPrintPreview(); 
25948         wxPyEndAllowThreads(__tstate
); 
25949         if (PyErr_Occurred()) SWIG_fail
; 
25951     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintPreview
, 0); 
25958 static PyObject 
*_wrap_PreviewControlBar_OnNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25959     PyObject 
*resultobj
; 
25960     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
25961     PyObject 
* obj0 
= 0 ; 
25962     char *kwnames
[] = { 
25963         (char *) "self", NULL 
 
25966     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_OnNext",kwnames
,&obj0
)) goto fail
; 
25967     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
25968     if (SWIG_arg_fail(1)) SWIG_fail
; 
25970         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25973         wxPyEndAllowThreads(__tstate
); 
25974         if (PyErr_Occurred()) SWIG_fail
; 
25976     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
25983 static PyObject 
*_wrap_PreviewControlBar_OnPrevious(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
25984     PyObject 
*resultobj
; 
25985     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
25986     PyObject 
* obj0 
= 0 ; 
25987     char *kwnames
[] = { 
25988         (char *) "self", NULL 
 
25991     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_OnPrevious",kwnames
,&obj0
)) goto fail
; 
25992     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
25993     if (SWIG_arg_fail(1)) SWIG_fail
; 
25995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
25996         (arg1
)->OnPrevious(); 
25998         wxPyEndAllowThreads(__tstate
); 
25999         if (PyErr_Occurred()) SWIG_fail
; 
26001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26008 static PyObject 
*_wrap_PreviewControlBar_OnFirst(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26009     PyObject 
*resultobj
; 
26010     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
26011     PyObject 
* obj0 
= 0 ; 
26012     char *kwnames
[] = { 
26013         (char *) "self", NULL 
 
26016     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_OnFirst",kwnames
,&obj0
)) goto fail
; 
26017     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
26018     if (SWIG_arg_fail(1)) SWIG_fail
; 
26020         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26023         wxPyEndAllowThreads(__tstate
); 
26024         if (PyErr_Occurred()) SWIG_fail
; 
26026     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26033 static PyObject 
*_wrap_PreviewControlBar_OnLast(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26034     PyObject 
*resultobj
; 
26035     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
26036     PyObject 
* obj0 
= 0 ; 
26037     char *kwnames
[] = { 
26038         (char *) "self", NULL 
 
26041     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_OnLast",kwnames
,&obj0
)) goto fail
; 
26042     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
26043     if (SWIG_arg_fail(1)) SWIG_fail
; 
26045         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26048         wxPyEndAllowThreads(__tstate
); 
26049         if (PyErr_Occurred()) SWIG_fail
; 
26051     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26058 static PyObject 
*_wrap_PreviewControlBar_OnGoto(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26059     PyObject 
*resultobj
; 
26060     wxPreviewControlBar 
*arg1 
= (wxPreviewControlBar 
*) 0 ; 
26061     PyObject 
* obj0 
= 0 ; 
26062     char *kwnames
[] = { 
26063         (char *) "self", NULL 
 
26066     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PreviewControlBar_OnGoto",kwnames
,&obj0
)) goto fail
; 
26067     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
26068     if (SWIG_arg_fail(1)) SWIG_fail
; 
26070         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26073         wxPyEndAllowThreads(__tstate
); 
26074         if (PyErr_Occurred()) SWIG_fail
; 
26076     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26083 static PyObject 
* PreviewControlBar_swigregister(PyObject 
*, PyObject 
*args
) { 
26085     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
26086     SWIG_TypeClientData(SWIGTYPE_p_wxPreviewControlBar
, obj
); 
26088     return Py_BuildValue((char *)""); 
26090 static PyObject 
*_wrap_new_PrintPreview__SWIG_0(PyObject 
*, PyObject 
*args
) { 
26091     PyObject 
*resultobj
; 
26092     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
26093     wxPyPrintout 
*arg2 
= (wxPyPrintout 
*) 0 ; 
26094     wxPrintDialogData 
*arg3 
= (wxPrintDialogData 
*) NULL 
; 
26095     wxPrintPreview 
*result
; 
26096     PyObject 
* obj0 
= 0 ; 
26097     PyObject 
* obj1 
= 0 ; 
26098     PyObject 
* obj2 
= 0 ; 
26100     if(!PyArg_ParseTuple(args
,(char *)"OO|O:new_PrintPreview",&obj0
,&obj1
,&obj2
)) goto fail
; 
26101     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26102     if (SWIG_arg_fail(1)) SWIG_fail
; 
26103     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26104     if (SWIG_arg_fail(2)) SWIG_fail
; 
26106         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
26107         if (SWIG_arg_fail(3)) SWIG_fail
; 
26110         if (!wxPyCheckForApp()) SWIG_fail
; 
26111         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26112         result 
= (wxPrintPreview 
*)new wxPrintPreview(arg1
,arg2
,arg3
); 
26114         wxPyEndAllowThreads(__tstate
); 
26115         if (PyErr_Occurred()) SWIG_fail
; 
26117     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintPreview
, 1); 
26124 static PyObject 
*_wrap_new_PrintPreview__SWIG_1(PyObject 
*, PyObject 
*args
) { 
26125     PyObject 
*resultobj
; 
26126     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
26127     wxPyPrintout 
*arg2 
= (wxPyPrintout 
*) 0 ; 
26128     wxPrintData 
*arg3 
= (wxPrintData 
*) 0 ; 
26129     wxPrintPreview 
*result
; 
26130     PyObject 
* obj0 
= 0 ; 
26131     PyObject 
* obj1 
= 0 ; 
26132     PyObject 
* obj2 
= 0 ; 
26134     if(!PyArg_ParseTuple(args
,(char *)"OOO:new_PrintPreview",&obj0
,&obj1
,&obj2
)) goto fail
; 
26135     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26136     if (SWIG_arg_fail(1)) SWIG_fail
; 
26137     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26138     if (SWIG_arg_fail(2)) SWIG_fail
; 
26139     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
26140     if (SWIG_arg_fail(3)) SWIG_fail
; 
26142         if (!wxPyCheckForApp()) SWIG_fail
; 
26143         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26144         result 
= (wxPrintPreview 
*)new wxPrintPreview(arg1
,arg2
,arg3
); 
26146         wxPyEndAllowThreads(__tstate
); 
26147         if (PyErr_Occurred()) SWIG_fail
; 
26149     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintPreview
, 1); 
26156 static PyObject 
*_wrap_new_PrintPreview(PyObject 
*self
, PyObject 
*args
) { 
26161     argc 
= PyObject_Length(args
); 
26162     for (ii 
= 0; (ii 
< argc
) && (ii 
< 3); ii
++) { 
26163         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
26165     if ((argc 
>= 2) && (argc 
<= 3)) { 
26169             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
26179                 if (SWIG_ConvertPtr(argv
[1], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
26188                     return _wrap_new_PrintPreview__SWIG_0(self
,args
); 
26192                     if (SWIG_ConvertPtr(argv
[2], &ptr
, SWIGTYPE_p_wxPrintDialogData
, 0) == -1) { 
26200                     return _wrap_new_PrintPreview__SWIG_0(self
,args
); 
26209             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
26219                 if (SWIG_ConvertPtr(argv
[1], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
26229                     if (SWIG_ConvertPtr(argv
[2], &ptr
, SWIGTYPE_p_wxPrintData
, 0) == -1) { 
26237                     return _wrap_new_PrintPreview__SWIG_1(self
,args
); 
26243     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PrintPreview'"); 
26248 static PyObject 
*_wrap_PrintPreview_SetCurrentPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26249     PyObject 
*resultobj
; 
26250     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26253     PyObject 
* obj0 
= 0 ; 
26254     PyObject 
* obj1 
= 0 ; 
26255     char *kwnames
[] = { 
26256         (char *) "self",(char *) "pageNum", NULL 
 
26259     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCurrentPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
26260     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26261     if (SWIG_arg_fail(1)) SWIG_fail
; 
26263         arg2 
= (int)(SWIG_As_int(obj1
));  
26264         if (SWIG_arg_fail(2)) SWIG_fail
; 
26267         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26268         result 
= (bool)(arg1
)->SetCurrentPage(arg2
); 
26270         wxPyEndAllowThreads(__tstate
); 
26271         if (PyErr_Occurred()) SWIG_fail
; 
26274         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26282 static PyObject 
*_wrap_PrintPreview_GetCurrentPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26283     PyObject 
*resultobj
; 
26284     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26286     PyObject 
* obj0 
= 0 ; 
26287     char *kwnames
[] = { 
26288         (char *) "self", NULL 
 
26291     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetCurrentPage",kwnames
,&obj0
)) goto fail
; 
26292     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26293     if (SWIG_arg_fail(1)) SWIG_fail
; 
26295         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26296         result 
= (int)(arg1
)->GetCurrentPage(); 
26298         wxPyEndAllowThreads(__tstate
); 
26299         if (PyErr_Occurred()) SWIG_fail
; 
26302         resultobj 
= SWIG_From_int((int)(result
));  
26310 static PyObject 
*_wrap_PrintPreview_SetPrintout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26311     PyObject 
*resultobj
; 
26312     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26313     wxPyPrintout 
*arg2 
= (wxPyPrintout 
*) 0 ; 
26314     PyObject 
* obj0 
= 0 ; 
26315     PyObject 
* obj1 
= 0 ; 
26316     char *kwnames
[] = { 
26317         (char *) "self",(char *) "printout", NULL 
 
26320     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetPrintout",kwnames
,&obj0
,&obj1
)) goto fail
; 
26321     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26322     if (SWIG_arg_fail(1)) SWIG_fail
; 
26323     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26324     if (SWIG_arg_fail(2)) SWIG_fail
; 
26326         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26327         (arg1
)->SetPrintout(arg2
); 
26329         wxPyEndAllowThreads(__tstate
); 
26330         if (PyErr_Occurred()) SWIG_fail
; 
26332     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26339 static PyObject 
*_wrap_PrintPreview_GetPrintout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26340     PyObject 
*resultobj
; 
26341     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26342     wxPyPrintout 
*result
; 
26343     PyObject 
* obj0 
= 0 ; 
26344     char *kwnames
[] = { 
26345         (char *) "self", NULL 
 
26348     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetPrintout",kwnames
,&obj0
)) goto fail
; 
26349     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26350     if (SWIG_arg_fail(1)) SWIG_fail
; 
26352         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26353         result 
= (wxPyPrintout 
*)(arg1
)->GetPrintout(); 
26355         wxPyEndAllowThreads(__tstate
); 
26356         if (PyErr_Occurred()) SWIG_fail
; 
26359         resultobj 
= wxPyMake_wxObject(result
, 0);  
26367 static PyObject 
*_wrap_PrintPreview_GetPrintoutForPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26368     PyObject 
*resultobj
; 
26369     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26370     wxPyPrintout 
*result
; 
26371     PyObject 
* obj0 
= 0 ; 
26372     char *kwnames
[] = { 
26373         (char *) "self", NULL 
 
26376     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetPrintoutForPrinting",kwnames
,&obj0
)) goto fail
; 
26377     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26378     if (SWIG_arg_fail(1)) SWIG_fail
; 
26380         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26381         result 
= (wxPyPrintout 
*)(arg1
)->GetPrintoutForPrinting(); 
26383         wxPyEndAllowThreads(__tstate
); 
26384         if (PyErr_Occurred()) SWIG_fail
; 
26387         resultobj 
= wxPyMake_wxObject(result
, 0);  
26395 static PyObject 
*_wrap_PrintPreview_SetFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26396     PyObject 
*resultobj
; 
26397     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26398     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
26399     PyObject 
* obj0 
= 0 ; 
26400     PyObject 
* obj1 
= 0 ; 
26401     char *kwnames
[] = { 
26402         (char *) "self",(char *) "frame", NULL 
 
26405     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetFrame",kwnames
,&obj0
,&obj1
)) goto fail
; 
26406     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26407     if (SWIG_arg_fail(1)) SWIG_fail
; 
26408     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
26409     if (SWIG_arg_fail(2)) SWIG_fail
; 
26411         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26412         (arg1
)->SetFrame(arg2
); 
26414         wxPyEndAllowThreads(__tstate
); 
26415         if (PyErr_Occurred()) SWIG_fail
; 
26417     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26424 static PyObject 
*_wrap_PrintPreview_SetCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26425     PyObject 
*resultobj
; 
26426     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26427     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
26428     PyObject 
* obj0 
= 0 ; 
26429     PyObject 
* obj1 
= 0 ; 
26430     char *kwnames
[] = { 
26431         (char *) "self",(char *) "canvas", NULL 
 
26434     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetCanvas",kwnames
,&obj0
,&obj1
)) goto fail
; 
26435     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26436     if (SWIG_arg_fail(1)) SWIG_fail
; 
26437     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
26438     if (SWIG_arg_fail(2)) SWIG_fail
; 
26440         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26441         (arg1
)->SetCanvas(arg2
); 
26443         wxPyEndAllowThreads(__tstate
); 
26444         if (PyErr_Occurred()) SWIG_fail
; 
26446     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26453 static PyObject 
*_wrap_PrintPreview_GetFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26454     PyObject 
*resultobj
; 
26455     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26457     PyObject 
* obj0 
= 0 ; 
26458     char *kwnames
[] = { 
26459         (char *) "self", NULL 
 
26462     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetFrame",kwnames
,&obj0
)) goto fail
; 
26463     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26464     if (SWIG_arg_fail(1)) SWIG_fail
; 
26466         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26467         result 
= (wxFrame 
*)(arg1
)->GetFrame(); 
26469         wxPyEndAllowThreads(__tstate
); 
26470         if (PyErr_Occurred()) SWIG_fail
; 
26473         resultobj 
= wxPyMake_wxObject(result
, 0);  
26481 static PyObject 
*_wrap_PrintPreview_GetCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26482     PyObject 
*resultobj
; 
26483     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26484     wxPreviewCanvas 
*result
; 
26485     PyObject 
* obj0 
= 0 ; 
26486     char *kwnames
[] = { 
26487         (char *) "self", NULL 
 
26490     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetCanvas",kwnames
,&obj0
)) goto fail
; 
26491     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26492     if (SWIG_arg_fail(1)) SWIG_fail
; 
26494         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26495         result 
= (wxPreviewCanvas 
*)(arg1
)->GetCanvas(); 
26497         wxPyEndAllowThreads(__tstate
); 
26498         if (PyErr_Occurred()) SWIG_fail
; 
26500     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPreviewCanvas
, 0); 
26507 static PyObject 
*_wrap_PrintPreview_PaintPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26508     PyObject 
*resultobj
; 
26509     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26510     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
26513     PyObject 
* obj0 
= 0 ; 
26514     PyObject 
* obj1 
= 0 ; 
26515     PyObject 
* obj2 
= 0 ; 
26516     char *kwnames
[] = { 
26517         (char *) "self",(char *) "canvas",(char *) "dc", NULL 
 
26520     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_PaintPage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
26521     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26522     if (SWIG_arg_fail(1)) SWIG_fail
; 
26523     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
26524     if (SWIG_arg_fail(2)) SWIG_fail
; 
26526         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
26527         if (SWIG_arg_fail(3)) SWIG_fail
; 
26528         if (arg3 
== NULL
) { 
26529             SWIG_null_ref("wxDC"); 
26531         if (SWIG_arg_fail(3)) SWIG_fail
; 
26534         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26535         result 
= (bool)(arg1
)->PaintPage(arg2
,*arg3
); 
26537         wxPyEndAllowThreads(__tstate
); 
26538         if (PyErr_Occurred()) SWIG_fail
; 
26541         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26549 static PyObject 
*_wrap_PrintPreview_DrawBlankPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26550     PyObject 
*resultobj
; 
26551     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26552     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
26555     PyObject 
* obj0 
= 0 ; 
26556     PyObject 
* obj1 
= 0 ; 
26557     PyObject 
* obj2 
= 0 ; 
26558     char *kwnames
[] = { 
26559         (char *) "self",(char *) "canvas",(char *) "dc", NULL 
 
26562     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PrintPreview_DrawBlankPage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
26563     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26564     if (SWIG_arg_fail(1)) SWIG_fail
; 
26565     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
26566     if (SWIG_arg_fail(2)) SWIG_fail
; 
26568         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
26569         if (SWIG_arg_fail(3)) SWIG_fail
; 
26570         if (arg3 
== NULL
) { 
26571             SWIG_null_ref("wxDC"); 
26573         if (SWIG_arg_fail(3)) SWIG_fail
; 
26576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26577         result 
= (bool)(arg1
)->DrawBlankPage(arg2
,*arg3
); 
26579         wxPyEndAllowThreads(__tstate
); 
26580         if (PyErr_Occurred()) SWIG_fail
; 
26583         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26591 static PyObject 
*_wrap_PrintPreview_RenderPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26592     PyObject 
*resultobj
; 
26593     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26596     PyObject 
* obj0 
= 0 ; 
26597     PyObject 
* obj1 
= 0 ; 
26598     char *kwnames
[] = { 
26599         (char *) "self",(char *) "pageNum", NULL 
 
26602     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_RenderPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
26603     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26604     if (SWIG_arg_fail(1)) SWIG_fail
; 
26606         arg2 
= (int)(SWIG_As_int(obj1
));  
26607         if (SWIG_arg_fail(2)) SWIG_fail
; 
26610         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26611         result 
= (bool)(arg1
)->RenderPage(arg2
); 
26613         wxPyEndAllowThreads(__tstate
); 
26614         if (PyErr_Occurred()) SWIG_fail
; 
26617         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26625 static PyObject 
*_wrap_PrintPreview_AdjustScrollbars(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26626     PyObject 
*resultobj
; 
26627     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26628     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
26629     PyObject 
* obj0 
= 0 ; 
26630     PyObject 
* obj1 
= 0 ; 
26631     char *kwnames
[] = { 
26632         (char *) "self",(char *) "canvas", NULL 
 
26635     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_AdjustScrollbars",kwnames
,&obj0
,&obj1
)) goto fail
; 
26636     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26637     if (SWIG_arg_fail(1)) SWIG_fail
; 
26638     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
26639     if (SWIG_arg_fail(2)) SWIG_fail
; 
26641         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26642         (arg1
)->AdjustScrollbars(arg2
); 
26644         wxPyEndAllowThreads(__tstate
); 
26645         if (PyErr_Occurred()) SWIG_fail
; 
26647     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26654 static PyObject 
*_wrap_PrintPreview_GetPrintDialogData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26655     PyObject 
*resultobj
; 
26656     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26657     wxPrintDialogData 
*result
; 
26658     PyObject 
* obj0 
= 0 ; 
26659     char *kwnames
[] = { 
26660         (char *) "self", NULL 
 
26663     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetPrintDialogData",kwnames
,&obj0
)) goto fail
; 
26664     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26665     if (SWIG_arg_fail(1)) SWIG_fail
; 
26667         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26669             wxPrintDialogData 
&_result_ref 
= (arg1
)->GetPrintDialogData(); 
26670             result 
= (wxPrintDialogData 
*) &_result_ref
; 
26673         wxPyEndAllowThreads(__tstate
); 
26674         if (PyErr_Occurred()) SWIG_fail
; 
26676     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintDialogData
, 0); 
26683 static PyObject 
*_wrap_PrintPreview_SetZoom(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26684     PyObject 
*resultobj
; 
26685     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26687     PyObject 
* obj0 
= 0 ; 
26688     PyObject 
* obj1 
= 0 ; 
26689     char *kwnames
[] = { 
26690         (char *) "self",(char *) "percent", NULL 
 
26693     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetZoom",kwnames
,&obj0
,&obj1
)) goto fail
; 
26694     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26695     if (SWIG_arg_fail(1)) SWIG_fail
; 
26697         arg2 
= (int)(SWIG_As_int(obj1
));  
26698         if (SWIG_arg_fail(2)) SWIG_fail
; 
26701         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26702         (arg1
)->SetZoom(arg2
); 
26704         wxPyEndAllowThreads(__tstate
); 
26705         if (PyErr_Occurred()) SWIG_fail
; 
26707     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26714 static PyObject 
*_wrap_PrintPreview_GetZoom(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26715     PyObject 
*resultobj
; 
26716     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26718     PyObject 
* obj0 
= 0 ; 
26719     char *kwnames
[] = { 
26720         (char *) "self", NULL 
 
26723     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetZoom",kwnames
,&obj0
)) goto fail
; 
26724     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26725     if (SWIG_arg_fail(1)) SWIG_fail
; 
26727         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26728         result 
= (int)(arg1
)->GetZoom(); 
26730         wxPyEndAllowThreads(__tstate
); 
26731         if (PyErr_Occurred()) SWIG_fail
; 
26734         resultobj 
= SWIG_From_int((int)(result
));  
26742 static PyObject 
*_wrap_PrintPreview_GetMaxPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26743     PyObject 
*resultobj
; 
26744     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26746     PyObject 
* obj0 
= 0 ; 
26747     char *kwnames
[] = { 
26748         (char *) "self", NULL 
 
26751     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetMaxPage",kwnames
,&obj0
)) goto fail
; 
26752     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26753     if (SWIG_arg_fail(1)) SWIG_fail
; 
26755         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26756         result 
= (int)(arg1
)->GetMaxPage(); 
26758         wxPyEndAllowThreads(__tstate
); 
26759         if (PyErr_Occurred()) SWIG_fail
; 
26762         resultobj 
= SWIG_From_int((int)(result
));  
26770 static PyObject 
*_wrap_PrintPreview_GetMinPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26771     PyObject 
*resultobj
; 
26772     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26774     PyObject 
* obj0 
= 0 ; 
26775     char *kwnames
[] = { 
26776         (char *) "self", NULL 
 
26779     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_GetMinPage",kwnames
,&obj0
)) goto fail
; 
26780     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26781     if (SWIG_arg_fail(1)) SWIG_fail
; 
26783         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26784         result 
= (int)(arg1
)->GetMinPage(); 
26786         wxPyEndAllowThreads(__tstate
); 
26787         if (PyErr_Occurred()) SWIG_fail
; 
26790         resultobj 
= SWIG_From_int((int)(result
));  
26798 static PyObject 
*_wrap_PrintPreview_Ok(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26799     PyObject 
*resultobj
; 
26800     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26802     PyObject 
* obj0 
= 0 ; 
26803     char *kwnames
[] = { 
26804         (char *) "self", NULL 
 
26807     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_Ok",kwnames
,&obj0
)) goto fail
; 
26808     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26809     if (SWIG_arg_fail(1)) SWIG_fail
; 
26811         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26812         result 
= (bool)(arg1
)->Ok(); 
26814         wxPyEndAllowThreads(__tstate
); 
26815         if (PyErr_Occurred()) SWIG_fail
; 
26818         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26826 static PyObject 
*_wrap_PrintPreview_SetOk(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26827     PyObject 
*resultobj
; 
26828     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26830     PyObject 
* obj0 
= 0 ; 
26831     PyObject 
* obj1 
= 0 ; 
26832     char *kwnames
[] = { 
26833         (char *) "self",(char *) "ok", NULL 
 
26836     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_SetOk",kwnames
,&obj0
,&obj1
)) goto fail
; 
26837     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26838     if (SWIG_arg_fail(1)) SWIG_fail
; 
26840         arg2 
= (bool)(SWIG_As_bool(obj1
));  
26841         if (SWIG_arg_fail(2)) SWIG_fail
; 
26844         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26845         (arg1
)->SetOk(arg2
); 
26847         wxPyEndAllowThreads(__tstate
); 
26848         if (PyErr_Occurred()) SWIG_fail
; 
26850     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26857 static PyObject 
*_wrap_PrintPreview_Print(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26858     PyObject 
*resultobj
; 
26859     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26862     PyObject 
* obj0 
= 0 ; 
26863     PyObject 
* obj1 
= 0 ; 
26864     char *kwnames
[] = { 
26865         (char *) "self",(char *) "interactive", NULL 
 
26868     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PrintPreview_Print",kwnames
,&obj0
,&obj1
)) goto fail
; 
26869     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26870     if (SWIG_arg_fail(1)) SWIG_fail
; 
26872         arg2 
= (bool)(SWIG_As_bool(obj1
));  
26873         if (SWIG_arg_fail(2)) SWIG_fail
; 
26876         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26877         result 
= (bool)(arg1
)->Print(arg2
); 
26879         wxPyEndAllowThreads(__tstate
); 
26880         if (PyErr_Occurred()) SWIG_fail
; 
26883         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
26891 static PyObject 
*_wrap_PrintPreview_DetermineScaling(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
26892     PyObject 
*resultobj
; 
26893     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
26894     PyObject 
* obj0 
= 0 ; 
26895     char *kwnames
[] = { 
26896         (char *) "self", NULL 
 
26899     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PrintPreview_DetermineScaling",kwnames
,&obj0
)) goto fail
; 
26900     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
26901     if (SWIG_arg_fail(1)) SWIG_fail
; 
26903         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26904         (arg1
)->DetermineScaling(); 
26906         wxPyEndAllowThreads(__tstate
); 
26907         if (PyErr_Occurred()) SWIG_fail
; 
26909     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
26916 static PyObject 
* PrintPreview_swigregister(PyObject 
*, PyObject 
*args
) { 
26918     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
26919     SWIG_TypeClientData(SWIGTYPE_p_wxPrintPreview
, obj
); 
26921     return Py_BuildValue((char *)""); 
26923 static PyObject 
*_wrap_new_PyPrintPreview__SWIG_0(PyObject 
*, PyObject 
*args
) { 
26924     PyObject 
*resultobj
; 
26925     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
26926     wxPyPrintout 
*arg2 
= (wxPyPrintout 
*) 0 ; 
26927     wxPrintDialogData 
*arg3 
= (wxPrintDialogData 
*) NULL 
; 
26928     wxPyPrintPreview 
*result
; 
26929     PyObject 
* obj0 
= 0 ; 
26930     PyObject 
* obj1 
= 0 ; 
26931     PyObject 
* obj2 
= 0 ; 
26933     if(!PyArg_ParseTuple(args
,(char *)"OO|O:new_PyPrintPreview",&obj0
,&obj1
,&obj2
)) goto fail
; 
26934     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26935     if (SWIG_arg_fail(1)) SWIG_fail
; 
26936     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26937     if (SWIG_arg_fail(2)) SWIG_fail
; 
26939         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPrintDialogData
, SWIG_POINTER_EXCEPTION 
| 0); 
26940         if (SWIG_arg_fail(3)) SWIG_fail
; 
26943         if (!wxPyCheckForApp()) SWIG_fail
; 
26944         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26945         result 
= (wxPyPrintPreview 
*)new wxPyPrintPreview(arg1
,arg2
,arg3
); 
26947         wxPyEndAllowThreads(__tstate
); 
26948         if (PyErr_Occurred()) SWIG_fail
; 
26950     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPrintPreview
, 1); 
26957 static PyObject 
*_wrap_new_PyPrintPreview__SWIG_1(PyObject 
*, PyObject 
*args
) { 
26958     PyObject 
*resultobj
; 
26959     wxPyPrintout 
*arg1 
= (wxPyPrintout 
*) 0 ; 
26960     wxPyPrintout 
*arg2 
= (wxPyPrintout 
*) 0 ; 
26961     wxPrintData 
*arg3 
= (wxPrintData 
*) 0 ; 
26962     wxPyPrintPreview 
*result
; 
26963     PyObject 
* obj0 
= 0 ; 
26964     PyObject 
* obj1 
= 0 ; 
26965     PyObject 
* obj2 
= 0 ; 
26967     if(!PyArg_ParseTuple(args
,(char *)"OOO:new_PyPrintPreview",&obj0
,&obj1
,&obj2
)) goto fail
; 
26968     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26969     if (SWIG_arg_fail(1)) SWIG_fail
; 
26970     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPyPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
26971     if (SWIG_arg_fail(2)) SWIG_fail
; 
26972     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPrintData
, SWIG_POINTER_EXCEPTION 
| 0); 
26973     if (SWIG_arg_fail(3)) SWIG_fail
; 
26975         if (!wxPyCheckForApp()) SWIG_fail
; 
26976         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
26977         result 
= (wxPyPrintPreview 
*)new wxPyPrintPreview(arg1
,arg2
,arg3
); 
26979         wxPyEndAllowThreads(__tstate
); 
26980         if (PyErr_Occurred()) SWIG_fail
; 
26982     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPrintPreview
, 1); 
26989 static PyObject 
*_wrap_new_PyPrintPreview(PyObject 
*self
, PyObject 
*args
) { 
26994     argc 
= PyObject_Length(args
); 
26995     for (ii 
= 0; (ii 
< argc
) && (ii 
< 3); ii
++) { 
26996         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
26998     if ((argc 
>= 2) && (argc 
<= 3)) { 
27002             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
27012                 if (SWIG_ConvertPtr(argv
[1], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
27021                     return _wrap_new_PyPrintPreview__SWIG_0(self
,args
); 
27025                     if (SWIG_ConvertPtr(argv
[2], &ptr
, SWIGTYPE_p_wxPrintDialogData
, 0) == -1) { 
27033                     return _wrap_new_PyPrintPreview__SWIG_0(self
,args
); 
27042             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
27052                 if (SWIG_ConvertPtr(argv
[1], &ptr
, SWIGTYPE_p_wxPyPrintout
, 0) == -1) { 
27062                     if (SWIG_ConvertPtr(argv
[2], &ptr
, SWIGTYPE_p_wxPrintData
, 0) == -1) { 
27070                     return _wrap_new_PyPrintPreview__SWIG_1(self
,args
); 
27076     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'new_PyPrintPreview'"); 
27081 static PyObject 
*_wrap_PyPrintPreview__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27082     PyObject 
*resultobj
; 
27083     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27084     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
27085     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
27086     PyObject 
* obj0 
= 0 ; 
27087     PyObject 
* obj1 
= 0 ; 
27088     PyObject 
* obj2 
= 0 ; 
27089     char *kwnames
[] = { 
27090         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
27093     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPrintPreview__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
27094     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27095     if (SWIG_arg_fail(1)) SWIG_fail
; 
27099         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27100         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
27102         wxPyEndAllowThreads(__tstate
); 
27103         if (PyErr_Occurred()) SWIG_fail
; 
27105     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27112 static PyObject 
*_wrap_PyPrintPreview_base_SetCurrentPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27113     PyObject 
*resultobj
; 
27114     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27117     PyObject 
* obj0 
= 0 ; 
27118     PyObject 
* obj1 
= 0 ; 
27119     char *kwnames
[] = { 
27120         (char *) "self",(char *) "pageNum", NULL 
 
27123     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPrintPreview_base_SetCurrentPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
27124     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27125     if (SWIG_arg_fail(1)) SWIG_fail
; 
27127         arg2 
= (int)(SWIG_As_int(obj1
));  
27128         if (SWIG_arg_fail(2)) SWIG_fail
; 
27131         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27132         result 
= (bool)(arg1
)->base_SetCurrentPage(arg2
); 
27134         wxPyEndAllowThreads(__tstate
); 
27135         if (PyErr_Occurred()) SWIG_fail
; 
27138         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
27146 static PyObject 
*_wrap_PyPrintPreview_base_PaintPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27147     PyObject 
*resultobj
; 
27148     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27149     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
27152     PyObject 
* obj0 
= 0 ; 
27153     PyObject 
* obj1 
= 0 ; 
27154     PyObject 
* obj2 
= 0 ; 
27155     char *kwnames
[] = { 
27156         (char *) "self",(char *) "canvas",(char *) "dc", NULL 
 
27159     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPrintPreview_base_PaintPage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
27160     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27161     if (SWIG_arg_fail(1)) SWIG_fail
; 
27162     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
27163     if (SWIG_arg_fail(2)) SWIG_fail
; 
27165         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
27166         if (SWIG_arg_fail(3)) SWIG_fail
; 
27167         if (arg3 
== NULL
) { 
27168             SWIG_null_ref("wxDC"); 
27170         if (SWIG_arg_fail(3)) SWIG_fail
; 
27173         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27174         result 
= (bool)(arg1
)->base_PaintPage(arg2
,*arg3
); 
27176         wxPyEndAllowThreads(__tstate
); 
27177         if (PyErr_Occurred()) SWIG_fail
; 
27180         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
27188 static PyObject 
*_wrap_PyPrintPreview_base_DrawBlankPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27189     PyObject 
*resultobj
; 
27190     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27191     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
27194     PyObject 
* obj0 
= 0 ; 
27195     PyObject 
* obj1 
= 0 ; 
27196     PyObject 
* obj2 
= 0 ; 
27197     char *kwnames
[] = { 
27198         (char *) "self",(char *) "canvas",(char *) "dc", NULL 
 
27201     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPrintPreview_base_DrawBlankPage",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
27202     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27203     if (SWIG_arg_fail(1)) SWIG_fail
; 
27204     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
27205     if (SWIG_arg_fail(2)) SWIG_fail
; 
27207         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
27208         if (SWIG_arg_fail(3)) SWIG_fail
; 
27209         if (arg3 
== NULL
) { 
27210             SWIG_null_ref("wxDC"); 
27212         if (SWIG_arg_fail(3)) SWIG_fail
; 
27215         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27216         result 
= (bool)(arg1
)->base_DrawBlankPage(arg2
,*arg3
); 
27218         wxPyEndAllowThreads(__tstate
); 
27219         if (PyErr_Occurred()) SWIG_fail
; 
27222         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
27230 static PyObject 
*_wrap_PyPrintPreview_base_RenderPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27231     PyObject 
*resultobj
; 
27232     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27235     PyObject 
* obj0 
= 0 ; 
27236     PyObject 
* obj1 
= 0 ; 
27237     char *kwnames
[] = { 
27238         (char *) "self",(char *) "pageNum", NULL 
 
27241     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPrintPreview_base_RenderPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
27242     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27243     if (SWIG_arg_fail(1)) SWIG_fail
; 
27245         arg2 
= (int)(SWIG_As_int(obj1
));  
27246         if (SWIG_arg_fail(2)) SWIG_fail
; 
27249         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27250         result 
= (bool)(arg1
)->base_RenderPage(arg2
); 
27252         wxPyEndAllowThreads(__tstate
); 
27253         if (PyErr_Occurred()) SWIG_fail
; 
27256         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
27264 static PyObject 
*_wrap_PyPrintPreview_base_SetZoom(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27265     PyObject 
*resultobj
; 
27266     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27268     PyObject 
* obj0 
= 0 ; 
27269     PyObject 
* obj1 
= 0 ; 
27270     char *kwnames
[] = { 
27271         (char *) "self",(char *) "percent", NULL 
 
27274     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPrintPreview_base_SetZoom",kwnames
,&obj0
,&obj1
)) goto fail
; 
27275     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27276     if (SWIG_arg_fail(1)) SWIG_fail
; 
27278         arg2 
= (int)(SWIG_As_int(obj1
));  
27279         if (SWIG_arg_fail(2)) SWIG_fail
; 
27282         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27283         (arg1
)->base_SetZoom(arg2
); 
27285         wxPyEndAllowThreads(__tstate
); 
27286         if (PyErr_Occurred()) SWIG_fail
; 
27288     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27295 static PyObject 
*_wrap_PyPrintPreview_base_Print(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27296     PyObject 
*resultobj
; 
27297     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27300     PyObject 
* obj0 
= 0 ; 
27301     PyObject 
* obj1 
= 0 ; 
27302     char *kwnames
[] = { 
27303         (char *) "self",(char *) "interactive", NULL 
 
27306     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPrintPreview_base_Print",kwnames
,&obj0
,&obj1
)) goto fail
; 
27307     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27308     if (SWIG_arg_fail(1)) SWIG_fail
; 
27310         arg2 
= (bool)(SWIG_As_bool(obj1
));  
27311         if (SWIG_arg_fail(2)) SWIG_fail
; 
27314         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27315         result 
= (bool)(arg1
)->base_Print(arg2
); 
27317         wxPyEndAllowThreads(__tstate
); 
27318         if (PyErr_Occurred()) SWIG_fail
; 
27321         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
27329 static PyObject 
*_wrap_PyPrintPreview_base_DetermineScaling(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27330     PyObject 
*resultobj
; 
27331     wxPyPrintPreview 
*arg1 
= (wxPyPrintPreview 
*) 0 ; 
27332     PyObject 
* obj0 
= 0 ; 
27333     char *kwnames
[] = { 
27334         (char *) "self", NULL 
 
27337     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPrintPreview_base_DetermineScaling",kwnames
,&obj0
)) goto fail
; 
27338     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27339     if (SWIG_arg_fail(1)) SWIG_fail
; 
27341         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27342         (arg1
)->base_DetermineScaling(); 
27344         wxPyEndAllowThreads(__tstate
); 
27345         if (PyErr_Occurred()) SWIG_fail
; 
27347     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27354 static PyObject 
* PyPrintPreview_swigregister(PyObject 
*, PyObject 
*args
) { 
27356     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
27357     SWIG_TypeClientData(SWIGTYPE_p_wxPyPrintPreview
, obj
); 
27359     return Py_BuildValue((char *)""); 
27361 static PyObject 
*_wrap_new_PyPreviewFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27362     PyObject 
*resultobj
; 
27363     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
27364     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
27365     wxString 
*arg3 
= 0 ; 
27366     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
27367     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
27368     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
27369     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
27370     long arg6 
= (long) wxDEFAULT_FRAME_STYLE 
; 
27371     wxString 
const &arg7_defvalue 
= wxPyFrameNameStr 
; 
27372     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
27373     wxPyPreviewFrame 
*result
; 
27374     bool temp3 
= false ; 
27377     bool temp7 
= false ; 
27378     PyObject 
* obj0 
= 0 ; 
27379     PyObject 
* obj1 
= 0 ; 
27380     PyObject 
* obj2 
= 0 ; 
27381     PyObject 
* obj3 
= 0 ; 
27382     PyObject 
* obj4 
= 0 ; 
27383     PyObject 
* obj5 
= 0 ; 
27384     PyObject 
* obj6 
= 0 ; 
27385     char *kwnames
[] = { 
27386         (char *) "preview",(char *) "parent",(char *) "title",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
27389     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
27390     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27391     if (SWIG_arg_fail(1)) SWIG_fail
; 
27392     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27393     if (SWIG_arg_fail(2)) SWIG_fail
; 
27395         arg3 
= wxString_in_helper(obj2
); 
27396         if (arg3 
== NULL
) SWIG_fail
; 
27402             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
27408             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
27413             arg6 
= (long)(SWIG_As_long(obj5
));  
27414             if (SWIG_arg_fail(6)) SWIG_fail
; 
27419             arg7 
= wxString_in_helper(obj6
); 
27420             if (arg7 
== NULL
) SWIG_fail
; 
27425         if (!wxPyCheckForApp()) SWIG_fail
; 
27426         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27427         result 
= (wxPyPreviewFrame 
*)new wxPyPreviewFrame(arg1
,arg2
,(wxString 
const &)*arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
27429         wxPyEndAllowThreads(__tstate
); 
27430         if (PyErr_Occurred()) SWIG_fail
; 
27432     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPreviewFrame
, 1); 
27455 static PyObject 
*_wrap_PyPreviewFrame__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27456     PyObject 
*resultobj
; 
27457     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27458     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
27459     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
27460     PyObject 
* obj0 
= 0 ; 
27461     PyObject 
* obj1 
= 0 ; 
27462     PyObject 
* obj2 
= 0 ; 
27463     char *kwnames
[] = { 
27464         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
27467     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewFrame__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
27468     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27469     if (SWIG_arg_fail(1)) SWIG_fail
; 
27473         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27474         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
27476         wxPyEndAllowThreads(__tstate
); 
27477         if (PyErr_Occurred()) SWIG_fail
; 
27479     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27486 static PyObject 
*_wrap_PyPreviewFrame_SetPreviewCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27487     PyObject 
*resultobj
; 
27488     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27489     wxPreviewCanvas 
*arg2 
= (wxPreviewCanvas 
*) 0 ; 
27490     PyObject 
* obj0 
= 0 ; 
27491     PyObject 
* obj1 
= 0 ; 
27492     char *kwnames
[] = { 
27493         (char *) "self",(char *) "canvas", NULL 
 
27496     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetPreviewCanvas",kwnames
,&obj0
,&obj1
)) goto fail
; 
27497     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27498     if (SWIG_arg_fail(1)) SWIG_fail
; 
27499     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewCanvas
, SWIG_POINTER_EXCEPTION 
| 0); 
27500     if (SWIG_arg_fail(2)) SWIG_fail
; 
27502         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27503         (arg1
)->SetPreviewCanvas(arg2
); 
27505         wxPyEndAllowThreads(__tstate
); 
27506         if (PyErr_Occurred()) SWIG_fail
; 
27508     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27515 static PyObject 
*_wrap_PyPreviewFrame_SetControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27516     PyObject 
*resultobj
; 
27517     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27518     wxPreviewControlBar 
*arg2 
= (wxPreviewControlBar 
*) 0 ; 
27519     PyObject 
* obj0 
= 0 ; 
27520     PyObject 
* obj1 
= 0 ; 
27521     char *kwnames
[] = { 
27522         (char *) "self",(char *) "bar", NULL 
 
27525     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewFrame_SetControlBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
27526     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27527     if (SWIG_arg_fail(1)) SWIG_fail
; 
27528     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
27529     if (SWIG_arg_fail(2)) SWIG_fail
; 
27531         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27532         (arg1
)->SetControlBar(arg2
); 
27534         wxPyEndAllowThreads(__tstate
); 
27535         if (PyErr_Occurred()) SWIG_fail
; 
27537     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27544 static PyObject 
*_wrap_PyPreviewFrame_base_Initialize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27545     PyObject 
*resultobj
; 
27546     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27547     PyObject 
* obj0 
= 0 ; 
27548     char *kwnames
[] = { 
27549         (char *) "self", NULL 
 
27552     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPreviewFrame_base_Initialize",kwnames
,&obj0
)) goto fail
; 
27553     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27554     if (SWIG_arg_fail(1)) SWIG_fail
; 
27556         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27557         (arg1
)->base_Initialize(); 
27559         wxPyEndAllowThreads(__tstate
); 
27560         if (PyErr_Occurred()) SWIG_fail
; 
27562     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27569 static PyObject 
*_wrap_PyPreviewFrame_base_CreateCanvas(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27570     PyObject 
*resultobj
; 
27571     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27572     PyObject 
* obj0 
= 0 ; 
27573     char *kwnames
[] = { 
27574         (char *) "self", NULL 
 
27577     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPreviewFrame_base_CreateCanvas",kwnames
,&obj0
)) goto fail
; 
27578     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27579     if (SWIG_arg_fail(1)) SWIG_fail
; 
27581         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27582         (arg1
)->base_CreateCanvas(); 
27584         wxPyEndAllowThreads(__tstate
); 
27585         if (PyErr_Occurred()) SWIG_fail
; 
27587     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27594 static PyObject 
*_wrap_PyPreviewFrame_base_CreateControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27595     PyObject 
*resultobj
; 
27596     wxPyPreviewFrame 
*arg1 
= (wxPyPreviewFrame 
*) 0 ; 
27597     PyObject 
* obj0 
= 0 ; 
27598     char *kwnames
[] = { 
27599         (char *) "self", NULL 
 
27602     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPreviewFrame_base_CreateControlBar",kwnames
,&obj0
)) goto fail
; 
27603     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
27604     if (SWIG_arg_fail(1)) SWIG_fail
; 
27606         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27607         (arg1
)->base_CreateControlBar(); 
27609         wxPyEndAllowThreads(__tstate
); 
27610         if (PyErr_Occurred()) SWIG_fail
; 
27612     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27619 static PyObject 
* PyPreviewFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
27621     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
27622     SWIG_TypeClientData(SWIGTYPE_p_wxPyPreviewFrame
, obj
); 
27624     return Py_BuildValue((char *)""); 
27626 static PyObject 
*_wrap_new_PyPreviewControlBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27627     PyObject 
*resultobj
; 
27628     wxPrintPreview 
*arg1 
= (wxPrintPreview 
*) 0 ; 
27630     wxWindow 
*arg3 
= (wxWindow 
*) 0 ; 
27631     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
27632     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
27633     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
27634     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
27635     long arg6 
= (long) 0 ; 
27636     wxString 
const &arg7_defvalue 
= wxPyPanelNameStr 
; 
27637     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
27638     wxPyPreviewControlBar 
*result
; 
27641     bool temp7 
= false ; 
27642     PyObject 
* obj0 
= 0 ; 
27643     PyObject 
* obj1 
= 0 ; 
27644     PyObject 
* obj2 
= 0 ; 
27645     PyObject 
* obj3 
= 0 ; 
27646     PyObject 
* obj4 
= 0 ; 
27647     PyObject 
* obj5 
= 0 ; 
27648     PyObject 
* obj6 
= 0 ; 
27649     char *kwnames
[] = { 
27650         (char *) "preview",(char *) "buttons",(char *) "parent",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
27653     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:new_PyPreviewControlBar",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
27654     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27655     if (SWIG_arg_fail(1)) SWIG_fail
; 
27657         arg2 
= (long)(SWIG_As_long(obj1
));  
27658         if (SWIG_arg_fail(2)) SWIG_fail
; 
27660     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
27661     if (SWIG_arg_fail(3)) SWIG_fail
; 
27665             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
27671             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
27676             arg6 
= (long)(SWIG_As_long(obj5
));  
27677             if (SWIG_arg_fail(6)) SWIG_fail
; 
27682             arg7 
= wxString_in_helper(obj6
); 
27683             if (arg7 
== NULL
) SWIG_fail
; 
27688         if (!wxPyCheckForApp()) SWIG_fail
; 
27689         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27690         result 
= (wxPyPreviewControlBar 
*)new wxPyPreviewControlBar(arg1
,arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
27692         wxPyEndAllowThreads(__tstate
); 
27693         if (PyErr_Occurred()) SWIG_fail
; 
27695     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyPreviewControlBar
, 1); 
27710 static PyObject 
*_wrap_PyPreviewControlBar__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27711     PyObject 
*resultobj
; 
27712     wxPyPreviewControlBar 
*arg1 
= (wxPyPreviewControlBar 
*) 0 ; 
27713     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
27714     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
27715     PyObject 
* obj0 
= 0 ; 
27716     PyObject 
* obj1 
= 0 ; 
27717     PyObject 
* obj2 
= 0 ; 
27718     char *kwnames
[] = { 
27719         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
27722     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:PyPreviewControlBar__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
27723     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
27724     if (SWIG_arg_fail(1)) SWIG_fail
; 
27728         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27729         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
27731         wxPyEndAllowThreads(__tstate
); 
27732         if (PyErr_Occurred()) SWIG_fail
; 
27734     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27741 static PyObject 
*_wrap_PyPreviewControlBar_SetPrintPreview(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27742     PyObject 
*resultobj
; 
27743     wxPyPreviewControlBar 
*arg1 
= (wxPyPreviewControlBar 
*) 0 ; 
27744     wxPrintPreview 
*arg2 
= (wxPrintPreview 
*) 0 ; 
27745     PyObject 
* obj0 
= 0 ; 
27746     PyObject 
* obj1 
= 0 ; 
27747     char *kwnames
[] = { 
27748         (char *) "self",(char *) "preview", NULL 
 
27751     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_SetPrintPreview",kwnames
,&obj0
,&obj1
)) goto fail
; 
27752     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
27753     if (SWIG_arg_fail(1)) SWIG_fail
; 
27754     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxPrintPreview
, SWIG_POINTER_EXCEPTION 
| 0); 
27755     if (SWIG_arg_fail(2)) SWIG_fail
; 
27757         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27758         (arg1
)->SetPrintPreview(arg2
); 
27760         wxPyEndAllowThreads(__tstate
); 
27761         if (PyErr_Occurred()) SWIG_fail
; 
27763     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27770 static PyObject 
*_wrap_PyPreviewControlBar_base_CreateButtons(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27771     PyObject 
*resultobj
; 
27772     wxPyPreviewControlBar 
*arg1 
= (wxPyPreviewControlBar 
*) 0 ; 
27773     PyObject 
* obj0 
= 0 ; 
27774     char *kwnames
[] = { 
27775         (char *) "self", NULL 
 
27778     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:PyPreviewControlBar_base_CreateButtons",kwnames
,&obj0
)) goto fail
; 
27779     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
27780     if (SWIG_arg_fail(1)) SWIG_fail
; 
27782         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27783         (arg1
)->base_CreateButtons(); 
27785         wxPyEndAllowThreads(__tstate
); 
27786         if (PyErr_Occurred()) SWIG_fail
; 
27788     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27795 static PyObject 
*_wrap_PyPreviewControlBar_base_SetZoomControl(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
27796     PyObject 
*resultobj
; 
27797     wxPyPreviewControlBar 
*arg1 
= (wxPyPreviewControlBar 
*) 0 ; 
27799     PyObject 
* obj0 
= 0 ; 
27800     PyObject 
* obj1 
= 0 ; 
27801     char *kwnames
[] = { 
27802         (char *) "self",(char *) "zoom", NULL 
 
27805     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:PyPreviewControlBar_base_SetZoomControl",kwnames
,&obj0
,&obj1
)) goto fail
; 
27806     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyPreviewControlBar
, SWIG_POINTER_EXCEPTION 
| 0); 
27807     if (SWIG_arg_fail(1)) SWIG_fail
; 
27809         arg2 
= (int)(SWIG_As_int(obj1
));  
27810         if (SWIG_arg_fail(2)) SWIG_fail
; 
27813         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
27814         (arg1
)->base_SetZoomControl(arg2
); 
27816         wxPyEndAllowThreads(__tstate
); 
27817         if (PyErr_Occurred()) SWIG_fail
; 
27819     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
27826 static PyObject 
* PyPreviewControlBar_swigregister(PyObject 
*, PyObject 
*args
) { 
27828     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
27829     SWIG_TypeClientData(SWIGTYPE_p_wxPyPreviewControlBar
, obj
); 
27831     return Py_BuildValue((char *)""); 
27833 static PyMethodDef SwigMethods
[] = { 
27834          { (char *)"new_Panel", (PyCFunction
) _wrap_new_Panel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27835          { (char *)"new_PrePanel", (PyCFunction
) _wrap_new_PrePanel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27836          { (char *)"Panel_Create", (PyCFunction
) _wrap_Panel_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27837          { (char *)"Panel_InitDialog", (PyCFunction
) _wrap_Panel_InitDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27838          { (char *)"Panel_SetFocus", (PyCFunction
) _wrap_Panel_SetFocus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27839          { (char *)"Panel_SetFocusIgnoringChildren", (PyCFunction
) _wrap_Panel_SetFocusIgnoringChildren
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27840          { (char *)"Panel_GetClassDefaultAttributes", (PyCFunction
) _wrap_Panel_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27841          { (char *)"Panel_swigregister", Panel_swigregister
, METH_VARARGS
, NULL
}, 
27842          { (char *)"new_ScrolledWindow", (PyCFunction
) _wrap_new_ScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27843          { (char *)"new_PreScrolledWindow", (PyCFunction
) _wrap_new_PreScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27844          { (char *)"ScrolledWindow_Create", (PyCFunction
) _wrap_ScrolledWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27845          { (char *)"ScrolledWindow_SetScrollbars", (PyCFunction
) _wrap_ScrolledWindow_SetScrollbars
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27846          { (char *)"ScrolledWindow_Scroll", (PyCFunction
) _wrap_ScrolledWindow_Scroll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27847          { (char *)"ScrolledWindow_GetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_GetScrollPageSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27848          { (char *)"ScrolledWindow_SetScrollPageSize", (PyCFunction
) _wrap_ScrolledWindow_SetScrollPageSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27849          { (char *)"ScrolledWindow_SetScrollRate", (PyCFunction
) _wrap_ScrolledWindow_SetScrollRate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27850          { (char *)"ScrolledWindow_GetScrollPixelsPerUnit", (PyCFunction
) _wrap_ScrolledWindow_GetScrollPixelsPerUnit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27851          { (char *)"ScrolledWindow_EnableScrolling", (PyCFunction
) _wrap_ScrolledWindow_EnableScrolling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27852          { (char *)"ScrolledWindow_GetViewStart", (PyCFunction
) _wrap_ScrolledWindow_GetViewStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27853          { (char *)"ScrolledWindow_SetScale", (PyCFunction
) _wrap_ScrolledWindow_SetScale
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27854          { (char *)"ScrolledWindow_GetScaleX", (PyCFunction
) _wrap_ScrolledWindow_GetScaleX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27855          { (char *)"ScrolledWindow_GetScaleY", (PyCFunction
) _wrap_ScrolledWindow_GetScaleY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27856          { (char *)"ScrolledWindow_CalcScrolledPosition", _wrap_ScrolledWindow_CalcScrolledPosition
, METH_VARARGS
, NULL
}, 
27857          { (char *)"ScrolledWindow_CalcUnscrolledPosition", _wrap_ScrolledWindow_CalcUnscrolledPosition
, METH_VARARGS
, NULL
}, 
27858          { (char *)"ScrolledWindow_AdjustScrollbars", (PyCFunction
) _wrap_ScrolledWindow_AdjustScrollbars
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27859          { (char *)"ScrolledWindow_CalcScrollInc", (PyCFunction
) _wrap_ScrolledWindow_CalcScrollInc
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27860          { (char *)"ScrolledWindow_SetTargetWindow", (PyCFunction
) _wrap_ScrolledWindow_SetTargetWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27861          { (char *)"ScrolledWindow_GetTargetWindow", (PyCFunction
) _wrap_ScrolledWindow_GetTargetWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27862          { (char *)"ScrolledWindow_DoPrepareDC", (PyCFunction
) _wrap_ScrolledWindow_DoPrepareDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27863          { (char *)"ScrolledWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_ScrolledWindow_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27864          { (char *)"ScrolledWindow_swigregister", ScrolledWindow_swigregister
, METH_VARARGS
, NULL
}, 
27865          { (char *)"TopLevelWindow_Maximize", (PyCFunction
) _wrap_TopLevelWindow_Maximize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27866          { (char *)"TopLevelWindow_Restore", (PyCFunction
) _wrap_TopLevelWindow_Restore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27867          { (char *)"TopLevelWindow_Iconize", (PyCFunction
) _wrap_TopLevelWindow_Iconize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27868          { (char *)"TopLevelWindow_IsMaximized", (PyCFunction
) _wrap_TopLevelWindow_IsMaximized
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27869          { (char *)"TopLevelWindow_IsIconized", (PyCFunction
) _wrap_TopLevelWindow_IsIconized
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27870          { (char *)"TopLevelWindow_GetIcon", (PyCFunction
) _wrap_TopLevelWindow_GetIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27871          { (char *)"TopLevelWindow_SetIcon", (PyCFunction
) _wrap_TopLevelWindow_SetIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27872          { (char *)"TopLevelWindow_SetIcons", (PyCFunction
) _wrap_TopLevelWindow_SetIcons
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27873          { (char *)"TopLevelWindow_ShowFullScreen", (PyCFunction
) _wrap_TopLevelWindow_ShowFullScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27874          { (char *)"TopLevelWindow_IsFullScreen", (PyCFunction
) _wrap_TopLevelWindow_IsFullScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27875          { (char *)"TopLevelWindow_SetTitle", (PyCFunction
) _wrap_TopLevelWindow_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27876          { (char *)"TopLevelWindow_GetTitle", (PyCFunction
) _wrap_TopLevelWindow_GetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27877          { (char *)"TopLevelWindow_SetShape", (PyCFunction
) _wrap_TopLevelWindow_SetShape
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27878          { (char *)"TopLevelWindow_RequestUserAttention", (PyCFunction
) _wrap_TopLevelWindow_RequestUserAttention
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27879          { (char *)"TopLevelWindow_IsActive", (PyCFunction
) _wrap_TopLevelWindow_IsActive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27880          { (char *)"TopLevelWindow_MacSetMetalAppearance", (PyCFunction
) _wrap_TopLevelWindow_MacSetMetalAppearance
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27881          { (char *)"TopLevelWindow_MacGetMetalAppearance", (PyCFunction
) _wrap_TopLevelWindow_MacGetMetalAppearance
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27882          { (char *)"TopLevelWindow_swigregister", TopLevelWindow_swigregister
, METH_VARARGS
, NULL
}, 
27883          { (char *)"new_Frame", (PyCFunction
) _wrap_new_Frame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27884          { (char *)"new_PreFrame", (PyCFunction
) _wrap_new_PreFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27885          { (char *)"Frame_Create", (PyCFunction
) _wrap_Frame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27886          { (char *)"Frame_GetClientAreaOrigin", (PyCFunction
) _wrap_Frame_GetClientAreaOrigin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27887          { (char *)"Frame_SendSizeEvent", (PyCFunction
) _wrap_Frame_SendSizeEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27888          { (char *)"Frame_SetMenuBar", (PyCFunction
) _wrap_Frame_SetMenuBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27889          { (char *)"Frame_GetMenuBar", (PyCFunction
) _wrap_Frame_GetMenuBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27890          { (char *)"Frame_ProcessCommand", (PyCFunction
) _wrap_Frame_ProcessCommand
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27891          { (char *)"Frame_CreateStatusBar", (PyCFunction
) _wrap_Frame_CreateStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27892          { (char *)"Frame_GetStatusBar", (PyCFunction
) _wrap_Frame_GetStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27893          { (char *)"Frame_SetStatusBar", (PyCFunction
) _wrap_Frame_SetStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27894          { (char *)"Frame_SetStatusText", (PyCFunction
) _wrap_Frame_SetStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27895          { (char *)"Frame_SetStatusWidths", (PyCFunction
) _wrap_Frame_SetStatusWidths
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27896          { (char *)"Frame_PushStatusText", (PyCFunction
) _wrap_Frame_PushStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27897          { (char *)"Frame_PopStatusText", (PyCFunction
) _wrap_Frame_PopStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27898          { (char *)"Frame_SetStatusBarPane", (PyCFunction
) _wrap_Frame_SetStatusBarPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27899          { (char *)"Frame_GetStatusBarPane", (PyCFunction
) _wrap_Frame_GetStatusBarPane
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27900          { (char *)"Frame_CreateToolBar", (PyCFunction
) _wrap_Frame_CreateToolBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27901          { (char *)"Frame_GetToolBar", (PyCFunction
) _wrap_Frame_GetToolBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27902          { (char *)"Frame_SetToolBar", (PyCFunction
) _wrap_Frame_SetToolBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27903          { (char *)"Frame_DoGiveHelp", (PyCFunction
) _wrap_Frame_DoGiveHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27904          { (char *)"Frame_DoMenuUpdates", (PyCFunction
) _wrap_Frame_DoMenuUpdates
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27905          { (char *)"Frame_GetClassDefaultAttributes", (PyCFunction
) _wrap_Frame_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27906          { (char *)"Frame_swigregister", Frame_swigregister
, METH_VARARGS
, NULL
}, 
27907          { (char *)"new_Dialog", (PyCFunction
) _wrap_new_Dialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27908          { (char *)"new_PreDialog", (PyCFunction
) _wrap_new_PreDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27909          { (char *)"Dialog_Create", (PyCFunction
) _wrap_Dialog_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27910          { (char *)"Dialog_SetReturnCode", (PyCFunction
) _wrap_Dialog_SetReturnCode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27911          { (char *)"Dialog_GetReturnCode", (PyCFunction
) _wrap_Dialog_GetReturnCode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27912          { (char *)"Dialog_CreateTextSizer", (PyCFunction
) _wrap_Dialog_CreateTextSizer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27913          { (char *)"Dialog_CreateButtonSizer", (PyCFunction
) _wrap_Dialog_CreateButtonSizer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27914          { (char *)"Dialog_CreateStdDialogButtonSizer", (PyCFunction
) _wrap_Dialog_CreateStdDialogButtonSizer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27915          { (char *)"Dialog_IsModal", (PyCFunction
) _wrap_Dialog_IsModal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27916          { (char *)"Dialog_ShowModal", (PyCFunction
) _wrap_Dialog_ShowModal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27917          { (char *)"Dialog_EndModal", (PyCFunction
) _wrap_Dialog_EndModal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27918          { (char *)"Dialog_GetClassDefaultAttributes", (PyCFunction
) _wrap_Dialog_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27919          { (char *)"Dialog_swigregister", Dialog_swigregister
, METH_VARARGS
, NULL
}, 
27920          { (char *)"new_MiniFrame", (PyCFunction
) _wrap_new_MiniFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27921          { (char *)"new_PreMiniFrame", (PyCFunction
) _wrap_new_PreMiniFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27922          { (char *)"MiniFrame_Create", (PyCFunction
) _wrap_MiniFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27923          { (char *)"MiniFrame_swigregister", MiniFrame_swigregister
, METH_VARARGS
, NULL
}, 
27924          { (char *)"new_SplashScreenWindow", (PyCFunction
) _wrap_new_SplashScreenWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27925          { (char *)"SplashScreenWindow_SetBitmap", (PyCFunction
) _wrap_SplashScreenWindow_SetBitmap
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27926          { (char *)"SplashScreenWindow_GetBitmap", (PyCFunction
) _wrap_SplashScreenWindow_GetBitmap
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27927          { (char *)"SplashScreenWindow_swigregister", SplashScreenWindow_swigregister
, METH_VARARGS
, NULL
}, 
27928          { (char *)"new_SplashScreen", (PyCFunction
) _wrap_new_SplashScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27929          { (char *)"SplashScreen_GetSplashStyle", (PyCFunction
) _wrap_SplashScreen_GetSplashStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27930          { (char *)"SplashScreen_GetSplashWindow", (PyCFunction
) _wrap_SplashScreen_GetSplashWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27931          { (char *)"SplashScreen_GetTimeout", (PyCFunction
) _wrap_SplashScreen_GetTimeout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27932          { (char *)"SplashScreen_swigregister", SplashScreen_swigregister
, METH_VARARGS
, NULL
}, 
27933          { (char *)"new_StatusBar", (PyCFunction
) _wrap_new_StatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27934          { (char *)"new_PreStatusBar", (PyCFunction
) _wrap_new_PreStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27935          { (char *)"StatusBar_Create", (PyCFunction
) _wrap_StatusBar_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27936          { (char *)"StatusBar_SetFieldsCount", (PyCFunction
) _wrap_StatusBar_SetFieldsCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27937          { (char *)"StatusBar_GetFieldsCount", (PyCFunction
) _wrap_StatusBar_GetFieldsCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27938          { (char *)"StatusBar_SetStatusText", (PyCFunction
) _wrap_StatusBar_SetStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27939          { (char *)"StatusBar_GetStatusText", (PyCFunction
) _wrap_StatusBar_GetStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27940          { (char *)"StatusBar_PushStatusText", (PyCFunction
) _wrap_StatusBar_PushStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27941          { (char *)"StatusBar_PopStatusText", (PyCFunction
) _wrap_StatusBar_PopStatusText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27942          { (char *)"StatusBar_SetStatusWidths", (PyCFunction
) _wrap_StatusBar_SetStatusWidths
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27943          { (char *)"StatusBar_SetStatusStyles", (PyCFunction
) _wrap_StatusBar_SetStatusStyles
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27944          { (char *)"StatusBar_GetFieldRect", (PyCFunction
) _wrap_StatusBar_GetFieldRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27945          { (char *)"StatusBar_SetMinHeight", (PyCFunction
) _wrap_StatusBar_SetMinHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27946          { (char *)"StatusBar_GetBorderX", (PyCFunction
) _wrap_StatusBar_GetBorderX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27947          { (char *)"StatusBar_GetBorderY", (PyCFunction
) _wrap_StatusBar_GetBorderY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27948          { (char *)"StatusBar_GetClassDefaultAttributes", (PyCFunction
) _wrap_StatusBar_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27949          { (char *)"StatusBar_swigregister", StatusBar_swigregister
, METH_VARARGS
, NULL
}, 
27950          { (char *)"new_SplitterWindow", (PyCFunction
) _wrap_new_SplitterWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27951          { (char *)"new_PreSplitterWindow", (PyCFunction
) _wrap_new_PreSplitterWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27952          { (char *)"SplitterWindow_Create", (PyCFunction
) _wrap_SplitterWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27953          { (char *)"SplitterWindow_GetWindow1", (PyCFunction
) _wrap_SplitterWindow_GetWindow1
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27954          { (char *)"SplitterWindow_GetWindow2", (PyCFunction
) _wrap_SplitterWindow_GetWindow2
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27955          { (char *)"SplitterWindow_SetSplitMode", (PyCFunction
) _wrap_SplitterWindow_SetSplitMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27956          { (char *)"SplitterWindow_GetSplitMode", (PyCFunction
) _wrap_SplitterWindow_GetSplitMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27957          { (char *)"SplitterWindow_Initialize", (PyCFunction
) _wrap_SplitterWindow_Initialize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27958          { (char *)"SplitterWindow_SplitVertically", (PyCFunction
) _wrap_SplitterWindow_SplitVertically
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27959          { (char *)"SplitterWindow_SplitHorizontally", (PyCFunction
) _wrap_SplitterWindow_SplitHorizontally
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27960          { (char *)"SplitterWindow_Unsplit", (PyCFunction
) _wrap_SplitterWindow_Unsplit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27961          { (char *)"SplitterWindow_ReplaceWindow", (PyCFunction
) _wrap_SplitterWindow_ReplaceWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27962          { (char *)"SplitterWindow_UpdateSize", (PyCFunction
) _wrap_SplitterWindow_UpdateSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27963          { (char *)"SplitterWindow_IsSplit", (PyCFunction
) _wrap_SplitterWindow_IsSplit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27964          { (char *)"SplitterWindow_SetSashSize", (PyCFunction
) _wrap_SplitterWindow_SetSashSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27965          { (char *)"SplitterWindow_SetBorderSize", (PyCFunction
) _wrap_SplitterWindow_SetBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27966          { (char *)"SplitterWindow_GetSashSize", (PyCFunction
) _wrap_SplitterWindow_GetSashSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27967          { (char *)"SplitterWindow_GetBorderSize", (PyCFunction
) _wrap_SplitterWindow_GetBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27968          { (char *)"SplitterWindow_SetSashPosition", (PyCFunction
) _wrap_SplitterWindow_SetSashPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27969          { (char *)"SplitterWindow_GetSashPosition", (PyCFunction
) _wrap_SplitterWindow_GetSashPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27970          { (char *)"SplitterWindow_SetSashGravity", (PyCFunction
) _wrap_SplitterWindow_SetSashGravity
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27971          { (char *)"SplitterWindow_GetSashGravity", (PyCFunction
) _wrap_SplitterWindow_GetSashGravity
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27972          { (char *)"SplitterWindow_SetMinimumPaneSize", (PyCFunction
) _wrap_SplitterWindow_SetMinimumPaneSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27973          { (char *)"SplitterWindow_GetMinimumPaneSize", (PyCFunction
) _wrap_SplitterWindow_GetMinimumPaneSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27974          { (char *)"SplitterWindow_SashHitTest", (PyCFunction
) _wrap_SplitterWindow_SashHitTest
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27975          { (char *)"SplitterWindow_SizeWindows", (PyCFunction
) _wrap_SplitterWindow_SizeWindows
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27976          { (char *)"SplitterWindow_SetNeedUpdating", (PyCFunction
) _wrap_SplitterWindow_SetNeedUpdating
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27977          { (char *)"SplitterWindow_GetNeedUpdating", (PyCFunction
) _wrap_SplitterWindow_GetNeedUpdating
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27978          { (char *)"SplitterWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_SplitterWindow_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27979          { (char *)"SplitterWindow_swigregister", SplitterWindow_swigregister
, METH_VARARGS
, NULL
}, 
27980          { (char *)"new_SplitterEvent", (PyCFunction
) _wrap_new_SplitterEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27981          { (char *)"SplitterEvent_SetSashPosition", (PyCFunction
) _wrap_SplitterEvent_SetSashPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27982          { (char *)"SplitterEvent_GetSashPosition", (PyCFunction
) _wrap_SplitterEvent_GetSashPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27983          { (char *)"SplitterEvent_GetWindowBeingRemoved", (PyCFunction
) _wrap_SplitterEvent_GetWindowBeingRemoved
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27984          { (char *)"SplitterEvent_GetX", (PyCFunction
) _wrap_SplitterEvent_GetX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27985          { (char *)"SplitterEvent_GetY", (PyCFunction
) _wrap_SplitterEvent_GetY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27986          { (char *)"SplitterEvent_swigregister", SplitterEvent_swigregister
, METH_VARARGS
, NULL
}, 
27987          { (char *)"new_SashWindow", (PyCFunction
) _wrap_new_SashWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27988          { (char *)"new_PreSashWindow", (PyCFunction
) _wrap_new_PreSashWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27989          { (char *)"SashWindow_Create", (PyCFunction
) _wrap_SashWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27990          { (char *)"SashWindow_SetSashVisible", (PyCFunction
) _wrap_SashWindow_SetSashVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27991          { (char *)"SashWindow_GetSashVisible", (PyCFunction
) _wrap_SashWindow_GetSashVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27992          { (char *)"SashWindow_SetSashBorder", (PyCFunction
) _wrap_SashWindow_SetSashBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27993          { (char *)"SashWindow_HasBorder", (PyCFunction
) _wrap_SashWindow_HasBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27994          { (char *)"SashWindow_GetEdgeMargin", (PyCFunction
) _wrap_SashWindow_GetEdgeMargin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27995          { (char *)"SashWindow_SetDefaultBorderSize", (PyCFunction
) _wrap_SashWindow_SetDefaultBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27996          { (char *)"SashWindow_GetDefaultBorderSize", (PyCFunction
) _wrap_SashWindow_GetDefaultBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27997          { (char *)"SashWindow_SetExtraBorderSize", (PyCFunction
) _wrap_SashWindow_SetExtraBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27998          { (char *)"SashWindow_GetExtraBorderSize", (PyCFunction
) _wrap_SashWindow_GetExtraBorderSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
27999          { (char *)"SashWindow_SetMinimumSizeX", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28000          { (char *)"SashWindow_SetMinimumSizeY", (PyCFunction
) _wrap_SashWindow_SetMinimumSizeY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28001          { (char *)"SashWindow_GetMinimumSizeX", (PyCFunction
) _wrap_SashWindow_GetMinimumSizeX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28002          { (char *)"SashWindow_GetMinimumSizeY", (PyCFunction
) _wrap_SashWindow_GetMinimumSizeY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28003          { (char *)"SashWindow_SetMaximumSizeX", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28004          { (char *)"SashWindow_SetMaximumSizeY", (PyCFunction
) _wrap_SashWindow_SetMaximumSizeY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28005          { (char *)"SashWindow_GetMaximumSizeX", (PyCFunction
) _wrap_SashWindow_GetMaximumSizeX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28006          { (char *)"SashWindow_GetMaximumSizeY", (PyCFunction
) _wrap_SashWindow_GetMaximumSizeY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28007          { (char *)"SashWindow_SashHitTest", (PyCFunction
) _wrap_SashWindow_SashHitTest
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28008          { (char *)"SashWindow_SizeWindows", (PyCFunction
) _wrap_SashWindow_SizeWindows
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28009          { (char *)"SashWindow_swigregister", SashWindow_swigregister
, METH_VARARGS
, NULL
}, 
28010          { (char *)"new_SashEvent", (PyCFunction
) _wrap_new_SashEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28011          { (char *)"SashEvent_SetEdge", (PyCFunction
) _wrap_SashEvent_SetEdge
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28012          { (char *)"SashEvent_GetEdge", (PyCFunction
) _wrap_SashEvent_GetEdge
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28013          { (char *)"SashEvent_SetDragRect", (PyCFunction
) _wrap_SashEvent_SetDragRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28014          { (char *)"SashEvent_GetDragRect", (PyCFunction
) _wrap_SashEvent_GetDragRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28015          { (char *)"SashEvent_SetDragStatus", (PyCFunction
) _wrap_SashEvent_SetDragStatus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28016          { (char *)"SashEvent_GetDragStatus", (PyCFunction
) _wrap_SashEvent_GetDragStatus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28017          { (char *)"SashEvent_swigregister", SashEvent_swigregister
, METH_VARARGS
, NULL
}, 
28018          { (char *)"new_QueryLayoutInfoEvent", (PyCFunction
) _wrap_new_QueryLayoutInfoEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28019          { (char *)"QueryLayoutInfoEvent_SetRequestedLength", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetRequestedLength
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28020          { (char *)"QueryLayoutInfoEvent_GetRequestedLength", (PyCFunction
) _wrap_QueryLayoutInfoEvent_GetRequestedLength
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28021          { (char *)"QueryLayoutInfoEvent_SetFlags", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28022          { (char *)"QueryLayoutInfoEvent_GetFlags", (PyCFunction
) _wrap_QueryLayoutInfoEvent_GetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28023          { (char *)"QueryLayoutInfoEvent_SetSize", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28024          { (char *)"QueryLayoutInfoEvent_GetSize", (PyCFunction
) _wrap_QueryLayoutInfoEvent_GetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28025          { (char *)"QueryLayoutInfoEvent_SetOrientation", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28026          { (char *)"QueryLayoutInfoEvent_GetOrientation", (PyCFunction
) _wrap_QueryLayoutInfoEvent_GetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28027          { (char *)"QueryLayoutInfoEvent_SetAlignment", (PyCFunction
) _wrap_QueryLayoutInfoEvent_SetAlignment
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28028          { (char *)"QueryLayoutInfoEvent_GetAlignment", (PyCFunction
) _wrap_QueryLayoutInfoEvent_GetAlignment
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28029          { (char *)"QueryLayoutInfoEvent_swigregister", QueryLayoutInfoEvent_swigregister
, METH_VARARGS
, NULL
}, 
28030          { (char *)"new_CalculateLayoutEvent", (PyCFunction
) _wrap_new_CalculateLayoutEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28031          { (char *)"CalculateLayoutEvent_SetFlags", (PyCFunction
) _wrap_CalculateLayoutEvent_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28032          { (char *)"CalculateLayoutEvent_GetFlags", (PyCFunction
) _wrap_CalculateLayoutEvent_GetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28033          { (char *)"CalculateLayoutEvent_SetRect", (PyCFunction
) _wrap_CalculateLayoutEvent_SetRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28034          { (char *)"CalculateLayoutEvent_GetRect", (PyCFunction
) _wrap_CalculateLayoutEvent_GetRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28035          { (char *)"CalculateLayoutEvent_swigregister", CalculateLayoutEvent_swigregister
, METH_VARARGS
, NULL
}, 
28036          { (char *)"new_SashLayoutWindow", (PyCFunction
) _wrap_new_SashLayoutWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28037          { (char *)"new_PreSashLayoutWindow", (PyCFunction
) _wrap_new_PreSashLayoutWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28038          { (char *)"SashLayoutWindow_Create", (PyCFunction
) _wrap_SashLayoutWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28039          { (char *)"SashLayoutWindow_GetAlignment", (PyCFunction
) _wrap_SashLayoutWindow_GetAlignment
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28040          { (char *)"SashLayoutWindow_GetOrientation", (PyCFunction
) _wrap_SashLayoutWindow_GetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28041          { (char *)"SashLayoutWindow_SetAlignment", (PyCFunction
) _wrap_SashLayoutWindow_SetAlignment
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28042          { (char *)"SashLayoutWindow_SetDefaultSize", (PyCFunction
) _wrap_SashLayoutWindow_SetDefaultSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28043          { (char *)"SashLayoutWindow_SetOrientation", (PyCFunction
) _wrap_SashLayoutWindow_SetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28044          { (char *)"SashLayoutWindow_swigregister", SashLayoutWindow_swigregister
, METH_VARARGS
, NULL
}, 
28045          { (char *)"new_LayoutAlgorithm", (PyCFunction
) _wrap_new_LayoutAlgorithm
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28046          { (char *)"delete_LayoutAlgorithm", (PyCFunction
) _wrap_delete_LayoutAlgorithm
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28047          { (char *)"LayoutAlgorithm_LayoutMDIFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutMDIFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28048          { (char *)"LayoutAlgorithm_LayoutFrame", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28049          { (char *)"LayoutAlgorithm_LayoutWindow", (PyCFunction
) _wrap_LayoutAlgorithm_LayoutWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28050          { (char *)"LayoutAlgorithm_swigregister", LayoutAlgorithm_swigregister
, METH_VARARGS
, NULL
}, 
28051          { (char *)"new_PopupWindow", (PyCFunction
) _wrap_new_PopupWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28052          { (char *)"new_PrePopupWindow", (PyCFunction
) _wrap_new_PrePopupWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28053          { (char *)"PopupWindow_Create", (PyCFunction
) _wrap_PopupWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28054          { (char *)"PopupWindow_Position", (PyCFunction
) _wrap_PopupWindow_Position
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28055          { (char *)"PopupWindow_swigregister", PopupWindow_swigregister
, METH_VARARGS
, NULL
}, 
28056          { (char *)"new_PopupTransientWindow", (PyCFunction
) _wrap_new_PopupTransientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28057          { (char *)"new_PrePopupTransientWindow", (PyCFunction
) _wrap_new_PrePopupTransientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28058          { (char *)"PopupTransientWindow__setCallbackInfo", (PyCFunction
) _wrap_PopupTransientWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28059          { (char *)"PopupTransientWindow_Popup", (PyCFunction
) _wrap_PopupTransientWindow_Popup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28060          { (char *)"PopupTransientWindow_Dismiss", (PyCFunction
) _wrap_PopupTransientWindow_Dismiss
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28061          { (char *)"PopupTransientWindow_swigregister", PopupTransientWindow_swigregister
, METH_VARARGS
, NULL
}, 
28062          { (char *)"new_TipWindow", (PyCFunction
) _wrap_new_TipWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28063          { (char *)"TipWindow_SetBoundingRect", (PyCFunction
) _wrap_TipWindow_SetBoundingRect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28064          { (char *)"TipWindow_Close", (PyCFunction
) _wrap_TipWindow_Close
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28065          { (char *)"TipWindow_swigregister", TipWindow_swigregister
, METH_VARARGS
, NULL
}, 
28066          { (char *)"new_VScrolledWindow", (PyCFunction
) _wrap_new_VScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28067          { (char *)"new_PreVScrolledWindow", (PyCFunction
) _wrap_new_PreVScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28068          { (char *)"VScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_VScrolledWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28069          { (char *)"VScrolledWindow_Create", (PyCFunction
) _wrap_VScrolledWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28070          { (char *)"VScrolledWindow_SetLineCount", (PyCFunction
) _wrap_VScrolledWindow_SetLineCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28071          { (char *)"VScrolledWindow_ScrollToLine", (PyCFunction
) _wrap_VScrolledWindow_ScrollToLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28072          { (char *)"VScrolledWindow_ScrollLines", (PyCFunction
) _wrap_VScrolledWindow_ScrollLines
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28073          { (char *)"VScrolledWindow_ScrollPages", (PyCFunction
) _wrap_VScrolledWindow_ScrollPages
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28074          { (char *)"VScrolledWindow_RefreshLine", (PyCFunction
) _wrap_VScrolledWindow_RefreshLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28075          { (char *)"VScrolledWindow_RefreshLines", (PyCFunction
) _wrap_VScrolledWindow_RefreshLines
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28076          { (char *)"VScrolledWindow_HitTestXY", (PyCFunction
) _wrap_VScrolledWindow_HitTestXY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28077          { (char *)"VScrolledWindow_HitTest", (PyCFunction
) _wrap_VScrolledWindow_HitTest
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28078          { (char *)"VScrolledWindow_RefreshAll", (PyCFunction
) _wrap_VScrolledWindow_RefreshAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28079          { (char *)"VScrolledWindow_GetLineCount", (PyCFunction
) _wrap_VScrolledWindow_GetLineCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28080          { (char *)"VScrolledWindow_GetVisibleBegin", (PyCFunction
) _wrap_VScrolledWindow_GetVisibleBegin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28081          { (char *)"VScrolledWindow_GetVisibleEnd", (PyCFunction
) _wrap_VScrolledWindow_GetVisibleEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28082          { (char *)"VScrolledWindow_IsVisible", (PyCFunction
) _wrap_VScrolledWindow_IsVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28083          { (char *)"VScrolledWindow_GetFirstVisibleLine", (PyCFunction
) _wrap_VScrolledWindow_GetFirstVisibleLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28084          { (char *)"VScrolledWindow_GetLastVisibleLine", (PyCFunction
) _wrap_VScrolledWindow_GetLastVisibleLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28085          { (char *)"VScrolledWindow_swigregister", VScrolledWindow_swigregister
, METH_VARARGS
, NULL
}, 
28086          { (char *)"new_VListBox", (PyCFunction
) _wrap_new_VListBox
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28087          { (char *)"new_PreVListBox", (PyCFunction
) _wrap_new_PreVListBox
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28088          { (char *)"VListBox__setCallbackInfo", (PyCFunction
) _wrap_VListBox__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28089          { (char *)"VListBox_Create", (PyCFunction
) _wrap_VListBox_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28090          { (char *)"VListBox_GetItemCount", (PyCFunction
) _wrap_VListBox_GetItemCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28091          { (char *)"VListBox_HasMultipleSelection", (PyCFunction
) _wrap_VListBox_HasMultipleSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28092          { (char *)"VListBox_GetSelection", (PyCFunction
) _wrap_VListBox_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28093          { (char *)"VListBox_IsCurrent", (PyCFunction
) _wrap_VListBox_IsCurrent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28094          { (char *)"VListBox_IsSelected", (PyCFunction
) _wrap_VListBox_IsSelected
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28095          { (char *)"VListBox_GetSelectedCount", (PyCFunction
) _wrap_VListBox_GetSelectedCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28096          { (char *)"VListBox_GetFirstSelected", (PyCFunction
) _wrap_VListBox_GetFirstSelected
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28097          { (char *)"VListBox_GetNextSelected", (PyCFunction
) _wrap_VListBox_GetNextSelected
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28098          { (char *)"VListBox_GetMargins", (PyCFunction
) _wrap_VListBox_GetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28099          { (char *)"VListBox_GetSelectionBackground", (PyCFunction
) _wrap_VListBox_GetSelectionBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28100          { (char *)"VListBox_SetItemCount", (PyCFunction
) _wrap_VListBox_SetItemCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28101          { (char *)"VListBox_Clear", (PyCFunction
) _wrap_VListBox_Clear
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28102          { (char *)"VListBox_SetSelection", (PyCFunction
) _wrap_VListBox_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28103          { (char *)"VListBox_Select", (PyCFunction
) _wrap_VListBox_Select
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28104          { (char *)"VListBox_SelectRange", (PyCFunction
) _wrap_VListBox_SelectRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28105          { (char *)"VListBox_Toggle", (PyCFunction
) _wrap_VListBox_Toggle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28106          { (char *)"VListBox_SelectAll", (PyCFunction
) _wrap_VListBox_SelectAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28107          { (char *)"VListBox_DeselectAll", (PyCFunction
) _wrap_VListBox_DeselectAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28108          { (char *)"VListBox_SetMargins", (PyCFunction
) _wrap_VListBox_SetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28109          { (char *)"VListBox_SetMarginsXY", (PyCFunction
) _wrap_VListBox_SetMarginsXY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28110          { (char *)"VListBox_SetSelectionBackground", (PyCFunction
) _wrap_VListBox_SetSelectionBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28111          { (char *)"VListBox_swigregister", VListBox_swigregister
, METH_VARARGS
, NULL
}, 
28112          { (char *)"new_HtmlListBox", (PyCFunction
) _wrap_new_HtmlListBox
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28113          { (char *)"new_PreHtmlListBox", (PyCFunction
) _wrap_new_PreHtmlListBox
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28114          { (char *)"HtmlListBox__setCallbackInfo", (PyCFunction
) _wrap_HtmlListBox__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28115          { (char *)"HtmlListBox_Create", (PyCFunction
) _wrap_HtmlListBox_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28116          { (char *)"HtmlListBox_RefreshAll", (PyCFunction
) _wrap_HtmlListBox_RefreshAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28117          { (char *)"HtmlListBox_SetItemCount", (PyCFunction
) _wrap_HtmlListBox_SetItemCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28118          { (char *)"HtmlListBox_GetFileSystem", (PyCFunction
) _wrap_HtmlListBox_GetFileSystem
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28119          { (char *)"HtmlListBox_swigregister", HtmlListBox_swigregister
, METH_VARARGS
, NULL
}, 
28120          { (char *)"new_TaskBarIcon", (PyCFunction
) _wrap_new_TaskBarIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28121          { (char *)"TaskBarIcon__setCallbackInfo", (PyCFunction
) _wrap_TaskBarIcon__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28122          { (char *)"TaskBarIcon_Destroy", (PyCFunction
) _wrap_TaskBarIcon_Destroy
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28123          { (char *)"TaskBarIcon_IsOk", (PyCFunction
) _wrap_TaskBarIcon_IsOk
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28124          { (char *)"TaskBarIcon_IsIconInstalled", (PyCFunction
) _wrap_TaskBarIcon_IsIconInstalled
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28125          { (char *)"TaskBarIcon_SetIcon", (PyCFunction
) _wrap_TaskBarIcon_SetIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28126          { (char *)"TaskBarIcon_RemoveIcon", (PyCFunction
) _wrap_TaskBarIcon_RemoveIcon
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28127          { (char *)"TaskBarIcon_PopupMenu", (PyCFunction
) _wrap_TaskBarIcon_PopupMenu
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28128          { (char *)"TaskBarIcon_swigregister", TaskBarIcon_swigregister
, METH_VARARGS
, NULL
}, 
28129          { (char *)"new_TaskBarIconEvent", (PyCFunction
) _wrap_new_TaskBarIconEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28130          { (char *)"TaskBarIconEvent_swigregister", TaskBarIconEvent_swigregister
, METH_VARARGS
, NULL
}, 
28131          { (char *)"new_ColourData", (PyCFunction
) _wrap_new_ColourData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28132          { (char *)"delete_ColourData", (PyCFunction
) _wrap_delete_ColourData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28133          { (char *)"ColourData_GetChooseFull", (PyCFunction
) _wrap_ColourData_GetChooseFull
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28134          { (char *)"ColourData_GetColour", (PyCFunction
) _wrap_ColourData_GetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28135          { (char *)"ColourData_GetCustomColour", (PyCFunction
) _wrap_ColourData_GetCustomColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28136          { (char *)"ColourData_SetChooseFull", (PyCFunction
) _wrap_ColourData_SetChooseFull
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28137          { (char *)"ColourData_SetColour", (PyCFunction
) _wrap_ColourData_SetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28138          { (char *)"ColourData_SetCustomColour", (PyCFunction
) _wrap_ColourData_SetCustomColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28139          { (char *)"ColourData_swigregister", ColourData_swigregister
, METH_VARARGS
, NULL
}, 
28140          { (char *)"new_ColourDialog", (PyCFunction
) _wrap_new_ColourDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28141          { (char *)"ColourDialog_GetColourData", (PyCFunction
) _wrap_ColourDialog_GetColourData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28142          { (char *)"ColourDialog_swigregister", ColourDialog_swigregister
, METH_VARARGS
, NULL
}, 
28143          { (char *)"new_DirDialog", (PyCFunction
) _wrap_new_DirDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28144          { (char *)"DirDialog_GetPath", (PyCFunction
) _wrap_DirDialog_GetPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28145          { (char *)"DirDialog_GetMessage", (PyCFunction
) _wrap_DirDialog_GetMessage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28146          { (char *)"DirDialog_GetStyle", (PyCFunction
) _wrap_DirDialog_GetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28147          { (char *)"DirDialog_SetMessage", (PyCFunction
) _wrap_DirDialog_SetMessage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28148          { (char *)"DirDialog_SetPath", (PyCFunction
) _wrap_DirDialog_SetPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28149          { (char *)"DirDialog_swigregister", DirDialog_swigregister
, METH_VARARGS
, NULL
}, 
28150          { (char *)"new_FileDialog", (PyCFunction
) _wrap_new_FileDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28151          { (char *)"FileDialog_SetMessage", (PyCFunction
) _wrap_FileDialog_SetMessage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28152          { (char *)"FileDialog_SetPath", (PyCFunction
) _wrap_FileDialog_SetPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28153          { (char *)"FileDialog_SetDirectory", (PyCFunction
) _wrap_FileDialog_SetDirectory
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28154          { (char *)"FileDialog_SetFilename", (PyCFunction
) _wrap_FileDialog_SetFilename
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28155          { (char *)"FileDialog_SetWildcard", (PyCFunction
) _wrap_FileDialog_SetWildcard
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28156          { (char *)"FileDialog_SetStyle", (PyCFunction
) _wrap_FileDialog_SetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28157          { (char *)"FileDialog_SetFilterIndex", (PyCFunction
) _wrap_FileDialog_SetFilterIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28158          { (char *)"FileDialog_GetMessage", (PyCFunction
) _wrap_FileDialog_GetMessage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28159          { (char *)"FileDialog_GetPath", (PyCFunction
) _wrap_FileDialog_GetPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28160          { (char *)"FileDialog_GetDirectory", (PyCFunction
) _wrap_FileDialog_GetDirectory
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28161          { (char *)"FileDialog_GetFilename", (PyCFunction
) _wrap_FileDialog_GetFilename
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28162          { (char *)"FileDialog_GetWildcard", (PyCFunction
) _wrap_FileDialog_GetWildcard
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28163          { (char *)"FileDialog_GetStyle", (PyCFunction
) _wrap_FileDialog_GetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28164          { (char *)"FileDialog_GetFilterIndex", (PyCFunction
) _wrap_FileDialog_GetFilterIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28165          { (char *)"FileDialog_GetFilenames", (PyCFunction
) _wrap_FileDialog_GetFilenames
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28166          { (char *)"FileDialog_GetPaths", (PyCFunction
) _wrap_FileDialog_GetPaths
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28167          { (char *)"FileDialog_swigregister", FileDialog_swigregister
, METH_VARARGS
, NULL
}, 
28168          { (char *)"new_MultiChoiceDialog", (PyCFunction
) _wrap_new_MultiChoiceDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28169          { (char *)"MultiChoiceDialog_SetSelections", (PyCFunction
) _wrap_MultiChoiceDialog_SetSelections
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28170          { (char *)"MultiChoiceDialog_GetSelections", (PyCFunction
) _wrap_MultiChoiceDialog_GetSelections
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28171          { (char *)"MultiChoiceDialog_swigregister", MultiChoiceDialog_swigregister
, METH_VARARGS
, NULL
}, 
28172          { (char *)"new_SingleChoiceDialog", (PyCFunction
) _wrap_new_SingleChoiceDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28173          { (char *)"SingleChoiceDialog_GetSelection", (PyCFunction
) _wrap_SingleChoiceDialog_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28174          { (char *)"SingleChoiceDialog_GetStringSelection", (PyCFunction
) _wrap_SingleChoiceDialog_GetStringSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28175          { (char *)"SingleChoiceDialog_SetSelection", (PyCFunction
) _wrap_SingleChoiceDialog_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28176          { (char *)"SingleChoiceDialog_swigregister", SingleChoiceDialog_swigregister
, METH_VARARGS
, NULL
}, 
28177          { (char *)"new_TextEntryDialog", (PyCFunction
) _wrap_new_TextEntryDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28178          { (char *)"TextEntryDialog_GetValue", (PyCFunction
) _wrap_TextEntryDialog_GetValue
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28179          { (char *)"TextEntryDialog_SetValue", (PyCFunction
) _wrap_TextEntryDialog_SetValue
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28180          { (char *)"TextEntryDialog_swigregister", TextEntryDialog_swigregister
, METH_VARARGS
, NULL
}, 
28181          { (char *)"new_PasswordEntryDialog", (PyCFunction
) _wrap_new_PasswordEntryDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28182          { (char *)"PasswordEntryDialog_swigregister", PasswordEntryDialog_swigregister
, METH_VARARGS
, NULL
}, 
28183          { (char *)"new_FontData", (PyCFunction
) _wrap_new_FontData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28184          { (char *)"delete_FontData", (PyCFunction
) _wrap_delete_FontData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28185          { (char *)"FontData_EnableEffects", (PyCFunction
) _wrap_FontData_EnableEffects
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28186          { (char *)"FontData_GetAllowSymbols", (PyCFunction
) _wrap_FontData_GetAllowSymbols
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28187          { (char *)"FontData_GetColour", (PyCFunction
) _wrap_FontData_GetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28188          { (char *)"FontData_GetChosenFont", (PyCFunction
) _wrap_FontData_GetChosenFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28189          { (char *)"FontData_GetEnableEffects", (PyCFunction
) _wrap_FontData_GetEnableEffects
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28190          { (char *)"FontData_GetInitialFont", (PyCFunction
) _wrap_FontData_GetInitialFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28191          { (char *)"FontData_GetShowHelp", (PyCFunction
) _wrap_FontData_GetShowHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28192          { (char *)"FontData_SetAllowSymbols", (PyCFunction
) _wrap_FontData_SetAllowSymbols
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28193          { (char *)"FontData_SetChosenFont", (PyCFunction
) _wrap_FontData_SetChosenFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28194          { (char *)"FontData_SetColour", (PyCFunction
) _wrap_FontData_SetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28195          { (char *)"FontData_SetInitialFont", (PyCFunction
) _wrap_FontData_SetInitialFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28196          { (char *)"FontData_SetRange", (PyCFunction
) _wrap_FontData_SetRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28197          { (char *)"FontData_SetShowHelp", (PyCFunction
) _wrap_FontData_SetShowHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28198          { (char *)"FontData_swigregister", FontData_swigregister
, METH_VARARGS
, NULL
}, 
28199          { (char *)"new_FontDialog", (PyCFunction
) _wrap_new_FontDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28200          { (char *)"FontDialog_GetFontData", (PyCFunction
) _wrap_FontDialog_GetFontData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28201          { (char *)"FontDialog_swigregister", FontDialog_swigregister
, METH_VARARGS
, NULL
}, 
28202          { (char *)"new_MessageDialog", (PyCFunction
) _wrap_new_MessageDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28203          { (char *)"MessageDialog_swigregister", MessageDialog_swigregister
, METH_VARARGS
, NULL
}, 
28204          { (char *)"new_ProgressDialog", (PyCFunction
) _wrap_new_ProgressDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28205          { (char *)"ProgressDialog_Update", (PyCFunction
) _wrap_ProgressDialog_Update
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28206          { (char *)"ProgressDialog_Resume", (PyCFunction
) _wrap_ProgressDialog_Resume
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28207          { (char *)"ProgressDialog_swigregister", ProgressDialog_swigregister
, METH_VARARGS
, NULL
}, 
28208          { (char *)"new_FindDialogEvent", (PyCFunction
) _wrap_new_FindDialogEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28209          { (char *)"FindDialogEvent_GetFlags", (PyCFunction
) _wrap_FindDialogEvent_GetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28210          { (char *)"FindDialogEvent_GetFindString", (PyCFunction
) _wrap_FindDialogEvent_GetFindString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28211          { (char *)"FindDialogEvent_GetReplaceString", (PyCFunction
) _wrap_FindDialogEvent_GetReplaceString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28212          { (char *)"FindDialogEvent_GetDialog", (PyCFunction
) _wrap_FindDialogEvent_GetDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28213          { (char *)"FindDialogEvent_SetFlags", (PyCFunction
) _wrap_FindDialogEvent_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28214          { (char *)"FindDialogEvent_SetFindString", (PyCFunction
) _wrap_FindDialogEvent_SetFindString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28215          { (char *)"FindDialogEvent_SetReplaceString", (PyCFunction
) _wrap_FindDialogEvent_SetReplaceString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28216          { (char *)"FindDialogEvent_swigregister", FindDialogEvent_swigregister
, METH_VARARGS
, NULL
}, 
28217          { (char *)"new_FindReplaceData", (PyCFunction
) _wrap_new_FindReplaceData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28218          { (char *)"delete_FindReplaceData", (PyCFunction
) _wrap_delete_FindReplaceData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28219          { (char *)"FindReplaceData_GetFindString", (PyCFunction
) _wrap_FindReplaceData_GetFindString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28220          { (char *)"FindReplaceData_GetReplaceString", (PyCFunction
) _wrap_FindReplaceData_GetReplaceString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28221          { (char *)"FindReplaceData_GetFlags", (PyCFunction
) _wrap_FindReplaceData_GetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28222          { (char *)"FindReplaceData_SetFlags", (PyCFunction
) _wrap_FindReplaceData_SetFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28223          { (char *)"FindReplaceData_SetFindString", (PyCFunction
) _wrap_FindReplaceData_SetFindString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28224          { (char *)"FindReplaceData_SetReplaceString", (PyCFunction
) _wrap_FindReplaceData_SetReplaceString
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28225          { (char *)"FindReplaceData_swigregister", FindReplaceData_swigregister
, METH_VARARGS
, NULL
}, 
28226          { (char *)"new_FindReplaceDialog", (PyCFunction
) _wrap_new_FindReplaceDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28227          { (char *)"new_PreFindReplaceDialog", (PyCFunction
) _wrap_new_PreFindReplaceDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28228          { (char *)"FindReplaceDialog_Create", (PyCFunction
) _wrap_FindReplaceDialog_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28229          { (char *)"FindReplaceDialog_GetData", (PyCFunction
) _wrap_FindReplaceDialog_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28230          { (char *)"FindReplaceDialog_SetData", (PyCFunction
) _wrap_FindReplaceDialog_SetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28231          { (char *)"FindReplaceDialog_swigregister", FindReplaceDialog_swigregister
, METH_VARARGS
, NULL
}, 
28232          { (char *)"new_MDIParentFrame", (PyCFunction
) _wrap_new_MDIParentFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28233          { (char *)"new_PreMDIParentFrame", (PyCFunction
) _wrap_new_PreMDIParentFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28234          { (char *)"MDIParentFrame_Create", (PyCFunction
) _wrap_MDIParentFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28235          { (char *)"MDIParentFrame_ActivateNext", (PyCFunction
) _wrap_MDIParentFrame_ActivateNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28236          { (char *)"MDIParentFrame_ActivatePrevious", (PyCFunction
) _wrap_MDIParentFrame_ActivatePrevious
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28237          { (char *)"MDIParentFrame_ArrangeIcons", (PyCFunction
) _wrap_MDIParentFrame_ArrangeIcons
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28238          { (char *)"MDIParentFrame_Cascade", (PyCFunction
) _wrap_MDIParentFrame_Cascade
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28239          { (char *)"MDIParentFrame_GetActiveChild", (PyCFunction
) _wrap_MDIParentFrame_GetActiveChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28240          { (char *)"MDIParentFrame_GetClientWindow", (PyCFunction
) _wrap_MDIParentFrame_GetClientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28241          { (char *)"MDIParentFrame_GetToolBar", (PyCFunction
) _wrap_MDIParentFrame_GetToolBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28242          { (char *)"MDIParentFrame_Tile", (PyCFunction
) _wrap_MDIParentFrame_Tile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28243          { (char *)"MDIParentFrame_swigregister", MDIParentFrame_swigregister
, METH_VARARGS
, NULL
}, 
28244          { (char *)"new_MDIChildFrame", (PyCFunction
) _wrap_new_MDIChildFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28245          { (char *)"new_PreMDIChildFrame", (PyCFunction
) _wrap_new_PreMDIChildFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28246          { (char *)"MDIChildFrame_Create", (PyCFunction
) _wrap_MDIChildFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28247          { (char *)"MDIChildFrame_Activate", (PyCFunction
) _wrap_MDIChildFrame_Activate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28248          { (char *)"MDIChildFrame_Maximize", (PyCFunction
) _wrap_MDIChildFrame_Maximize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28249          { (char *)"MDIChildFrame_Restore", (PyCFunction
) _wrap_MDIChildFrame_Restore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28250          { (char *)"MDIChildFrame_swigregister", MDIChildFrame_swigregister
, METH_VARARGS
, NULL
}, 
28251          { (char *)"new_MDIClientWindow", (PyCFunction
) _wrap_new_MDIClientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28252          { (char *)"new_PreMDIClientWindow", (PyCFunction
) _wrap_new_PreMDIClientWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28253          { (char *)"MDIClientWindow_Create", (PyCFunction
) _wrap_MDIClientWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28254          { (char *)"MDIClientWindow_swigregister", MDIClientWindow_swigregister
, METH_VARARGS
, NULL
}, 
28255          { (char *)"new_PyWindow", (PyCFunction
) _wrap_new_PyWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28256          { (char *)"new_PrePyWindow", (PyCFunction
) _wrap_new_PrePyWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28257          { (char *)"PyWindow__setCallbackInfo", (PyCFunction
) _wrap_PyWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28258          { (char *)"PyWindow_SetBestSize", (PyCFunction
) _wrap_PyWindow_SetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28259          { (char *)"PyWindow_DoEraseBackground", (PyCFunction
) _wrap_PyWindow_DoEraseBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28260          { (char *)"PyWindow_base_DoMoveWindow", (PyCFunction
) _wrap_PyWindow_base_DoMoveWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28261          { (char *)"PyWindow_base_DoSetSize", (PyCFunction
) _wrap_PyWindow_base_DoSetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28262          { (char *)"PyWindow_base_DoSetClientSize", (PyCFunction
) _wrap_PyWindow_base_DoSetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28263          { (char *)"PyWindow_base_DoSetVirtualSize", (PyCFunction
) _wrap_PyWindow_base_DoSetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28264          { (char *)"PyWindow_base_DoGetSize", (PyCFunction
) _wrap_PyWindow_base_DoGetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28265          { (char *)"PyWindow_base_DoGetClientSize", (PyCFunction
) _wrap_PyWindow_base_DoGetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28266          { (char *)"PyWindow_base_DoGetPosition", (PyCFunction
) _wrap_PyWindow_base_DoGetPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28267          { (char *)"PyWindow_base_DoGetVirtualSize", (PyCFunction
) _wrap_PyWindow_base_DoGetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28268          { (char *)"PyWindow_base_DoGetBestSize", (PyCFunction
) _wrap_PyWindow_base_DoGetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28269          { (char *)"PyWindow_base_InitDialog", (PyCFunction
) _wrap_PyWindow_base_InitDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28270          { (char *)"PyWindow_base_TransferDataToWindow", (PyCFunction
) _wrap_PyWindow_base_TransferDataToWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28271          { (char *)"PyWindow_base_TransferDataFromWindow", (PyCFunction
) _wrap_PyWindow_base_TransferDataFromWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28272          { (char *)"PyWindow_base_Validate", (PyCFunction
) _wrap_PyWindow_base_Validate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28273          { (char *)"PyWindow_base_AcceptsFocus", (PyCFunction
) _wrap_PyWindow_base_AcceptsFocus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28274          { (char *)"PyWindow_base_AcceptsFocusFromKeyboard", (PyCFunction
) _wrap_PyWindow_base_AcceptsFocusFromKeyboard
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28275          { (char *)"PyWindow_base_GetMaxSize", (PyCFunction
) _wrap_PyWindow_base_GetMaxSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28276          { (char *)"PyWindow_base_AddChild", (PyCFunction
) _wrap_PyWindow_base_AddChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28277          { (char *)"PyWindow_base_RemoveChild", (PyCFunction
) _wrap_PyWindow_base_RemoveChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28278          { (char *)"PyWindow_base_ShouldInheritColours", (PyCFunction
) _wrap_PyWindow_base_ShouldInheritColours
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28279          { (char *)"PyWindow_base_GetDefaultAttributes", (PyCFunction
) _wrap_PyWindow_base_GetDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28280          { (char *)"PyWindow_base_OnInternalIdle", (PyCFunction
) _wrap_PyWindow_base_OnInternalIdle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28281          { (char *)"PyWindow_swigregister", PyWindow_swigregister
, METH_VARARGS
, NULL
}, 
28282          { (char *)"new_PyPanel", (PyCFunction
) _wrap_new_PyPanel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28283          { (char *)"new_PrePyPanel", (PyCFunction
) _wrap_new_PrePyPanel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28284          { (char *)"PyPanel__setCallbackInfo", (PyCFunction
) _wrap_PyPanel__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28285          { (char *)"PyPanel_SetBestSize", (PyCFunction
) _wrap_PyPanel_SetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28286          { (char *)"PyPanel_DoEraseBackground", (PyCFunction
) _wrap_PyPanel_DoEraseBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28287          { (char *)"PyPanel_base_DoMoveWindow", (PyCFunction
) _wrap_PyPanel_base_DoMoveWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28288          { (char *)"PyPanel_base_DoSetSize", (PyCFunction
) _wrap_PyPanel_base_DoSetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28289          { (char *)"PyPanel_base_DoSetClientSize", (PyCFunction
) _wrap_PyPanel_base_DoSetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28290          { (char *)"PyPanel_base_DoSetVirtualSize", (PyCFunction
) _wrap_PyPanel_base_DoSetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28291          { (char *)"PyPanel_base_DoGetSize", (PyCFunction
) _wrap_PyPanel_base_DoGetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28292          { (char *)"PyPanel_base_DoGetClientSize", (PyCFunction
) _wrap_PyPanel_base_DoGetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28293          { (char *)"PyPanel_base_DoGetPosition", (PyCFunction
) _wrap_PyPanel_base_DoGetPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28294          { (char *)"PyPanel_base_DoGetVirtualSize", (PyCFunction
) _wrap_PyPanel_base_DoGetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28295          { (char *)"PyPanel_base_DoGetBestSize", (PyCFunction
) _wrap_PyPanel_base_DoGetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28296          { (char *)"PyPanel_base_InitDialog", (PyCFunction
) _wrap_PyPanel_base_InitDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28297          { (char *)"PyPanel_base_TransferDataToWindow", (PyCFunction
) _wrap_PyPanel_base_TransferDataToWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28298          { (char *)"PyPanel_base_TransferDataFromWindow", (PyCFunction
) _wrap_PyPanel_base_TransferDataFromWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28299          { (char *)"PyPanel_base_Validate", (PyCFunction
) _wrap_PyPanel_base_Validate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28300          { (char *)"PyPanel_base_AcceptsFocus", (PyCFunction
) _wrap_PyPanel_base_AcceptsFocus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28301          { (char *)"PyPanel_base_AcceptsFocusFromKeyboard", (PyCFunction
) _wrap_PyPanel_base_AcceptsFocusFromKeyboard
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28302          { (char *)"PyPanel_base_GetMaxSize", (PyCFunction
) _wrap_PyPanel_base_GetMaxSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28303          { (char *)"PyPanel_base_AddChild", (PyCFunction
) _wrap_PyPanel_base_AddChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28304          { (char *)"PyPanel_base_RemoveChild", (PyCFunction
) _wrap_PyPanel_base_RemoveChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28305          { (char *)"PyPanel_base_ShouldInheritColours", (PyCFunction
) _wrap_PyPanel_base_ShouldInheritColours
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28306          { (char *)"PyPanel_base_GetDefaultAttributes", (PyCFunction
) _wrap_PyPanel_base_GetDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28307          { (char *)"PyPanel_base_OnInternalIdle", (PyCFunction
) _wrap_PyPanel_base_OnInternalIdle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28308          { (char *)"PyPanel_swigregister", PyPanel_swigregister
, METH_VARARGS
, NULL
}, 
28309          { (char *)"new_PyScrolledWindow", (PyCFunction
) _wrap_new_PyScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28310          { (char *)"new_PrePyScrolledWindow", (PyCFunction
) _wrap_new_PrePyScrolledWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28311          { (char *)"PyScrolledWindow__setCallbackInfo", (PyCFunction
) _wrap_PyScrolledWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28312          { (char *)"PyScrolledWindow_SetBestSize", (PyCFunction
) _wrap_PyScrolledWindow_SetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28313          { (char *)"PyScrolledWindow_DoEraseBackground", (PyCFunction
) _wrap_PyScrolledWindow_DoEraseBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28314          { (char *)"PyScrolledWindow_base_DoMoveWindow", (PyCFunction
) _wrap_PyScrolledWindow_base_DoMoveWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28315          { (char *)"PyScrolledWindow_base_DoSetSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoSetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28316          { (char *)"PyScrolledWindow_base_DoSetClientSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoSetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28317          { (char *)"PyScrolledWindow_base_DoSetVirtualSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoSetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28318          { (char *)"PyScrolledWindow_base_DoGetSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoGetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28319          { (char *)"PyScrolledWindow_base_DoGetClientSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoGetClientSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28320          { (char *)"PyScrolledWindow_base_DoGetPosition", (PyCFunction
) _wrap_PyScrolledWindow_base_DoGetPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28321          { (char *)"PyScrolledWindow_base_DoGetVirtualSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoGetVirtualSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28322          { (char *)"PyScrolledWindow_base_DoGetBestSize", (PyCFunction
) _wrap_PyScrolledWindow_base_DoGetBestSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28323          { (char *)"PyScrolledWindow_base_InitDialog", (PyCFunction
) _wrap_PyScrolledWindow_base_InitDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28324          { (char *)"PyScrolledWindow_base_TransferDataToWindow", (PyCFunction
) _wrap_PyScrolledWindow_base_TransferDataToWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28325          { (char *)"PyScrolledWindow_base_TransferDataFromWindow", (PyCFunction
) _wrap_PyScrolledWindow_base_TransferDataFromWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28326          { (char *)"PyScrolledWindow_base_Validate", (PyCFunction
) _wrap_PyScrolledWindow_base_Validate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28327          { (char *)"PyScrolledWindow_base_AcceptsFocus", (PyCFunction
) _wrap_PyScrolledWindow_base_AcceptsFocus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28328          { (char *)"PyScrolledWindow_base_AcceptsFocusFromKeyboard", (PyCFunction
) _wrap_PyScrolledWindow_base_AcceptsFocusFromKeyboard
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28329          { (char *)"PyScrolledWindow_base_GetMaxSize", (PyCFunction
) _wrap_PyScrolledWindow_base_GetMaxSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28330          { (char *)"PyScrolledWindow_base_AddChild", (PyCFunction
) _wrap_PyScrolledWindow_base_AddChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28331          { (char *)"PyScrolledWindow_base_RemoveChild", (PyCFunction
) _wrap_PyScrolledWindow_base_RemoveChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28332          { (char *)"PyScrolledWindow_base_ShouldInheritColours", (PyCFunction
) _wrap_PyScrolledWindow_base_ShouldInheritColours
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28333          { (char *)"PyScrolledWindow_base_GetDefaultAttributes", (PyCFunction
) _wrap_PyScrolledWindow_base_GetDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28334          { (char *)"PyScrolledWindow_base_OnInternalIdle", (PyCFunction
) _wrap_PyScrolledWindow_base_OnInternalIdle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28335          { (char *)"PyScrolledWindow_swigregister", PyScrolledWindow_swigregister
, METH_VARARGS
, NULL
}, 
28336          { (char *)"new_PrintData", _wrap_new_PrintData
, METH_VARARGS
, NULL
}, 
28337          { (char *)"delete_PrintData", (PyCFunction
) _wrap_delete_PrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28338          { (char *)"PrintData_GetNoCopies", (PyCFunction
) _wrap_PrintData_GetNoCopies
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28339          { (char *)"PrintData_GetCollate", (PyCFunction
) _wrap_PrintData_GetCollate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28340          { (char *)"PrintData_GetOrientation", (PyCFunction
) _wrap_PrintData_GetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28341          { (char *)"PrintData_Ok", (PyCFunction
) _wrap_PrintData_Ok
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28342          { (char *)"PrintData_GetPrinterName", (PyCFunction
) _wrap_PrintData_GetPrinterName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28343          { (char *)"PrintData_GetColour", (PyCFunction
) _wrap_PrintData_GetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28344          { (char *)"PrintData_GetDuplex", (PyCFunction
) _wrap_PrintData_GetDuplex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28345          { (char *)"PrintData_GetPaperId", (PyCFunction
) _wrap_PrintData_GetPaperId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28346          { (char *)"PrintData_GetPaperSize", (PyCFunction
) _wrap_PrintData_GetPaperSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28347          { (char *)"PrintData_GetQuality", (PyCFunction
) _wrap_PrintData_GetQuality
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28348          { (char *)"PrintData_GetBin", (PyCFunction
) _wrap_PrintData_GetBin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28349          { (char *)"PrintData_GetPrintMode", (PyCFunction
) _wrap_PrintData_GetPrintMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28350          { (char *)"PrintData_SetNoCopies", (PyCFunction
) _wrap_PrintData_SetNoCopies
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28351          { (char *)"PrintData_SetCollate", (PyCFunction
) _wrap_PrintData_SetCollate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28352          { (char *)"PrintData_SetOrientation", (PyCFunction
) _wrap_PrintData_SetOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28353          { (char *)"PrintData_SetPrinterName", (PyCFunction
) _wrap_PrintData_SetPrinterName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28354          { (char *)"PrintData_SetColour", (PyCFunction
) _wrap_PrintData_SetColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28355          { (char *)"PrintData_SetDuplex", (PyCFunction
) _wrap_PrintData_SetDuplex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28356          { (char *)"PrintData_SetPaperId", (PyCFunction
) _wrap_PrintData_SetPaperId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28357          { (char *)"PrintData_SetPaperSize", (PyCFunction
) _wrap_PrintData_SetPaperSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28358          { (char *)"PrintData_SetQuality", (PyCFunction
) _wrap_PrintData_SetQuality
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28359          { (char *)"PrintData_SetBin", (PyCFunction
) _wrap_PrintData_SetBin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28360          { (char *)"PrintData_SetPrintMode", (PyCFunction
) _wrap_PrintData_SetPrintMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28361          { (char *)"PrintData_GetFilename", (PyCFunction
) _wrap_PrintData_GetFilename
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28362          { (char *)"PrintData_SetFilename", (PyCFunction
) _wrap_PrintData_SetFilename
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28363          { (char *)"PrintData_GetPrivData", (PyCFunction
) _wrap_PrintData_GetPrivData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28364          { (char *)"PrintData_SetPrivData", (PyCFunction
) _wrap_PrintData_SetPrivData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28365          { (char *)"PrintData_GetPrinterCommand", (PyCFunction
) _wrap_PrintData_GetPrinterCommand
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28366          { (char *)"PrintData_GetPrinterOptions", (PyCFunction
) _wrap_PrintData_GetPrinterOptions
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28367          { (char *)"PrintData_GetPreviewCommand", (PyCFunction
) _wrap_PrintData_GetPreviewCommand
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28368          { (char *)"PrintData_GetFontMetricPath", (PyCFunction
) _wrap_PrintData_GetFontMetricPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28369          { (char *)"PrintData_GetPrinterScaleX", (PyCFunction
) _wrap_PrintData_GetPrinterScaleX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28370          { (char *)"PrintData_GetPrinterScaleY", (PyCFunction
) _wrap_PrintData_GetPrinterScaleY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28371          { (char *)"PrintData_GetPrinterTranslateX", (PyCFunction
) _wrap_PrintData_GetPrinterTranslateX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28372          { (char *)"PrintData_GetPrinterTranslateY", (PyCFunction
) _wrap_PrintData_GetPrinterTranslateY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28373          { (char *)"PrintData_SetPrinterCommand", (PyCFunction
) _wrap_PrintData_SetPrinterCommand
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28374          { (char *)"PrintData_SetPrinterOptions", (PyCFunction
) _wrap_PrintData_SetPrinterOptions
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28375          { (char *)"PrintData_SetPreviewCommand", (PyCFunction
) _wrap_PrintData_SetPreviewCommand
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28376          { (char *)"PrintData_SetFontMetricPath", (PyCFunction
) _wrap_PrintData_SetFontMetricPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28377          { (char *)"PrintData_SetPrinterScaleX", (PyCFunction
) _wrap_PrintData_SetPrinterScaleX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28378          { (char *)"PrintData_SetPrinterScaleY", (PyCFunction
) _wrap_PrintData_SetPrinterScaleY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28379          { (char *)"PrintData_SetPrinterScaling", (PyCFunction
) _wrap_PrintData_SetPrinterScaling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28380          { (char *)"PrintData_SetPrinterTranslateX", (PyCFunction
) _wrap_PrintData_SetPrinterTranslateX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28381          { (char *)"PrintData_SetPrinterTranslateY", (PyCFunction
) _wrap_PrintData_SetPrinterTranslateY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28382          { (char *)"PrintData_SetPrinterTranslation", (PyCFunction
) _wrap_PrintData_SetPrinterTranslation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28383          { (char *)"PrintData_swigregister", PrintData_swigregister
, METH_VARARGS
, NULL
}, 
28384          { (char *)"new_PageSetupDialogData", _wrap_new_PageSetupDialogData
, METH_VARARGS
, NULL
}, 
28385          { (char *)"delete_PageSetupDialogData", (PyCFunction
) _wrap_delete_PageSetupDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28386          { (char *)"PageSetupDialogData_EnableHelp", (PyCFunction
) _wrap_PageSetupDialogData_EnableHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28387          { (char *)"PageSetupDialogData_EnableMargins", (PyCFunction
) _wrap_PageSetupDialogData_EnableMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28388          { (char *)"PageSetupDialogData_EnableOrientation", (PyCFunction
) _wrap_PageSetupDialogData_EnableOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28389          { (char *)"PageSetupDialogData_EnablePaper", (PyCFunction
) _wrap_PageSetupDialogData_EnablePaper
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28390          { (char *)"PageSetupDialogData_EnablePrinter", (PyCFunction
) _wrap_PageSetupDialogData_EnablePrinter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28391          { (char *)"PageSetupDialogData_GetDefaultMinMargins", (PyCFunction
) _wrap_PageSetupDialogData_GetDefaultMinMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28392          { (char *)"PageSetupDialogData_GetEnableMargins", (PyCFunction
) _wrap_PageSetupDialogData_GetEnableMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28393          { (char *)"PageSetupDialogData_GetEnableOrientation", (PyCFunction
) _wrap_PageSetupDialogData_GetEnableOrientation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28394          { (char *)"PageSetupDialogData_GetEnablePaper", (PyCFunction
) _wrap_PageSetupDialogData_GetEnablePaper
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28395          { (char *)"PageSetupDialogData_GetEnablePrinter", (PyCFunction
) _wrap_PageSetupDialogData_GetEnablePrinter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28396          { (char *)"PageSetupDialogData_GetEnableHelp", (PyCFunction
) _wrap_PageSetupDialogData_GetEnableHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28397          { (char *)"PageSetupDialogData_GetDefaultInfo", (PyCFunction
) _wrap_PageSetupDialogData_GetDefaultInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28398          { (char *)"PageSetupDialogData_GetMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_GetMarginTopLeft
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28399          { (char *)"PageSetupDialogData_GetMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_GetMarginBottomRight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28400          { (char *)"PageSetupDialogData_GetMinMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_GetMinMarginTopLeft
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28401          { (char *)"PageSetupDialogData_GetMinMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_GetMinMarginBottomRight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28402          { (char *)"PageSetupDialogData_GetPaperId", (PyCFunction
) _wrap_PageSetupDialogData_GetPaperId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28403          { (char *)"PageSetupDialogData_GetPaperSize", (PyCFunction
) _wrap_PageSetupDialogData_GetPaperSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28404          { (char *)"PageSetupDialogData_GetPrintData", (PyCFunction
) _wrap_PageSetupDialogData_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28405          { (char *)"PageSetupDialogData_Ok", (PyCFunction
) _wrap_PageSetupDialogData_Ok
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28406          { (char *)"PageSetupDialogData_SetDefaultInfo", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28407          { (char *)"PageSetupDialogData_SetDefaultMinMargins", (PyCFunction
) _wrap_PageSetupDialogData_SetDefaultMinMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28408          { (char *)"PageSetupDialogData_SetMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginTopLeft
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28409          { (char *)"PageSetupDialogData_SetMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMarginBottomRight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28410          { (char *)"PageSetupDialogData_SetMinMarginTopLeft", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginTopLeft
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28411          { (char *)"PageSetupDialogData_SetMinMarginBottomRight", (PyCFunction
) _wrap_PageSetupDialogData_SetMinMarginBottomRight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28412          { (char *)"PageSetupDialogData_SetPaperId", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28413          { (char *)"PageSetupDialogData_SetPaperSize", (PyCFunction
) _wrap_PageSetupDialogData_SetPaperSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28414          { (char *)"PageSetupDialogData_SetPrintData", (PyCFunction
) _wrap_PageSetupDialogData_SetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28415          { (char *)"PageSetupDialogData_CalculateIdFromPaperSize", (PyCFunction
) _wrap_PageSetupDialogData_CalculateIdFromPaperSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28416          { (char *)"PageSetupDialogData_CalculatePaperSizeFromId", (PyCFunction
) _wrap_PageSetupDialogData_CalculatePaperSizeFromId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28417          { (char *)"PageSetupDialogData_swigregister", PageSetupDialogData_swigregister
, METH_VARARGS
, NULL
}, 
28418          { (char *)"new_PageSetupDialog", (PyCFunction
) _wrap_new_PageSetupDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28419          { (char *)"PageSetupDialog_GetPageSetupData", (PyCFunction
) _wrap_PageSetupDialog_GetPageSetupData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28420          { (char *)"PageSetupDialog_GetPageSetupDialogData", (PyCFunction
) _wrap_PageSetupDialog_GetPageSetupDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28421          { (char *)"PageSetupDialog_ShowModal", (PyCFunction
) _wrap_PageSetupDialog_ShowModal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28422          { (char *)"PageSetupDialog_swigregister", PageSetupDialog_swigregister
, METH_VARARGS
, NULL
}, 
28423          { (char *)"new_PrintDialogData", _wrap_new_PrintDialogData
, METH_VARARGS
, NULL
}, 
28424          { (char *)"delete_PrintDialogData", (PyCFunction
) _wrap_delete_PrintDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28425          { (char *)"PrintDialogData_GetFromPage", (PyCFunction
) _wrap_PrintDialogData_GetFromPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28426          { (char *)"PrintDialogData_GetToPage", (PyCFunction
) _wrap_PrintDialogData_GetToPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28427          { (char *)"PrintDialogData_GetMinPage", (PyCFunction
) _wrap_PrintDialogData_GetMinPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28428          { (char *)"PrintDialogData_GetMaxPage", (PyCFunction
) _wrap_PrintDialogData_GetMaxPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28429          { (char *)"PrintDialogData_GetNoCopies", (PyCFunction
) _wrap_PrintDialogData_GetNoCopies
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28430          { (char *)"PrintDialogData_GetAllPages", (PyCFunction
) _wrap_PrintDialogData_GetAllPages
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28431          { (char *)"PrintDialogData_GetSelection", (PyCFunction
) _wrap_PrintDialogData_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28432          { (char *)"PrintDialogData_GetCollate", (PyCFunction
) _wrap_PrintDialogData_GetCollate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28433          { (char *)"PrintDialogData_GetPrintToFile", (PyCFunction
) _wrap_PrintDialogData_GetPrintToFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28434          { (char *)"PrintDialogData_GetSetupDialog", (PyCFunction
) _wrap_PrintDialogData_GetSetupDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28435          { (char *)"PrintDialogData_SetSetupDialog", (PyCFunction
) _wrap_PrintDialogData_SetSetupDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28436          { (char *)"PrintDialogData_SetFromPage", (PyCFunction
) _wrap_PrintDialogData_SetFromPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28437          { (char *)"PrintDialogData_SetToPage", (PyCFunction
) _wrap_PrintDialogData_SetToPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28438          { (char *)"PrintDialogData_SetMinPage", (PyCFunction
) _wrap_PrintDialogData_SetMinPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28439          { (char *)"PrintDialogData_SetMaxPage", (PyCFunction
) _wrap_PrintDialogData_SetMaxPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28440          { (char *)"PrintDialogData_SetNoCopies", (PyCFunction
) _wrap_PrintDialogData_SetNoCopies
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28441          { (char *)"PrintDialogData_SetAllPages", (PyCFunction
) _wrap_PrintDialogData_SetAllPages
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28442          { (char *)"PrintDialogData_SetSelection", (PyCFunction
) _wrap_PrintDialogData_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28443          { (char *)"PrintDialogData_SetCollate", (PyCFunction
) _wrap_PrintDialogData_SetCollate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28444          { (char *)"PrintDialogData_SetPrintToFile", (PyCFunction
) _wrap_PrintDialogData_SetPrintToFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28445          { (char *)"PrintDialogData_EnablePrintToFile", (PyCFunction
) _wrap_PrintDialogData_EnablePrintToFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28446          { (char *)"PrintDialogData_EnableSelection", (PyCFunction
) _wrap_PrintDialogData_EnableSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28447          { (char *)"PrintDialogData_EnablePageNumbers", (PyCFunction
) _wrap_PrintDialogData_EnablePageNumbers
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28448          { (char *)"PrintDialogData_EnableHelp", (PyCFunction
) _wrap_PrintDialogData_EnableHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28449          { (char *)"PrintDialogData_GetEnablePrintToFile", (PyCFunction
) _wrap_PrintDialogData_GetEnablePrintToFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28450          { (char *)"PrintDialogData_GetEnableSelection", (PyCFunction
) _wrap_PrintDialogData_GetEnableSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28451          { (char *)"PrintDialogData_GetEnablePageNumbers", (PyCFunction
) _wrap_PrintDialogData_GetEnablePageNumbers
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28452          { (char *)"PrintDialogData_GetEnableHelp", (PyCFunction
) _wrap_PrintDialogData_GetEnableHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28453          { (char *)"PrintDialogData_Ok", (PyCFunction
) _wrap_PrintDialogData_Ok
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28454          { (char *)"PrintDialogData_GetPrintData", (PyCFunction
) _wrap_PrintDialogData_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28455          { (char *)"PrintDialogData_SetPrintData", (PyCFunction
) _wrap_PrintDialogData_SetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28456          { (char *)"PrintDialogData_swigregister", PrintDialogData_swigregister
, METH_VARARGS
, NULL
}, 
28457          { (char *)"new_PrintDialog", (PyCFunction
) _wrap_new_PrintDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28458          { (char *)"PrintDialog_ShowModal", (PyCFunction
) _wrap_PrintDialog_ShowModal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28459          { (char *)"PrintDialog_GetPrintDialogData", (PyCFunction
) _wrap_PrintDialog_GetPrintDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28460          { (char *)"PrintDialog_GetPrintData", (PyCFunction
) _wrap_PrintDialog_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28461          { (char *)"PrintDialog_GetPrintDC", (PyCFunction
) _wrap_PrintDialog_GetPrintDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28462          { (char *)"PrintDialog_swigregister", PrintDialog_swigregister
, METH_VARARGS
, NULL
}, 
28463          { (char *)"new_Printer", (PyCFunction
) _wrap_new_Printer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28464          { (char *)"delete_Printer", (PyCFunction
) _wrap_delete_Printer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28465          { (char *)"Printer_CreateAbortWindow", (PyCFunction
) _wrap_Printer_CreateAbortWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28466          { (char *)"Printer_ReportError", (PyCFunction
) _wrap_Printer_ReportError
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28467          { (char *)"Printer_Setup", (PyCFunction
) _wrap_Printer_Setup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28468          { (char *)"Printer_Print", (PyCFunction
) _wrap_Printer_Print
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28469          { (char *)"Printer_PrintDialog", (PyCFunction
) _wrap_Printer_PrintDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28470          { (char *)"Printer_GetPrintDialogData", (PyCFunction
) _wrap_Printer_GetPrintDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28471          { (char *)"Printer_GetAbort", (PyCFunction
) _wrap_Printer_GetAbort
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28472          { (char *)"Printer_GetLastError", (PyCFunction
) _wrap_Printer_GetLastError
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28473          { (char *)"Printer_swigregister", Printer_swigregister
, METH_VARARGS
, NULL
}, 
28474          { (char *)"new_Printout", (PyCFunction
) _wrap_new_Printout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28475          { (char *)"Printout__setCallbackInfo", (PyCFunction
) _wrap_Printout__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28476          { (char *)"Printout_GetTitle", (PyCFunction
) _wrap_Printout_GetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28477          { (char *)"Printout_GetDC", (PyCFunction
) _wrap_Printout_GetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28478          { (char *)"Printout_SetDC", (PyCFunction
) _wrap_Printout_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28479          { (char *)"Printout_SetPageSizePixels", (PyCFunction
) _wrap_Printout_SetPageSizePixels
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28480          { (char *)"Printout_GetPageSizePixels", (PyCFunction
) _wrap_Printout_GetPageSizePixels
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28481          { (char *)"Printout_SetPageSizeMM", (PyCFunction
) _wrap_Printout_SetPageSizeMM
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28482          { (char *)"Printout_GetPageSizeMM", (PyCFunction
) _wrap_Printout_GetPageSizeMM
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28483          { (char *)"Printout_SetPPIScreen", (PyCFunction
) _wrap_Printout_SetPPIScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28484          { (char *)"Printout_GetPPIScreen", (PyCFunction
) _wrap_Printout_GetPPIScreen
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28485          { (char *)"Printout_SetPPIPrinter", (PyCFunction
) _wrap_Printout_SetPPIPrinter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28486          { (char *)"Printout_GetPPIPrinter", (PyCFunction
) _wrap_Printout_GetPPIPrinter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28487          { (char *)"Printout_IsPreview", (PyCFunction
) _wrap_Printout_IsPreview
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28488          { (char *)"Printout_SetIsPreview", (PyCFunction
) _wrap_Printout_SetIsPreview
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28489          { (char *)"Printout_base_OnBeginDocument", (PyCFunction
) _wrap_Printout_base_OnBeginDocument
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28490          { (char *)"Printout_base_OnEndDocument", (PyCFunction
) _wrap_Printout_base_OnEndDocument
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28491          { (char *)"Printout_base_OnBeginPrinting", (PyCFunction
) _wrap_Printout_base_OnBeginPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28492          { (char *)"Printout_base_OnEndPrinting", (PyCFunction
) _wrap_Printout_base_OnEndPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28493          { (char *)"Printout_base_OnPreparePrinting", (PyCFunction
) _wrap_Printout_base_OnPreparePrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28494          { (char *)"Printout_base_HasPage", (PyCFunction
) _wrap_Printout_base_HasPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28495          { (char *)"Printout_base_GetPageInfo", (PyCFunction
) _wrap_Printout_base_GetPageInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28496          { (char *)"Printout_swigregister", Printout_swigregister
, METH_VARARGS
, NULL
}, 
28497          { (char *)"new_PreviewCanvas", (PyCFunction
) _wrap_new_PreviewCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28498          { (char *)"PreviewCanvas_swigregister", PreviewCanvas_swigregister
, METH_VARARGS
, NULL
}, 
28499          { (char *)"new_PreviewFrame", (PyCFunction
) _wrap_new_PreviewFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28500          { (char *)"PreviewFrame_Initialize", (PyCFunction
) _wrap_PreviewFrame_Initialize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28501          { (char *)"PreviewFrame_CreateControlBar", (PyCFunction
) _wrap_PreviewFrame_CreateControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28502          { (char *)"PreviewFrame_CreateCanvas", (PyCFunction
) _wrap_PreviewFrame_CreateCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28503          { (char *)"PreviewFrame_GetControlBar", (PyCFunction
) _wrap_PreviewFrame_GetControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28504          { (char *)"PreviewFrame_swigregister", PreviewFrame_swigregister
, METH_VARARGS
, NULL
}, 
28505          { (char *)"new_PreviewControlBar", (PyCFunction
) _wrap_new_PreviewControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28506          { (char *)"PreviewControlBar_GetZoomControl", (PyCFunction
) _wrap_PreviewControlBar_GetZoomControl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28507          { (char *)"PreviewControlBar_SetZoomControl", (PyCFunction
) _wrap_PreviewControlBar_SetZoomControl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28508          { (char *)"PreviewControlBar_GetPrintPreview", (PyCFunction
) _wrap_PreviewControlBar_GetPrintPreview
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28509          { (char *)"PreviewControlBar_OnNext", (PyCFunction
) _wrap_PreviewControlBar_OnNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28510          { (char *)"PreviewControlBar_OnPrevious", (PyCFunction
) _wrap_PreviewControlBar_OnPrevious
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28511          { (char *)"PreviewControlBar_OnFirst", (PyCFunction
) _wrap_PreviewControlBar_OnFirst
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28512          { (char *)"PreviewControlBar_OnLast", (PyCFunction
) _wrap_PreviewControlBar_OnLast
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28513          { (char *)"PreviewControlBar_OnGoto", (PyCFunction
) _wrap_PreviewControlBar_OnGoto
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28514          { (char *)"PreviewControlBar_swigregister", PreviewControlBar_swigregister
, METH_VARARGS
, NULL
}, 
28515          { (char *)"new_PrintPreview", _wrap_new_PrintPreview
, METH_VARARGS
, NULL
}, 
28516          { (char *)"PrintPreview_SetCurrentPage", (PyCFunction
) _wrap_PrintPreview_SetCurrentPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28517          { (char *)"PrintPreview_GetCurrentPage", (PyCFunction
) _wrap_PrintPreview_GetCurrentPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28518          { (char *)"PrintPreview_SetPrintout", (PyCFunction
) _wrap_PrintPreview_SetPrintout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28519          { (char *)"PrintPreview_GetPrintout", (PyCFunction
) _wrap_PrintPreview_GetPrintout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28520          { (char *)"PrintPreview_GetPrintoutForPrinting", (PyCFunction
) _wrap_PrintPreview_GetPrintoutForPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28521          { (char *)"PrintPreview_SetFrame", (PyCFunction
) _wrap_PrintPreview_SetFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28522          { (char *)"PrintPreview_SetCanvas", (PyCFunction
) _wrap_PrintPreview_SetCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28523          { (char *)"PrintPreview_GetFrame", (PyCFunction
) _wrap_PrintPreview_GetFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28524          { (char *)"PrintPreview_GetCanvas", (PyCFunction
) _wrap_PrintPreview_GetCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28525          { (char *)"PrintPreview_PaintPage", (PyCFunction
) _wrap_PrintPreview_PaintPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28526          { (char *)"PrintPreview_DrawBlankPage", (PyCFunction
) _wrap_PrintPreview_DrawBlankPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28527          { (char *)"PrintPreview_RenderPage", (PyCFunction
) _wrap_PrintPreview_RenderPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28528          { (char *)"PrintPreview_AdjustScrollbars", (PyCFunction
) _wrap_PrintPreview_AdjustScrollbars
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28529          { (char *)"PrintPreview_GetPrintDialogData", (PyCFunction
) _wrap_PrintPreview_GetPrintDialogData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28530          { (char *)"PrintPreview_SetZoom", (PyCFunction
) _wrap_PrintPreview_SetZoom
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28531          { (char *)"PrintPreview_GetZoom", (PyCFunction
) _wrap_PrintPreview_GetZoom
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28532          { (char *)"PrintPreview_GetMaxPage", (PyCFunction
) _wrap_PrintPreview_GetMaxPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28533          { (char *)"PrintPreview_GetMinPage", (PyCFunction
) _wrap_PrintPreview_GetMinPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28534          { (char *)"PrintPreview_Ok", (PyCFunction
) _wrap_PrintPreview_Ok
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28535          { (char *)"PrintPreview_SetOk", (PyCFunction
) _wrap_PrintPreview_SetOk
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28536          { (char *)"PrintPreview_Print", (PyCFunction
) _wrap_PrintPreview_Print
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28537          { (char *)"PrintPreview_DetermineScaling", (PyCFunction
) _wrap_PrintPreview_DetermineScaling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28538          { (char *)"PrintPreview_swigregister", PrintPreview_swigregister
, METH_VARARGS
, NULL
}, 
28539          { (char *)"new_PyPrintPreview", _wrap_new_PyPrintPreview
, METH_VARARGS
, NULL
}, 
28540          { (char *)"PyPrintPreview__setCallbackInfo", (PyCFunction
) _wrap_PyPrintPreview__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28541          { (char *)"PyPrintPreview_base_SetCurrentPage", (PyCFunction
) _wrap_PyPrintPreview_base_SetCurrentPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28542          { (char *)"PyPrintPreview_base_PaintPage", (PyCFunction
) _wrap_PyPrintPreview_base_PaintPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28543          { (char *)"PyPrintPreview_base_DrawBlankPage", (PyCFunction
) _wrap_PyPrintPreview_base_DrawBlankPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28544          { (char *)"PyPrintPreview_base_RenderPage", (PyCFunction
) _wrap_PyPrintPreview_base_RenderPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28545          { (char *)"PyPrintPreview_base_SetZoom", (PyCFunction
) _wrap_PyPrintPreview_base_SetZoom
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28546          { (char *)"PyPrintPreview_base_Print", (PyCFunction
) _wrap_PyPrintPreview_base_Print
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28547          { (char *)"PyPrintPreview_base_DetermineScaling", (PyCFunction
) _wrap_PyPrintPreview_base_DetermineScaling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28548          { (char *)"PyPrintPreview_swigregister", PyPrintPreview_swigregister
, METH_VARARGS
, NULL
}, 
28549          { (char *)"new_PyPreviewFrame", (PyCFunction
) _wrap_new_PyPreviewFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28550          { (char *)"PyPreviewFrame__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewFrame__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28551          { (char *)"PyPreviewFrame_SetPreviewCanvas", (PyCFunction
) _wrap_PyPreviewFrame_SetPreviewCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28552          { (char *)"PyPreviewFrame_SetControlBar", (PyCFunction
) _wrap_PyPreviewFrame_SetControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28553          { (char *)"PyPreviewFrame_base_Initialize", (PyCFunction
) _wrap_PyPreviewFrame_base_Initialize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28554          { (char *)"PyPreviewFrame_base_CreateCanvas", (PyCFunction
) _wrap_PyPreviewFrame_base_CreateCanvas
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28555          { (char *)"PyPreviewFrame_base_CreateControlBar", (PyCFunction
) _wrap_PyPreviewFrame_base_CreateControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28556          { (char *)"PyPreviewFrame_swigregister", PyPreviewFrame_swigregister
, METH_VARARGS
, NULL
}, 
28557          { (char *)"new_PyPreviewControlBar", (PyCFunction
) _wrap_new_PyPreviewControlBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28558          { (char *)"PyPreviewControlBar__setCallbackInfo", (PyCFunction
) _wrap_PyPreviewControlBar__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28559          { (char *)"PyPreviewControlBar_SetPrintPreview", (PyCFunction
) _wrap_PyPreviewControlBar_SetPrintPreview
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28560          { (char *)"PyPreviewControlBar_base_CreateButtons", (PyCFunction
) _wrap_PyPreviewControlBar_base_CreateButtons
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28561          { (char *)"PyPreviewControlBar_base_SetZoomControl", (PyCFunction
) _wrap_PyPreviewControlBar_base_SetZoomControl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
28562          { (char *)"PyPreviewControlBar_swigregister", PyPreviewControlBar_swigregister
, METH_VARARGS
, NULL
}, 
28563          { NULL
, NULL
, 0, NULL 
} 
28567 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
28569 static void *_p_wxPyPreviewFrameTo_p_wxPreviewFrame(void *x
) { 
28570     return (void *)((wxPreviewFrame 
*)  ((wxPyPreviewFrame 
*) x
)); 
28572 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) { 
28573     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
28575 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) { 
28576     return (void *)((wxEvent 
*)  ((wxMenuEvent 
*) x
)); 
28578 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) { 
28579     return (void *)((wxEvent 
*)  ((wxCloseEvent 
*) x
)); 
28581 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) { 
28582     return (void *)((wxEvent 
*)  ((wxMouseEvent 
*) x
)); 
28584 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) { 
28585     return (void *)((wxEvent 
*)  ((wxEraseEvent 
*) x
)); 
28587 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) { 
28588     return (void *)((wxEvent 
*)  ((wxSetCursorEvent 
*) x
)); 
28590 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) { 
28591     return (void *)((wxEvent 
*) (wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
28593 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) { 
28594     return (void *)((wxEvent 
*)  ((wxInitDialogEvent 
*) x
)); 
28596 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) { 
28597     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
28599 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) { 
28600     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
28602 static void *_p_wxPyEventTo_p_wxEvent(void *x
) { 
28603     return (void *)((wxEvent 
*)  ((wxPyEvent 
*) x
)); 
28605 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) { 
28606     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
28608 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) { 
28609     return (void *)((wxEvent 
*)  ((wxCalculateLayoutEvent 
*) x
)); 
28611 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) { 
28612     return (void *)((wxEvent 
*)  ((wxIdleEvent 
*) x
)); 
28614 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) { 
28615     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
28617 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) { 
28618     return (void *)((wxEvent 
*)  ((wxQueryNewPaletteEvent 
*) x
)); 
28620 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) { 
28621     return (void *)((wxEvent 
*)  ((wxMaximizeEvent 
*) x
)); 
28623 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) { 
28624     return (void *)((wxEvent 
*)  ((wxIconizeEvent 
*) x
)); 
28626 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) { 
28627     return (void *)((wxEvent 
*)  ((wxActivateEvent 
*) x
)); 
28629 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) { 
28630     return (void *)((wxEvent 
*)  ((wxSizeEvent 
*) x
)); 
28632 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) { 
28633     return (void *)((wxEvent 
*)  ((wxMoveEvent 
*) x
)); 
28635 static void *_p_wxDateEventTo_p_wxEvent(void *x
) { 
28636     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
28638 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) { 
28639     return (void *)((wxEvent 
*)  ((wxPaintEvent 
*) x
)); 
28641 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) { 
28642     return (void *)((wxEvent 
*)  ((wxNcPaintEvent 
*) x
)); 
28644 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) { 
28645     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
28647 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) { 
28648     return (void *)((wxEvent 
*)  ((wxPaletteChangedEvent 
*) x
)); 
28650 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) { 
28651     return (void *)((wxEvent 
*)  ((wxDisplayChangedEvent 
*) x
)); 
28653 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) { 
28654     return (void *)((wxEvent 
*)  ((wxMouseCaptureChangedEvent 
*) x
)); 
28656 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) { 
28657     return (void *)((wxEvent 
*)  ((wxSysColourChangedEvent 
*) x
)); 
28659 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) { 
28660     return (void *)((wxEvent 
*)  ((wxDropFilesEvent 
*) x
)); 
28662 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) { 
28663     return (void *)((wxEvent 
*)  ((wxFocusEvent 
*) x
)); 
28665 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) { 
28666     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
28668 static void *_p_wxSashEventTo_p_wxEvent(void *x
) { 
28669     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
28671 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) { 
28672     return (void *)((wxEvent 
*)  ((wxQueryLayoutInfoEvent 
*) x
)); 
28674 static void *_p_wxShowEventTo_p_wxEvent(void *x
) { 
28675     return (void *)((wxEvent 
*)  ((wxShowEvent 
*) x
)); 
28677 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) { 
28678     return (void *)((wxEvent 
*)  ((wxCommandEvent 
*) x
)); 
28680 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) { 
28681     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
28683 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) { 
28684     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
28686 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) { 
28687     return (void *)((wxEvent 
*)  ((wxNavigationKeyEvent 
*) x
)); 
28689 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) { 
28690     return (void *)((wxEvent 
*)  ((wxKeyEvent 
*) x
)); 
28692 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) { 
28693     return (void *)((wxEvent 
*)  ((wxScrollWinEvent 
*) x
)); 
28695 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) { 
28696     return (void *)((wxEvent 
*)  ((wxTaskBarIconEvent 
*) x
)); 
28698 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) { 
28699     return (void *)((wxNotifyEvent 
*)  ((wxSplitterEvent 
*) x
)); 
28701 static void *_p_wxPasswordEntryDialogTo_p_wxTextEntryDialog(void *x
) { 
28702     return (void *)((wxTextEntryDialog 
*)  ((wxPasswordEntryDialog 
*) x
)); 
28704 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) { 
28705     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
28707 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) { 
28708     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
28710 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) { 
28711     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
28713 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
28714     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
28716 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
28717     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
28719 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
28720     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
28722 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
28723     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
28725 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) { 
28726     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
28728 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) { 
28729     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
28731 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) { 
28732     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
28734 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) { 
28735     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
28737 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) { 
28738     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
28740 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) { 
28741     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
28743 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) { 
28744     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
28746 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) { 
28747     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
28749 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) { 
28750     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPanel 
*) x
)); 
28752 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) { 
28753     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxStatusBar 
*) x
)); 
28755 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
28756     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
28758 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) { 
28759     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
28761 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) { 
28762     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
28764 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) { 
28765     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPopupWindow 
*) x
)); 
28767 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) { 
28768     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
28770 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) { 
28771     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSashWindow 
*) x
)); 
28773 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) { 
28774     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
28776 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) { 
28777     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
28779 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
28780     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
28782 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) { 
28783     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
28785 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) { 
28786     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
28788 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
28789     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
28791 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) { 
28792     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
28794 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
28795     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
28797 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) { 
28798     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
28800 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) { 
28801     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
28803 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
28804     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
28806 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
28807     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
28809 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
28810     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
28812 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) { 
28813     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPyWindow 
*) x
)); 
28815 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) { 
28816     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
28818 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
28819     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
28821 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) { 
28822     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
28824 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
28825     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
28827 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
28828     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
28830 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) { 
28831     return (void *)((wxEvtHandler 
*)  ((wxPyTaskBarIcon 
*) x
)); 
28833 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) { 
28834     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
28836 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) { 
28837     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
28839 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) { 
28840     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
28842 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) { 
28843     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
28845 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) { 
28846     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
28848 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
28849     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
28851 static void *_p_wxPyHtmlListBoxTo_p_wxPyVListBox(void *x
) { 
28852     return (void *)((wxPyVListBox 
*)  ((wxPyHtmlListBox 
*) x
)); 
28854 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) { 
28855     return (void *)((wxFrame 
*)  ((wxMDIChildFrame 
*) x
)); 
28857 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) { 
28858     return (void *)((wxFrame 
*)  ((wxProgressDialog 
*) x
)); 
28860 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) { 
28861     return (void *)((wxFrame 
*)  ((wxPreviewFrame 
*) x
)); 
28863 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) { 
28864     return (void *)((wxFrame 
*) (wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
28866 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) { 
28867     return (void *)((wxFrame 
*)  ((wxMiniFrame 
*) x
)); 
28869 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) { 
28870     return (void *)((wxFrame 
*)  ((wxSplashScreen 
*) x
)); 
28872 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) { 
28873     return (void *)((wxFrame 
*)  ((wxMDIParentFrame 
*) x
)); 
28875 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
28876     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
28878 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) { 
28879     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryLayoutInfoEvent 
*) x
)); 
28881 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) { 
28882     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
28884 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) { 
28885     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
28887 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
28888     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
28890 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
28891     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
28893 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
28894     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
28896 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
28897     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
28899 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
28900     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
28902 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
28903     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
28905 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
28906     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
28908 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
28909     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
28911 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
28912     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
28914 static void *_p_wxPyPanelTo_p_wxObject(void *x
) { 
28915     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
28917 static void *_p_wxEventTo_p_wxObject(void *x
) { 
28918     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
28920 static void *_p_wxFontDataTo_p_wxObject(void *x
) { 
28921     return (void *)((wxObject 
*)  ((wxFontData 
*) x
)); 
28923 static void *_p_wxPrintDataTo_p_wxObject(void *x
) { 
28924     return (void *)((wxObject 
*)  ((wxPrintData 
*) x
)); 
28926 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
28927     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
28929 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
28930     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
28932 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
28933     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
28935 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) { 
28936     return (void *)((wxObject 
*)  ((wxLayoutAlgorithm 
*) x
)); 
28938 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) { 
28939     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTaskBarIcon 
*) x
)); 
28941 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) { 
28942     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
28944 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
28945     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
28947 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
28948     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
28950 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
28951     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
28953 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
28954     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
28956 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
28957     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
28959 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
28960     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
28962 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) { 
28963     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
28965 static void *_p_wxControlTo_p_wxObject(void *x
) { 
28966     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
28968 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
28969     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
28971 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) { 
28972     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
28974 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
28975     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
28977 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) { 
28978     return (void *)((wxObject 
*)  ((wxFindReplaceData 
*) x
)); 
28980 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
28981     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
28983 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) { 
28984     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
28986 static void *_p_wxColourDataTo_p_wxObject(void *x
) { 
28987     return (void *)((wxObject 
*)  ((wxColourData 
*) x
)); 
28989 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
28990     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
28992 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
28993     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
28995 static void *_p_wxPyWindowTo_p_wxObject(void *x
) { 
28996     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPyWindow 
*) x
)); 
28998 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) { 
28999     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
29001 static void *_p_wxFileDialogTo_p_wxObject(void *x
) { 
29002     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
29004 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) { 
29005     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
29007 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) { 
29008     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
29010 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) { 
29011     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
29013 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) { 
29014     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
29016 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) { 
29017     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
29019 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) { 
29020     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
29022 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) { 
29023     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
29025 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
29026     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
29028 static void *_p_wxPrinterTo_p_wxObject(void *x
) { 
29029     return (void *)((wxObject 
*)  ((wxPrinter 
*) x
)); 
29031 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
29032     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
29034 static void *_p_wxDateEventTo_p_wxObject(void *x
) { 
29035     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
29037 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
29038     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
29040 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
29041     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
29043 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
29044     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
29046 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
29047     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
29049 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
29050     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
29052 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
29053     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
29055 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
29056     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
29058 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
29059     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
29061 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
29062     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
29064 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
29065     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
29067 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
29068     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
29070 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
29071     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
29073 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
29074     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
29076 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
29077     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
29079 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
29080     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
29082 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
29083     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
29085 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
29086     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
29088 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
29089     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
29091 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
29092     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
29094 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
29095     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
29097 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
29098     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
29100 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) { 
29101     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCalculateLayoutEvent 
*) x
)); 
29103 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) { 
29104     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
29106 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) { 
29107     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
29109 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) { 
29110     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
29112 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
29113     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
29115 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) { 
29116     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
29118 static void *_p_wxImageTo_p_wxObject(void *x
) { 
29119     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
29121 static void *_p_wxFrameTo_p_wxObject(void *x
) { 
29122     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
29124 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) { 
29125     return (void *)((wxObject 
*)  ((wxPyPrintout 
*) x
)); 
29127 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
29128     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
29130 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) { 
29131     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTaskBarIconEvent 
*) x
)); 
29133 static void *_p_wxStatusBarTo_p_wxObject(void *x
) { 
29134     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxStatusBar 
*) x
)); 
29136 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) { 
29137     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
29139 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
29140     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
29142 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
29143     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
29145 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
29146     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
29148 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
29149     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
29151 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
29152     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
29154 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
29155     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
29157 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) { 
29158     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
29160 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) { 
29161     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
29163 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) { 
29164     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
29166 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) { 
29167     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
29169 static void *_p_wxSashWindowTo_p_wxObject(void *x
) { 
29170     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSashWindow 
*) x
)); 
29172 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) { 
29173     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
29175 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) { 
29176     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPopupWindow 
*) x
)); 
29178 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) { 
29179     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
29181 static void *_p_wxTipWindowTo_p_wxObject(void *x
) { 
29182     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
29184 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) { 
29185     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
29187 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) { 
29188     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
29190 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) { 
29191     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
29193 static void *_p_wxSashEventTo_p_wxObject(void *x
) { 
29194     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
29196 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) { 
29197     return (void *)((wxObject 
*)  ((wxPrintPreview 
*) x
)); 
29199 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) { 
29200     return (void *)((wxObject 
*) (wxPrintPreview 
*) ((wxPyPrintPreview 
*) x
)); 
29202 static void *_p_wxPanelTo_p_wxObject(void *x
) { 
29203     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPanel 
*) x
)); 
29205 static void *_p_wxDialogTo_p_wxObject(void *x
) { 
29206     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
29208 static void *_p_wxColourDialogTo_p_wxObject(void *x
) { 
29209     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
29211 static void *_p_wxDirDialogTo_p_wxObject(void *x
) { 
29212     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
29214 static void *_p_wxFontDialogTo_p_wxObject(void *x
) { 
29215     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
29217 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) { 
29218     return (void *)((wxObject 
*)  ((wxPageSetupDialog 
*) x
)); 
29220 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) { 
29221     return (void *)((wxObject 
*)  ((wxPrintDialog 
*) x
)); 
29223 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
29224     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
29226 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
29227     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
29229 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
29230     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
29232 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
29233     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
29235 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
29236     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
29238 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
29239     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
29241 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
29242     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
29244 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
29245     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
29247 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
29248     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
29250 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) { 
29251     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
29253 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) { 
29254     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
29256 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
29257     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
29259 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
29260     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
29262 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
29263     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
29265 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
29266     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
29268 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) { 
29269     return (void *)((wxObject 
*)  ((wxPageSetupDialogData 
*) x
)); 
29271 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) { 
29272     return (void *)((wxObject 
*)  ((wxPrintDialogData 
*) x
)); 
29274 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
29275     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
29277 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
29278     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
29280 static void *_p_wxPyVListBoxTo_p_wxPyVScrolledWindow(void *x
) { 
29281     return (void *)((wxPyVScrolledWindow 
*)  ((wxPyVListBox 
*) x
)); 
29283 static void *_p_wxPyHtmlListBoxTo_p_wxPyVScrolledWindow(void *x
) { 
29284     return (void *)((wxPyVScrolledWindow 
*) (wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
29286 static void *_p_wxTipWindowTo_p_wxPyPopupTransientWindow(void *x
) { 
29287     return (void *)((wxPyPopupTransientWindow 
*)  ((wxTipWindow 
*) x
)); 
29289 static void *_p_wxPyPopupTransientWindowTo_p_wxPopupWindow(void *x
) { 
29290     return (void *)((wxPopupWindow 
*)  ((wxPyPopupTransientWindow 
*) x
)); 
29292 static void *_p_wxTipWindowTo_p_wxPopupWindow(void *x
) { 
29293     return (void *)((wxPopupWindow 
*) (wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
29295 static void *_p_wxSashLayoutWindowTo_p_wxSashWindow(void *x
) { 
29296     return (void *)((wxSashWindow 
*)  ((wxSashLayoutWindow 
*) x
)); 
29298 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) { 
29299     return (void *)((wxTopLevelWindow 
*)  ((wxFrame 
*) x
)); 
29301 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) { 
29302     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMiniFrame 
*) x
)); 
29304 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) { 
29305     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFontDialog 
*) x
)); 
29307 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) { 
29308     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxDirDialog 
*) x
)); 
29310 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) { 
29311     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxColourDialog 
*) x
)); 
29313 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) { 
29314     return (void *)((wxTopLevelWindow 
*)  ((wxDialog 
*) x
)); 
29316 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) { 
29317     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxSplashScreen 
*) x
)); 
29319 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
29320     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
29322 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) { 
29323     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
29325 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) { 
29326     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxProgressDialog 
*) x
)); 
29328 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) { 
29329     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMessageDialog 
*) x
)); 
29331 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
29332     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
29334 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
29335     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
29337 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
29338     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
29340 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
29341     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
29343 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) { 
29344     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFileDialog 
*) x
)); 
29346 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) { 
29347     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
29349 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
29350     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
29352 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
29353     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
29355 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) { 
29356     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
29358 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) { 
29359     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
29361 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) { 
29362     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyPanel 
*) x
)); 
29364 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
29365     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
29367 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) { 
29368     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
29370 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) { 
29371     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
29373 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) { 
29374     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
29376 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) { 
29377     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
29379 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) { 
29380     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
29382 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) { 
29383     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
29385 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) { 
29386     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
29388 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) { 
29389     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
29391 static void *_p_wxPanelTo_p_wxWindow(void *x
) { 
29392     return (void *)((wxWindow 
*)  ((wxPanel 
*) x
)); 
29394 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) { 
29395     return (void *)((wxWindow 
*)  ((wxStatusBar 
*) x
)); 
29397 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) { 
29398     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
29400 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) { 
29401     return (void *)((wxWindow 
*) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
29403 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) { 
29404     return (void *)((wxWindow 
*) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
29406 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) { 
29407     return (void *)((wxWindow 
*)  ((wxPopupWindow 
*) x
)); 
29409 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) { 
29410     return (void *)((wxWindow 
*) (wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
29412 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) { 
29413     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
29415 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) { 
29416     return (void *)((wxWindow 
*)  ((wxTopLevelWindow 
*) x
)); 
29418 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) { 
29419     return (void *)((wxWindow 
*)  ((wxSplashScreenWindow 
*) x
)); 
29421 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) { 
29422     return (void *)((wxWindow 
*)  ((wxSplitterWindow 
*) x
)); 
29424 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) { 
29425     return (void *)((wxWindow 
*)  ((wxSashWindow 
*) x
)); 
29427 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) { 
29428     return (void *)((wxWindow 
*)  ((wxMDIClientWindow 
*) x
)); 
29430 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) { 
29431     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
29433 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
29434     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
29436 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) { 
29437     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
29439 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) { 
29440     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
29442 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) { 
29443     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
29445 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
29446     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
29448 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) { 
29449     return (void *)((wxWindow 
*)  ((wxPyWindow 
*) x
)); 
29451 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) { 
29452     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
29454 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) { 
29455     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
29457 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) { 
29458     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
29460 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) { 
29461     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
29463 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) { 
29464     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
29466 static void *_p_wxFrameTo_p_wxWindow(void *x
) { 
29467     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
29469 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) { 
29470     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
29472 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) { 
29473     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
29475 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) { 
29476     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
29478 static void *_p_wxDialogTo_p_wxWindow(void *x
) { 
29479     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
29481 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) { 
29482     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
29484 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) { 
29485     return (void *)((wxScrolledWindow 
*)  ((wxPyScrolledWindow 
*) x
)); 
29487 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) { 
29488     return (void *)((wxScrolledWindow 
*)  ((wxPreviewCanvas 
*) x
)); 
29490 static void *_p_wxPyPrintPreviewTo_p_wxPrintPreview(void *x
) { 
29491     return (void *)((wxPrintPreview 
*)  ((wxPyPrintPreview 
*) x
)); 
29493 static void *_p_wxColourDialogTo_p_wxDialog(void *x
) { 
29494     return (void *)((wxDialog 
*)  ((wxColourDialog 
*) x
)); 
29496 static void *_p_wxDirDialogTo_p_wxDialog(void *x
) { 
29497     return (void *)((wxDialog 
*)  ((wxDirDialog 
*) x
)); 
29499 static void *_p_wxFontDialogTo_p_wxDialog(void *x
) { 
29500     return (void *)((wxDialog 
*)  ((wxFontDialog 
*) x
)); 
29502 static void *_p_wxFileDialogTo_p_wxDialog(void *x
) { 
29503     return (void *)((wxDialog 
*)  ((wxFileDialog 
*) x
)); 
29505 static void *_p_wxMultiChoiceDialogTo_p_wxDialog(void *x
) { 
29506     return (void *)((wxDialog 
*)  ((wxMultiChoiceDialog 
*) x
)); 
29508 static void *_p_wxSingleChoiceDialogTo_p_wxDialog(void *x
) { 
29509     return (void *)((wxDialog 
*)  ((wxSingleChoiceDialog 
*) x
)); 
29511 static void *_p_wxTextEntryDialogTo_p_wxDialog(void *x
) { 
29512     return (void *)((wxDialog 
*)  ((wxTextEntryDialog 
*) x
)); 
29514 static void *_p_wxPasswordEntryDialogTo_p_wxDialog(void *x
) { 
29515     return (void *)((wxDialog 
*) (wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
29517 static void *_p_wxMessageDialogTo_p_wxDialog(void *x
) { 
29518     return (void *)((wxDialog 
*)  ((wxMessageDialog 
*) x
)); 
29520 static void *_p_wxFindReplaceDialogTo_p_wxDialog(void *x
) { 
29521     return (void *)((wxDialog 
*)  ((wxFindReplaceDialog 
*) x
)); 
29523 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) { 
29524     return (void *)((wxPanel 
*)  ((wxScrolledWindow 
*) x
)); 
29526 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) { 
29527     return (void *)((wxPanel 
*)  ((wxPyVScrolledWindow 
*) x
)); 
29529 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) { 
29530     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
29532 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) { 
29533     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
29535 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) { 
29536     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
29538 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) { 
29539     return (void *)((wxPanel 
*)  ((wxPyPanel 
*) x
)); 
29541 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) { 
29542     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
29544 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) { 
29545     return (void *)((wxPanel 
*)  ((wxPreviewControlBar 
*) x
)); 
29547 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) { 
29548     return (void *)((wxPanel 
*) (wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
29550 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) { 
29551     return (void *)((wxCommandEvent 
*)  ((wxChildFocusEvent 
*) x
)); 
29553 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) { 
29554     return (void *)((wxCommandEvent 
*)  ((wxScrollEvent 
*) x
)); 
29556 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) { 
29557     return (void *)((wxCommandEvent 
*)  ((wxWindowCreateEvent 
*) x
)); 
29559 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) { 
29560     return (void *)((wxCommandEvent 
*)  ((wxDateEvent 
*) x
)); 
29562 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) { 
29563     return (void *)((wxCommandEvent 
*)  ((wxUpdateUIEvent 
*) x
)); 
29565 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) { 
29566     return (void *)((wxCommandEvent 
*)  ((wxFindDialogEvent 
*) x
)); 
29568 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) { 
29569     return (void *)((wxCommandEvent 
*)  ((wxWindowDestroyEvent 
*) x
)); 
29571 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) { 
29572     return (void *)((wxCommandEvent 
*)  ((wxContextMenuEvent 
*) x
)); 
29574 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) { 
29575     return (void *)((wxCommandEvent 
*) (wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
29577 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) { 
29578     return (void *)((wxCommandEvent 
*)  ((wxNotifyEvent 
*) x
)); 
29580 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) { 
29581     return (void *)((wxCommandEvent 
*)  ((wxPyCommandEvent 
*) x
)); 
29583 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) { 
29584     return (void *)((wxCommandEvent 
*)  ((wxSashEvent 
*) x
)); 
29586 static void *_p_wxPyPreviewControlBarTo_p_wxPreviewControlBar(void *x
) { 
29587     return (void *)((wxPreviewControlBar 
*)  ((wxPyPreviewControlBar 
*) x
)); 
29589 static swig_type_info _swigt__p_wxQueryLayoutInfoEvent
[] = {{"_p_wxQueryLayoutInfoEvent", 0, "wxQueryLayoutInfoEvent *", 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29590 static swig_type_info _swigt__p_wxPreviewFrame
[] = {{"_p_wxPreviewFrame", 0, "wxPreviewFrame *", 0, 0, 0, 0},{"_p_wxPreviewFrame", 0, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxPreviewFrame
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29591 static swig_type_info _swigt__p_wxPyPreviewFrame
[] = {{"_p_wxPyPreviewFrame", 0, "wxPyPreviewFrame *", 0, 0, 0, 0},{"_p_wxPyPreviewFrame", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29592 static swig_type_info _swigt__p_wxPyPanel
[] = {{"_p_wxPyPanel", 0, "wxPyPanel *", 0, 0, 0, 0},{"_p_wxPyPanel", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29593 static swig_type_info _swigt__p_wxMenu
[] = {{"_p_wxMenu", 0, "wxMenu *", 0, 0, 0, 0},{"_p_wxMenu", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29594 static swig_type_info _swigt__p_wxFontData
[] = {{"_p_wxFontData", 0, "wxFontData *", 0, 0, 0, 0},{"_p_wxFontData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29595 static swig_type_info _swigt__p_wxEvent
[] = {{"_p_wxEvent", 0, "wxEvent *", 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxEvent", 0, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxDateEvent", _p_wxDateEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", _p_wxTaskBarIconEventTo_p_wxEvent
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29596 static swig_type_info _swigt__p_wxPrintData
[] = {{"_p_wxPrintData", 0, "wxPrintData *", 0, 0, 0, 0},{"_p_wxPrintData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29597 static swig_type_info _swigt__p_wxTaskBarIcon
[] = {{"_p_wxTaskBarIcon", 0, "wxTaskBarIcon *", 0, 0, 0, 0},{"_p_wxTaskBarIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29598 static swig_type_info _swigt__p_wxPyTaskBarIcon
[] = {{"_p_wxPyTaskBarIcon", 0, "wxPyTaskBarIcon *", 0, 0, 0, 0},{"_p_wxPyTaskBarIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29599 static swig_type_info _swigt__p_wxIconBundle
[] = {{"_p_wxIconBundle", 0, "wxIconBundle *", 0, 0, 0, 0},{"_p_wxIconBundle", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29600 static swig_type_info _swigt__p_wxLayoutAlgorithm
[] = {{"_p_wxLayoutAlgorithm", 0, "wxLayoutAlgorithm *", 0, 0, 0, 0},{"_p_wxLayoutAlgorithm", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29601 static swig_type_info _swigt__p_wxFindDialogEvent
[] = {{"_p_wxFindDialogEvent", 0, "wxFindDialogEvent *", 0, 0, 0, 0},{"_p_wxFindDialogEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29602 static swig_type_info _swigt__p_wxPreviewCanvas
[] = {{"_p_wxPreviewCanvas", 0, "wxPreviewCanvas *", 0, 0, 0, 0},{"_p_wxPreviewCanvas", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29603 static swig_type_info _swigt__p_wxFont
[] = {{"_p_wxFont", 0, "wxFont *", 0, 0, 0, 0},{"_p_wxFont", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29604 static swig_type_info _swigt__p_wxSplitterEvent
[] = {{"_p_wxSplitterEvent", 0, "wxSplitterEvent *", 0, 0, 0, 0},{"_p_wxSplitterEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29605 static swig_type_info _swigt__p_wxRegion
[] = {{"_p_wxRegion", 0, "wxRegion *", 0, 0, 0, 0},{"_p_wxRegion", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29606 static swig_type_info _swigt__ptrdiff_t
[] = {{"_ptrdiff_t", 0, "ptrdiff_t", 0, 0, 0, 0},{"_ptrdiff_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29607 static swig_type_info _swigt__std__ptrdiff_t
[] = {{"_std__ptrdiff_t", 0, "std::ptrdiff_t", 0, 0, 0, 0},{"_std__ptrdiff_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29608 static swig_type_info _swigt__p_wxFindReplaceData
[] = {{"_p_wxFindReplaceData", 0, "wxFindReplaceData *", 0, 0, 0, 0},{"_p_wxFindReplaceData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29609 static swig_type_info _swigt__p_int
[] = {{"_p_int", 0, "int *", 0, 0, 0, 0},{"_p_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29610 static swig_type_info _swigt__p_wxSize
[] = {{"_p_wxSize", 0, "wxSize *", 0, 0, 0, 0},{"_p_wxSize", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29611 static swig_type_info _swigt__p_wxDC
[] = {{"_p_wxDC", 0, "wxDC *", 0, 0, 0, 0},{"_p_wxDC", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29612 static swig_type_info _swigt__p_wxIcon
[] = {{"_p_wxIcon", 0, "wxIcon *", 0, 0, 0, 0},{"_p_wxIcon", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29613 static swig_type_info _swigt__p_wxVisualAttributes
[] = {{"_p_wxVisualAttributes", 0, "wxVisualAttributes *", 0, 0, 0, 0},{"_p_wxVisualAttributes", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29614 static swig_type_info _swigt__p_wxMDIChildFrame
[] = {{"_p_wxMDIChildFrame", 0, "wxMDIChildFrame *", 0, 0, 0, 0},{"_p_wxMDIChildFrame", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29615 static swig_type_info _swigt__p_wxColourData
[] = {{"_p_wxColourData", 0, "wxColourData *", 0, 0, 0, 0},{"_p_wxColourData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29616 static swig_type_info _swigt__p_wxNotifyEvent
[] = {{"_p_wxNotifyEvent", 0, "wxNotifyEvent *", 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxNotifyEvent
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29617 static swig_type_info _swigt__p_wxPyWindow
[] = {{"_p_wxPyWindow", 0, "wxPyWindow *", 0, 0, 0, 0},{"_p_wxPyWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29618 static swig_type_info _swigt__p_form_ops_t
[] = {{"_p_form_ops_t", 0, "enum form_ops_t *|form_ops_t *", 0, 0, 0, 0},{"_p_form_ops_t", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29619 static swig_type_info _swigt__p_wxSplashScreen
[] = {{"_p_wxSplashScreen", 0, "wxSplashScreen *", 0, 0, 0, 0},{"_p_wxSplashScreen", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29620 static swig_type_info _swigt__p_wxPasswordEntryDialog
[] = {{"_p_wxPasswordEntryDialog", 0, "wxPasswordEntryDialog *", 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29621 static swig_type_info _swigt__p_wxSingleChoiceDialog
[] = {{"_p_wxSingleChoiceDialog", 0, "wxSingleChoiceDialog *", 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29622 static swig_type_info _swigt__p_wxMultiChoiceDialog
[] = {{"_p_wxMultiChoiceDialog", 0, "wxMultiChoiceDialog *", 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29623 static swig_type_info _swigt__p_wxFileDialog
[] = {{"_p_wxFileDialog", 0, "wxFileDialog *", 0, 0, 0, 0},{"_p_wxFileDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29624 static swig_type_info _swigt__p_wxTextEntryDialog
[] = {{"_p_wxTextEntryDialog", 0, "wxTextEntryDialog *", 0, 0, 0, 0},{"_p_wxTextEntryDialog", 0, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxTextEntryDialog
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29625 static swig_type_info _swigt__p_wxMessageDialog
[] = {{"_p_wxMessageDialog", 0, "wxMessageDialog *", 0, 0, 0, 0},{"_p_wxMessageDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29626 static swig_type_info _swigt__p_wxProgressDialog
[] = {{"_p_wxProgressDialog", 0, "wxProgressDialog *", 0, 0, 0, 0},{"_p_wxProgressDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29627 static swig_type_info _swigt__p_wxFindReplaceDialog
[] = {{"_p_wxFindReplaceDialog", 0, "wxFindReplaceDialog *", 0, 0, 0, 0},{"_p_wxFindReplaceDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29628 static swig_type_info _swigt__p_wxPrinter
[] = {{"_p_wxPrinter", 0, "wxPrinter *", 0, 0, 0, 0},{"_p_wxPrinter", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29629 static swig_type_info _swigt__p_wxArrayInt
[] = {{"_p_wxArrayInt", 0, "wxArrayInt *", 0, 0, 0, 0},{"_p_wxArrayInt", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29630 static swig_type_info _swigt__p_wxDuplexMode
[] = {{"_p_wxDuplexMode", 0, "enum wxDuplexMode *|wxDuplexMode *", 0, 0, 0, 0},{"_p_wxDuplexMode", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29631 static swig_type_info _swigt__p_wxEvtHandler
[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", 0, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyTaskBarIcon", _p_wxPyTaskBarIconTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29632 static swig_type_info _swigt__p_wxCalculateLayoutEvent
[] = {{"_p_wxCalculateLayoutEvent", 0, "wxCalculateLayoutEvent *", 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29633 static swig_type_info _swigt__p_wxPyHtmlListBox
[] = {{"_p_wxPyHtmlListBox", 0, "wxPyHtmlListBox *", 0, 0, 0, 0},{"_p_wxPyHtmlListBox", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29634 static swig_type_info _swigt__p_wxPyVListBox
[] = {{"_p_wxPyVListBox", 0, "wxPyVListBox *", 0, 0, 0, 0},{"_p_wxPyVListBox", 0, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxPyVListBox
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29635 static swig_type_info _swigt__p_wxRect
[] = {{"_p_wxRect", 0, "wxRect *", 0, 0, 0, 0},{"_p_wxRect", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29636 static swig_type_info _swigt__p_wxStdDialogButtonSizer
[] = {{"_p_wxStdDialogButtonSizer", 0, "wxStdDialogButtonSizer *", 0, 0, 0, 0},{"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29637 static swig_type_info _swigt__p_char
[] = {{"_p_char", 0, "char *", 0, 0, 0, 0},{"_p_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29638 static swig_type_info _swigt__p_wxMiniFrame
[] = {{"_p_wxMiniFrame", 0, "wxMiniFrame *", 0, 0, 0, 0},{"_p_wxMiniFrame", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29639 static swig_type_info _swigt__p_wxFrame
[] = {{"_p_wxFrame", 0, "wxFrame *", 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxFrame", 0, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxFrame
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxFrame
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29640 static swig_type_info _swigt__p_wxPyPrintout
[] = {{"_p_wxPyPrintout", 0, "wxPyPrintout *", 0, 0, 0, 0},{"_p_wxPyPrintout", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29641 static swig_type_info _swigt__p_wxTaskBarIconEvent
[] = {{"_p_wxTaskBarIconEvent", 0, "wxTaskBarIconEvent *", 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29642 static swig_type_info _swigt__p_wxScrollWinEvent
[] = {{"_p_wxScrollWinEvent", 0, "wxScrollWinEvent *", 0, 0, 0, 0},{"_p_wxScrollWinEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29643 static swig_type_info _swigt__p_wxPaperSize
[] = {{"_p_wxPaperSize", 0, "enum wxPaperSize *|wxPaperSize *", 0, 0, 0, 0},{"_p_wxPaperSize", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29644 static swig_type_info _swigt__p_wxStatusBar
[] = {{"_p_wxStatusBar", 0, "wxStatusBar *", 0, 0, 0, 0},{"_p_wxStatusBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29645 static swig_type_info _swigt__p_wxMDIParentFrame
[] = {{"_p_wxMDIParentFrame", 0, "wxMDIParentFrame *", 0, 0, 0, 0},{"_p_wxMDIParentFrame", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29646 static swig_type_info _swigt__p_wxPoint
[] = {{"_p_wxPoint", 0, "wxPoint *", 0, 0, 0, 0},{"_p_wxPoint", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29647 static swig_type_info _swigt__p_wxObject
[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFontData", _p_wxFontDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintData", _p_wxPrintDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyTaskBarIcon", _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxLayoutAlgorithm", _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceData", _p_wxFindReplaceDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourData", _p_wxColourDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrinter", _p_wxPrinterTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIdleEvent", _p_wxIdleEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxQueryNewPaletteEvent", _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMaximizeEvent", _p_wxMaximizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIconizeEvent", _p_wxIconizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDateEvent", _p_wxDateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStdDialogButtonSizer", _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintout", _p_wxPyPrintoutTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintPreview", _p_wxPrintPreviewTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintPreview", _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuEvent", _p_wxMenuEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCloseEvent", _p_wxCloseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMouseEvent", _p_wxMouseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEraseEvent", _p_wxEraseEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialogData", _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintDialogData", _p_wxPrintDialogDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29648 static swig_type_info _swigt__p_unsigned_long
[] = {{"_p_unsigned_long", 0, "unsigned long *|wxUIntPtr *", 0, 0, 0, 0},{"_p_unsigned_long", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29649 static swig_type_info _swigt__p_wxTipWindow
[] = {{"_p_wxTipWindow", 0, "wxTipWindow *", 0, 0, 0, 0},{"_p_wxTipWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29650 static swig_type_info _swigt__p_wxSashLayoutWindow
[] = {{"_p_wxSashLayoutWindow", 0, "wxSashLayoutWindow *", 0, 0, 0, 0},{"_p_wxSashLayoutWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29651 static swig_type_info _swigt__p_wxSplitterWindow
[] = {{"_p_wxSplitterWindow", 0, "wxSplitterWindow *", 0, 0, 0, 0},{"_p_wxSplitterWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29652 static swig_type_info _swigt__p_wxSplashScreenWindow
[] = {{"_p_wxSplashScreenWindow", 0, "wxSplashScreenWindow *", 0, 0, 0, 0},{"_p_wxSplashScreenWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29653 static swig_type_info _swigt__p_wxPyVScrolledWindow
[] = {{"_p_wxPyVScrolledWindow", 0, "wxPyVScrolledWindow *", 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", 0, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxPyVScrolledWindow
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxPyVScrolledWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29654 static swig_type_info _swigt__p_wxPyPopupTransientWindow
[] = {{"_p_wxPyPopupTransientWindow", 0, "wxPyPopupTransientWindow *", 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", 0, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxPyPopupTransientWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29655 static swig_type_info _swigt__p_wxPopupWindow
[] = {{"_p_wxPopupWindow", 0, "wxPopupWindow *", 0, 0, 0, 0},{"_p_wxPopupWindow", 0, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxPopupWindow
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxPopupWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29656 static swig_type_info _swigt__p_wxSashWindow
[] = {{"_p_wxSashWindow", 0, "wxSashWindow *", 0, 0, 0, 0},{"_p_wxSashWindow", 0, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxSashWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29657 static swig_type_info _swigt__p_wxTopLevelWindow
[] = {{"_p_wxTopLevelWindow", 0, "wxTopLevelWindow *", 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", 0, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29658 static swig_type_info _swigt__p_wxWindow
[] = {{"_p_wxWindow", 0, "wxWindow *", 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxWindow", 0, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29659 static swig_type_info _swigt__p_wxScrolledWindow
[] = {{"_p_wxScrolledWindow", 0, "wxScrolledWindow *", 0, 0, 0, 0},{"_p_wxScrolledWindow", 0, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxScrolledWindow
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxScrolledWindow
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29660 static swig_type_info _swigt__p_wxMenuBar
[] = {{"_p_wxMenuBar", 0, "wxMenuBar *", 0, 0, 0, 0},{"_p_wxMenuBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29661 static swig_type_info _swigt__p_wxMDIClientWindow
[] = {{"_p_wxMDIClientWindow", 0, "wxMDIClientWindow *", 0, 0, 0, 0},{"_p_wxMDIClientWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29662 static swig_type_info _swigt__p_wxPyScrolledWindow
[] = {{"_p_wxPyScrolledWindow", 0, "wxPyScrolledWindow *", 0, 0, 0, 0},{"_p_wxPyScrolledWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29663 static swig_type_info _swigt__p_wxPrintPreview
[] = {{"_p_wxPrintPreview", 0, "wxPrintPreview *", 0, 0, 0, 0},{"_p_wxPrintPreview", 0, 0, 0, 0, 0, 0},{"_p_wxPyPrintPreview", _p_wxPyPrintPreviewTo_p_wxPrintPreview
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29664 static swig_type_info _swigt__p_wxSashEvent
[] = {{"_p_wxSashEvent", 0, "wxSashEvent *", 0, 0, 0, 0},{"_p_wxSashEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29665 static swig_type_info _swigt__p_wxString
[] = {{"_p_wxString", 0, "wxString *", 0, 0, 0, 0},{"_p_wxString", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29666 static swig_type_info _swigt__p_wxPyPrintPreview
[] = {{"_p_wxPyPrintPreview", 0, "wxPyPrintPreview *", 0, 0, 0, 0},{"_p_wxPyPrintPreview", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29667 static swig_type_info _swigt__p_wxDirDialog
[] = {{"_p_wxDirDialog", 0, "wxDirDialog *", 0, 0, 0, 0},{"_p_wxDirDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29668 static swig_type_info _swigt__p_wxColourDialog
[] = {{"_p_wxColourDialog", 0, "wxColourDialog *", 0, 0, 0, 0},{"_p_wxColourDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29669 static swig_type_info _swigt__p_wxDialog
[] = {{"_p_wxDialog", 0, "wxDialog *", 0, 0, 0, 0},{"_p_wxDialog", 0, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxDialog
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29670 static swig_type_info _swigt__p_wxPanel
[] = {{"_p_wxPanel", 0, "wxPanel *", 0, 0, 0, 0},{"_p_wxPanel", 0, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyVListBox", _p_wxPyVListBoxTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlListBox", _p_wxPyHtmlListBoxTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxPanel
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxPanel
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29671 static swig_type_info _swigt__p_wxFontDialog
[] = {{"_p_wxFontDialog", 0, "wxFontDialog *", 0, 0, 0, 0},{"_p_wxFontDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29672 static swig_type_info _swigt__p_wxPageSetupDialog
[] = {{"_p_wxPageSetupDialog", 0, "wxPageSetupDialog *", 0, 0, 0, 0},{"_p_wxPageSetupDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29673 static swig_type_info _swigt__p_wxPrintDialog
[] = {{"_p_wxPrintDialog", 0, "wxPrintDialog *", 0, 0, 0, 0},{"_p_wxPrintDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29674 static swig_type_info _swigt__p_wxFileSystem
[] = {{"_p_wxFileSystem", 0, "wxFileSystem *", 0, 0, 0, 0},{"_p_wxFileSystem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29675 static swig_type_info _swigt__p_wxBitmap
[] = {{"_p_wxBitmap", 0, "wxBitmap *", 0, 0, 0, 0},{"_p_wxBitmap", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29676 static swig_type_info _swigt__unsigned_int
[] = {{"_unsigned_int", 0, "unsigned int|std::size_t", 0, 0, 0, 0},{"_unsigned_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29677 static swig_type_info _swigt__p_unsigned_int
[] = {{"_p_unsigned_int", 0, "unsigned int *|time_t *", 0, 0, 0, 0},{"_p_unsigned_int", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29678 static swig_type_info _swigt__p_unsigned_char
[] = {{"_p_unsigned_char", 0, "unsigned char *|byte *", 0, 0, 0, 0},{"_p_unsigned_char", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29679 static swig_type_info _swigt__p_wxCommandEvent
[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowCreateEvent", _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxDateEvent", _p_wxDateEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29680 static swig_type_info _swigt__p_wxPreviewControlBar
[] = {{"_p_wxPreviewControlBar", 0, "wxPreviewControlBar *", 0, 0, 0, 0},{"_p_wxPreviewControlBar", 0, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxPreviewControlBar
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29681 static swig_type_info _swigt__p_wxPyPreviewControlBar
[] = {{"_p_wxPyPreviewControlBar", 0, "wxPyPreviewControlBar *", 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29682 static swig_type_info _swigt__p_wxColour
[] = {{"_p_wxColour", 0, "wxColour *", 0, 0, 0, 0},{"_p_wxColour", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29683 static swig_type_info _swigt__p_wxToolBar
[] = {{"_p_wxToolBar", 0, "wxToolBar *", 0, 0, 0, 0},{"_p_wxToolBar", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29684 static swig_type_info _swigt__p_wxPageSetupDialogData
[] = {{"_p_wxPageSetupDialogData", 0, "wxPageSetupDialogData *", 0, 0, 0, 0},{"_p_wxPageSetupDialogData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29685 static swig_type_info _swigt__p_wxPrintDialogData
[] = {{"_p_wxPrintDialogData", 0, "wxPrintDialogData *", 0, 0, 0, 0},{"_p_wxPrintDialogData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
29687 static swig_type_info 
*swig_types_initial
[] = { 
29688 _swigt__p_wxQueryLayoutInfoEvent
,  
29689 _swigt__p_wxPreviewFrame
,  
29690 _swigt__p_wxPyPreviewFrame
,  
29691 _swigt__p_wxPyPanel
,  
29693 _swigt__p_wxFontData
,  
29695 _swigt__p_wxPrintData
,  
29696 _swigt__p_wxTaskBarIcon
,  
29697 _swigt__p_wxPyTaskBarIcon
,  
29698 _swigt__p_wxIconBundle
,  
29699 _swigt__p_wxLayoutAlgorithm
,  
29700 _swigt__p_wxFindDialogEvent
,  
29701 _swigt__p_wxPreviewCanvas
,  
29703 _swigt__p_wxSplitterEvent
,  
29704 _swigt__p_wxRegion
,  
29706 _swigt__std__ptrdiff_t
,  
29707 _swigt__p_wxFindReplaceData
,  
29712 _swigt__p_wxVisualAttributes
,  
29713 _swigt__p_wxMDIChildFrame
,  
29714 _swigt__p_wxColourData
,  
29715 _swigt__p_wxNotifyEvent
,  
29716 _swigt__p_wxPyWindow
,  
29717 _swigt__p_form_ops_t
,  
29718 _swigt__p_wxSplashScreen
,  
29719 _swigt__p_wxPasswordEntryDialog
,  
29720 _swigt__p_wxSingleChoiceDialog
,  
29721 _swigt__p_wxMultiChoiceDialog
,  
29722 _swigt__p_wxFileDialog
,  
29723 _swigt__p_wxTextEntryDialog
,  
29724 _swigt__p_wxMessageDialog
,  
29725 _swigt__p_wxProgressDialog
,  
29726 _swigt__p_wxFindReplaceDialog
,  
29727 _swigt__p_wxPrinter
,  
29728 _swigt__p_wxArrayInt
,  
29729 _swigt__p_wxDuplexMode
,  
29730 _swigt__p_wxEvtHandler
,  
29731 _swigt__p_wxCalculateLayoutEvent
,  
29732 _swigt__p_wxPyHtmlListBox
,  
29733 _swigt__p_wxPyVListBox
,  
29735 _swigt__p_wxStdDialogButtonSizer
,  
29737 _swigt__p_wxMiniFrame
,  
29739 _swigt__p_wxPyPrintout
,  
29740 _swigt__p_wxTaskBarIconEvent
,  
29741 _swigt__p_wxScrollWinEvent
,  
29742 _swigt__p_wxPaperSize
,  
29743 _swigt__p_wxStatusBar
,  
29744 _swigt__p_wxMDIParentFrame
,  
29746 _swigt__p_wxObject
,  
29747 _swigt__p_unsigned_long
,  
29748 _swigt__p_wxTipWindow
,  
29749 _swigt__p_wxSashLayoutWindow
,  
29750 _swigt__p_wxSplitterWindow
,  
29751 _swigt__p_wxSplashScreenWindow
,  
29752 _swigt__p_wxPyVScrolledWindow
,  
29753 _swigt__p_wxPyPopupTransientWindow
,  
29754 _swigt__p_wxPopupWindow
,  
29755 _swigt__p_wxSashWindow
,  
29756 _swigt__p_wxTopLevelWindow
,  
29757 _swigt__p_wxWindow
,  
29758 _swigt__p_wxScrolledWindow
,  
29759 _swigt__p_wxMenuBar
,  
29760 _swigt__p_wxMDIClientWindow
,  
29761 _swigt__p_wxPyScrolledWindow
,  
29762 _swigt__p_wxPrintPreview
,  
29763 _swigt__p_wxSashEvent
,  
29764 _swigt__p_wxString
,  
29765 _swigt__p_wxPyPrintPreview
,  
29766 _swigt__p_wxDirDialog
,  
29767 _swigt__p_wxColourDialog
,  
29768 _swigt__p_wxDialog
,  
29770 _swigt__p_wxFontDialog
,  
29771 _swigt__p_wxPageSetupDialog
,  
29772 _swigt__p_wxPrintDialog
,  
29773 _swigt__p_wxFileSystem
,  
29774 _swigt__p_wxBitmap
,  
29775 _swigt__unsigned_int
,  
29776 _swigt__p_unsigned_int
,  
29777 _swigt__p_unsigned_char
,  
29778 _swigt__p_wxCommandEvent
,  
29779 _swigt__p_wxPreviewControlBar
,  
29780 _swigt__p_wxPyPreviewControlBar
,  
29781 _swigt__p_wxColour
,  
29782 _swigt__p_wxToolBar
,  
29783 _swigt__p_wxPageSetupDialogData
,  
29784 _swigt__p_wxPrintDialogData
,  
29789 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
29791 static swig_const_info swig_const_table
[] = { 
29792 {0, 0, 0, 0.0, 0, 0}}; 
29803     /* Python-specific SWIG API */ 
29804 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
29805 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
29806 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
29808     /* ----------------------------------------------------------------------------- 
29809      * global variable support code. 
29810      * ----------------------------------------------------------------------------- */ 
29812     typedef struct swig_globalvar 
{ 
29813         char       *name
;                  /* Name of global variable */ 
29814         PyObject 
*(*get_attr
)();           /* Return the current value */ 
29815         int       (*set_attr
)(PyObject 
*); /* Set the value */ 
29816         struct swig_globalvar 
*next
; 
29819     typedef struct swig_varlinkobject 
{ 
29821         swig_globalvar 
*vars
; 
29822     } swig_varlinkobject
; 
29825     swig_varlink_repr(swig_varlinkobject 
*v
) { 
29827         return PyString_FromString("<Swig global variables>"); 
29831     swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int flags
) { 
29832         swig_globalvar  
*var
; 
29834         fprintf(fp
,"Swig global variables { "); 
29835         for (var 
= v
->vars
; var
; var
=var
->next
) { 
29836             fprintf(fp
,"%s", var
->name
); 
29837             if (var
->next
) fprintf(fp
,", "); 
29839         fprintf(fp
," }\n"); 
29844     swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
29845         swig_globalvar 
*var 
= v
->vars
; 
29847             if (strcmp(var
->name
,n
) == 0) { 
29848                 return (*var
->get_attr
)(); 
29852         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
29857     swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
29858         swig_globalvar 
*var 
= v
->vars
; 
29860             if (strcmp(var
->name
,n
) == 0) { 
29861                 return (*var
->set_attr
)(p
); 
29865         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
29869     static PyTypeObject varlinktype 
= { 
29870         PyObject_HEAD_INIT(0)               
29871         0,                                  /* Number of items in variable part (ob_size) */ 
29872         (char *)"swigvarlink",              /* Type name (tp_name) */ 
29873         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
29874         0,                                  /* Itemsize (tp_itemsize) */ 
29875         0,                                  /* Deallocator (tp_dealloc) */  
29876         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
29877         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
29878         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
29879         0,                                  /* tp_compare */ 
29880         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
29881         0,                                  /* tp_as_number */ 
29882         0,                                  /* tp_as_sequence */ 
29883         0,                                  /* tp_as_mapping */ 
29887         0,                                  /* tp_getattro */ 
29888         0,                                  /* tp_setattro */ 
29889         0,                                  /* tp_as_buffer */ 
29892 #if PY_VERSION_HEX >= 0x02000000 
29893         0,                                  /* tp_traverse */ 
29896 #if PY_VERSION_HEX >= 0x02010000 
29897         0,                                  /* tp_richcompare */ 
29898         0,                                  /* tp_weaklistoffset */ 
29900 #if PY_VERSION_HEX >= 0x02020000 
29901         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
29903 #if PY_VERSION_HEX >= 0x02030000 
29906 #ifdef COUNT_ALLOCS 
29907         0,0,0,0                             /* tp_alloc -> tp_next */ 
29911     /* Create a variable linking object for use later */ 
29913     SWIG_Python_newvarlink(void) { 
29914         swig_varlinkobject 
*result 
= 0; 
29915         result 
= PyMem_NEW(swig_varlinkobject
,1); 
29916         varlinktype
.ob_type 
= &PyType_Type
;    /* Patch varlinktype into a PyType */ 
29917         result
->ob_type 
= &varlinktype
; 
29919         result
->ob_refcnt 
= 0; 
29920         Py_XINCREF((PyObject 
*) result
); 
29921         return ((PyObject
*) result
); 
29925     SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
29926         swig_varlinkobject 
*v
; 
29927         swig_globalvar 
*gv
; 
29928         v
= (swig_varlinkobject 
*) p
; 
29929         gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
29930         gv
->name 
= (char *) malloc(strlen(name
)+1); 
29931         strcpy(gv
->name
,name
); 
29932         gv
->get_attr 
= get_attr
; 
29933         gv
->set_attr 
= set_attr
; 
29934         gv
->next 
= v
->vars
; 
29938     /* ----------------------------------------------------------------------------- 
29939      * constants/methods manipulation 
29940      * ----------------------------------------------------------------------------- */ 
29942     /* Install Constants */ 
29944     SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
29947         for (i 
= 0; constants
[i
].type
; i
++) { 
29948             switch(constants
[i
].type
) { 
29950                 obj 
= PyInt_FromLong(constants
[i
].lvalue
); 
29952                 case SWIG_PY_FLOAT
: 
29953                 obj 
= PyFloat_FromDouble(constants
[i
].dvalue
); 
29955                 case SWIG_PY_STRING
: 
29956                 if (constants
[i
].pvalue
) { 
29957                     obj 
= PyString_FromString((char *) constants
[i
].pvalue
); 
29959                     Py_INCREF(Py_None
); 
29963                 case SWIG_PY_POINTER
: 
29964                 obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
29966                 case SWIG_PY_BINARY
: 
29967                 obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
29974                 PyDict_SetItemString(d
,constants
[i
].name
,obj
); 
29980     /* -----------------------------------------------------------------------------*/ 
29981     /* Fix SwigMethods to carry the callback ptrs when needed */ 
29982     /* -----------------------------------------------------------------------------*/ 
29985     SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
29986     swig_const_info 
*const_table
, 
29987     swig_type_info 
**types
, 
29988     swig_type_info 
**types_initial
) { 
29990         for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
29991             char *c 
= methods
[i
].ml_doc
; 
29992             if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
29994                 swig_const_info 
*ci 
= 0; 
29995                 char *name 
= c 
+ 10; 
29996                 for (j 
= 0; const_table
[j
].type
; j
++) { 
29997                     if (strncmp(const_table
[j
].name
, name
,  
29998                     strlen(const_table
[j
].name
)) == 0) { 
29999                         ci 
= &(const_table
[j
]); 
30004                     size_t shift 
= (ci
->ptype
) - types
; 
30005                     swig_type_info 
*ty 
= types_initial
[shift
]; 
30006                     size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
30007                     size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
30008                     char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
30010                     void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue
: (void *)(ci
->lvalue
); 
30011                     strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
30013                     strncpy(buff
, "swig_ptr: ", 10); 
30015                     SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
30016                     methods
[i
].ml_doc 
= ndoc
; 
30022     /* -----------------------------------------------------------------------------* 
30023      *  Initialize type list 
30024      * -----------------------------------------------------------------------------*/ 
30026 #if PY_MAJOR_VERSION < 2 
30027     /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
30028     is copied out of Python/modsupport.c in python version 2.3.4 */ 
30030     PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
30033         if (!PyModule_Check(m
)) { 
30034             PyErr_SetString(PyExc_TypeError
, 
30035             "PyModule_AddObject() needs module as first arg"); 
30039             PyErr_SetString(PyExc_TypeError
, 
30040             "PyModule_AddObject() needs non-NULL value"); 
30044         dict 
= PyModule_GetDict(m
); 
30045         if (dict 
== NULL
) { 
30046             /* Internal error -- modules must have a dict! */ 
30047             PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
30048             PyModule_GetName(m
)); 
30051         if (PyDict_SetItemString(dict
, name
, o
)) 
30058     static swig_type_info 
** 
30059     SWIG_Python_SetTypeListHandle(swig_type_info 
**type_list_handle
) { 
30060         static PyMethodDef swig_empty_runtime_method_table
[] = { 
30062                 NULL
, NULL
, 0, NULL
 
30066         PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
30067         swig_empty_runtime_method_table
); 
30068         PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) type_list_handle
, NULL
); 
30069         if (pointer 
&& module) { 
30070             PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
30072         return type_list_handle
; 
30075     static swig_type_info 
** 
30076     SWIG_Python_LookupTypePointer(swig_type_info 
**type_list_handle
) { 
30077         swig_type_info 
**type_pointer
; 
30079         /* first check if module already created */ 
30080         type_pointer 
= SWIG_Python_GetTypeListHandle(); 
30081         if (type_pointer
) { 
30082             return type_pointer
; 
30084             /* create a new module and variable */ 
30085             return SWIG_Python_SetTypeListHandle(type_list_handle
); 
30093 /* -----------------------------------------------------------------------------* 
30094  *  Partial Init method 
30095  * -----------------------------------------------------------------------------*/ 
30097 #ifdef SWIG_LINK_RUNTIME 
30101 SWIGEXPORT(void *) SWIG_ReturnGlobalTypeList(void *); 
30107 SWIGEXPORT(void) SWIG_init(void) { 
30108     static PyObject 
*SWIG_globals 
= 0;  
30109     static int       typeinit 
= 0; 
30112     if (!SWIG_globals
) SWIG_globals 
= SWIG_newvarlink(); 
30114     /* Fix SwigMethods to carry the callback ptrs when needed */ 
30115     SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_types_initial
); 
30117     m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
30118     d 
= PyModule_GetDict(m
); 
30121 #ifdef SWIG_LINK_RUNTIME 
30122         swig_type_list_handle 
= (swig_type_info 
**) SWIG_ReturnGlobalTypeList(swig_type_list_handle
); 
30124 #  ifndef SWIG_STATIC_RUNTIME 
30125         swig_type_list_handle 
= SWIG_Python_LookupTypePointer(swig_type_list_handle
); 
30128         for (i 
= 0; swig_types_initial
[i
]; i
++) { 
30129             swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]); 
30133     SWIG_InstallConstants(d
,swig_const_table
); 
30135     PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
); 
30136     SWIG_addvarlink(SWIG_globals
,(char*)"FrameNameStr",_wrap_FrameNameStr_get
, _wrap_FrameNameStr_set
); 
30137     SWIG_addvarlink(SWIG_globals
,(char*)"DialogNameStr",_wrap_DialogNameStr_get
, _wrap_DialogNameStr_set
); 
30138     SWIG_addvarlink(SWIG_globals
,(char*)"StatusLineNameStr",_wrap_StatusLineNameStr_get
, _wrap_StatusLineNameStr_set
); 
30139     SWIG_addvarlink(SWIG_globals
,(char*)"ToolBarNameStr",_wrap_ToolBarNameStr_get
, _wrap_ToolBarNameStr_set
); 
30141         PyDict_SetItemString(d
,"STAY_ON_TOP", SWIG_From_int((int)(wxSTAY_ON_TOP
)));  
30144         PyDict_SetItemString(d
,"ICONIZE", SWIG_From_int((int)(wxICONIZE
)));  
30147         PyDict_SetItemString(d
,"MINIMIZE", SWIG_From_int((int)(wxMINIMIZE
)));  
30150         PyDict_SetItemString(d
,"MAXIMIZE", SWIG_From_int((int)(wxMAXIMIZE
)));  
30153         PyDict_SetItemString(d
,"CLOSE_BOX", SWIG_From_int((int)(wxCLOSE_BOX
)));  
30156         PyDict_SetItemString(d
,"THICK_FRAME", SWIG_From_int((int)(wxTHICK_FRAME
)));  
30159         PyDict_SetItemString(d
,"SYSTEM_MENU", SWIG_From_int((int)(wxSYSTEM_MENU
)));  
30162         PyDict_SetItemString(d
,"MINIMIZE_BOX", SWIG_From_int((int)(wxMINIMIZE_BOX
)));  
30165         PyDict_SetItemString(d
,"MAXIMIZE_BOX", SWIG_From_int((int)(wxMAXIMIZE_BOX
)));  
30168         PyDict_SetItemString(d
,"TINY_CAPTION_HORIZ", SWIG_From_int((int)(wxTINY_CAPTION_HORIZ
)));  
30171         PyDict_SetItemString(d
,"TINY_CAPTION_VERT", SWIG_From_int((int)(wxTINY_CAPTION_VERT
)));  
30174         PyDict_SetItemString(d
,"RESIZE_BOX", SWIG_From_int((int)(wxRESIZE_BOX
)));  
30177         PyDict_SetItemString(d
,"RESIZE_BORDER", SWIG_From_int((int)(wxRESIZE_BORDER
)));  
30180         PyDict_SetItemString(d
,"DIALOG_NO_PARENT", SWIG_From_int((int)(wxDIALOG_NO_PARENT
)));  
30183         PyDict_SetItemString(d
,"DEFAULT_FRAME_STYLE", SWIG_From_int((int)(wxDEFAULT_FRAME_STYLE
)));  
30186         PyDict_SetItemString(d
,"DEFAULT_DIALOG_STYLE", SWIG_From_int((int)(wxDEFAULT_DIALOG_STYLE
)));  
30189         PyDict_SetItemString(d
,"FRAME_TOOL_WINDOW", SWIG_From_int((int)(wxFRAME_TOOL_WINDOW
)));  
30192         PyDict_SetItemString(d
,"FRAME_FLOAT_ON_PARENT", SWIG_From_int((int)(wxFRAME_FLOAT_ON_PARENT
)));  
30195         PyDict_SetItemString(d
,"FRAME_NO_WINDOW_MENU", SWIG_From_int((int)(wxFRAME_NO_WINDOW_MENU
)));  
30198         PyDict_SetItemString(d
,"FRAME_NO_TASKBAR", SWIG_From_int((int)(wxFRAME_NO_TASKBAR
)));  
30201         PyDict_SetItemString(d
,"FRAME_SHAPED", SWIG_From_int((int)(wxFRAME_SHAPED
)));  
30204         PyDict_SetItemString(d
,"FRAME_DRAWER", SWIG_From_int((int)(wxFRAME_DRAWER
)));  
30207         PyDict_SetItemString(d
,"FRAME_EX_METAL", SWIG_From_int((int)(wxFRAME_EX_METAL
)));  
30210         PyDict_SetItemString(d
,"DIALOG_EX_METAL", SWIG_From_int((int)(wxDIALOG_EX_METAL
)));  
30213         PyDict_SetItemString(d
,"DIALOG_MODAL", SWIG_From_int((int)(wxDIALOG_MODAL
)));  
30216         PyDict_SetItemString(d
,"DIALOG_MODELESS", SWIG_From_int((int)(wxDIALOG_MODELESS
)));  
30219         PyDict_SetItemString(d
,"USER_COLOURS", SWIG_From_int((int)(wxUSER_COLOURS
)));  
30222         PyDict_SetItemString(d
,"NO_3D", SWIG_From_int((int)(wxNO_3D
)));  
30225         PyDict_SetItemString(d
,"FULLSCREEN_NOMENUBAR", SWIG_From_int((int)(wxFULLSCREEN_NOMENUBAR
)));  
30228         PyDict_SetItemString(d
,"FULLSCREEN_NOTOOLBAR", SWIG_From_int((int)(wxFULLSCREEN_NOTOOLBAR
)));  
30231         PyDict_SetItemString(d
,"FULLSCREEN_NOSTATUSBAR", SWIG_From_int((int)(wxFULLSCREEN_NOSTATUSBAR
)));  
30234         PyDict_SetItemString(d
,"FULLSCREEN_NOBORDER", SWIG_From_int((int)(wxFULLSCREEN_NOBORDER
)));  
30237         PyDict_SetItemString(d
,"FULLSCREEN_NOCAPTION", SWIG_From_int((int)(wxFULLSCREEN_NOCAPTION
)));  
30240         PyDict_SetItemString(d
,"FULLSCREEN_ALL", SWIG_From_int((int)(wxFULLSCREEN_ALL
)));  
30243         PyDict_SetItemString(d
,"TOPLEVEL_EX_DIALOG", SWIG_From_int((int)(wxTOPLEVEL_EX_DIALOG
)));  
30246         PyDict_SetItemString(d
,"USER_ATTENTION_INFO", SWIG_From_int((int)(wxUSER_ATTENTION_INFO
)));  
30249         PyDict_SetItemString(d
,"USER_ATTENTION_ERROR", SWIG_From_int((int)(wxUSER_ATTENTION_ERROR
)));  
30252         PyDict_SetItemString(d
,"SPLASH_CENTRE_ON_PARENT", SWIG_From_int((int)(wxSPLASH_CENTRE_ON_PARENT
)));  
30255         PyDict_SetItemString(d
,"SPLASH_CENTRE_ON_SCREEN", SWIG_From_int((int)(wxSPLASH_CENTRE_ON_SCREEN
)));  
30258         PyDict_SetItemString(d
,"SPLASH_NO_CENTRE", SWIG_From_int((int)(wxSPLASH_NO_CENTRE
)));  
30261         PyDict_SetItemString(d
,"SPLASH_TIMEOUT", SWIG_From_int((int)(wxSPLASH_TIMEOUT
)));  
30264         PyDict_SetItemString(d
,"SPLASH_NO_TIMEOUT", SWIG_From_int((int)(wxSPLASH_NO_TIMEOUT
)));  
30267         PyDict_SetItemString(d
,"SB_NORMAL", SWIG_From_int((int)(wxSB_NORMAL
)));  
30270         PyDict_SetItemString(d
,"SB_FLAT", SWIG_From_int((int)(wxSB_FLAT
)));  
30273         PyDict_SetItemString(d
,"SB_RAISED", SWIG_From_int((int)(wxSB_RAISED
)));  
30275     SWIG_addvarlink(SWIG_globals
,(char*)"SplitterNameStr",_wrap_SplitterNameStr_get
, _wrap_SplitterNameStr_set
); 
30277         PyDict_SetItemString(d
,"SP_NOBORDER", SWIG_From_int((int)(wxSP_NOBORDER
)));  
30280         PyDict_SetItemString(d
,"SP_NOSASH", SWIG_From_int((int)(wxSP_NOSASH
)));  
30283         PyDict_SetItemString(d
,"SP_PERMIT_UNSPLIT", SWIG_From_int((int)(wxSP_PERMIT_UNSPLIT
)));  
30286         PyDict_SetItemString(d
,"SP_LIVE_UPDATE", SWIG_From_int((int)(wxSP_LIVE_UPDATE
)));  
30289         PyDict_SetItemString(d
,"SP_3DSASH", SWIG_From_int((int)(wxSP_3DSASH
)));  
30292         PyDict_SetItemString(d
,"SP_3DBORDER", SWIG_From_int((int)(wxSP_3DBORDER
)));  
30295         PyDict_SetItemString(d
,"SP_NO_XP_THEME", SWIG_From_int((int)(wxSP_NO_XP_THEME
)));  
30298         PyDict_SetItemString(d
,"SP_BORDER", SWIG_From_int((int)(wxSP_BORDER
)));  
30301         PyDict_SetItemString(d
,"SP_3D", SWIG_From_int((int)(wxSP_3D
)));  
30304         PyDict_SetItemString(d
,"SPLIT_HORIZONTAL", SWIG_From_int((int)(wxSPLIT_HORIZONTAL
)));  
30307         PyDict_SetItemString(d
,"SPLIT_VERTICAL", SWIG_From_int((int)(wxSPLIT_VERTICAL
)));  
30310         PyDict_SetItemString(d
,"SPLIT_DRAG_NONE", SWIG_From_int((int)(wxSPLIT_DRAG_NONE
)));  
30313         PyDict_SetItemString(d
,"SPLIT_DRAG_DRAGGING", SWIG_From_int((int)(wxSPLIT_DRAG_DRAGGING
)));  
30316         PyDict_SetItemString(d
,"SPLIT_DRAG_LEFT_DOWN", SWIG_From_int((int)(wxSPLIT_DRAG_LEFT_DOWN
)));  
30318     PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGED
)); 
30319     PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_SASH_POS_CHANGING
)); 
30320     PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_DOUBLECLICKED", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_DOUBLECLICKED
)); 
30321     PyDict_SetItemString(d
, "wxEVT_COMMAND_SPLITTER_UNSPLIT", PyInt_FromLong(wxEVT_COMMAND_SPLITTER_UNSPLIT
)); 
30322     SWIG_addvarlink(SWIG_globals
,(char*)"SashNameStr",_wrap_SashNameStr_get
, _wrap_SashNameStr_set
); 
30323     SWIG_addvarlink(SWIG_globals
,(char*)"SashLayoutNameStr",_wrap_SashLayoutNameStr_get
, _wrap_SashLayoutNameStr_set
); 
30325         PyDict_SetItemString(d
,"SASH_DRAG_NONE", SWIG_From_int((int)(wxSASH_DRAG_NONE
)));  
30328         PyDict_SetItemString(d
,"SASH_DRAG_DRAGGING", SWIG_From_int((int)(wxSASH_DRAG_DRAGGING
)));  
30331         PyDict_SetItemString(d
,"SASH_DRAG_LEFT_DOWN", SWIG_From_int((int)(wxSASH_DRAG_LEFT_DOWN
)));  
30334         PyDict_SetItemString(d
,"SW_NOBORDER", SWIG_From_int((int)(wxSW_NOBORDER
)));  
30337         PyDict_SetItemString(d
,"SW_BORDER", SWIG_From_int((int)(wxSW_BORDER
)));  
30340         PyDict_SetItemString(d
,"SW_3DSASH", SWIG_From_int((int)(wxSW_3DSASH
)));  
30343         PyDict_SetItemString(d
,"SW_3DBORDER", SWIG_From_int((int)(wxSW_3DBORDER
)));  
30346         PyDict_SetItemString(d
,"SW_3D", SWIG_From_int((int)(wxSW_3D
)));  
30349         PyDict_SetItemString(d
,"SASH_TOP", SWIG_From_int((int)(wxSASH_TOP
)));  
30352         PyDict_SetItemString(d
,"SASH_RIGHT", SWIG_From_int((int)(wxSASH_RIGHT
)));  
30355         PyDict_SetItemString(d
,"SASH_BOTTOM", SWIG_From_int((int)(wxSASH_BOTTOM
)));  
30358         PyDict_SetItemString(d
,"SASH_LEFT", SWIG_From_int((int)(wxSASH_LEFT
)));  
30361         PyDict_SetItemString(d
,"SASH_NONE", SWIG_From_int((int)(wxSASH_NONE
)));  
30364         PyDict_SetItemString(d
,"SASH_STATUS_OK", SWIG_From_int((int)(wxSASH_STATUS_OK
)));  
30367         PyDict_SetItemString(d
,"SASH_STATUS_OUT_OF_RANGE", SWIG_From_int((int)(wxSASH_STATUS_OUT_OF_RANGE
)));  
30369     PyDict_SetItemString(d
, "wxEVT_SASH_DRAGGED", PyInt_FromLong(wxEVT_SASH_DRAGGED
)); 
30371         PyDict_SetItemString(d
,"LAYOUT_HORIZONTAL", SWIG_From_int((int)(wxLAYOUT_HORIZONTAL
)));  
30374         PyDict_SetItemString(d
,"LAYOUT_VERTICAL", SWIG_From_int((int)(wxLAYOUT_VERTICAL
)));  
30377         PyDict_SetItemString(d
,"LAYOUT_NONE", SWIG_From_int((int)(wxLAYOUT_NONE
)));  
30380         PyDict_SetItemString(d
,"LAYOUT_TOP", SWIG_From_int((int)(wxLAYOUT_TOP
)));  
30383         PyDict_SetItemString(d
,"LAYOUT_LEFT", SWIG_From_int((int)(wxLAYOUT_LEFT
)));  
30386         PyDict_SetItemString(d
,"LAYOUT_RIGHT", SWIG_From_int((int)(wxLAYOUT_RIGHT
)));  
30389         PyDict_SetItemString(d
,"LAYOUT_BOTTOM", SWIG_From_int((int)(wxLAYOUT_BOTTOM
)));  
30392         PyDict_SetItemString(d
,"LAYOUT_LENGTH_Y", SWIG_From_int((int)(wxLAYOUT_LENGTH_Y
)));  
30395         PyDict_SetItemString(d
,"LAYOUT_LENGTH_X", SWIG_From_int((int)(wxLAYOUT_LENGTH_X
)));  
30398         PyDict_SetItemString(d
,"LAYOUT_MRU_LENGTH", SWIG_From_int((int)(wxLAYOUT_MRU_LENGTH
)));  
30401         PyDict_SetItemString(d
,"LAYOUT_QUERY", SWIG_From_int((int)(wxLAYOUT_QUERY
)));  
30403     PyDict_SetItemString(d
, "wxEVT_QUERY_LAYOUT_INFO", PyInt_FromLong(wxEVT_QUERY_LAYOUT_INFO
)); 
30404     PyDict_SetItemString(d
, "wxEVT_CALCULATE_LAYOUT", PyInt_FromLong(wxEVT_CALCULATE_LAYOUT
)); 
30405     SWIG_addvarlink(SWIG_globals
,(char*)"VListBoxNameStr",_wrap_VListBoxNameStr_get
, _wrap_VListBoxNameStr_set
); 
30407     // Map renamed classes back to their common name for OOR 
30408     wxPyPtrTypeMap_Add("wxHtmlListBox",     "wxPyHtmlListBox"); 
30409     wxPyPtrTypeMap_Add("wxVListBox",        "wxPyVListBox"); 
30410     wxPyPtrTypeMap_Add("wxVScrolledWindow", "wxPyVScrolledWindow"); 
30412     PyDict_SetItemString(d
, "wxEVT_TASKBAR_MOVE", PyInt_FromLong(wxEVT_TASKBAR_MOVE
)); 
30413     PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DOWN
)); 
30414     PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_UP", PyInt_FromLong(wxEVT_TASKBAR_LEFT_UP
)); 
30415     PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DOWN", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DOWN
)); 
30416     PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_UP", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_UP
)); 
30417     PyDict_SetItemString(d
, "wxEVT_TASKBAR_LEFT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_LEFT_DCLICK
)); 
30418     PyDict_SetItemString(d
, "wxEVT_TASKBAR_RIGHT_DCLICK", PyInt_FromLong(wxEVT_TASKBAR_RIGHT_DCLICK
)); 
30419     SWIG_addvarlink(SWIG_globals
,(char*)"FileSelectorPromptStr",_wrap_FileSelectorPromptStr_get
, _wrap_FileSelectorPromptStr_set
); 
30420     SWIG_addvarlink(SWIG_globals
,(char*)"DirSelectorPromptStr",_wrap_DirSelectorPromptStr_get
, _wrap_DirSelectorPromptStr_set
); 
30421     SWIG_addvarlink(SWIG_globals
,(char*)"DirDialogNameStr",_wrap_DirDialogNameStr_get
, _wrap_DirDialogNameStr_set
); 
30422     SWIG_addvarlink(SWIG_globals
,(char*)"FileSelectorDefaultWildcardStr",_wrap_FileSelectorDefaultWildcardStr_get
, _wrap_FileSelectorDefaultWildcardStr_set
); 
30423     SWIG_addvarlink(SWIG_globals
,(char*)"GetTextFromUserPromptStr",_wrap_GetTextFromUserPromptStr_get
, _wrap_GetTextFromUserPromptStr_set
); 
30424     SWIG_addvarlink(SWIG_globals
,(char*)"MessageBoxCaptionStr",_wrap_MessageBoxCaptionStr_get
, _wrap_MessageBoxCaptionStr_set
); 
30426         PyDict_SetItemString(d
,"CHOICEDLG_STYLE", SWIG_From_int((int)(wxCHOICEDLG_STYLE
)));  
30429         PyDict_SetItemString(d
,"TextEntryDialogStyle", SWIG_From_int((int)(wxTextEntryDialogStyle
)));  
30431     SWIG_addvarlink(SWIG_globals
,(char*)"GetPasswordFromUserPromptStr",_wrap_GetPasswordFromUserPromptStr_get
, _wrap_GetPasswordFromUserPromptStr_set
); 
30433         PyDict_SetItemString(d
,"FR_DOWN", SWIG_From_int((int)(wxFR_DOWN
)));  
30436         PyDict_SetItemString(d
,"FR_WHOLEWORD", SWIG_From_int((int)(wxFR_WHOLEWORD
)));  
30439         PyDict_SetItemString(d
,"FR_MATCHCASE", SWIG_From_int((int)(wxFR_MATCHCASE
)));  
30442         PyDict_SetItemString(d
,"FR_REPLACEDIALOG", SWIG_From_int((int)(wxFR_REPLACEDIALOG
)));  
30445         PyDict_SetItemString(d
,"FR_NOUPDOWN", SWIG_From_int((int)(wxFR_NOUPDOWN
)));  
30448         PyDict_SetItemString(d
,"FR_NOMATCHCASE", SWIG_From_int((int)(wxFR_NOMATCHCASE
)));  
30451         PyDict_SetItemString(d
,"FR_NOWHOLEWORD", SWIG_From_int((int)(wxFR_NOWHOLEWORD
)));  
30453     PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND", PyInt_FromLong(wxEVT_COMMAND_FIND
)); 
30454     PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_NEXT", PyInt_FromLong(wxEVT_COMMAND_FIND_NEXT
)); 
30455     PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE
)); 
30456     PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_REPLACE_ALL", PyInt_FromLong(wxEVT_COMMAND_FIND_REPLACE_ALL
)); 
30457     PyDict_SetItemString(d
, "wxEVT_COMMAND_FIND_CLOSE", PyInt_FromLong(wxEVT_COMMAND_FIND_CLOSE
)); 
30459         PyDict_SetItemString(d
,"IDM_WINDOWTILE", SWIG_From_int((int)(4001)));  
30462         PyDict_SetItemString(d
,"IDM_WINDOWTILEHOR", SWIG_From_int((int)(4001)));  
30465         PyDict_SetItemString(d
,"IDM_WINDOWCASCADE", SWIG_From_int((int)(4002)));  
30468         PyDict_SetItemString(d
,"IDM_WINDOWICONS", SWIG_From_int((int)(4003)));  
30471         PyDict_SetItemString(d
,"IDM_WINDOWNEXT", SWIG_From_int((int)(4004)));  
30474         PyDict_SetItemString(d
,"IDM_WINDOWTILEVERT", SWIG_From_int((int)(4005)));  
30477         PyDict_SetItemString(d
,"IDM_WINDOWPREV", SWIG_From_int((int)(4006)));  
30480         PyDict_SetItemString(d
,"FIRST_MDI_CHILD", SWIG_From_int((int)(4100)));  
30483         PyDict_SetItemString(d
,"LAST_MDI_CHILD", SWIG_From_int((int)(4600)));  
30485     SWIG_addvarlink(SWIG_globals
,(char*)"PrintoutTitleStr",_wrap_PrintoutTitleStr_get
, _wrap_PrintoutTitleStr_set
); 
30486     SWIG_addvarlink(SWIG_globals
,(char*)"PreviewCanvasNameStr",_wrap_PreviewCanvasNameStr_get
, _wrap_PreviewCanvasNameStr_set
); 
30488         PyDict_SetItemString(d
,"PRINT_MODE_NONE", SWIG_From_int((int)(wxPRINT_MODE_NONE
)));  
30491         PyDict_SetItemString(d
,"PRINT_MODE_PREVIEW", SWIG_From_int((int)(wxPRINT_MODE_PREVIEW
)));  
30494         PyDict_SetItemString(d
,"PRINT_MODE_FILE", SWIG_From_int((int)(wxPRINT_MODE_FILE
)));  
30497         PyDict_SetItemString(d
,"PRINT_MODE_PRINTER", SWIG_From_int((int)(wxPRINT_MODE_PRINTER
)));  
30500         PyDict_SetItemString(d
,"PRINT_MODE_STREAM", SWIG_From_int((int)(wxPRINT_MODE_STREAM
)));  
30503         PyDict_SetItemString(d
,"PRINTBIN_DEFAULT", SWIG_From_int((int)(wxPRINTBIN_DEFAULT
)));  
30506         PyDict_SetItemString(d
,"PRINTBIN_ONLYONE", SWIG_From_int((int)(wxPRINTBIN_ONLYONE
)));  
30509         PyDict_SetItemString(d
,"PRINTBIN_LOWER", SWIG_From_int((int)(wxPRINTBIN_LOWER
)));  
30512         PyDict_SetItemString(d
,"PRINTBIN_MIDDLE", SWIG_From_int((int)(wxPRINTBIN_MIDDLE
)));  
30515         PyDict_SetItemString(d
,"PRINTBIN_MANUAL", SWIG_From_int((int)(wxPRINTBIN_MANUAL
)));  
30518         PyDict_SetItemString(d
,"PRINTBIN_ENVELOPE", SWIG_From_int((int)(wxPRINTBIN_ENVELOPE
)));  
30521         PyDict_SetItemString(d
,"PRINTBIN_ENVMANUAL", SWIG_From_int((int)(wxPRINTBIN_ENVMANUAL
)));  
30524         PyDict_SetItemString(d
,"PRINTBIN_AUTO", SWIG_From_int((int)(wxPRINTBIN_AUTO
)));  
30527         PyDict_SetItemString(d
,"PRINTBIN_TRACTOR", SWIG_From_int((int)(wxPRINTBIN_TRACTOR
)));  
30530         PyDict_SetItemString(d
,"PRINTBIN_SMALLFMT", SWIG_From_int((int)(wxPRINTBIN_SMALLFMT
)));  
30533         PyDict_SetItemString(d
,"PRINTBIN_LARGEFMT", SWIG_From_int((int)(wxPRINTBIN_LARGEFMT
)));  
30536         PyDict_SetItemString(d
,"PRINTBIN_LARGECAPACITY", SWIG_From_int((int)(wxPRINTBIN_LARGECAPACITY
)));  
30539         PyDict_SetItemString(d
,"PRINTBIN_CASSETTE", SWIG_From_int((int)(wxPRINTBIN_CASSETTE
)));  
30542         PyDict_SetItemString(d
,"PRINTBIN_FORMSOURCE", SWIG_From_int((int)(wxPRINTBIN_FORMSOURCE
)));  
30545         PyDict_SetItemString(d
,"PRINTBIN_USER", SWIG_From_int((int)(wxPRINTBIN_USER
)));  
30548         PyDict_SetItemString(d
,"PRINTER_NO_ERROR", SWIG_From_int((int)(wxPRINTER_NO_ERROR
)));  
30551         PyDict_SetItemString(d
,"PRINTER_CANCELLED", SWIG_From_int((int)(wxPRINTER_CANCELLED
)));  
30554         PyDict_SetItemString(d
,"PRINTER_ERROR", SWIG_From_int((int)(wxPRINTER_ERROR
)));  
30557         PyDict_SetItemString(d
,"PREVIEW_PRINT", SWIG_From_int((int)(wxPREVIEW_PRINT
)));  
30560         PyDict_SetItemString(d
,"PREVIEW_PREVIOUS", SWIG_From_int((int)(wxPREVIEW_PREVIOUS
)));  
30563         PyDict_SetItemString(d
,"PREVIEW_NEXT", SWIG_From_int((int)(wxPREVIEW_NEXT
)));  
30566         PyDict_SetItemString(d
,"PREVIEW_ZOOM", SWIG_From_int((int)(wxPREVIEW_ZOOM
)));  
30569         PyDict_SetItemString(d
,"PREVIEW_FIRST", SWIG_From_int((int)(wxPREVIEW_FIRST
)));  
30572         PyDict_SetItemString(d
,"PREVIEW_LAST", SWIG_From_int((int)(wxPREVIEW_LAST
)));  
30575         PyDict_SetItemString(d
,"PREVIEW_GOTO", SWIG_From_int((int)(wxPREVIEW_GOTO
)));  
30578         PyDict_SetItemString(d
,"PREVIEW_DEFAULT", SWIG_From_int((int)(wxPREVIEW_DEFAULT
)));  
30581         PyDict_SetItemString(d
,"ID_PREVIEW_CLOSE", SWIG_From_int((int)(wxID_PREVIEW_CLOSE
)));  
30584         PyDict_SetItemString(d
,"ID_PREVIEW_NEXT", SWIG_From_int((int)(wxID_PREVIEW_NEXT
)));  
30587         PyDict_SetItemString(d
,"ID_PREVIEW_PREVIOUS", SWIG_From_int((int)(wxID_PREVIEW_PREVIOUS
)));  
30590         PyDict_SetItemString(d
,"ID_PREVIEW_PRINT", SWIG_From_int((int)(wxID_PREVIEW_PRINT
)));  
30593         PyDict_SetItemString(d
,"ID_PREVIEW_ZOOM", SWIG_From_int((int)(wxID_PREVIEW_ZOOM
)));  
30596         PyDict_SetItemString(d
,"ID_PREVIEW_FIRST", SWIG_From_int((int)(wxID_PREVIEW_FIRST
)));  
30599         PyDict_SetItemString(d
,"ID_PREVIEW_LAST", SWIG_From_int((int)(wxID_PREVIEW_LAST
)));  
30602         PyDict_SetItemString(d
,"ID_PREVIEW_GOTO", SWIG_From_int((int)(wxID_PREVIEW_GOTO
)));  
30605     wxPyPtrTypeMap_Add("wxPrintout", "wxPyPrintout");