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_wxHtmlSearchStatus swig_types[0]  
1343 #define  SWIGTYPE_p_wxHtmlLinkInfo swig_types[1]  
1344 #define  SWIGTYPE_p_wxHtmlHelpFrameCfg swig_types[2]  
1345 #define  SWIGTYPE_p_wxDefaultHtmlRenderingStyle swig_types[3]  
1346 #define  SWIGTYPE_p_wxHtmlRenderingStyle swig_types[4]  
1347 #define  SWIGTYPE_p_wxTreeCtrl swig_types[5]  
1348 #define  SWIGTYPE_p_wxHtmlFontCell swig_types[6]  
1349 #define  SWIGTYPE_p_wxHtmlTag swig_types[7]  
1350 #define  SWIGTYPE_p_wxPrintData swig_types[8]  
1351 #define  SWIGTYPE_p_wxEvent swig_types[9]  
1352 #define  SWIGTYPE_p_wxHtmlHelpFrame swig_types[10]  
1353 #define  SWIGTYPE_p_wxConfigBase swig_types[11]  
1354 #define  SWIGTYPE_p_bool swig_types[12]  
1355 #define  SWIGTYPE_p_wxHtmlCell swig_types[13]  
1356 #define  SWIGTYPE_p_wxHtmlRenderingState swig_types[14]  
1357 #define  SWIGTYPE_p_wxFont swig_types[15]  
1358 #define  SWIGTYPE_p_wxHtmlBookRecArray swig_types[16]  
1359 #define  SWIGTYPE_p_wxHtmlWidgetCell swig_types[17]  
1360 #define  SWIGTYPE_ptrdiff_t swig_types[18]  
1361 #define  SWIGTYPE_std__ptrdiff_t 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_wxHtmlColourCell swig_types[23]  
1366 #define  SWIGTYPE_p_wxHtmlHelpData swig_types[24]  
1367 #define  SWIGTYPE_p_wxVisualAttributes swig_types[25]  
1368 #define  SWIGTYPE_p_wxHelpSearchMode swig_types[26]  
1369 #define  SWIGTYPE_p_wxHtmlModalHelp swig_types[27]  
1370 #define  SWIGTYPE_p_wxNotifyEvent swig_types[28]  
1371 #define  SWIGTYPE_p_form_ops_t swig_types[29]  
1372 #define  SWIGTYPE_p_wxHtmlWindowEvent swig_types[30]  
1373 #define  SWIGTYPE_p_wxHtmlFilter swig_types[31]  
1374 #define  SWIGTYPE_p_wxPyHtmlFilter swig_types[32]  
1375 #define  SWIGTYPE_p_wxDuplexMode swig_types[33]  
1376 #define  SWIGTYPE_p_wxPyHtmlWinTagHandler swig_types[34]  
1377 #define  SWIGTYPE_p_wxEvtHandler swig_types[35]  
1378 #define  SWIGTYPE_p_wxPyHtmlTagHandler swig_types[36]  
1379 #define  SWIGTYPE_p_wxHtmlTagHandler swig_types[37]  
1380 #define  SWIGTYPE_p_wxHtmlSelection swig_types[38]  
1381 #define  SWIGTYPE_p_wxHtmlRenderingInfo swig_types[39]  
1382 #define  SWIGTYPE_p_char swig_types[40]  
1383 #define  SWIGTYPE_p_wxFrame swig_types[41]  
1384 #define  SWIGTYPE_p_wxHtmlPrintout swig_types[42]  
1385 #define  SWIGTYPE_p_wxPyPrintout swig_types[43]  
1386 #define  SWIGTYPE_p_wxHtmlBookRecord swig_types[44]  
1387 #define  SWIGTYPE_p_wxPaperSize swig_types[45]  
1388 #define  SWIGTYPE_p_wxHtmlDCRenderer swig_types[46]  
1389 #define  SWIGTYPE_p_wxHtmlContainerCell swig_types[47]  
1390 #define  SWIGTYPE_p_wxPoint swig_types[48]  
1391 #define  SWIGTYPE_p_wxCursor swig_types[49]  
1392 #define  SWIGTYPE_p_wxObject swig_types[50]  
1393 #define  SWIGTYPE_p_unsigned_long swig_types[51]  
1394 #define  SWIGTYPE_p_wxSplitterWindow swig_types[52]  
1395 #define  SWIGTYPE_p_wxHtmlWindow swig_types[53]  
1396 #define  SWIGTYPE_p_wxHtmlHelpWindow swig_types[54]  
1397 #define  SWIGTYPE_p_wxPyHtmlWindow swig_types[55]  
1398 #define  SWIGTYPE_p_wxWindow swig_types[56]  
1399 #define  SWIGTYPE_p_wxScrolledWindow swig_types[57]  
1400 #define  SWIGTYPE_p_wxTopLevelWindow swig_types[58]  
1401 #define  SWIGTYPE_p_wxString swig_types[59]  
1402 #define  SWIGTYPE_p_wxDialog swig_types[60]  
1403 #define  SWIGTYPE_p_wxPanel swig_types[61]  
1404 #define  SWIGTYPE_p_wxHtmlWinParser swig_types[62]  
1405 #define  SWIGTYPE_p_wxHtmlParser swig_types[63]  
1406 #define  SWIGTYPE_p_wxHtmlHelpDialog swig_types[64]  
1407 #define  SWIGTYPE_p_wxFileSystem swig_types[65]  
1408 #define  SWIGTYPE_p_wxHelpControllerBase swig_types[66]  
1409 #define  SWIGTYPE_p_wxBitmap swig_types[67]  
1410 #define  SWIGTYPE_unsigned_int swig_types[68]  
1411 #define  SWIGTYPE_p_unsigned_int swig_types[69]  
1412 #define  SWIGTYPE_p_wxHtmlWordCell swig_types[70]  
1413 #define  SWIGTYPE_p_unsigned_char swig_types[71]  
1414 #define  SWIGTYPE_p_wxMouseEvent swig_types[72]  
1415 #define  SWIGTYPE_p_wxCommandEvent swig_types[73]  
1416 #define  SWIGTYPE_p_wxHtmlEasyPrinting swig_types[74]  
1417 #define  SWIGTYPE_p_wxHtmlHelpController swig_types[75]  
1418 #define  SWIGTYPE_p_wxColour swig_types[76]  
1419 #define  SWIGTYPE_p_wxPageSetupDialogData swig_types[77]  
1420 static swig_type_info 
*swig_types
[79]; 
1422 /* -------- TYPES TABLE (END) -------- */ 
1425 /*----------------------------------------------- 
1426               @(target):= _html.so 
1427   ------------------------------------------------*/ 
1428 #define SWIG_init    init_html 
1430 #define SWIG_name    "_html" 
1432 #include "wx/wxPython/wxPython.h" 
1433 #include "wx/wxPython/pyclasses.h" 
1434 #include "wx/wxPython/pyistream.h" 
1435 #include "wx/wxPython/printfw.h" 
1437 #include <wx/html/htmlwin.h> 
1438 #include <wx/html/htmprint.h> 
1439 #include <wx/html/helpctrl.h> 
1440 #include <wx/html/helpwnd.h> 
1441 #include <wx/html/helpfrm.h> 
1442 #include <wx/html/helpdlg.h> 
1445  static const wxString 
wxPyEmptyString(wxEmptyString
);  
1446  static const wxString 
wxPyHtmlWindowNameStr(wxT("htmlWindow"));  
1447  static const wxString 
wxPyHtmlPrintoutTitleStr(wxT("Printout"));  
1448  static const wxString 
wxPyHtmlPrintingTitleStr(wxT("Printing"));  
1450   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1451 #define SWIG_From_int PyInt_FromLong 
1459   SWIG_CheckLongInRange(long value
, long min_value
, long max_value
, 
1462   if (value 
< min_value
) { 
1464       PyErr_Format(PyExc_OverflowError
,  
1465                    "value %ld is less than '%s' minimum %ld",  
1466                    value
, errmsg
, min_value
); 
1469   } else if (value 
> max_value
) { 
1471       PyErr_Format(PyExc_OverflowError
, 
1472                    "value %ld is greater than '%s' maximum %ld",  
1473                    value
, errmsg
, max_value
); 
1482 SWIG_AsVal_long(PyObject
* obj
, long* val
) 
1484     if (PyNumber_Check(obj
)) { 
1485         if (val
) *val 
= PyInt_AsLong(obj
); 
1489         SWIG_type_error("number", obj
); 
1495 #if INT_MAX != LONG_MAX 
1497   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1499   const char* errmsg 
= val 
? "int" : (char*)0; 
1501   if (SWIG_AsVal_long(obj
, &v
)) { 
1502     if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) { 
1503       if (val
) *val 
= (int)(v
); 
1512     SWIG_type_error(errmsg
, obj
); 
1518   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1520   return SWIG_AsVal_long(obj
,(long*)val
); 
1526 SWIG_As_int(PyObject
* obj
) 
1529   if (!SWIG_AsVal_int(obj
, &v
)) { 
1531       this is needed to make valgrind/purify happier.  
1533     memset((void*)&v
, 0, sizeof(int)); 
1540 SWIG_Check_int(PyObject
* obj
) 
1542   return SWIG_AsVal_int(obj
, (int*)0); 
1545 static void wxHtmlWinParser_SetFonts(wxHtmlWinParser 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1547             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1548             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1553 class wxPyHtmlTagHandler 
: public wxHtmlTagHandler 
{ 
1554     DECLARE_DYNAMIC_CLASS(wxPyHtmlTagHandler
); 
1556     wxPyHtmlTagHandler() : wxHtmlTagHandler() {}; 
1558     wxHtmlParser
* GetParser() { return m_Parser
; } 
1559     void ParseInner(const wxHtmlTag
& tag
) { wxHtmlTagHandler::ParseInner(tag
); } 
1561     DEC_PYCALLBACK_STRING__pure(GetSupportedTags
); 
1562     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag
); 
1567 IMPLEMENT_DYNAMIC_CLASS(wxPyHtmlTagHandler
, wxHtmlTagHandler
); 
1569 IMP_PYCALLBACK_STRING__pure(wxPyHtmlTagHandler
, wxHtmlTagHandler
, GetSupportedTags
); 
1570 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlTagHandler
, wxHtmlTagHandler
, HandleTag
); 
1573 class wxPyHtmlWinTagHandler 
: public wxHtmlWinTagHandler 
{ 
1574     DECLARE_DYNAMIC_CLASS(wxPyHtmlWinTagHandler
); 
1576     wxPyHtmlWinTagHandler() : wxHtmlWinTagHandler() {}; 
1578     wxHtmlWinParser
* GetParser() { return m_WParser
; } 
1579     void ParseInner(const wxHtmlTag
& tag
) 
1580         { wxHtmlWinTagHandler::ParseInner(tag
); } 
1582     DEC_PYCALLBACK_STRING__pure(GetSupportedTags
); 
1583     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag
); 
1588 IMPLEMENT_DYNAMIC_CLASS( wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
); 
1590 IMP_PYCALLBACK_STRING__pure(wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
, GetSupportedTags
); 
1591 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
, HandleTag
); 
1595 class wxPyHtmlTagsModule 
: public wxHtmlTagsModule 
{ 
1597     wxPyHtmlTagsModule(PyObject
* thc
) : wxHtmlTagsModule() { 
1598         m_tagHandlerClass 
= thc
; 
1599         Py_INCREF(m_tagHandlerClass
); 
1600         RegisterModule(this); 
1601         wxHtmlWinParser::AddModule(this); 
1605         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1606         Py_DECREF(m_tagHandlerClass
); 
1607         m_tagHandlerClass 
= NULL
; 
1608         for (size_t x
=0; x 
< m_objArray
.GetCount(); x
++) { 
1609             PyObject
* obj 
= (PyObject
*)m_objArray
.Item(x
); 
1612         wxPyEndBlockThreads(blocked
); 
1615     void FillHandlersTable(wxHtmlWinParser 
*parser
) { 
1616         // Wave our magic wand...  (if it works it's a miracle!  ;-) 
1618         // First, make a new instance of the tag handler 
1619         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1620         PyObject
* arg 
= PyTuple_New(0); 
1621         PyObject
* obj 
= PyObject_CallObject(m_tagHandlerClass
, arg
); 
1624         // now figure out where it's C++ object is... 
1625         wxPyHtmlWinTagHandler
* thPtr
; 
1626         if (! wxPyConvertSwigPtr(obj
, (void **)&thPtr
, wxT("wxPyHtmlWinTagHandler"))) { 
1627             wxPyEndBlockThreads(blocked
); 
1630         wxPyEndBlockThreads(blocked
); 
1633         parser
->AddTagHandler(thPtr
); 
1636         m_objArray
.Add(obj
); 
1640     PyObject
*           m_tagHandlerClass
; 
1641     wxArrayPtrVoid      m_objArray
; 
1646     void wxHtmlWinParser_AddTagHandler(PyObject
* tagHandlerClass
) { 
1647         // Dynamically create a new wxModule.  Refcounts tagHandlerClass 
1648         // and adds itself to the wxModules list and to the wxHtmlWinParser. 
1649         new wxPyHtmlTagsModule(tagHandlerClass
); 
1653 SWIGINTERNSHORT PyObject
* 
1654   SWIG_From_bool(bool value
) 
1656   PyObject 
*obj 
= value 
? Py_True 
: Py_False
; 
1662   static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) { 
1668     } else if (target 
== Py_None
) {   
1672         if (!PyTuple_Check(target
)) { 
1674             target 
= PyTuple_New(1); 
1675             PyTuple_SetItem(target
, 0, o2
); 
1677         o3 
= PyTuple_New(1);             
1678         PyTuple_SetItem(o3
, 0, o
);       
1681         target 
= PySequence_Concat(o2
, o3
);  
1691   SWIG_AsVal_bool(PyObject 
*obj
, bool *val
) 
1693   if (obj 
== Py_True
) { 
1694     if (val
) *val 
= true; 
1697   if (obj 
== Py_False
) { 
1698     if (val
) *val 
= false; 
1702   if (SWIG_AsVal_int(obj
, &res
)) {     
1703     if (val
) *val 
= res 
? true : false; 
1709     SWIG_type_error("bool", obj
); 
1715 SWIGINTERNSHORT 
bool 
1716 SWIG_As_bool(PyObject
* obj
) 
1719   if (!SWIG_AsVal_bool(obj
, &v
)) { 
1721       this is needed to make valgrind/purify happier.  
1723     memset((void*)&v
, 0, sizeof(bool)); 
1730 SWIG_Check_bool(PyObject
* obj
) 
1732   return SWIG_AsVal_bool(obj
, (bool*)0); 
1737   SWIG_CheckUnsignedLongInRange(unsigned long value
, 
1738                                 unsigned long max_value
, 
1741   if (value 
> max_value
) { 
1743       PyErr_Format(PyExc_OverflowError
, 
1744                    "value %lu is greater than '%s' minimum %lu", 
1745                    value
, errmsg
, max_value
); 
1754 SWIG_AsVal_unsigned_SS_long(PyObject
* obj
, unsigned long* val
) 
1757     if (SWIG_AsVal_long(obj
, &v
) && v 
< 0) { 
1758         SWIG_type_error("unsigned number", obj
); 
1761         *val 
= (unsigned long)v
; 
1766 #if UINT_MAX != ULONG_MAX 
1768   SWIG_AsVal_unsigned_SS_int(PyObject 
*obj
, unsigned int *val
) 
1770   const char* errmsg 
= val 
? "unsigned int" : (char*)0; 
1772   if (SWIG_AsVal_unsigned_SS_long(obj
, &v
)) { 
1773     if (SWIG_CheckUnsignedLongInRange(v
, INT_MAX
, errmsg
)) { 
1774       if (val
) *val 
= (unsigned int)(v
); 
1781     SWIG_type_error(errmsg
, obj
); 
1786 SWIGINTERNSHORT 
unsigned int 
1787   SWIG_AsVal_unsigned_SS_int(PyObject 
*obj
, unsigned int *val
) 
1789   return SWIG_AsVal_unsigned_SS_long(obj
,(unsigned long *)val
); 
1794 SWIGINTERNSHORT 
unsigned int 
1795 SWIG_As_unsigned_SS_int(PyObject
* obj
) 
1798   if (!SWIG_AsVal_unsigned_SS_int(obj
, &v
)) { 
1800       this is needed to make valgrind/purify happier.  
1802     memset((void*)&v
, 0, sizeof(unsigned int)); 
1809 SWIG_Check_unsigned_SS_int(PyObject
* obj
) 
1811   return SWIG_AsVal_unsigned_SS_int(obj
, (unsigned int*)0); 
1815   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1816 #define SWIG_From_long PyInt_FromLong 
1820 SWIGINTERNSHORT PyObject
*  
1821   SWIG_From_unsigned_SS_long(unsigned long value
) 
1823   return (value 
> LONG_MAX
) ? 
1824     PyLong_FromUnsignedLong(value
)  
1825     : PyInt_FromLong((long)(value
));  
1829 #if UINT_MAX < LONG_MAX 
1830 /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1831 #define SWIG_From_unsigned_SS_int SWIG_From_long 
1834 /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1835 #define SWIG_From_unsigned_SS_int SWIG_From_unsigned_SS_long 
1839  // here's the C++ version 
1840 class wxPyHtmlFilter 
: public wxHtmlFilter 
{ 
1841     DECLARE_ABSTRACT_CLASS(wxPyHtmlFilter
); 
1843     wxPyHtmlFilter() : wxHtmlFilter() {} 
1845     // returns True if this filter is able to open&read given file 
1846     virtual bool CanRead(const wxFSFile
& file
) const { 
1849         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1850         if ((found 
= wxPyCBH_findCallback(m_myInst
, "CanRead"))) { 
1851             PyObject
* obj 
= wxPyMake_wxObject((wxFSFile
*)&file
,false);  // cast away const 
1852             rval 
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", obj
)); 
1855         wxPyEndBlockThreads(blocked
); 
1860     // Reads given file and returns HTML document. 
1861     // Returns empty string if opening failed 
1862     virtual wxString 
ReadFile(const wxFSFile
& file
) const { 
1865         wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1866         if ((found 
= wxPyCBH_findCallback(m_myInst
, "ReadFile"))) { 
1867             PyObject
* obj 
= wxPyMake_wxObject((wxFSFile
*)&file
,false);  // cast away const 
1869             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(O)", obj
)); 
1872                 rval 
= Py2wxString(ro
); 
1876         wxPyEndBlockThreads(blocked
); 
1883 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlFilter
, wxHtmlFilter
); 
1886 class wxPyHtmlWindow 
: public wxHtmlWindow 
{ 
1887     DECLARE_ABSTRACT_CLASS(wxPyHtmlWindow
); 
1889     wxPyHtmlWindow(wxWindow 
*parent
, wxWindowID id 
= -1, 
1890                    const wxPoint
& pos 
= wxDefaultPosition
, 
1891                    const wxSize
& size 
= wxDefaultSize
, 
1892                    long style 
= wxHW_DEFAULT_STYLE
, 
1893                    const wxString
& name 
= wxPyHtmlWindowNameStr
) 
1894         : wxHtmlWindow(parent
, id
, pos
, size
, style
, name
)  {}; 
1895     wxPyHtmlWindow() : wxHtmlWindow() {}; 
1897     bool ScrollToAnchor(const wxString
& anchor
) { 
1898         return wxHtmlWindow::ScrollToAnchor(anchor
); 
1901     bool HasAnchor(const wxString
& anchor
) { 
1902         const wxHtmlCell 
*c 
= m_Cell
->Find(wxHTML_COND_ISANCHOR
, &anchor
); 
1906     void OnLinkClicked(const wxHtmlLinkInfo
& link
); 
1907     void base_OnLinkClicked(const wxHtmlLinkInfo
& link
); 
1909     wxHtmlOpeningStatus 
OnOpeningURL(wxHtmlURLType type
, 
1910                                       const wxString
& url
, 
1911                                       wxString 
*redirect
) const; 
1913     DEC_PYCALLBACK__STRING(OnSetTitle
); 
1914     DEC_PYCALLBACK__CELLINTINT(OnCellMouseHover
); 
1915     DEC_PYCALLBACK__CELLINTINTME(OnCellClicked
); 
1919 IMPLEMENT_ABSTRACT_CLASS( wxPyHtmlWindow
, wxHtmlWindow 
); 
1920 IMP_PYCALLBACK__STRING(wxPyHtmlWindow
, wxHtmlWindow
, OnSetTitle
); 
1921 IMP_PYCALLBACK__CELLINTINT(wxPyHtmlWindow
, wxHtmlWindow
, OnCellMouseHover
); 
1922 IMP_PYCALLBACK__CELLINTINTME(wxPyHtmlWindow
, wxHtmlWindow
, OnCellClicked
); 
1925 void wxPyHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo
& link
) { 
1927     wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1928     if ((found 
= wxPyCBH_findCallback(m_myInst
, "OnLinkClicked"))) { 
1929         PyObject
* obj 
= wxPyConstructObject((void*)&link
, wxT("wxHtmlLinkInfo"), 0); 
1930         wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", obj
)); 
1933     wxPyEndBlockThreads(blocked
); 
1935         wxHtmlWindow::OnLinkClicked(link
); 
1937 void wxPyHtmlWindow::base_OnLinkClicked(const wxHtmlLinkInfo
& link
) { 
1938     wxHtmlWindow::OnLinkClicked(link
); 
1942 wxHtmlOpeningStatus 
wxPyHtmlWindow::OnOpeningURL(wxHtmlURLType type
, 
1943                                                  const wxString
& url
, 
1944                                                  wxString 
*redirect
) const { 
1946     wxHtmlOpeningStatus rval
; 
1947     wxPyBlock_t blocked 
= wxPyBeginBlockThreads(); 
1948     if ((found 
= wxPyCBH_findCallback(m_myInst
, "OnOpeningURL"))) { 
1950         PyObject
* s 
= wx2PyString(url
); 
1951         ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(iO)", type
, s
)); 
1953         if (PyString_Check(ro
) 
1954 #if PYTHON_API_VERSION >= 1009 
1955             || PyUnicode_Check(ro
) 
1958             *redirect 
= Py2wxString(ro
); 
1959             rval 
= wxHTML_REDIRECT
; 
1962             PyObject
* num 
= PyNumber_Int(ro
); 
1963             rval 
= (wxHtmlOpeningStatus
)PyInt_AsLong(num
); 
1968     wxPyEndBlockThreads(blocked
); 
1970         rval 
= wxHtmlWindow::OnOpeningURL(type
, url
, redirect
); 
1976 static void wxPyHtmlWindow_SetFonts(wxPyHtmlWindow 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1978             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1979             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1983 static void wxHtmlDCRenderer_SetFonts(wxHtmlDCRenderer 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1985             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1986             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1990 static void wxHtmlPrintout_SetFonts(wxHtmlPrintout 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1992             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1993             self
->SetFonts(normal_face
, fixed_face
, temp
); 
2000   SWIG_CheckDoubleInRange(double value
, double min_value
,  
2001                           double max_value
, const char* errmsg
) 
2003   if (value 
< min_value
) { 
2005       PyErr_Format(PyExc_OverflowError
,  
2006                    "value %g is less than %s minimum %g",  
2007                    value
, errmsg
, min_value
); 
2010   } else if (value 
> max_value
) { 
2012       PyErr_Format(PyExc_OverflowError
,  
2013                    "value %g is greater than %s maximum %g",  
2014                    value
, errmsg
, max_value
); 
2023 SWIG_AsVal_double(PyObject 
*obj
, double* val
) 
2025     if (PyNumber_Check(obj
)) { 
2026         if (val
) *val 
= PyFloat_AsDouble(obj
); 
2030         SWIG_type_error("number", obj
); 
2037   SWIG_AsVal_float(PyObject 
*obj
, float *val
) 
2039   const char* errmsg 
= val 
? "float" : (char*)0; 
2041   if (SWIG_AsVal_double(obj
, &v
)) { 
2042     if (SWIG_CheckDoubleInRange(v
, -FLT_MAX
, FLT_MAX
, errmsg
)) { 
2043       if (val
) *val 
= (float)(v
); 
2052     SWIG_type_error(errmsg
, obj
); 
2058 SWIGINTERNSHORT 
float 
2059 SWIG_As_float(PyObject
* obj
) 
2062   if (!SWIG_AsVal_float(obj
, &v
)) { 
2064       this is needed to make valgrind/purify happier.  
2066     memset((void*)&v
, 0, sizeof(float)); 
2073 SWIG_Check_float(PyObject
* obj
) 
2075   return SWIG_AsVal_float(obj
, (float*)0); 
2078 static void wxHtmlEasyPrinting_SetFonts(wxHtmlEasyPrinting 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
2080             if (sizes
) temp 
= int_LIST_helper(sizes
); 
2081             self
->SetFonts(normal_face
, fixed_face
, temp
); 
2086 SWIGINTERNSHORT 
long 
2087 SWIG_As_long(PyObject
* obj
) 
2090   if (!SWIG_AsVal_long(obj
, &v
)) { 
2092       this is needed to make valgrind/purify happier.  
2094     memset((void*)&v
, 0, sizeof(long)); 
2101 SWIG_Check_long(PyObject
* obj
) 
2103   return SWIG_AsVal_long(obj
, (long*)0); 
2109 static int _wrap_HtmlWindowNameStr_set(PyObject 
*) { 
2110     PyErr_SetString(PyExc_TypeError
,"Variable HtmlWindowNameStr is read-only."); 
2115 static PyObject 
*_wrap_HtmlWindowNameStr_get(void) { 
2120         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlWindowNameStr
)->c_str(), (&wxPyHtmlWindowNameStr
)->Len()); 
2122         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlWindowNameStr
)->c_str(), (&wxPyHtmlWindowNameStr
)->Len()); 
2129 static int _wrap_HtmlPrintoutTitleStr_set(PyObject 
*) { 
2130     PyErr_SetString(PyExc_TypeError
,"Variable HtmlPrintoutTitleStr is read-only."); 
2135 static PyObject 
*_wrap_HtmlPrintoutTitleStr_get(void) { 
2140         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlPrintoutTitleStr
)->c_str(), (&wxPyHtmlPrintoutTitleStr
)->Len()); 
2142         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlPrintoutTitleStr
)->c_str(), (&wxPyHtmlPrintoutTitleStr
)->Len()); 
2149 static int _wrap_HtmlPrintingTitleStr_set(PyObject 
*) { 
2150     PyErr_SetString(PyExc_TypeError
,"Variable HtmlPrintingTitleStr is read-only."); 
2155 static PyObject 
*_wrap_HtmlPrintingTitleStr_get(void) { 
2160         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlPrintingTitleStr
)->c_str(), (&wxPyHtmlPrintingTitleStr
)->Len()); 
2162         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlPrintingTitleStr
)->c_str(), (&wxPyHtmlPrintingTitleStr
)->Len()); 
2169 static PyObject 
*_wrap_new_HtmlLinkInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2170     PyObject 
*resultobj
; 
2171     wxString 
*arg1 
= 0 ; 
2172     wxString 
const &arg2_defvalue 
= wxPyEmptyString 
; 
2173     wxString 
*arg2 
= (wxString 
*) &arg2_defvalue 
; 
2174     wxHtmlLinkInfo 
*result
; 
2175     bool temp1 
= false ; 
2176     bool temp2 
= false ; 
2177     PyObject 
* obj0 
= 0 ; 
2178     PyObject 
* obj1 
= 0 ; 
2180         (char *) "href",(char *) "target", NULL 
 
2183     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlLinkInfo",kwnames
,&obj0
,&obj1
)) goto fail
; 
2185         arg1 
= wxString_in_helper(obj0
); 
2186         if (arg1 
== NULL
) SWIG_fail
; 
2191             arg2 
= wxString_in_helper(obj1
); 
2192             if (arg2 
== NULL
) SWIG_fail
; 
2197         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2198         result 
= (wxHtmlLinkInfo 
*)new wxHtmlLinkInfo((wxString 
const &)*arg1
,(wxString 
const &)*arg2
); 
2200         wxPyEndAllowThreads(__tstate
); 
2201         if (PyErr_Occurred()) SWIG_fail
; 
2203     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlLinkInfo
, 1); 
2226 static PyObject 
*_wrap_HtmlLinkInfo_GetHref(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2227     PyObject 
*resultobj
; 
2228     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2230     PyObject 
* obj0 
= 0 ; 
2232         (char *) "self", NULL 
 
2235     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetHref",kwnames
,&obj0
)) goto fail
; 
2236     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2237     if (SWIG_arg_fail(1)) SWIG_fail
; 
2239         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2240         result 
= (arg1
)->GetHref(); 
2242         wxPyEndAllowThreads(__tstate
); 
2243         if (PyErr_Occurred()) SWIG_fail
; 
2247         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2249         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2258 static PyObject 
*_wrap_HtmlLinkInfo_GetTarget(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2259     PyObject 
*resultobj
; 
2260     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2262     PyObject 
* obj0 
= 0 ; 
2264         (char *) "self", NULL 
 
2267     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetTarget",kwnames
,&obj0
)) goto fail
; 
2268     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2269     if (SWIG_arg_fail(1)) SWIG_fail
; 
2271         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2272         result 
= (arg1
)->GetTarget(); 
2274         wxPyEndAllowThreads(__tstate
); 
2275         if (PyErr_Occurred()) SWIG_fail
; 
2279         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2281         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2290 static PyObject 
*_wrap_HtmlLinkInfo_GetEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2291     PyObject 
*resultobj
; 
2292     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2293     wxMouseEvent 
*result
; 
2294     PyObject 
* obj0 
= 0 ; 
2296         (char *) "self", NULL 
 
2299     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetEvent",kwnames
,&obj0
)) goto fail
; 
2300     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2301     if (SWIG_arg_fail(1)) SWIG_fail
; 
2303         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2304         result 
= (wxMouseEvent 
*)(arg1
)->GetEvent(); 
2306         wxPyEndAllowThreads(__tstate
); 
2307         if (PyErr_Occurred()) SWIG_fail
; 
2310         resultobj 
= wxPyMake_wxObject(result
, 0);  
2318 static PyObject 
*_wrap_HtmlLinkInfo_GetHtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2319     PyObject 
*resultobj
; 
2320     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2322     PyObject 
* obj0 
= 0 ; 
2324         (char *) "self", NULL 
 
2327     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetHtmlCell",kwnames
,&obj0
)) goto fail
; 
2328     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2329     if (SWIG_arg_fail(1)) SWIG_fail
; 
2331         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2332         result 
= (wxHtmlCell 
*)(arg1
)->GetHtmlCell(); 
2334         wxPyEndAllowThreads(__tstate
); 
2335         if (PyErr_Occurred()) SWIG_fail
; 
2337     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
2344 static PyObject 
*_wrap_HtmlLinkInfo_SetEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2345     PyObject 
*resultobj
; 
2346     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2347     wxMouseEvent 
*arg2 
= (wxMouseEvent 
*) 0 ; 
2348     PyObject 
* obj0 
= 0 ; 
2349     PyObject 
* obj1 
= 0 ; 
2351         (char *) "self",(char *) "e", NULL 
 
2354     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlLinkInfo_SetEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
2355     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2356     if (SWIG_arg_fail(1)) SWIG_fail
; 
2357     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
2358     if (SWIG_arg_fail(2)) SWIG_fail
; 
2360         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2361         (arg1
)->SetEvent((wxMouseEvent 
const *)arg2
); 
2363         wxPyEndAllowThreads(__tstate
); 
2364         if (PyErr_Occurred()) SWIG_fail
; 
2366     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2373 static PyObject 
*_wrap_HtmlLinkInfo_SetHtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2374     PyObject 
*resultobj
; 
2375     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2376     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
2377     PyObject 
* obj0 
= 0 ; 
2378     PyObject 
* obj1 
= 0 ; 
2380         (char *) "self",(char *) "e", NULL 
 
2383     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlLinkInfo_SetHtmlCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
2384     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2385     if (SWIG_arg_fail(1)) SWIG_fail
; 
2386     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
2387     if (SWIG_arg_fail(2)) SWIG_fail
; 
2389         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2390         (arg1
)->SetHtmlCell((wxHtmlCell 
const *)arg2
); 
2392         wxPyEndAllowThreads(__tstate
); 
2393         if (PyErr_Occurred()) SWIG_fail
; 
2395     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2402 static PyObject 
* HtmlLinkInfo_swigregister(PyObject 
*, PyObject 
*args
) { 
2404     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
2405     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlLinkInfo
, obj
); 
2407     return Py_BuildValue((char *)""); 
2409 static PyObject 
*_wrap_HtmlTag_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2410     PyObject 
*resultobj
; 
2411     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2413     PyObject 
* obj0 
= 0 ; 
2415         (char *) "self", NULL 
 
2418     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetName",kwnames
,&obj0
)) goto fail
; 
2419     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2420     if (SWIG_arg_fail(1)) SWIG_fail
; 
2422         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2423         result 
= (arg1
)->GetName(); 
2425         wxPyEndAllowThreads(__tstate
); 
2426         if (PyErr_Occurred()) SWIG_fail
; 
2430         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2432         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2441 static PyObject 
*_wrap_HtmlTag_HasParam(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2442     PyObject 
*resultobj
; 
2443     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2444     wxString 
*arg2 
= 0 ; 
2446     bool temp2 
= false ; 
2447     PyObject 
* obj0 
= 0 ; 
2448     PyObject 
* obj1 
= 0 ; 
2450         (char *) "self",(char *) "par", NULL 
 
2453     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTag_HasParam",kwnames
,&obj0
,&obj1
)) goto fail
; 
2454     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2455     if (SWIG_arg_fail(1)) SWIG_fail
; 
2457         arg2 
= wxString_in_helper(obj1
); 
2458         if (arg2 
== NULL
) SWIG_fail
; 
2462         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2463         result 
= (bool)(arg1
)->HasParam((wxString 
const &)*arg2
); 
2465         wxPyEndAllowThreads(__tstate
); 
2466         if (PyErr_Occurred()) SWIG_fail
; 
2469         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
2485 static PyObject 
*_wrap_HtmlTag_GetParam(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2486     PyObject 
*resultobj
; 
2487     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2488     wxString 
*arg2 
= 0 ; 
2489     int arg3 
= (int) false ; 
2491     bool temp2 
= false ; 
2492     PyObject 
* obj0 
= 0 ; 
2493     PyObject 
* obj1 
= 0 ; 
2494     PyObject 
* obj2 
= 0 ; 
2496         (char *) "self",(char *) "par",(char *) "with_commas", NULL 
 
2499     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlTag_GetParam",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2500     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2501     if (SWIG_arg_fail(1)) SWIG_fail
; 
2503         arg2 
= wxString_in_helper(obj1
); 
2504         if (arg2 
== NULL
) SWIG_fail
; 
2509             arg3 
= (int)(SWIG_As_int(obj2
));  
2510             if (SWIG_arg_fail(3)) SWIG_fail
; 
2514         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2515         result 
= (arg1
)->GetParam((wxString 
const &)*arg2
,arg3
); 
2517         wxPyEndAllowThreads(__tstate
); 
2518         if (PyErr_Occurred()) SWIG_fail
; 
2522         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2524         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2541 static PyObject 
*_wrap_HtmlTag_GetAllParams(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2542     PyObject 
*resultobj
; 
2543     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2545     PyObject 
* obj0 
= 0 ; 
2547         (char *) "self", NULL 
 
2550     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetAllParams",kwnames
,&obj0
)) goto fail
; 
2551     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2552     if (SWIG_arg_fail(1)) SWIG_fail
; 
2554         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2555         result 
= (arg1
)->GetAllParams(); 
2557         wxPyEndAllowThreads(__tstate
); 
2558         if (PyErr_Occurred()) SWIG_fail
; 
2562         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2564         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2573 static PyObject 
*_wrap_HtmlTag_HasEnding(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2574     PyObject 
*resultobj
; 
2575     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2577     PyObject 
* obj0 
= 0 ; 
2579         (char *) "self", NULL 
 
2582     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_HasEnding",kwnames
,&obj0
)) goto fail
; 
2583     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2584     if (SWIG_arg_fail(1)) SWIG_fail
; 
2586         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2587         result 
= (bool)(arg1
)->HasEnding(); 
2589         wxPyEndAllowThreads(__tstate
); 
2590         if (PyErr_Occurred()) SWIG_fail
; 
2593         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
2601 static PyObject 
*_wrap_HtmlTag_GetBeginPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2602     PyObject 
*resultobj
; 
2603     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2605     PyObject 
* obj0 
= 0 ; 
2607         (char *) "self", NULL 
 
2610     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetBeginPos",kwnames
,&obj0
)) goto fail
; 
2611     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2612     if (SWIG_arg_fail(1)) SWIG_fail
; 
2614         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2615         result 
= (int)(arg1
)->GetBeginPos(); 
2617         wxPyEndAllowThreads(__tstate
); 
2618         if (PyErr_Occurred()) SWIG_fail
; 
2621         resultobj 
= SWIG_From_int((int)(result
));  
2629 static PyObject 
*_wrap_HtmlTag_GetEndPos1(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2630     PyObject 
*resultobj
; 
2631     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2633     PyObject 
* obj0 
= 0 ; 
2635         (char *) "self", NULL 
 
2638     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetEndPos1",kwnames
,&obj0
)) goto fail
; 
2639     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2640     if (SWIG_arg_fail(1)) SWIG_fail
; 
2642         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2643         result 
= (int)(arg1
)->GetEndPos1(); 
2645         wxPyEndAllowThreads(__tstate
); 
2646         if (PyErr_Occurred()) SWIG_fail
; 
2649         resultobj 
= SWIG_From_int((int)(result
));  
2657 static PyObject 
*_wrap_HtmlTag_GetEndPos2(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2658     PyObject 
*resultobj
; 
2659     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2661     PyObject 
* obj0 
= 0 ; 
2663         (char *) "self", NULL 
 
2666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetEndPos2",kwnames
,&obj0
)) goto fail
; 
2667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2668     if (SWIG_arg_fail(1)) SWIG_fail
; 
2670         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2671         result 
= (int)(arg1
)->GetEndPos2(); 
2673         wxPyEndAllowThreads(__tstate
); 
2674         if (PyErr_Occurred()) SWIG_fail
; 
2677         resultobj 
= SWIG_From_int((int)(result
));  
2685 static PyObject 
* HtmlTag_swigregister(PyObject 
*, PyObject 
*args
) { 
2687     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
2688     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlTag
, obj
); 
2690     return Py_BuildValue((char *)""); 
2692 static PyObject 
*_wrap_HtmlParser_SetFS(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2693     PyObject 
*resultobj
; 
2694     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2695     wxFileSystem 
*arg2 
= (wxFileSystem 
*) 0 ; 
2696     PyObject 
* obj0 
= 0 ; 
2697     PyObject 
* obj1 
= 0 ; 
2699         (char *) "self",(char *) "fs", NULL 
 
2702     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_SetFS",kwnames
,&obj0
,&obj1
)) goto fail
; 
2703     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2704     if (SWIG_arg_fail(1)) SWIG_fail
; 
2705     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFileSystem
, SWIG_POINTER_EXCEPTION 
| 0); 
2706     if (SWIG_arg_fail(2)) SWIG_fail
; 
2708         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2709         (arg1
)->SetFS(arg2
); 
2711         wxPyEndAllowThreads(__tstate
); 
2712         if (PyErr_Occurred()) SWIG_fail
; 
2714     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2721 static PyObject 
*_wrap_HtmlParser_GetFS(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2722     PyObject 
*resultobj
; 
2723     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2724     wxFileSystem 
*result
; 
2725     PyObject 
* obj0 
= 0 ; 
2727         (char *) "self", NULL 
 
2730     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_GetFS",kwnames
,&obj0
)) goto fail
; 
2731     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2732     if (SWIG_arg_fail(1)) SWIG_fail
; 
2734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2735         result 
= (wxFileSystem 
*)(arg1
)->GetFS(); 
2737         wxPyEndAllowThreads(__tstate
); 
2738         if (PyErr_Occurred()) SWIG_fail
; 
2741         resultobj 
= wxPyMake_wxObject(result
, 0);  
2749 static PyObject 
*_wrap_HtmlParser_Parse(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2750     PyObject 
*resultobj
; 
2751     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2752     wxString 
*arg2 
= 0 ; 
2754     bool temp2 
= false ; 
2755     PyObject 
* obj0 
= 0 ; 
2756     PyObject 
* obj1 
= 0 ; 
2758         (char *) "self",(char *) "source", NULL 
 
2761     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_Parse",kwnames
,&obj0
,&obj1
)) goto fail
; 
2762     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2763     if (SWIG_arg_fail(1)) SWIG_fail
; 
2765         arg2 
= wxString_in_helper(obj1
); 
2766         if (arg2 
== NULL
) SWIG_fail
; 
2770         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2771         result 
= (wxObject 
*)(arg1
)->Parse((wxString 
const &)*arg2
); 
2773         wxPyEndAllowThreads(__tstate
); 
2774         if (PyErr_Occurred()) SWIG_fail
; 
2777         resultobj 
= wxPyMake_wxObject(result
, 0);  
2793 static PyObject 
*_wrap_HtmlParser_InitParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2794     PyObject 
*resultobj
; 
2795     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2796     wxString 
*arg2 
= 0 ; 
2797     bool temp2 
= false ; 
2798     PyObject 
* obj0 
= 0 ; 
2799     PyObject 
* obj1 
= 0 ; 
2801         (char *) "self",(char *) "source", NULL 
 
2804     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_InitParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
2805     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2806     if (SWIG_arg_fail(1)) SWIG_fail
; 
2808         arg2 
= wxString_in_helper(obj1
); 
2809         if (arg2 
== NULL
) SWIG_fail
; 
2813         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2814         (arg1
)->InitParser((wxString 
const &)*arg2
); 
2816         wxPyEndAllowThreads(__tstate
); 
2817         if (PyErr_Occurred()) SWIG_fail
; 
2819     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2834 static PyObject 
*_wrap_HtmlParser_DoneParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2835     PyObject 
*resultobj
; 
2836     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2837     PyObject 
* obj0 
= 0 ; 
2839         (char *) "self", NULL 
 
2842     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_DoneParser",kwnames
,&obj0
)) goto fail
; 
2843     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2844     if (SWIG_arg_fail(1)) SWIG_fail
; 
2846         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2847         (arg1
)->DoneParser(); 
2849         wxPyEndAllowThreads(__tstate
); 
2850         if (PyErr_Occurred()) SWIG_fail
; 
2852     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2859 static PyObject 
*_wrap_HtmlParser_DoParsing(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2860     PyObject 
*resultobj
; 
2861     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2864     PyObject 
* obj0 
= 0 ; 
2865     PyObject 
* obj1 
= 0 ; 
2866     PyObject 
* obj2 
= 0 ; 
2868         (char *) "self",(char *) "begin_pos",(char *) "end_pos", NULL 
 
2871     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlParser_DoParsing",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2872     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2873     if (SWIG_arg_fail(1)) SWIG_fail
; 
2875         arg2 
= (int)(SWIG_As_int(obj1
));  
2876         if (SWIG_arg_fail(2)) SWIG_fail
; 
2879         arg3 
= (int)(SWIG_As_int(obj2
));  
2880         if (SWIG_arg_fail(3)) SWIG_fail
; 
2883         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2884         (arg1
)->DoParsing(arg2
,arg3
); 
2886         wxPyEndAllowThreads(__tstate
); 
2887         if (PyErr_Occurred()) SWIG_fail
; 
2889     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2896 static PyObject 
*_wrap_HtmlParser_StopParsing(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2897     PyObject 
*resultobj
; 
2898     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2899     PyObject 
* obj0 
= 0 ; 
2901         (char *) "self", NULL 
 
2904     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_StopParsing",kwnames
,&obj0
)) goto fail
; 
2905     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2906     if (SWIG_arg_fail(1)) SWIG_fail
; 
2908         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2909         (arg1
)->StopParsing(); 
2911         wxPyEndAllowThreads(__tstate
); 
2912         if (PyErr_Occurred()) SWIG_fail
; 
2914     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2921 static PyObject 
*_wrap_HtmlParser_AddTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2922     PyObject 
*resultobj
; 
2923     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2924     wxHtmlTagHandler 
*arg2 
= (wxHtmlTagHandler 
*) 0 ; 
2925     PyObject 
* obj0 
= 0 ; 
2926     PyObject 
* obj1 
= 0 ; 
2928         (char *) "self",(char *) "handler", NULL 
 
2931     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_AddTagHandler",kwnames
,&obj0
,&obj1
)) goto fail
; 
2932     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2933     if (SWIG_arg_fail(1)) SWIG_fail
; 
2934     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
2935     if (SWIG_arg_fail(2)) SWIG_fail
; 
2937         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2938         (arg1
)->AddTagHandler(arg2
); 
2940         wxPyEndAllowThreads(__tstate
); 
2941         if (PyErr_Occurred()) SWIG_fail
; 
2943     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2950 static PyObject 
*_wrap_HtmlParser_GetSource(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2951     PyObject 
*resultobj
; 
2952     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2954     PyObject 
* obj0 
= 0 ; 
2956         (char *) "self", NULL 
 
2959     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_GetSource",kwnames
,&obj0
)) goto fail
; 
2960     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2961     if (SWIG_arg_fail(1)) SWIG_fail
; 
2963         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2964         result 
= (wxString 
*)(arg1
)->GetSource(); 
2966         wxPyEndAllowThreads(__tstate
); 
2967         if (PyErr_Occurred()) SWIG_fail
; 
2971         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
2973         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
2982 static PyObject 
*_wrap_HtmlParser_PushTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2983     PyObject 
*resultobj
; 
2984     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2985     wxHtmlTagHandler 
*arg2 
= (wxHtmlTagHandler 
*) 0 ; 
2987     PyObject 
* obj0 
= 0 ; 
2988     PyObject 
* obj1 
= 0 ; 
2989     PyObject 
* obj2 
= 0 ; 
2991         (char *) "self",(char *) "handler",(char *) "tags", NULL 
 
2994     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlParser_PushTagHandler",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2995     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2996     if (SWIG_arg_fail(1)) SWIG_fail
; 
2997     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
2998     if (SWIG_arg_fail(2)) SWIG_fail
; 
3000         wxString
* sptr 
= wxString_in_helper(obj2
); 
3001         if (sptr 
== NULL
) SWIG_fail
; 
3006         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3007         (arg1
)->PushTagHandler(arg2
,arg3
); 
3009         wxPyEndAllowThreads(__tstate
); 
3010         if (PyErr_Occurred()) SWIG_fail
; 
3012     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3019 static PyObject 
*_wrap_HtmlParser_PopTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3020     PyObject 
*resultobj
; 
3021     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
3022     PyObject 
* obj0 
= 0 ; 
3024         (char *) "self", NULL 
 
3027     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_PopTagHandler",kwnames
,&obj0
)) goto fail
; 
3028     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3029     if (SWIG_arg_fail(1)) SWIG_fail
; 
3031         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3032         (arg1
)->PopTagHandler(); 
3034         wxPyEndAllowThreads(__tstate
); 
3035         if (PyErr_Occurred()) SWIG_fail
; 
3037     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3044 static PyObject 
* HtmlParser_swigregister(PyObject 
*, PyObject 
*args
) { 
3046     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
3047     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlParser
, obj
); 
3049     return Py_BuildValue((char *)""); 
3051 static PyObject 
*_wrap_new_HtmlWinParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3052     PyObject 
*resultobj
; 
3053     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) NULL 
; 
3054     wxHtmlWinParser 
*result
; 
3055     PyObject 
* obj0 
= 0 ; 
3057         (char *) "wnd", NULL 
 
3060     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlWinParser",kwnames
,&obj0
)) goto fail
; 
3062         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3063         if (SWIG_arg_fail(1)) SWIG_fail
; 
3066         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3067         result 
= (wxHtmlWinParser 
*)new wxHtmlWinParser(arg1
); 
3069         wxPyEndAllowThreads(__tstate
); 
3070         if (PyErr_Occurred()) SWIG_fail
; 
3072     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 1); 
3079 static PyObject 
*_wrap_HtmlWinParser_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3080     PyObject 
*resultobj
; 
3081     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3082     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
3083     PyObject 
* obj0 
= 0 ; 
3084     PyObject 
* obj1 
= 0 ; 
3086         (char *) "self",(char *) "dc", NULL 
 
3089     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetDC",kwnames
,&obj0
,&obj1
)) goto fail
; 
3090     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3091     if (SWIG_arg_fail(1)) SWIG_fail
; 
3092     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
3093     if (SWIG_arg_fail(2)) SWIG_fail
; 
3095         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3096         (arg1
)->SetDC(arg2
); 
3098         wxPyEndAllowThreads(__tstate
); 
3099         if (PyErr_Occurred()) SWIG_fail
; 
3101     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3108 static PyObject 
*_wrap_HtmlWinParser_GetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3109     PyObject 
*resultobj
; 
3110     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3112     PyObject 
* obj0 
= 0 ; 
3114         (char *) "self", NULL 
 
3117     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetDC",kwnames
,&obj0
)) goto fail
; 
3118     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3119     if (SWIG_arg_fail(1)) SWIG_fail
; 
3121         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3122         result 
= (wxDC 
*)(arg1
)->GetDC(); 
3124         wxPyEndAllowThreads(__tstate
); 
3125         if (PyErr_Occurred()) SWIG_fail
; 
3128         resultobj 
= wxPyMake_wxObject(result
, 0);  
3136 static PyObject 
*_wrap_HtmlWinParser_GetCharHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3137     PyObject 
*resultobj
; 
3138     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3140     PyObject 
* obj0 
= 0 ; 
3142         (char *) "self", NULL 
 
3145     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetCharHeight",kwnames
,&obj0
)) goto fail
; 
3146     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3147     if (SWIG_arg_fail(1)) SWIG_fail
; 
3149         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3150         result 
= (int)(arg1
)->GetCharHeight(); 
3152         wxPyEndAllowThreads(__tstate
); 
3153         if (PyErr_Occurred()) SWIG_fail
; 
3156         resultobj 
= SWIG_From_int((int)(result
));  
3164 static PyObject 
*_wrap_HtmlWinParser_GetCharWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3165     PyObject 
*resultobj
; 
3166     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3168     PyObject 
* obj0 
= 0 ; 
3170         (char *) "self", NULL 
 
3173     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetCharWidth",kwnames
,&obj0
)) goto fail
; 
3174     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3175     if (SWIG_arg_fail(1)) SWIG_fail
; 
3177         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3178         result 
= (int)(arg1
)->GetCharWidth(); 
3180         wxPyEndAllowThreads(__tstate
); 
3181         if (PyErr_Occurred()) SWIG_fail
; 
3184         resultobj 
= SWIG_From_int((int)(result
));  
3192 static PyObject 
*_wrap_HtmlWinParser_GetWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3193     PyObject 
*resultobj
; 
3194     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3195     wxPyHtmlWindow 
*result
; 
3196     PyObject 
* obj0 
= 0 ; 
3198         (char *) "self", NULL 
 
3201     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetWindow",kwnames
,&obj0
)) goto fail
; 
3202     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3203     if (SWIG_arg_fail(1)) SWIG_fail
; 
3205         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3206         result 
= (wxPyHtmlWindow 
*)(arg1
)->GetWindow(); 
3208         wxPyEndAllowThreads(__tstate
); 
3209         if (PyErr_Occurred()) SWIG_fail
; 
3212         resultobj 
= wxPyMake_wxObject(result
, 0);  
3220 static PyObject 
*_wrap_HtmlWinParser_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3221     PyObject 
*resultobj
; 
3222     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3225     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
3226     PyObject 
* obj0 
= 0 ; 
3227     PyObject 
* obj1 
= 0 ; 
3228     PyObject 
* obj2 
= 0 ; 
3229     PyObject 
* obj3 
= 0 ; 
3231         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
3234     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlWinParser_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
3235     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3236     if (SWIG_arg_fail(1)) SWIG_fail
; 
3238         wxString
* sptr 
= wxString_in_helper(obj1
); 
3239         if (sptr 
== NULL
) SWIG_fail
; 
3244         wxString
* sptr 
= wxString_in_helper(obj2
); 
3245         if (sptr 
== NULL
) SWIG_fail
; 
3253         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3254         wxHtmlWinParser_SetFonts(arg1
,arg2
,arg3
,arg4
); 
3256         wxPyEndAllowThreads(__tstate
); 
3257         if (PyErr_Occurred()) SWIG_fail
; 
3259     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3266 static PyObject 
*_wrap_HtmlWinParser_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3267     PyObject 
*resultobj
; 
3268     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3269     int arg2 
= (int) -1 ; 
3270     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
3271     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
3272     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
3273     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
3274     bool temp3 
= false ; 
3275     bool temp4 
= false ; 
3276     PyObject 
* obj0 
= 0 ; 
3277     PyObject 
* obj1 
= 0 ; 
3278     PyObject 
* obj2 
= 0 ; 
3279     PyObject 
* obj3 
= 0 ; 
3281         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
3284     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlWinParser_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
3285     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3286     if (SWIG_arg_fail(1)) SWIG_fail
; 
3289             arg2 
= (int)(SWIG_As_int(obj1
));  
3290             if (SWIG_arg_fail(2)) SWIG_fail
; 
3295             arg3 
= wxString_in_helper(obj2
); 
3296             if (arg3 
== NULL
) SWIG_fail
; 
3302             arg4 
= wxString_in_helper(obj3
); 
3303             if (arg4 
== NULL
) SWIG_fail
; 
3308         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3309         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
3311         wxPyEndAllowThreads(__tstate
); 
3312         if (PyErr_Occurred()) SWIG_fail
; 
3314     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3337 static PyObject 
*_wrap_HtmlWinParser_GetContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3338     PyObject 
*resultobj
; 
3339     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3340     wxHtmlContainerCell 
*result
; 
3341     PyObject 
* obj0 
= 0 ; 
3343         (char *) "self", NULL 
 
3346     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetContainer",kwnames
,&obj0
)) goto fail
; 
3347     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3348     if (SWIG_arg_fail(1)) SWIG_fail
; 
3350         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3351         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetContainer(); 
3353         wxPyEndAllowThreads(__tstate
); 
3354         if (PyErr_Occurred()) SWIG_fail
; 
3356     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3363 static PyObject 
*_wrap_HtmlWinParser_OpenContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3364     PyObject 
*resultobj
; 
3365     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3366     wxHtmlContainerCell 
*result
; 
3367     PyObject 
* obj0 
= 0 ; 
3369         (char *) "self", NULL 
 
3372     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_OpenContainer",kwnames
,&obj0
)) goto fail
; 
3373     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3374     if (SWIG_arg_fail(1)) SWIG_fail
; 
3376         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3377         result 
= (wxHtmlContainerCell 
*)(arg1
)->OpenContainer(); 
3379         wxPyEndAllowThreads(__tstate
); 
3380         if (PyErr_Occurred()) SWIG_fail
; 
3382     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3389 static PyObject 
*_wrap_HtmlWinParser_SetContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3390     PyObject 
*resultobj
; 
3391     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3392     wxHtmlContainerCell 
*arg2 
= (wxHtmlContainerCell 
*) 0 ; 
3393     wxHtmlContainerCell 
*result
; 
3394     PyObject 
* obj0 
= 0 ; 
3395     PyObject 
* obj1 
= 0 ; 
3397         (char *) "self",(char *) "c", NULL 
 
3400     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetContainer",kwnames
,&obj0
,&obj1
)) goto fail
; 
3401     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3402     if (SWIG_arg_fail(1)) SWIG_fail
; 
3403     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
3404     if (SWIG_arg_fail(2)) SWIG_fail
; 
3406         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3407         result 
= (wxHtmlContainerCell 
*)(arg1
)->SetContainer(arg2
); 
3409         wxPyEndAllowThreads(__tstate
); 
3410         if (PyErr_Occurred()) SWIG_fail
; 
3412     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3419 static PyObject 
*_wrap_HtmlWinParser_CloseContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3420     PyObject 
*resultobj
; 
3421     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3422     wxHtmlContainerCell 
*result
; 
3423     PyObject 
* obj0 
= 0 ; 
3425         (char *) "self", NULL 
 
3428     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_CloseContainer",kwnames
,&obj0
)) goto fail
; 
3429     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3430     if (SWIG_arg_fail(1)) SWIG_fail
; 
3432         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3433         result 
= (wxHtmlContainerCell 
*)(arg1
)->CloseContainer(); 
3435         wxPyEndAllowThreads(__tstate
); 
3436         if (PyErr_Occurred()) SWIG_fail
; 
3438     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3445 static PyObject 
*_wrap_HtmlWinParser_GetFontSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3446     PyObject 
*resultobj
; 
3447     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3449     PyObject 
* obj0 
= 0 ; 
3451         (char *) "self", NULL 
 
3454     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontSize",kwnames
,&obj0
)) goto fail
; 
3455     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3456     if (SWIG_arg_fail(1)) SWIG_fail
; 
3458         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3459         result 
= (int)(arg1
)->GetFontSize(); 
3461         wxPyEndAllowThreads(__tstate
); 
3462         if (PyErr_Occurred()) SWIG_fail
; 
3465         resultobj 
= SWIG_From_int((int)(result
));  
3473 static PyObject 
*_wrap_HtmlWinParser_SetFontSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3474     PyObject 
*resultobj
; 
3475     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3477     PyObject 
* obj0 
= 0 ; 
3478     PyObject 
* obj1 
= 0 ; 
3480         (char *) "self",(char *) "s", NULL 
 
3483     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
3484     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3485     if (SWIG_arg_fail(1)) SWIG_fail
; 
3487         arg2 
= (int)(SWIG_As_int(obj1
));  
3488         if (SWIG_arg_fail(2)) SWIG_fail
; 
3491         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3492         (arg1
)->SetFontSize(arg2
); 
3494         wxPyEndAllowThreads(__tstate
); 
3495         if (PyErr_Occurred()) SWIG_fail
; 
3497     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3504 static PyObject 
*_wrap_HtmlWinParser_GetFontBold(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3505     PyObject 
*resultobj
; 
3506     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3508     PyObject 
* obj0 
= 0 ; 
3510         (char *) "self", NULL 
 
3513     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontBold",kwnames
,&obj0
)) goto fail
; 
3514     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3515     if (SWIG_arg_fail(1)) SWIG_fail
; 
3517         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3518         result 
= (int)(arg1
)->GetFontBold(); 
3520         wxPyEndAllowThreads(__tstate
); 
3521         if (PyErr_Occurred()) SWIG_fail
; 
3524         resultobj 
= SWIG_From_int((int)(result
));  
3532 static PyObject 
*_wrap_HtmlWinParser_SetFontBold(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3533     PyObject 
*resultobj
; 
3534     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3536     PyObject 
* obj0 
= 0 ; 
3537     PyObject 
* obj1 
= 0 ; 
3539         (char *) "self",(char *) "x", NULL 
 
3542     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontBold",kwnames
,&obj0
,&obj1
)) goto fail
; 
3543     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3544     if (SWIG_arg_fail(1)) SWIG_fail
; 
3546         arg2 
= (int)(SWIG_As_int(obj1
));  
3547         if (SWIG_arg_fail(2)) SWIG_fail
; 
3550         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3551         (arg1
)->SetFontBold(arg2
); 
3553         wxPyEndAllowThreads(__tstate
); 
3554         if (PyErr_Occurred()) SWIG_fail
; 
3556     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3563 static PyObject 
*_wrap_HtmlWinParser_GetFontItalic(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3564     PyObject 
*resultobj
; 
3565     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3567     PyObject 
* obj0 
= 0 ; 
3569         (char *) "self", NULL 
 
3572     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontItalic",kwnames
,&obj0
)) goto fail
; 
3573     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3574     if (SWIG_arg_fail(1)) SWIG_fail
; 
3576         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3577         result 
= (int)(arg1
)->GetFontItalic(); 
3579         wxPyEndAllowThreads(__tstate
); 
3580         if (PyErr_Occurred()) SWIG_fail
; 
3583         resultobj 
= SWIG_From_int((int)(result
));  
3591 static PyObject 
*_wrap_HtmlWinParser_SetFontItalic(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3592     PyObject 
*resultobj
; 
3593     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3595     PyObject 
* obj0 
= 0 ; 
3596     PyObject 
* obj1 
= 0 ; 
3598         (char *) "self",(char *) "x", NULL 
 
3601     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontItalic",kwnames
,&obj0
,&obj1
)) goto fail
; 
3602     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3603     if (SWIG_arg_fail(1)) SWIG_fail
; 
3605         arg2 
= (int)(SWIG_As_int(obj1
));  
3606         if (SWIG_arg_fail(2)) SWIG_fail
; 
3609         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3610         (arg1
)->SetFontItalic(arg2
); 
3612         wxPyEndAllowThreads(__tstate
); 
3613         if (PyErr_Occurred()) SWIG_fail
; 
3615     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3622 static PyObject 
*_wrap_HtmlWinParser_GetFontUnderlined(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3623     PyObject 
*resultobj
; 
3624     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3626     PyObject 
* obj0 
= 0 ; 
3628         (char *) "self", NULL 
 
3631     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontUnderlined",kwnames
,&obj0
)) goto fail
; 
3632     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3633     if (SWIG_arg_fail(1)) SWIG_fail
; 
3635         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3636         result 
= (int)(arg1
)->GetFontUnderlined(); 
3638         wxPyEndAllowThreads(__tstate
); 
3639         if (PyErr_Occurred()) SWIG_fail
; 
3642         resultobj 
= SWIG_From_int((int)(result
));  
3650 static PyObject 
*_wrap_HtmlWinParser_SetFontUnderlined(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3651     PyObject 
*resultobj
; 
3652     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3654     PyObject 
* obj0 
= 0 ; 
3655     PyObject 
* obj1 
= 0 ; 
3657         (char *) "self",(char *) "x", NULL 
 
3660     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontUnderlined",kwnames
,&obj0
,&obj1
)) goto fail
; 
3661     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3662     if (SWIG_arg_fail(1)) SWIG_fail
; 
3664         arg2 
= (int)(SWIG_As_int(obj1
));  
3665         if (SWIG_arg_fail(2)) SWIG_fail
; 
3668         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3669         (arg1
)->SetFontUnderlined(arg2
); 
3671         wxPyEndAllowThreads(__tstate
); 
3672         if (PyErr_Occurred()) SWIG_fail
; 
3674     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3681 static PyObject 
*_wrap_HtmlWinParser_GetFontFixed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3682     PyObject 
*resultobj
; 
3683     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3685     PyObject 
* obj0 
= 0 ; 
3687         (char *) "self", NULL 
 
3690     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontFixed",kwnames
,&obj0
)) goto fail
; 
3691     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3692     if (SWIG_arg_fail(1)) SWIG_fail
; 
3694         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3695         result 
= (int)(arg1
)->GetFontFixed(); 
3697         wxPyEndAllowThreads(__tstate
); 
3698         if (PyErr_Occurred()) SWIG_fail
; 
3701         resultobj 
= SWIG_From_int((int)(result
));  
3709 static PyObject 
*_wrap_HtmlWinParser_SetFontFixed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3710     PyObject 
*resultobj
; 
3711     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3713     PyObject 
* obj0 
= 0 ; 
3714     PyObject 
* obj1 
= 0 ; 
3716         (char *) "self",(char *) "x", NULL 
 
3719     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontFixed",kwnames
,&obj0
,&obj1
)) goto fail
; 
3720     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3721     if (SWIG_arg_fail(1)) SWIG_fail
; 
3723         arg2 
= (int)(SWIG_As_int(obj1
));  
3724         if (SWIG_arg_fail(2)) SWIG_fail
; 
3727         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3728         (arg1
)->SetFontFixed(arg2
); 
3730         wxPyEndAllowThreads(__tstate
); 
3731         if (PyErr_Occurred()) SWIG_fail
; 
3733     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3740 static PyObject 
*_wrap_HtmlWinParser_GetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3741     PyObject 
*resultobj
; 
3742     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3744     PyObject 
* obj0 
= 0 ; 
3746         (char *) "self", NULL 
 
3749     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetAlign",kwnames
,&obj0
)) goto fail
; 
3750     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3751     if (SWIG_arg_fail(1)) SWIG_fail
; 
3753         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3754         result 
= (int)(arg1
)->GetAlign(); 
3756         wxPyEndAllowThreads(__tstate
); 
3757         if (PyErr_Occurred()) SWIG_fail
; 
3760         resultobj 
= SWIG_From_int((int)(result
));  
3768 static PyObject 
*_wrap_HtmlWinParser_SetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3769     PyObject 
*resultobj
; 
3770     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3772     PyObject 
* obj0 
= 0 ; 
3773     PyObject 
* obj1 
= 0 ; 
3775         (char *) "self",(char *) "a", NULL 
 
3778     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
; 
3779     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3780     if (SWIG_arg_fail(1)) SWIG_fail
; 
3782         arg2 
= (int)(SWIG_As_int(obj1
));  
3783         if (SWIG_arg_fail(2)) SWIG_fail
; 
3786         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3787         (arg1
)->SetAlign(arg2
); 
3789         wxPyEndAllowThreads(__tstate
); 
3790         if (PyErr_Occurred()) SWIG_fail
; 
3792     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3799 static PyObject 
*_wrap_HtmlWinParser_GetLinkColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3800     PyObject 
*resultobj
; 
3801     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3803     PyObject 
* obj0 
= 0 ; 
3805         (char *) "self", NULL 
 
3808     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetLinkColor",kwnames
,&obj0
)) goto fail
; 
3809     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3810     if (SWIG_arg_fail(1)) SWIG_fail
; 
3812         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3813         result 
= (arg1
)->GetLinkColor(); 
3815         wxPyEndAllowThreads(__tstate
); 
3816         if (PyErr_Occurred()) SWIG_fail
; 
3819         wxColour 
* resultptr
; 
3820         resultptr 
= new wxColour((wxColour 
&)(result
)); 
3821         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
3829 static PyObject 
*_wrap_HtmlWinParser_SetLinkColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3830     PyObject 
*resultobj
; 
3831     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3832     wxColour 
*arg2 
= 0 ; 
3834     PyObject 
* obj0 
= 0 ; 
3835     PyObject 
* obj1 
= 0 ; 
3837         (char *) "self",(char *) "clr", NULL 
 
3840     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetLinkColor",kwnames
,&obj0
,&obj1
)) goto fail
; 
3841     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3842     if (SWIG_arg_fail(1)) SWIG_fail
; 
3845         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
3848         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3849         (arg1
)->SetLinkColor((wxColour 
const &)*arg2
); 
3851         wxPyEndAllowThreads(__tstate
); 
3852         if (PyErr_Occurred()) SWIG_fail
; 
3854     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3861 static PyObject 
*_wrap_HtmlWinParser_GetActualColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3862     PyObject 
*resultobj
; 
3863     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3865     PyObject 
* obj0 
= 0 ; 
3867         (char *) "self", NULL 
 
3870     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetActualColor",kwnames
,&obj0
)) goto fail
; 
3871     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3872     if (SWIG_arg_fail(1)) SWIG_fail
; 
3874         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3875         result 
= (arg1
)->GetActualColor(); 
3877         wxPyEndAllowThreads(__tstate
); 
3878         if (PyErr_Occurred()) SWIG_fail
; 
3881         wxColour 
* resultptr
; 
3882         resultptr 
= new wxColour((wxColour 
&)(result
)); 
3883         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
3891 static PyObject 
*_wrap_HtmlWinParser_SetActualColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3892     PyObject 
*resultobj
; 
3893     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3894     wxColour 
*arg2 
= 0 ; 
3896     PyObject 
* obj0 
= 0 ; 
3897     PyObject 
* obj1 
= 0 ; 
3899         (char *) "self",(char *) "clr", NULL 
 
3902     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetActualColor",kwnames
,&obj0
,&obj1
)) goto fail
; 
3903     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3904     if (SWIG_arg_fail(1)) SWIG_fail
; 
3907         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
3910         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3911         (arg1
)->SetActualColor((wxColour 
const &)*arg2
); 
3913         wxPyEndAllowThreads(__tstate
); 
3914         if (PyErr_Occurred()) SWIG_fail
; 
3916     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3923 static PyObject 
*_wrap_HtmlWinParser_SetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3924     PyObject 
*resultobj
; 
3925     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3926     wxString 
*arg2 
= 0 ; 
3927     bool temp2 
= false ; 
3928     PyObject 
* obj0 
= 0 ; 
3929     PyObject 
* obj1 
= 0 ; 
3931         (char *) "self",(char *) "link", NULL 
 
3934     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
; 
3935     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3936     if (SWIG_arg_fail(1)) SWIG_fail
; 
3938         arg2 
= wxString_in_helper(obj1
); 
3939         if (arg2 
== NULL
) SWIG_fail
; 
3943         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3944         (arg1
)->SetLink((wxString 
const &)*arg2
); 
3946         wxPyEndAllowThreads(__tstate
); 
3947         if (PyErr_Occurred()) SWIG_fail
; 
3949     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3964 static PyObject 
*_wrap_HtmlWinParser_CreateCurrentFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3965     PyObject 
*resultobj
; 
3966     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3968     PyObject 
* obj0 
= 0 ; 
3970         (char *) "self", NULL 
 
3973     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_CreateCurrentFont",kwnames
,&obj0
)) goto fail
; 
3974     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3975     if (SWIG_arg_fail(1)) SWIG_fail
; 
3977         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3978         result 
= (wxFont 
*)(arg1
)->CreateCurrentFont(); 
3980         wxPyEndAllowThreads(__tstate
); 
3981         if (PyErr_Occurred()) SWIG_fail
; 
3983     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFont
, 0); 
3990 static PyObject 
*_wrap_HtmlWinParser_GetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3991     PyObject 
*resultobj
; 
3992     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3993     SwigValueWrapper
<wxHtmlLinkInfo 
> result
; 
3994     PyObject 
* obj0 
= 0 ; 
3996         (char *) "self", NULL 
 
3999     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetLink",kwnames
,&obj0
)) goto fail
; 
4000     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
4001     if (SWIG_arg_fail(1)) SWIG_fail
; 
4003         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4004         result 
= (arg1
)->GetLink(); 
4006         wxPyEndAllowThreads(__tstate
); 
4007         if (PyErr_Occurred()) SWIG_fail
; 
4010         wxHtmlLinkInfo 
* resultptr
; 
4011         resultptr 
= new wxHtmlLinkInfo((wxHtmlLinkInfo 
&)(result
)); 
4012         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxHtmlLinkInfo
, 1); 
4020 static PyObject 
* HtmlWinParser_swigregister(PyObject 
*, PyObject 
*args
) { 
4022     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4023     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWinParser
, obj
); 
4025     return Py_BuildValue((char *)""); 
4027 static PyObject 
*_wrap_new_HtmlTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4028     PyObject 
*resultobj
; 
4029     wxPyHtmlTagHandler 
*result
; 
4034     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlTagHandler",kwnames
)) goto fail
; 
4036         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4037         result 
= (wxPyHtmlTagHandler 
*)new wxPyHtmlTagHandler(); 
4039         wxPyEndAllowThreads(__tstate
); 
4040         if (PyErr_Occurred()) SWIG_fail
; 
4042     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlTagHandler
, 1); 
4049 static PyObject 
*_wrap_HtmlTagHandler__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4050     PyObject 
*resultobj
; 
4051     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4052     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
4053     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
4054     PyObject 
* obj0 
= 0 ; 
4055     PyObject 
* obj1 
= 0 ; 
4056     PyObject 
* obj2 
= 0 ; 
4058         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
4061     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlTagHandler__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4062     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4063     if (SWIG_arg_fail(1)) SWIG_fail
; 
4067         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4068         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
4070         wxPyEndAllowThreads(__tstate
); 
4071         if (PyErr_Occurred()) SWIG_fail
; 
4073     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4080 static PyObject 
*_wrap_HtmlTagHandler_SetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4081     PyObject 
*resultobj
; 
4082     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4083     wxHtmlParser 
*arg2 
= (wxHtmlParser 
*) 0 ; 
4084     PyObject 
* obj0 
= 0 ; 
4085     PyObject 
* obj1 
= 0 ; 
4087         (char *) "self",(char *) "parser", NULL 
 
4090     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTagHandler_SetParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
4091     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4092     if (SWIG_arg_fail(1)) SWIG_fail
; 
4093     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
4094     if (SWIG_arg_fail(2)) SWIG_fail
; 
4096         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4097         (arg1
)->SetParser(arg2
); 
4099         wxPyEndAllowThreads(__tstate
); 
4100         if (PyErr_Occurred()) SWIG_fail
; 
4102     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4109 static PyObject 
*_wrap_HtmlTagHandler_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4110     PyObject 
*resultobj
; 
4111     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4112     wxHtmlParser 
*result
; 
4113     PyObject 
* obj0 
= 0 ; 
4115         (char *) "self", NULL 
 
4118     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTagHandler_GetParser",kwnames
,&obj0
)) goto fail
; 
4119     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4120     if (SWIG_arg_fail(1)) SWIG_fail
; 
4122         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4123         result 
= (wxHtmlParser 
*)(arg1
)->GetParser(); 
4125         wxPyEndAllowThreads(__tstate
); 
4126         if (PyErr_Occurred()) SWIG_fail
; 
4128     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlParser
, 0); 
4135 static PyObject 
*_wrap_HtmlTagHandler_ParseInner(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4136     PyObject 
*resultobj
; 
4137     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4138     wxHtmlTag 
*arg2 
= 0 ; 
4139     PyObject 
* obj0 
= 0 ; 
4140     PyObject 
* obj1 
= 0 ; 
4142         (char *) "self",(char *) "tag", NULL 
 
4145     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTagHandler_ParseInner",kwnames
,&obj0
,&obj1
)) goto fail
; 
4146     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4147     if (SWIG_arg_fail(1)) SWIG_fail
; 
4149         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
4150         if (SWIG_arg_fail(2)) SWIG_fail
; 
4152             SWIG_null_ref("wxHtmlTag"); 
4154         if (SWIG_arg_fail(2)) SWIG_fail
; 
4157         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4158         (arg1
)->ParseInner((wxHtmlTag 
const &)*arg2
); 
4160         wxPyEndAllowThreads(__tstate
); 
4161         if (PyErr_Occurred()) SWIG_fail
; 
4163     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4170 static PyObject 
* HtmlTagHandler_swigregister(PyObject 
*, PyObject 
*args
) { 
4172     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4173     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlTagHandler
, obj
); 
4175     return Py_BuildValue((char *)""); 
4177 static PyObject 
*_wrap_new_HtmlWinTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4178     PyObject 
*resultobj
; 
4179     wxPyHtmlWinTagHandler 
*result
; 
4184     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlWinTagHandler",kwnames
)) goto fail
; 
4186         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4187         result 
= (wxPyHtmlWinTagHandler 
*)new wxPyHtmlWinTagHandler(); 
4189         wxPyEndAllowThreads(__tstate
); 
4190         if (PyErr_Occurred()) SWIG_fail
; 
4192     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWinTagHandler
, 1); 
4199 static PyObject 
*_wrap_HtmlWinTagHandler__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4200     PyObject 
*resultobj
; 
4201     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4202     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
4203     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
4204     PyObject 
* obj0 
= 0 ; 
4205     PyObject 
* obj1 
= 0 ; 
4206     PyObject 
* obj2 
= 0 ; 
4208         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
4211     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWinTagHandler__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4212     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4213     if (SWIG_arg_fail(1)) SWIG_fail
; 
4217         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4218         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
4220         wxPyEndAllowThreads(__tstate
); 
4221         if (PyErr_Occurred()) SWIG_fail
; 
4223     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4230 static PyObject 
*_wrap_HtmlWinTagHandler_SetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4231     PyObject 
*resultobj
; 
4232     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4233     wxHtmlParser 
*arg2 
= (wxHtmlParser 
*) 0 ; 
4234     PyObject 
* obj0 
= 0 ; 
4235     PyObject 
* obj1 
= 0 ; 
4237         (char *) "self",(char *) "parser", NULL 
 
4240     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinTagHandler_SetParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
4241     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4242     if (SWIG_arg_fail(1)) SWIG_fail
; 
4243     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
4244     if (SWIG_arg_fail(2)) SWIG_fail
; 
4246         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4247         (arg1
)->SetParser(arg2
); 
4249         wxPyEndAllowThreads(__tstate
); 
4250         if (PyErr_Occurred()) SWIG_fail
; 
4252     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4259 static PyObject 
*_wrap_HtmlWinTagHandler_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4260     PyObject 
*resultobj
; 
4261     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4262     wxHtmlWinParser 
*result
; 
4263     PyObject 
* obj0 
= 0 ; 
4265         (char *) "self", NULL 
 
4268     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinTagHandler_GetParser",kwnames
,&obj0
)) goto fail
; 
4269     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4270     if (SWIG_arg_fail(1)) SWIG_fail
; 
4272         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4273         result 
= (wxHtmlWinParser 
*)(arg1
)->GetParser(); 
4275         wxPyEndAllowThreads(__tstate
); 
4276         if (PyErr_Occurred()) SWIG_fail
; 
4278     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 0); 
4285 static PyObject 
*_wrap_HtmlWinTagHandler_ParseInner(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4286     PyObject 
*resultobj
; 
4287     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4288     wxHtmlTag 
*arg2 
= 0 ; 
4289     PyObject 
* obj0 
= 0 ; 
4290     PyObject 
* obj1 
= 0 ; 
4292         (char *) "self",(char *) "tag", NULL 
 
4295     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinTagHandler_ParseInner",kwnames
,&obj0
,&obj1
)) goto fail
; 
4296     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4297     if (SWIG_arg_fail(1)) SWIG_fail
; 
4299         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
4300         if (SWIG_arg_fail(2)) SWIG_fail
; 
4302             SWIG_null_ref("wxHtmlTag"); 
4304         if (SWIG_arg_fail(2)) SWIG_fail
; 
4307         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4308         (arg1
)->ParseInner((wxHtmlTag 
const &)*arg2
); 
4310         wxPyEndAllowThreads(__tstate
); 
4311         if (PyErr_Occurred()) SWIG_fail
; 
4313     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4320 static PyObject 
* HtmlWinTagHandler_swigregister(PyObject 
*, PyObject 
*args
) { 
4322     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4323     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlWinTagHandler
, obj
); 
4325     return Py_BuildValue((char *)""); 
4327 static PyObject 
*_wrap_HtmlWinParser_AddTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4328     PyObject 
*resultobj
; 
4329     PyObject 
*arg1 
= (PyObject 
*) 0 ; 
4330     PyObject 
* obj0 
= 0 ; 
4332         (char *) "tagHandlerClass", NULL 
 
4335     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_AddTagHandler",kwnames
,&obj0
)) goto fail
; 
4338         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4339         wxHtmlWinParser_AddTagHandler(arg1
); 
4341         wxPyEndAllowThreads(__tstate
); 
4342         if (PyErr_Occurred()) SWIG_fail
; 
4344     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4351 static PyObject 
*_wrap_new_HtmlSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4352     PyObject 
*resultobj
; 
4353     wxHtmlSelection 
*result
; 
4358     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlSelection",kwnames
)) goto fail
; 
4360         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4361         result 
= (wxHtmlSelection 
*)new wxHtmlSelection(); 
4363         wxPyEndAllowThreads(__tstate
); 
4364         if (PyErr_Occurred()) SWIG_fail
; 
4366     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlSelection
, 1); 
4373 static PyObject 
*_wrap_delete_HtmlSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4374     PyObject 
*resultobj
; 
4375     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4376     PyObject 
* obj0 
= 0 ; 
4378         (char *) "self", NULL 
 
4381     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlSelection",kwnames
,&obj0
)) goto fail
; 
4382     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4383     if (SWIG_arg_fail(1)) SWIG_fail
; 
4385         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4388         wxPyEndAllowThreads(__tstate
); 
4389         if (PyErr_Occurred()) SWIG_fail
; 
4391     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4398 static PyObject 
*_wrap_HtmlSelection_Set(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4399     PyObject 
*resultobj
; 
4400     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4402     wxHtmlCell 
*arg3 
= (wxHtmlCell 
*) 0 ; 
4404     wxHtmlCell 
*arg5 
= (wxHtmlCell 
*) 0 ; 
4407     PyObject 
* obj0 
= 0 ; 
4408     PyObject 
* obj1 
= 0 ; 
4409     PyObject 
* obj2 
= 0 ; 
4410     PyObject 
* obj3 
= 0 ; 
4411     PyObject 
* obj4 
= 0 ; 
4413         (char *) "self",(char *) "fromPos",(char *) "fromCell",(char *) "toPos",(char *) "toCell", NULL 
 
4416     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlSelection_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
4417     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4418     if (SWIG_arg_fail(1)) SWIG_fail
; 
4421         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4423     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4424     if (SWIG_arg_fail(3)) SWIG_fail
; 
4427         if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
4429     SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4430     if (SWIG_arg_fail(5)) SWIG_fail
; 
4432         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4433         (arg1
)->Set((wxPoint 
const &)*arg2
,(wxHtmlCell 
const *)arg3
,(wxPoint 
const &)*arg4
,(wxHtmlCell 
const *)arg5
); 
4435         wxPyEndAllowThreads(__tstate
); 
4436         if (PyErr_Occurred()) SWIG_fail
; 
4438     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4445 static PyObject 
*_wrap_HtmlSelection_SetCells(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4446     PyObject 
*resultobj
; 
4447     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4448     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
4449     wxHtmlCell 
*arg3 
= (wxHtmlCell 
*) 0 ; 
4450     PyObject 
* obj0 
= 0 ; 
4451     PyObject 
* obj1 
= 0 ; 
4452     PyObject 
* obj2 
= 0 ; 
4454         (char *) "self",(char *) "fromCell",(char *) "toCell", NULL 
 
4457     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlSelection_SetCells",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4458     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4459     if (SWIG_arg_fail(1)) SWIG_fail
; 
4460     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4461     if (SWIG_arg_fail(2)) SWIG_fail
; 
4462     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4463     if (SWIG_arg_fail(3)) SWIG_fail
; 
4465         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4466         (arg1
)->Set((wxHtmlCell 
const *)arg2
,(wxHtmlCell 
const *)arg3
); 
4468         wxPyEndAllowThreads(__tstate
); 
4469         if (PyErr_Occurred()) SWIG_fail
; 
4471     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4478 static PyObject 
*_wrap_HtmlSelection_GetFromCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4479     PyObject 
*resultobj
; 
4480     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4482     PyObject 
* obj0 
= 0 ; 
4484         (char *) "self", NULL 
 
4487     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromCell",kwnames
,&obj0
)) goto fail
; 
4488     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4489     if (SWIG_arg_fail(1)) SWIG_fail
; 
4491         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4492         result 
= (wxHtmlCell 
*)((wxHtmlSelection 
const *)arg1
)->GetFromCell(); 
4494         wxPyEndAllowThreads(__tstate
); 
4495         if (PyErr_Occurred()) SWIG_fail
; 
4497     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
4504 static PyObject 
*_wrap_HtmlSelection_GetToCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4505     PyObject 
*resultobj
; 
4506     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4508     PyObject 
* obj0 
= 0 ; 
4510         (char *) "self", NULL 
 
4513     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToCell",kwnames
,&obj0
)) goto fail
; 
4514     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4515     if (SWIG_arg_fail(1)) SWIG_fail
; 
4517         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4518         result 
= (wxHtmlCell 
*)((wxHtmlSelection 
const *)arg1
)->GetToCell(); 
4520         wxPyEndAllowThreads(__tstate
); 
4521         if (PyErr_Occurred()) SWIG_fail
; 
4523     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
4530 static PyObject 
*_wrap_HtmlSelection_GetFromPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4531     PyObject 
*resultobj
; 
4532     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4534     PyObject 
* obj0 
= 0 ; 
4536         (char *) "self", NULL 
 
4539     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromPos",kwnames
,&obj0
)) goto fail
; 
4540     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4541     if (SWIG_arg_fail(1)) SWIG_fail
; 
4543         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4545             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetFromPos(); 
4546             result 
= (wxPoint 
*) &_result_ref
; 
4549         wxPyEndAllowThreads(__tstate
); 
4550         if (PyErr_Occurred()) SWIG_fail
; 
4552     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4559 static PyObject 
*_wrap_HtmlSelection_GetToPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4560     PyObject 
*resultobj
; 
4561     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4563     PyObject 
* obj0 
= 0 ; 
4565         (char *) "self", NULL 
 
4568     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToPos",kwnames
,&obj0
)) goto fail
; 
4569     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4570     if (SWIG_arg_fail(1)) SWIG_fail
; 
4572         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4574             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetToPos(); 
4575             result 
= (wxPoint 
*) &_result_ref
; 
4578         wxPyEndAllowThreads(__tstate
); 
4579         if (PyErr_Occurred()) SWIG_fail
; 
4581     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4588 static PyObject 
*_wrap_HtmlSelection_GetFromPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4589     PyObject 
*resultobj
; 
4590     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4592     PyObject 
* obj0 
= 0 ; 
4594         (char *) "self", NULL 
 
4597     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromPrivPos",kwnames
,&obj0
)) goto fail
; 
4598     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4599     if (SWIG_arg_fail(1)) SWIG_fail
; 
4601         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4603             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetFromPrivPos(); 
4604             result 
= (wxPoint 
*) &_result_ref
; 
4607         wxPyEndAllowThreads(__tstate
); 
4608         if (PyErr_Occurred()) SWIG_fail
; 
4610     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4617 static PyObject 
*_wrap_HtmlSelection_GetToPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4618     PyObject 
*resultobj
; 
4619     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4621     PyObject 
* obj0 
= 0 ; 
4623         (char *) "self", NULL 
 
4626     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToPrivPos",kwnames
,&obj0
)) goto fail
; 
4627     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4628     if (SWIG_arg_fail(1)) SWIG_fail
; 
4630         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4632             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetToPrivPos(); 
4633             result 
= (wxPoint 
*) &_result_ref
; 
4636         wxPyEndAllowThreads(__tstate
); 
4637         if (PyErr_Occurred()) SWIG_fail
; 
4639     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4646 static PyObject 
*_wrap_HtmlSelection_SetFromPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4647     PyObject 
*resultobj
; 
4648     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4651     PyObject 
* obj0 
= 0 ; 
4652     PyObject 
* obj1 
= 0 ; 
4654         (char *) "self",(char *) "pos", NULL 
 
4657     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlSelection_SetFromPrivPos",kwnames
,&obj0
,&obj1
)) goto fail
; 
4658     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4659     if (SWIG_arg_fail(1)) SWIG_fail
; 
4662         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4665         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4666         (arg1
)->SetFromPrivPos((wxPoint 
const &)*arg2
); 
4668         wxPyEndAllowThreads(__tstate
); 
4669         if (PyErr_Occurred()) SWIG_fail
; 
4671     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4678 static PyObject 
*_wrap_HtmlSelection_SetToPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4679     PyObject 
*resultobj
; 
4680     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4683     PyObject 
* obj0 
= 0 ; 
4684     PyObject 
* obj1 
= 0 ; 
4686         (char *) "self",(char *) "pos", NULL 
 
4689     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlSelection_SetToPrivPos",kwnames
,&obj0
,&obj1
)) goto fail
; 
4690     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4691     if (SWIG_arg_fail(1)) SWIG_fail
; 
4694         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4697         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4698         (arg1
)->SetToPrivPos((wxPoint 
const &)*arg2
); 
4700         wxPyEndAllowThreads(__tstate
); 
4701         if (PyErr_Occurred()) SWIG_fail
; 
4703     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4710 static PyObject 
*_wrap_HtmlSelection_ClearPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4711     PyObject 
*resultobj
; 
4712     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4713     PyObject 
* obj0 
= 0 ; 
4715         (char *) "self", NULL 
 
4718     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_ClearPrivPos",kwnames
,&obj0
)) goto fail
; 
4719     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4720     if (SWIG_arg_fail(1)) SWIG_fail
; 
4722         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4723         (arg1
)->ClearPrivPos(); 
4725         wxPyEndAllowThreads(__tstate
); 
4726         if (PyErr_Occurred()) SWIG_fail
; 
4728     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4735 static PyObject 
*_wrap_HtmlSelection_IsEmpty(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4736     PyObject 
*resultobj
; 
4737     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4739     PyObject 
* obj0 
= 0 ; 
4741         (char *) "self", NULL 
 
4744     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_IsEmpty",kwnames
,&obj0
)) goto fail
; 
4745     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4746     if (SWIG_arg_fail(1)) SWIG_fail
; 
4748         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4749         result 
= (bool)((wxHtmlSelection 
const *)arg1
)->IsEmpty(); 
4751         wxPyEndAllowThreads(__tstate
); 
4752         if (PyErr_Occurred()) SWIG_fail
; 
4755         resultobj 
= SWIG_From_bool((bool)(result
));  
4763 static PyObject 
* HtmlSelection_swigregister(PyObject 
*, PyObject 
*args
) { 
4765     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4766     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlSelection
, obj
); 
4768     return Py_BuildValue((char *)""); 
4770 static PyObject 
*_wrap_new_HtmlRenderingState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4771     PyObject 
*resultobj
; 
4772     wxHtmlRenderingState 
*result
; 
4777     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlRenderingState",kwnames
)) goto fail
; 
4779         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4780         result 
= (wxHtmlRenderingState 
*)new wxHtmlRenderingState(); 
4782         wxPyEndAllowThreads(__tstate
); 
4783         if (PyErr_Occurred()) SWIG_fail
; 
4785     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingState
, 1); 
4792 static PyObject 
*_wrap_delete_HtmlRenderingState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4793     PyObject 
*resultobj
; 
4794     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4795     PyObject 
* obj0 
= 0 ; 
4797         (char *) "self", NULL 
 
4800     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlRenderingState",kwnames
,&obj0
)) goto fail
; 
4801     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4802     if (SWIG_arg_fail(1)) SWIG_fail
; 
4804         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4807         wxPyEndAllowThreads(__tstate
); 
4808         if (PyErr_Occurred()) SWIG_fail
; 
4810     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4817 static PyObject 
*_wrap_HtmlRenderingState_SetSelectionState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4818     PyObject 
*resultobj
; 
4819     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4820     wxHtmlSelectionState arg2 
; 
4821     PyObject 
* obj0 
= 0 ; 
4822     PyObject 
* obj1 
= 0 ; 
4824         (char *) "self",(char *) "s", NULL 
 
4827     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetSelectionState",kwnames
,&obj0
,&obj1
)) goto fail
; 
4828     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4829     if (SWIG_arg_fail(1)) SWIG_fail
; 
4831         arg2 
= (wxHtmlSelectionState
)(SWIG_As_int(obj1
));  
4832         if (SWIG_arg_fail(2)) SWIG_fail
; 
4835         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4836         (arg1
)->SetSelectionState((wxHtmlSelectionState 
)arg2
); 
4838         wxPyEndAllowThreads(__tstate
); 
4839         if (PyErr_Occurred()) SWIG_fail
; 
4841     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4848 static PyObject 
*_wrap_HtmlRenderingState_GetSelectionState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4849     PyObject 
*resultobj
; 
4850     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4851     wxHtmlSelectionState result
; 
4852     PyObject 
* obj0 
= 0 ; 
4854         (char *) "self", NULL 
 
4857     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetSelectionState",kwnames
,&obj0
)) goto fail
; 
4858     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4859     if (SWIG_arg_fail(1)) SWIG_fail
; 
4861         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4862         result 
= (wxHtmlSelectionState
)((wxHtmlRenderingState 
const *)arg1
)->GetSelectionState(); 
4864         wxPyEndAllowThreads(__tstate
); 
4865         if (PyErr_Occurred()) SWIG_fail
; 
4867     resultobj 
= SWIG_From_int((result
)); 
4874 static PyObject 
*_wrap_HtmlRenderingState_SetFgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4875     PyObject 
*resultobj
; 
4876     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4877     wxColour 
*arg2 
= 0 ; 
4879     PyObject 
* obj0 
= 0 ; 
4880     PyObject 
* obj1 
= 0 ; 
4882         (char *) "self",(char *) "c", NULL 
 
4885     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetFgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
4886     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4887     if (SWIG_arg_fail(1)) SWIG_fail
; 
4890         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
4893         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4894         (arg1
)->SetFgColour((wxColour 
const &)*arg2
); 
4896         wxPyEndAllowThreads(__tstate
); 
4897         if (PyErr_Occurred()) SWIG_fail
; 
4899     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4906 static PyObject 
*_wrap_HtmlRenderingState_GetFgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4907     PyObject 
*resultobj
; 
4908     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4910     PyObject 
* obj0 
= 0 ; 
4912         (char *) "self", NULL 
 
4915     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetFgColour",kwnames
,&obj0
)) goto fail
; 
4916     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4917     if (SWIG_arg_fail(1)) SWIG_fail
; 
4919         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4921             wxColour 
const &_result_ref 
= ((wxHtmlRenderingState 
const *)arg1
)->GetFgColour(); 
4922             result 
= (wxColour 
*) &_result_ref
; 
4925         wxPyEndAllowThreads(__tstate
); 
4926         if (PyErr_Occurred()) SWIG_fail
; 
4928     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0); 
4935 static PyObject 
*_wrap_HtmlRenderingState_SetBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4936     PyObject 
*resultobj
; 
4937     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4938     wxColour 
*arg2 
= 0 ; 
4940     PyObject 
* obj0 
= 0 ; 
4941     PyObject 
* obj1 
= 0 ; 
4943         (char *) "self",(char *) "c", NULL 
 
4946     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
4947     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4948     if (SWIG_arg_fail(1)) SWIG_fail
; 
4951         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
4954         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4955         (arg1
)->SetBgColour((wxColour 
const &)*arg2
); 
4957         wxPyEndAllowThreads(__tstate
); 
4958         if (PyErr_Occurred()) SWIG_fail
; 
4960     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4967 static PyObject 
*_wrap_HtmlRenderingState_GetBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4968     PyObject 
*resultobj
; 
4969     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4971     PyObject 
* obj0 
= 0 ; 
4973         (char *) "self", NULL 
 
4976     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetBgColour",kwnames
,&obj0
)) goto fail
; 
4977     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4978     if (SWIG_arg_fail(1)) SWIG_fail
; 
4980         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4982             wxColour 
const &_result_ref 
= ((wxHtmlRenderingState 
const *)arg1
)->GetBgColour(); 
4983             result 
= (wxColour 
*) &_result_ref
; 
4986         wxPyEndAllowThreads(__tstate
); 
4987         if (PyErr_Occurred()) SWIG_fail
; 
4989     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0); 
4996 static PyObject 
* HtmlRenderingState_swigregister(PyObject 
*, PyObject 
*args
) { 
4998     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4999     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingState
, obj
); 
5001     return Py_BuildValue((char *)""); 
5003 static PyObject 
*_wrap_HtmlRenderingStyle_GetSelectedTextColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5004     PyObject 
*resultobj
; 
5005     wxHtmlRenderingStyle 
*arg1 
= (wxHtmlRenderingStyle 
*) 0 ; 
5006     wxColour 
*arg2 
= 0 ; 
5009     PyObject 
* obj0 
= 0 ; 
5010     PyObject 
* obj1 
= 0 ; 
5012         (char *) "self",(char *) "clr", NULL 
 
5015     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingStyle_GetSelectedTextColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5016     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5017     if (SWIG_arg_fail(1)) SWIG_fail
; 
5020         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5023         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5024         result 
= (arg1
)->GetSelectedTextColour((wxColour 
const &)*arg2
); 
5026         wxPyEndAllowThreads(__tstate
); 
5027         if (PyErr_Occurred()) SWIG_fail
; 
5030         wxColour 
* resultptr
; 
5031         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5032         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5040 static PyObject 
*_wrap_HtmlRenderingStyle_GetSelectedTextBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5041     PyObject 
*resultobj
; 
5042     wxHtmlRenderingStyle 
*arg1 
= (wxHtmlRenderingStyle 
*) 0 ; 
5043     wxColour 
*arg2 
= 0 ; 
5046     PyObject 
* obj0 
= 0 ; 
5047     PyObject 
* obj1 
= 0 ; 
5049         (char *) "self",(char *) "clr", NULL 
 
5052     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingStyle_GetSelectedTextBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5053     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5054     if (SWIG_arg_fail(1)) SWIG_fail
; 
5057         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5060         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5061         result 
= (arg1
)->GetSelectedTextBgColour((wxColour 
const &)*arg2
); 
5063         wxPyEndAllowThreads(__tstate
); 
5064         if (PyErr_Occurred()) SWIG_fail
; 
5067         wxColour 
* resultptr
; 
5068         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5069         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5077 static PyObject 
* HtmlRenderingStyle_swigregister(PyObject 
*, PyObject 
*args
) { 
5079     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5080     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingStyle
, obj
); 
5082     return Py_BuildValue((char *)""); 
5084 static PyObject 
*_wrap_DefaultHtmlRenderingStyle_GetSelectedTextColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5085     PyObject 
*resultobj
; 
5086     wxDefaultHtmlRenderingStyle 
*arg1 
= (wxDefaultHtmlRenderingStyle 
*) 0 ; 
5087     wxColour 
*arg2 
= 0 ; 
5090     PyObject 
* obj0 
= 0 ; 
5091     PyObject 
* obj1 
= 0 ; 
5093         (char *) "self",(char *) "clr", NULL 
 
5096     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DefaultHtmlRenderingStyle_GetSelectedTextColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5097     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5098     if (SWIG_arg_fail(1)) SWIG_fail
; 
5101         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5104         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5105         result 
= (arg1
)->GetSelectedTextColour((wxColour 
const &)*arg2
); 
5107         wxPyEndAllowThreads(__tstate
); 
5108         if (PyErr_Occurred()) SWIG_fail
; 
5111         wxColour 
* resultptr
; 
5112         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5113         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5121 static PyObject 
*_wrap_DefaultHtmlRenderingStyle_GetSelectedTextBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5122     PyObject 
*resultobj
; 
5123     wxDefaultHtmlRenderingStyle 
*arg1 
= (wxDefaultHtmlRenderingStyle 
*) 0 ; 
5124     wxColour 
*arg2 
= 0 ; 
5127     PyObject 
* obj0 
= 0 ; 
5128     PyObject 
* obj1 
= 0 ; 
5130         (char *) "self",(char *) "clr", NULL 
 
5133     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DefaultHtmlRenderingStyle_GetSelectedTextBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5134     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5135     if (SWIG_arg_fail(1)) SWIG_fail
; 
5138         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5141         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5142         result 
= (arg1
)->GetSelectedTextBgColour((wxColour 
const &)*arg2
); 
5144         wxPyEndAllowThreads(__tstate
); 
5145         if (PyErr_Occurred()) SWIG_fail
; 
5148         wxColour 
* resultptr
; 
5149         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5150         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5158 static PyObject 
* DefaultHtmlRenderingStyle_swigregister(PyObject 
*, PyObject 
*args
) { 
5160     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5161     SWIG_TypeClientData(SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, obj
); 
5163     return Py_BuildValue((char *)""); 
5165 static PyObject 
*_wrap_new_HtmlRenderingInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5166     PyObject 
*resultobj
; 
5167     wxHtmlRenderingInfo 
*result
; 
5172     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlRenderingInfo",kwnames
)) goto fail
; 
5174         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5175         result 
= (wxHtmlRenderingInfo 
*)new wxHtmlRenderingInfo(); 
5177         wxPyEndAllowThreads(__tstate
); 
5178         if (PyErr_Occurred()) SWIG_fail
; 
5180     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingInfo
, 1); 
5187 static PyObject 
*_wrap_delete_HtmlRenderingInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5188     PyObject 
*resultobj
; 
5189     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5190     PyObject 
* obj0 
= 0 ; 
5192         (char *) "self", NULL 
 
5195     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlRenderingInfo",kwnames
,&obj0
)) goto fail
; 
5196     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5197     if (SWIG_arg_fail(1)) SWIG_fail
; 
5199         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5202         wxPyEndAllowThreads(__tstate
); 
5203         if (PyErr_Occurred()) SWIG_fail
; 
5205     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5212 static PyObject 
*_wrap_HtmlRenderingInfo_SetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5213     PyObject 
*resultobj
; 
5214     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5215     wxHtmlSelection 
*arg2 
= (wxHtmlSelection 
*) 0 ; 
5216     PyObject 
* obj0 
= 0 ; 
5217     PyObject 
* obj1 
= 0 ; 
5219         (char *) "self",(char *) "s", NULL 
 
5222     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingInfo_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
5223     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5224     if (SWIG_arg_fail(1)) SWIG_fail
; 
5225     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
5226     if (SWIG_arg_fail(2)) SWIG_fail
; 
5228         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5229         (arg1
)->SetSelection(arg2
); 
5231         wxPyEndAllowThreads(__tstate
); 
5232         if (PyErr_Occurred()) SWIG_fail
; 
5234     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5241 static PyObject 
*_wrap_HtmlRenderingInfo_GetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5242     PyObject 
*resultobj
; 
5243     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5244     wxHtmlSelection 
*result
; 
5245     PyObject 
* obj0 
= 0 ; 
5247         (char *) "self", NULL 
 
5250     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetSelection",kwnames
,&obj0
)) goto fail
; 
5251     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5252     if (SWIG_arg_fail(1)) SWIG_fail
; 
5254         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5255         result 
= (wxHtmlSelection 
*)((wxHtmlRenderingInfo 
const *)arg1
)->GetSelection(); 
5257         wxPyEndAllowThreads(__tstate
); 
5258         if (PyErr_Occurred()) SWIG_fail
; 
5260     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlSelection
, 0); 
5267 static PyObject 
*_wrap_HtmlRenderingInfo_SetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5268     PyObject 
*resultobj
; 
5269     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5270     wxHtmlRenderingStyle 
*arg2 
= (wxHtmlRenderingStyle 
*) 0 ; 
5271     PyObject 
* obj0 
= 0 ; 
5272     PyObject 
* obj1 
= 0 ; 
5274         (char *) "self",(char *) "style", NULL 
 
5277     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingInfo_SetStyle",kwnames
,&obj0
,&obj1
)) goto fail
; 
5278     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5279     if (SWIG_arg_fail(1)) SWIG_fail
; 
5280     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5281     if (SWIG_arg_fail(2)) SWIG_fail
; 
5283         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5284         (arg1
)->SetStyle(arg2
); 
5286         wxPyEndAllowThreads(__tstate
); 
5287         if (PyErr_Occurred()) SWIG_fail
; 
5289     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5296 static PyObject 
*_wrap_HtmlRenderingInfo_GetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5297     PyObject 
*resultobj
; 
5298     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5299     wxHtmlRenderingStyle 
*result
; 
5300     PyObject 
* obj0 
= 0 ; 
5302         (char *) "self", NULL 
 
5305     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetStyle",kwnames
,&obj0
)) goto fail
; 
5306     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5307     if (SWIG_arg_fail(1)) SWIG_fail
; 
5309         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5311             wxHtmlRenderingStyle 
&_result_ref 
= (arg1
)->GetStyle(); 
5312             result 
= (wxHtmlRenderingStyle 
*) &_result_ref
; 
5315         wxPyEndAllowThreads(__tstate
); 
5316         if (PyErr_Occurred()) SWIG_fail
; 
5318     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingStyle
, 0); 
5325 static PyObject 
*_wrap_HtmlRenderingInfo_GetState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5326     PyObject 
*resultobj
; 
5327     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5328     wxHtmlRenderingState 
*result
; 
5329     PyObject 
* obj0 
= 0 ; 
5331         (char *) "self", NULL 
 
5334     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetState",kwnames
,&obj0
)) goto fail
; 
5335     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5336     if (SWIG_arg_fail(1)) SWIG_fail
; 
5338         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5340             wxHtmlRenderingState 
&_result_ref 
= (arg1
)->GetState(); 
5341             result 
= (wxHtmlRenderingState 
*) &_result_ref
; 
5344         wxPyEndAllowThreads(__tstate
); 
5345         if (PyErr_Occurred()) SWIG_fail
; 
5347     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingState
, 0); 
5354 static PyObject 
* HtmlRenderingInfo_swigregister(PyObject 
*, PyObject 
*args
) { 
5356     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5357     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingInfo
, obj
); 
5359     return Py_BuildValue((char *)""); 
5361 static PyObject 
*_wrap_new_HtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5362     PyObject 
*resultobj
; 
5368     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlCell",kwnames
)) goto fail
; 
5370         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5371         result 
= (wxHtmlCell 
*)new wxHtmlCell(); 
5373         wxPyEndAllowThreads(__tstate
); 
5374         if (PyErr_Occurred()) SWIG_fail
; 
5376     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 1); 
5383 static PyObject 
*_wrap_HtmlCell_GetPosX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5384     PyObject 
*resultobj
; 
5385     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5387     PyObject 
* obj0 
= 0 ; 
5389         (char *) "self", NULL 
 
5392     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetPosX",kwnames
,&obj0
)) goto fail
; 
5393     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5394     if (SWIG_arg_fail(1)) SWIG_fail
; 
5396         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5397         result 
= (int)(arg1
)->GetPosX(); 
5399         wxPyEndAllowThreads(__tstate
); 
5400         if (PyErr_Occurred()) SWIG_fail
; 
5403         resultobj 
= SWIG_From_int((int)(result
));  
5411 static PyObject 
*_wrap_HtmlCell_GetPosY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5412     PyObject 
*resultobj
; 
5413     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5415     PyObject 
* obj0 
= 0 ; 
5417         (char *) "self", NULL 
 
5420     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetPosY",kwnames
,&obj0
)) goto fail
; 
5421     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5422     if (SWIG_arg_fail(1)) SWIG_fail
; 
5424         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5425         result 
= (int)(arg1
)->GetPosY(); 
5427         wxPyEndAllowThreads(__tstate
); 
5428         if (PyErr_Occurred()) SWIG_fail
; 
5431         resultobj 
= SWIG_From_int((int)(result
));  
5439 static PyObject 
*_wrap_HtmlCell_GetWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5440     PyObject 
*resultobj
; 
5441     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5443     PyObject 
* obj0 
= 0 ; 
5445         (char *) "self", NULL 
 
5448     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetWidth",kwnames
,&obj0
)) goto fail
; 
5449     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5450     if (SWIG_arg_fail(1)) SWIG_fail
; 
5452         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5453         result 
= (int)(arg1
)->GetWidth(); 
5455         wxPyEndAllowThreads(__tstate
); 
5456         if (PyErr_Occurred()) SWIG_fail
; 
5459         resultobj 
= SWIG_From_int((int)(result
));  
5467 static PyObject 
*_wrap_HtmlCell_GetHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5468     PyObject 
*resultobj
; 
5469     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5471     PyObject 
* obj0 
= 0 ; 
5473         (char *) "self", NULL 
 
5476     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetHeight",kwnames
,&obj0
)) goto fail
; 
5477     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5478     if (SWIG_arg_fail(1)) SWIG_fail
; 
5480         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5481         result 
= (int)(arg1
)->GetHeight(); 
5483         wxPyEndAllowThreads(__tstate
); 
5484         if (PyErr_Occurred()) SWIG_fail
; 
5487         resultobj 
= SWIG_From_int((int)(result
));  
5495 static PyObject 
*_wrap_HtmlCell_GetDescent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5496     PyObject 
*resultobj
; 
5497     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5499     PyObject 
* obj0 
= 0 ; 
5501         (char *) "self", NULL 
 
5504     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetDescent",kwnames
,&obj0
)) goto fail
; 
5505     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5506     if (SWIG_arg_fail(1)) SWIG_fail
; 
5508         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5509         result 
= (int)(arg1
)->GetDescent(); 
5511         wxPyEndAllowThreads(__tstate
); 
5512         if (PyErr_Occurred()) SWIG_fail
; 
5515         resultobj 
= SWIG_From_int((int)(result
));  
5523 static PyObject 
*_wrap_HtmlCell_GetMaxTotalWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5524     PyObject 
*resultobj
; 
5525     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5527     PyObject 
* obj0 
= 0 ; 
5529         (char *) "self", NULL 
 
5532     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetMaxTotalWidth",kwnames
,&obj0
)) goto fail
; 
5533     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5534     if (SWIG_arg_fail(1)) SWIG_fail
; 
5536         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5537         result 
= (int)((wxHtmlCell 
const *)arg1
)->GetMaxTotalWidth(); 
5539         wxPyEndAllowThreads(__tstate
); 
5540         if (PyErr_Occurred()) SWIG_fail
; 
5543         resultobj 
= SWIG_From_int((int)(result
));  
5551 static PyObject 
*_wrap_HtmlCell_GetId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5552     PyObject 
*resultobj
; 
5553     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5555     PyObject 
* obj0 
= 0 ; 
5557         (char *) "self", NULL 
 
5560     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetId",kwnames
,&obj0
)) goto fail
; 
5561     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5562     if (SWIG_arg_fail(1)) SWIG_fail
; 
5564         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5566             wxString 
const &_result_ref 
= ((wxHtmlCell 
const *)arg1
)->GetId(); 
5567             result 
= (wxString 
*) &_result_ref
; 
5570         wxPyEndAllowThreads(__tstate
); 
5571         if (PyErr_Occurred()) SWIG_fail
; 
5575         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
5577         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
5586 static PyObject 
*_wrap_HtmlCell_SetId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5587     PyObject 
*resultobj
; 
5588     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5589     wxString 
*arg2 
= 0 ; 
5590     bool temp2 
= false ; 
5591     PyObject 
* obj0 
= 0 ; 
5592     PyObject 
* obj1 
= 0 ; 
5594         (char *) "self",(char *) "id", NULL 
 
5597     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetId",kwnames
,&obj0
,&obj1
)) goto fail
; 
5598     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5599     if (SWIG_arg_fail(1)) SWIG_fail
; 
5601         arg2 
= wxString_in_helper(obj1
); 
5602         if (arg2 
== NULL
) SWIG_fail
; 
5606         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5607         (arg1
)->SetId((wxString 
const &)*arg2
); 
5609         wxPyEndAllowThreads(__tstate
); 
5610         if (PyErr_Occurred()) SWIG_fail
; 
5612     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5627 static PyObject 
*_wrap_HtmlCell_GetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5628     PyObject 
*resultobj
; 
5629     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5630     int arg2 
= (int) 0 ; 
5631     int arg3 
= (int) 0 ; 
5632     wxHtmlLinkInfo 
*result
; 
5633     PyObject 
* obj0 
= 0 ; 
5634     PyObject 
* obj1 
= 0 ; 
5635     PyObject 
* obj2 
= 0 ; 
5637         (char *) "self",(char *) "x",(char *) "y", NULL 
 
5640     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:HtmlCell_GetLink",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5641     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5642     if (SWIG_arg_fail(1)) SWIG_fail
; 
5645             arg2 
= (int)(SWIG_As_int(obj1
));  
5646             if (SWIG_arg_fail(2)) SWIG_fail
; 
5651             arg3 
= (int)(SWIG_As_int(obj2
));  
5652             if (SWIG_arg_fail(3)) SWIG_fail
; 
5656         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5657         result 
= (wxHtmlLinkInfo 
*)(arg1
)->GetLink(arg2
,arg3
); 
5659         wxPyEndAllowThreads(__tstate
); 
5660         if (PyErr_Occurred()) SWIG_fail
; 
5662     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlLinkInfo
, 0); 
5669 static PyObject 
*_wrap_HtmlCell_GetNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5670     PyObject 
*resultobj
; 
5671     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5673     PyObject 
* obj0 
= 0 ; 
5675         (char *) "self", NULL 
 
5678     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetNext",kwnames
,&obj0
)) goto fail
; 
5679     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5680     if (SWIG_arg_fail(1)) SWIG_fail
; 
5682         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5683         result 
= (wxHtmlCell 
*)(arg1
)->GetNext(); 
5685         wxPyEndAllowThreads(__tstate
); 
5686         if (PyErr_Occurred()) SWIG_fail
; 
5688     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
5695 static PyObject 
*_wrap_HtmlCell_GetParent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5696     PyObject 
*resultobj
; 
5697     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5698     wxHtmlContainerCell 
*result
; 
5699     PyObject 
* obj0 
= 0 ; 
5701         (char *) "self", NULL 
 
5704     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetParent",kwnames
,&obj0
)) goto fail
; 
5705     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5706     if (SWIG_arg_fail(1)) SWIG_fail
; 
5708         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5709         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetParent(); 
5711         wxPyEndAllowThreads(__tstate
); 
5712         if (PyErr_Occurred()) SWIG_fail
; 
5714     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
5721 static PyObject 
*_wrap_HtmlCell_GetFirstChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5722     PyObject 
*resultobj
; 
5723     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5725     PyObject 
* obj0 
= 0 ; 
5727         (char *) "self", NULL 
 
5730     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetFirstChild",kwnames
,&obj0
)) goto fail
; 
5731     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5732     if (SWIG_arg_fail(1)) SWIG_fail
; 
5734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5735         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetFirstChild(); 
5737         wxPyEndAllowThreads(__tstate
); 
5738         if (PyErr_Occurred()) SWIG_fail
; 
5740     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
5747 static PyObject 
*_wrap_HtmlCell_GetCursor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5748     PyObject 
*resultobj
; 
5749     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5751     PyObject 
* obj0 
= 0 ; 
5753         (char *) "self", NULL 
 
5756     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetCursor",kwnames
,&obj0
)) goto fail
; 
5757     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5758     if (SWIG_arg_fail(1)) SWIG_fail
; 
5760         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5761         result 
= ((wxHtmlCell 
const *)arg1
)->GetCursor(); 
5763         wxPyEndAllowThreads(__tstate
); 
5764         if (PyErr_Occurred()) SWIG_fail
; 
5767         wxCursor 
* resultptr
; 
5768         resultptr 
= new wxCursor((wxCursor 
&)(result
)); 
5769         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxCursor
, 1); 
5777 static PyObject 
*_wrap_HtmlCell_IsFormattingCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5778     PyObject 
*resultobj
; 
5779     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5781     PyObject 
* obj0 
= 0 ; 
5783         (char *) "self", NULL 
 
5786     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsFormattingCell",kwnames
,&obj0
)) goto fail
; 
5787     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5788     if (SWIG_arg_fail(1)) SWIG_fail
; 
5790         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5791         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsFormattingCell(); 
5793         wxPyEndAllowThreads(__tstate
); 
5794         if (PyErr_Occurred()) SWIG_fail
; 
5797         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
5805 static PyObject 
*_wrap_HtmlCell_SetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5806     PyObject 
*resultobj
; 
5807     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5808     wxHtmlLinkInfo 
*arg2 
= 0 ; 
5809     PyObject 
* obj0 
= 0 ; 
5810     PyObject 
* obj1 
= 0 ; 
5812         (char *) "self",(char *) "link", NULL 
 
5815     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
; 
5816     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5817     if (SWIG_arg_fail(1)) SWIG_fail
; 
5819         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5820         if (SWIG_arg_fail(2)) SWIG_fail
; 
5822             SWIG_null_ref("wxHtmlLinkInfo"); 
5824         if (SWIG_arg_fail(2)) SWIG_fail
; 
5827         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5828         (arg1
)->SetLink((wxHtmlLinkInfo 
const &)*arg2
); 
5830         wxPyEndAllowThreads(__tstate
); 
5831         if (PyErr_Occurred()) SWIG_fail
; 
5833     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5840 static PyObject 
*_wrap_HtmlCell_SetNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5841     PyObject 
*resultobj
; 
5842     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5843     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
5844     PyObject 
* obj0 
= 0 ; 
5845     PyObject 
* obj1 
= 0 ; 
5847         (char *) "self",(char *) "cell", NULL 
 
5850     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetNext",kwnames
,&obj0
,&obj1
)) goto fail
; 
5851     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5852     if (SWIG_arg_fail(1)) SWIG_fail
; 
5853     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5854     if (SWIG_arg_fail(2)) SWIG_fail
; 
5856         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5857         (arg1
)->SetNext(arg2
); 
5859         wxPyEndAllowThreads(__tstate
); 
5860         if (PyErr_Occurred()) SWIG_fail
; 
5862     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5869 static PyObject 
*_wrap_HtmlCell_SetParent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5870     PyObject 
*resultobj
; 
5871     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5872     wxHtmlContainerCell 
*arg2 
= (wxHtmlContainerCell 
*) 0 ; 
5873     PyObject 
* obj0 
= 0 ; 
5874     PyObject 
* obj1 
= 0 ; 
5876         (char *) "self",(char *) "p", NULL 
 
5879     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetParent",kwnames
,&obj0
,&obj1
)) goto fail
; 
5880     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5881     if (SWIG_arg_fail(1)) SWIG_fail
; 
5882     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5883     if (SWIG_arg_fail(2)) SWIG_fail
; 
5885         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5886         (arg1
)->SetParent(arg2
); 
5888         wxPyEndAllowThreads(__tstate
); 
5889         if (PyErr_Occurred()) SWIG_fail
; 
5891     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5898 static PyObject 
*_wrap_HtmlCell_SetPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5899     PyObject 
*resultobj
; 
5900     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5903     PyObject 
* obj0 
= 0 ; 
5904     PyObject 
* obj1 
= 0 ; 
5905     PyObject 
* obj2 
= 0 ; 
5907         (char *) "self",(char *) "x",(char *) "y", NULL 
 
5910     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlCell_SetPos",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5911     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5912     if (SWIG_arg_fail(1)) SWIG_fail
; 
5914         arg2 
= (int)(SWIG_As_int(obj1
));  
5915         if (SWIG_arg_fail(2)) SWIG_fail
; 
5918         arg3 
= (int)(SWIG_As_int(obj2
));  
5919         if (SWIG_arg_fail(3)) SWIG_fail
; 
5922         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5923         (arg1
)->SetPos(arg2
,arg3
); 
5925         wxPyEndAllowThreads(__tstate
); 
5926         if (PyErr_Occurred()) SWIG_fail
; 
5928     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5935 static PyObject 
*_wrap_HtmlCell_Layout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5936     PyObject 
*resultobj
; 
5937     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5939     PyObject 
* obj0 
= 0 ; 
5940     PyObject 
* obj1 
= 0 ; 
5942         (char *) "self",(char *) "w", NULL 
 
5945     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_Layout",kwnames
,&obj0
,&obj1
)) goto fail
; 
5946     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5947     if (SWIG_arg_fail(1)) SWIG_fail
; 
5949         arg2 
= (int)(SWIG_As_int(obj1
));  
5950         if (SWIG_arg_fail(2)) SWIG_fail
; 
5953         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5954         (arg1
)->Layout(arg2
); 
5956         wxPyEndAllowThreads(__tstate
); 
5957         if (PyErr_Occurred()) SWIG_fail
; 
5959     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5966 static PyObject 
*_wrap_HtmlCell_Draw(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5967     PyObject 
*resultobj
; 
5968     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5974     wxHtmlRenderingInfo 
*arg7 
= 0 ; 
5975     PyObject 
* obj0 
= 0 ; 
5976     PyObject 
* obj1 
= 0 ; 
5977     PyObject 
* obj2 
= 0 ; 
5978     PyObject 
* obj3 
= 0 ; 
5979     PyObject 
* obj4 
= 0 ; 
5980     PyObject 
* obj5 
= 0 ; 
5981     PyObject 
* obj6 
= 0 ; 
5983         (char *) "self",(char *) "dc",(char *) "x",(char *) "y",(char *) "view_y1",(char *) "view_y2",(char *) "info", NULL 
 
5986     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:HtmlCell_Draw",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
5987     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5988     if (SWIG_arg_fail(1)) SWIG_fail
; 
5990         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
5991         if (SWIG_arg_fail(2)) SWIG_fail
; 
5993             SWIG_null_ref("wxDC"); 
5995         if (SWIG_arg_fail(2)) SWIG_fail
; 
5998         arg3 
= (int)(SWIG_As_int(obj2
));  
5999         if (SWIG_arg_fail(3)) SWIG_fail
; 
6002         arg4 
= (int)(SWIG_As_int(obj3
));  
6003         if (SWIG_arg_fail(4)) SWIG_fail
; 
6006         arg5 
= (int)(SWIG_As_int(obj4
));  
6007         if (SWIG_arg_fail(5)) SWIG_fail
; 
6010         arg6 
= (int)(SWIG_As_int(obj5
));  
6011         if (SWIG_arg_fail(6)) SWIG_fail
; 
6014         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
6015         if (SWIG_arg_fail(7)) SWIG_fail
; 
6017             SWIG_null_ref("wxHtmlRenderingInfo"); 
6019         if (SWIG_arg_fail(7)) SWIG_fail
; 
6022         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6023         (arg1
)->Draw(*arg2
,arg3
,arg4
,arg5
,arg6
,*arg7
); 
6025         wxPyEndAllowThreads(__tstate
); 
6026         if (PyErr_Occurred()) SWIG_fail
; 
6028     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6035 static PyObject 
*_wrap_HtmlCell_DrawInvisible(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6036     PyObject 
*resultobj
; 
6037     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6041     wxHtmlRenderingInfo 
*arg5 
= 0 ; 
6042     PyObject 
* obj0 
= 0 ; 
6043     PyObject 
* obj1 
= 0 ; 
6044     PyObject 
* obj2 
= 0 ; 
6045     PyObject 
* obj3 
= 0 ; 
6046     PyObject 
* obj4 
= 0 ; 
6048         (char *) "self",(char *) "dc",(char *) "x",(char *) "y",(char *) "info", NULL 
 
6051     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlCell_DrawInvisible",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
6052     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6053     if (SWIG_arg_fail(1)) SWIG_fail
; 
6055         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
6056         if (SWIG_arg_fail(2)) SWIG_fail
; 
6058             SWIG_null_ref("wxDC"); 
6060         if (SWIG_arg_fail(2)) SWIG_fail
; 
6063         arg3 
= (int)(SWIG_As_int(obj2
));  
6064         if (SWIG_arg_fail(3)) SWIG_fail
; 
6067         arg4 
= (int)(SWIG_As_int(obj3
));  
6068         if (SWIG_arg_fail(4)) SWIG_fail
; 
6071         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
6072         if (SWIG_arg_fail(5)) SWIG_fail
; 
6074             SWIG_null_ref("wxHtmlRenderingInfo"); 
6076         if (SWIG_arg_fail(5)) SWIG_fail
; 
6079         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6080         (arg1
)->DrawInvisible(*arg2
,arg3
,arg4
,*arg5
); 
6082         wxPyEndAllowThreads(__tstate
); 
6083         if (PyErr_Occurred()) SWIG_fail
; 
6085     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6092 static PyObject 
*_wrap_HtmlCell_Find(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6093     PyObject 
*resultobj
; 
6094     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6096     void *arg3 
= (void *) 0 ; 
6098     PyObject 
* obj0 
= 0 ; 
6099     PyObject 
* obj1 
= 0 ; 
6100     PyObject 
* obj2 
= 0 ; 
6102         (char *) "self",(char *) "condition",(char *) "param", NULL 
 
6105     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlCell_Find",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6106     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6107     if (SWIG_arg_fail(1)) SWIG_fail
; 
6109         arg2 
= (int)(SWIG_As_int(obj1
));  
6110         if (SWIG_arg_fail(2)) SWIG_fail
; 
6113         if ((SWIG_ConvertPtr(obj2
,(void **)(&arg3
),0,SWIG_POINTER_EXCEPTION
|0))== -1) { 
6114             SWIG_arg_fail(3);SWIG_fail
; 
6118         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6119         result 
= (wxHtmlCell 
*)(arg1
)->Find(arg2
,(void const *)arg3
); 
6121         wxPyEndAllowThreads(__tstate
); 
6122         if (PyErr_Occurred()) SWIG_fail
; 
6124     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6131 static PyObject 
*_wrap_HtmlCell_AdjustPagebreak(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6132     PyObject 
*resultobj
; 
6133     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6134     int *arg2 
= (int *) 0 ; 
6138     PyObject 
* obj0 
= 0 ; 
6139     PyObject 
* obj1 
= 0 ; 
6141         (char *) "self",(char *) "INOUT", NULL 
 
6144     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_AdjustPagebreak",kwnames
,&obj0
,&obj1
)) goto fail
; 
6145     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6146     if (SWIG_arg_fail(1)) SWIG_fail
; 
6148         if (!(SWIG_ConvertPtr(obj1
,(void **)(&arg2
),SWIGTYPE_p_int
,0) != -1)) { 
6149             temp2 
= SWIG_As_int(obj1
); 
6150             if (SWIG_arg_fail(2)) SWIG_fail
; 
6156         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6157         result 
= (bool)(arg1
)->AdjustPagebreak(arg2
); 
6159         wxPyEndAllowThreads(__tstate
); 
6160         if (PyErr_Occurred()) SWIG_fail
; 
6163         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6165     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
6166     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
6173 static PyObject 
*_wrap_HtmlCell_SetCanLiveOnPagebreak(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6174     PyObject 
*resultobj
; 
6175     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6177     PyObject 
* obj0 
= 0 ; 
6178     PyObject 
* obj1 
= 0 ; 
6180         (char *) "self",(char *) "can", NULL 
 
6183     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetCanLiveOnPagebreak",kwnames
,&obj0
,&obj1
)) goto fail
; 
6184     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6185     if (SWIG_arg_fail(1)) SWIG_fail
; 
6187         arg2 
= (bool)(SWIG_As_bool(obj1
));  
6188         if (SWIG_arg_fail(2)) SWIG_fail
; 
6191         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6192         (arg1
)->SetCanLiveOnPagebreak(arg2
); 
6194         wxPyEndAllowThreads(__tstate
); 
6195         if (PyErr_Occurred()) SWIG_fail
; 
6197     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6204 static PyObject 
*_wrap_HtmlCell_IsLinebreakAllowed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6205     PyObject 
*resultobj
; 
6206     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6208     PyObject 
* obj0 
= 0 ; 
6210         (char *) "self", NULL 
 
6213     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsLinebreakAllowed",kwnames
,&obj0
)) goto fail
; 
6214     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6215     if (SWIG_arg_fail(1)) SWIG_fail
; 
6217         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6218         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsLinebreakAllowed(); 
6220         wxPyEndAllowThreads(__tstate
); 
6221         if (PyErr_Occurred()) SWIG_fail
; 
6224         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6232 static PyObject 
*_wrap_HtmlCell_IsTerminalCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6233     PyObject 
*resultobj
; 
6234     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6236     PyObject 
* obj0 
= 0 ; 
6238         (char *) "self", NULL 
 
6241     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsTerminalCell",kwnames
,&obj0
)) goto fail
; 
6242     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6243     if (SWIG_arg_fail(1)) SWIG_fail
; 
6245         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6246         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsTerminalCell(); 
6248         wxPyEndAllowThreads(__tstate
); 
6249         if (PyErr_Occurred()) SWIG_fail
; 
6252         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6260 static PyObject 
*_wrap_HtmlCell_FindCellByPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6261     PyObject 
*resultobj
; 
6262     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6265     unsigned int arg4 
= (unsigned int) wxHTML_FIND_EXACT 
; 
6267     PyObject 
* obj0 
= 0 ; 
6268     PyObject 
* obj1 
= 0 ; 
6269     PyObject 
* obj2 
= 0 ; 
6270     PyObject 
* obj3 
= 0 ; 
6272         (char *) "self",(char *) "x",(char *) "y",(char *) "flags", NULL 
 
6275     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlCell_FindCellByPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
6276     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6277     if (SWIG_arg_fail(1)) SWIG_fail
; 
6279         arg2 
= (int)(SWIG_As_int(obj1
));  
6280         if (SWIG_arg_fail(2)) SWIG_fail
; 
6283         arg3 
= (int)(SWIG_As_int(obj2
));  
6284         if (SWIG_arg_fail(3)) SWIG_fail
; 
6288             arg4 
= (unsigned int)(SWIG_As_unsigned_SS_int(obj3
));  
6289             if (SWIG_arg_fail(4)) SWIG_fail
; 
6293         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6294         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->FindCellByPos(arg2
,arg3
,arg4
); 
6296         wxPyEndAllowThreads(__tstate
); 
6297         if (PyErr_Occurred()) SWIG_fail
; 
6299     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6306 static PyObject 
*_wrap_HtmlCell_GetAbsPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6307     PyObject 
*resultobj
; 
6308     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6310     PyObject 
* obj0 
= 0 ; 
6312         (char *) "self", NULL 
 
6315     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetAbsPos",kwnames
,&obj0
)) goto fail
; 
6316     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6317     if (SWIG_arg_fail(1)) SWIG_fail
; 
6319         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6320         result 
= ((wxHtmlCell 
const *)arg1
)->GetAbsPos(); 
6322         wxPyEndAllowThreads(__tstate
); 
6323         if (PyErr_Occurred()) SWIG_fail
; 
6326         wxPoint 
* resultptr
; 
6327         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
6328         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
6336 static PyObject 
*_wrap_HtmlCell_GetFirstTerminal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6337     PyObject 
*resultobj
; 
6338     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6340     PyObject 
* obj0 
= 0 ; 
6342         (char *) "self", NULL 
 
6345     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetFirstTerminal",kwnames
,&obj0
)) goto fail
; 
6346     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6347     if (SWIG_arg_fail(1)) SWIG_fail
; 
6349         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6350         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetFirstTerminal(); 
6352         wxPyEndAllowThreads(__tstate
); 
6353         if (PyErr_Occurred()) SWIG_fail
; 
6355     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6362 static PyObject 
*_wrap_HtmlCell_GetLastTerminal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6363     PyObject 
*resultobj
; 
6364     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6366     PyObject 
* obj0 
= 0 ; 
6368         (char *) "self", NULL 
 
6371     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetLastTerminal",kwnames
,&obj0
)) goto fail
; 
6372     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6373     if (SWIG_arg_fail(1)) SWIG_fail
; 
6375         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6376         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetLastTerminal(); 
6378         wxPyEndAllowThreads(__tstate
); 
6379         if (PyErr_Occurred()) SWIG_fail
; 
6381     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6388 static PyObject 
*_wrap_HtmlCell_GetDepth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6389     PyObject 
*resultobj
; 
6390     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6391     unsigned int result
; 
6392     PyObject 
* obj0 
= 0 ; 
6394         (char *) "self", NULL 
 
6397     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetDepth",kwnames
,&obj0
)) goto fail
; 
6398     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6399     if (SWIG_arg_fail(1)) SWIG_fail
; 
6401         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6402         result 
= (unsigned int)((wxHtmlCell 
const *)arg1
)->GetDepth(); 
6404         wxPyEndAllowThreads(__tstate
); 
6405         if (PyErr_Occurred()) SWIG_fail
; 
6408         resultobj 
= SWIG_From_unsigned_SS_int((unsigned int)(result
));  
6416 static PyObject 
*_wrap_HtmlCell_IsBefore(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6417     PyObject 
*resultobj
; 
6418     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6419     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
6421     PyObject 
* obj0 
= 0 ; 
6422     PyObject 
* obj1 
= 0 ; 
6424         (char *) "self",(char *) "cell", NULL 
 
6427     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_IsBefore",kwnames
,&obj0
,&obj1
)) goto fail
; 
6428     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6429     if (SWIG_arg_fail(1)) SWIG_fail
; 
6430     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6431     if (SWIG_arg_fail(2)) SWIG_fail
; 
6433         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6434         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsBefore(arg2
); 
6436         wxPyEndAllowThreads(__tstate
); 
6437         if (PyErr_Occurred()) SWIG_fail
; 
6440         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6448 static PyObject 
*_wrap_HtmlCell_ConvertToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6449     PyObject 
*resultobj
; 
6450     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6451     wxHtmlSelection 
*arg2 
= (wxHtmlSelection 
*) 0 ; 
6453     PyObject 
* obj0 
= 0 ; 
6454     PyObject 
* obj1 
= 0 ; 
6456         (char *) "self",(char *) "sel", NULL 
 
6459     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_ConvertToText",kwnames
,&obj0
,&obj1
)) goto fail
; 
6460     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6461     if (SWIG_arg_fail(1)) SWIG_fail
; 
6462     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
6463     if (SWIG_arg_fail(2)) SWIG_fail
; 
6465         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6466         result 
= ((wxHtmlCell 
const *)arg1
)->ConvertToText(arg2
); 
6468         wxPyEndAllowThreads(__tstate
); 
6469         if (PyErr_Occurred()) SWIG_fail
; 
6473         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
6475         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
6484 static PyObject 
* HtmlCell_swigregister(PyObject 
*, PyObject 
*args
) { 
6486     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6487     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlCell
, obj
); 
6489     return Py_BuildValue((char *)""); 
6491 static PyObject 
*_wrap_new_HtmlWordCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6492     PyObject 
*resultobj
; 
6493     wxString 
*arg1 
= 0 ; 
6495     wxHtmlWordCell 
*result
; 
6496     bool temp1 
= false ; 
6497     PyObject 
* obj0 
= 0 ; 
6498     PyObject 
* obj1 
= 0 ; 
6500         (char *) "word",(char *) "dc", NULL 
 
6503     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_HtmlWordCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
6505         arg1 
= wxString_in_helper(obj0
); 
6506         if (arg1 
== NULL
) SWIG_fail
; 
6510         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
6511         if (SWIG_arg_fail(2)) SWIG_fail
; 
6513             SWIG_null_ref("wxDC"); 
6515         if (SWIG_arg_fail(2)) SWIG_fail
; 
6518         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6519         result 
= (wxHtmlWordCell 
*)new wxHtmlWordCell((wxString 
const &)*arg1
,*arg2
); 
6521         wxPyEndAllowThreads(__tstate
); 
6522         if (PyErr_Occurred()) SWIG_fail
; 
6524     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWordCell
, 1); 
6539 static PyObject 
* HtmlWordCell_swigregister(PyObject 
*, PyObject 
*args
) { 
6541     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6542     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWordCell
, obj
); 
6544     return Py_BuildValue((char *)""); 
6546 static PyObject 
*_wrap_new_HtmlContainerCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6547     PyObject 
*resultobj
; 
6548     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6549     wxHtmlContainerCell 
*result
; 
6550     PyObject 
* obj0 
= 0 ; 
6552         (char *) "parent", NULL 
 
6555     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_HtmlContainerCell",kwnames
,&obj0
)) goto fail
; 
6556     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6557     if (SWIG_arg_fail(1)) SWIG_fail
; 
6559         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6560         result 
= (wxHtmlContainerCell 
*)new wxHtmlContainerCell(arg1
); 
6562         wxPyEndAllowThreads(__tstate
); 
6563         if (PyErr_Occurred()) SWIG_fail
; 
6565     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 1); 
6572 static PyObject 
*_wrap_HtmlContainerCell_InsertCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6573     PyObject 
*resultobj
; 
6574     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6575     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
6576     PyObject 
* obj0 
= 0 ; 
6577     PyObject 
* obj1 
= 0 ; 
6579         (char *) "self",(char *) "cell", NULL 
 
6582     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_InsertCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
6583     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6584     if (SWIG_arg_fail(1)) SWIG_fail
; 
6585     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6586     if (SWIG_arg_fail(2)) SWIG_fail
; 
6588         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6589         (arg1
)->InsertCell(arg2
); 
6591         wxPyEndAllowThreads(__tstate
); 
6592         if (PyErr_Occurred()) SWIG_fail
; 
6594     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6601 static PyObject 
*_wrap_HtmlContainerCell_SetAlignHor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6602     PyObject 
*resultobj
; 
6603     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6605     PyObject 
* obj0 
= 0 ; 
6606     PyObject 
* obj1 
= 0 ; 
6608         (char *) "self",(char *) "al", NULL 
 
6611     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlignHor",kwnames
,&obj0
,&obj1
)) goto fail
; 
6612     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6613     if (SWIG_arg_fail(1)) SWIG_fail
; 
6615         arg2 
= (int)(SWIG_As_int(obj1
));  
6616         if (SWIG_arg_fail(2)) SWIG_fail
; 
6619         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6620         (arg1
)->SetAlignHor(arg2
); 
6622         wxPyEndAllowThreads(__tstate
); 
6623         if (PyErr_Occurred()) SWIG_fail
; 
6625     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6632 static PyObject 
*_wrap_HtmlContainerCell_GetAlignHor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6633     PyObject 
*resultobj
; 
6634     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6636     PyObject 
* obj0 
= 0 ; 
6638         (char *) "self", NULL 
 
6641     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetAlignHor",kwnames
,&obj0
)) goto fail
; 
6642     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6643     if (SWIG_arg_fail(1)) SWIG_fail
; 
6645         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6646         result 
= (int)(arg1
)->GetAlignHor(); 
6648         wxPyEndAllowThreads(__tstate
); 
6649         if (PyErr_Occurred()) SWIG_fail
; 
6652         resultobj 
= SWIG_From_int((int)(result
));  
6660 static PyObject 
*_wrap_HtmlContainerCell_SetAlignVer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6661     PyObject 
*resultobj
; 
6662     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6664     PyObject 
* obj0 
= 0 ; 
6665     PyObject 
* obj1 
= 0 ; 
6667         (char *) "self",(char *) "al", NULL 
 
6670     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlignVer",kwnames
,&obj0
,&obj1
)) goto fail
; 
6671     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6672     if (SWIG_arg_fail(1)) SWIG_fail
; 
6674         arg2 
= (int)(SWIG_As_int(obj1
));  
6675         if (SWIG_arg_fail(2)) SWIG_fail
; 
6678         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6679         (arg1
)->SetAlignVer(arg2
); 
6681         wxPyEndAllowThreads(__tstate
); 
6682         if (PyErr_Occurred()) SWIG_fail
; 
6684     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6691 static PyObject 
*_wrap_HtmlContainerCell_GetAlignVer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6692     PyObject 
*resultobj
; 
6693     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6695     PyObject 
* obj0 
= 0 ; 
6697         (char *) "self", NULL 
 
6700     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetAlignVer",kwnames
,&obj0
)) goto fail
; 
6701     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6702     if (SWIG_arg_fail(1)) SWIG_fail
; 
6704         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6705         result 
= (int)(arg1
)->GetAlignVer(); 
6707         wxPyEndAllowThreads(__tstate
); 
6708         if (PyErr_Occurred()) SWIG_fail
; 
6711         resultobj 
= SWIG_From_int((int)(result
));  
6719 static PyObject 
*_wrap_HtmlContainerCell_SetIndent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6720     PyObject 
*resultobj
; 
6721     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6724     int arg4 
= (int) wxHTML_UNITS_PIXELS 
; 
6725     PyObject 
* obj0 
= 0 ; 
6726     PyObject 
* obj1 
= 0 ; 
6727     PyObject 
* obj2 
= 0 ; 
6728     PyObject 
* obj3 
= 0 ; 
6730         (char *) "self",(char *) "i",(char *) "what",(char *) "units", NULL 
 
6733     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlContainerCell_SetIndent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
6734     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6735     if (SWIG_arg_fail(1)) SWIG_fail
; 
6737         arg2 
= (int)(SWIG_As_int(obj1
));  
6738         if (SWIG_arg_fail(2)) SWIG_fail
; 
6741         arg3 
= (int)(SWIG_As_int(obj2
));  
6742         if (SWIG_arg_fail(3)) SWIG_fail
; 
6746             arg4 
= (int)(SWIG_As_int(obj3
));  
6747             if (SWIG_arg_fail(4)) SWIG_fail
; 
6751         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6752         (arg1
)->SetIndent(arg2
,arg3
,arg4
); 
6754         wxPyEndAllowThreads(__tstate
); 
6755         if (PyErr_Occurred()) SWIG_fail
; 
6757     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6764 static PyObject 
*_wrap_HtmlContainerCell_GetIndent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6765     PyObject 
*resultobj
; 
6766     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6769     PyObject 
* obj0 
= 0 ; 
6770     PyObject 
* obj1 
= 0 ; 
6772         (char *) "self",(char *) "ind", NULL 
 
6775     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_GetIndent",kwnames
,&obj0
,&obj1
)) goto fail
; 
6776     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6777     if (SWIG_arg_fail(1)) SWIG_fail
; 
6779         arg2 
= (int)(SWIG_As_int(obj1
));  
6780         if (SWIG_arg_fail(2)) SWIG_fail
; 
6783         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6784         result 
= (int)(arg1
)->GetIndent(arg2
); 
6786         wxPyEndAllowThreads(__tstate
); 
6787         if (PyErr_Occurred()) SWIG_fail
; 
6790         resultobj 
= SWIG_From_int((int)(result
));  
6798 static PyObject 
*_wrap_HtmlContainerCell_GetIndentUnits(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6799     PyObject 
*resultobj
; 
6800     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6803     PyObject 
* obj0 
= 0 ; 
6804     PyObject 
* obj1 
= 0 ; 
6806         (char *) "self",(char *) "ind", NULL 
 
6809     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_GetIndentUnits",kwnames
,&obj0
,&obj1
)) goto fail
; 
6810     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6811     if (SWIG_arg_fail(1)) SWIG_fail
; 
6813         arg2 
= (int)(SWIG_As_int(obj1
));  
6814         if (SWIG_arg_fail(2)) SWIG_fail
; 
6817         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6818         result 
= (int)(arg1
)->GetIndentUnits(arg2
); 
6820         wxPyEndAllowThreads(__tstate
); 
6821         if (PyErr_Occurred()) SWIG_fail
; 
6824         resultobj 
= SWIG_From_int((int)(result
));  
6832 static PyObject 
*_wrap_HtmlContainerCell_SetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6833     PyObject 
*resultobj
; 
6834     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6835     wxHtmlTag 
*arg2 
= 0 ; 
6836     PyObject 
* obj0 
= 0 ; 
6837     PyObject 
* obj1 
= 0 ; 
6839         (char *) "self",(char *) "tag", NULL 
 
6842     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
; 
6843     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6844     if (SWIG_arg_fail(1)) SWIG_fail
; 
6846         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
6847         if (SWIG_arg_fail(2)) SWIG_fail
; 
6849             SWIG_null_ref("wxHtmlTag"); 
6851         if (SWIG_arg_fail(2)) SWIG_fail
; 
6854         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6855         (arg1
)->SetAlign((wxHtmlTag 
const &)*arg2
); 
6857         wxPyEndAllowThreads(__tstate
); 
6858         if (PyErr_Occurred()) SWIG_fail
; 
6860     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6867 static PyObject 
*_wrap_HtmlContainerCell_SetWidthFloat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6868     PyObject 
*resultobj
; 
6869     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6872     PyObject 
* obj0 
= 0 ; 
6873     PyObject 
* obj1 
= 0 ; 
6874     PyObject 
* obj2 
= 0 ; 
6876         (char *) "self",(char *) "w",(char *) "units", NULL 
 
6879     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlContainerCell_SetWidthFloat",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6880     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6881     if (SWIG_arg_fail(1)) SWIG_fail
; 
6883         arg2 
= (int)(SWIG_As_int(obj1
));  
6884         if (SWIG_arg_fail(2)) SWIG_fail
; 
6887         arg3 
= (int)(SWIG_As_int(obj2
));  
6888         if (SWIG_arg_fail(3)) SWIG_fail
; 
6891         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6892         (arg1
)->SetWidthFloat(arg2
,arg3
); 
6894         wxPyEndAllowThreads(__tstate
); 
6895         if (PyErr_Occurred()) SWIG_fail
; 
6897     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6904 static PyObject 
*_wrap_HtmlContainerCell_SetWidthFloatFromTag(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6905     PyObject 
*resultobj
; 
6906     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6907     wxHtmlTag 
*arg2 
= 0 ; 
6908     PyObject 
* obj0 
= 0 ; 
6909     PyObject 
* obj1 
= 0 ; 
6911         (char *) "self",(char *) "tag", NULL 
 
6914     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetWidthFloatFromTag",kwnames
,&obj0
,&obj1
)) goto fail
; 
6915     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6916     if (SWIG_arg_fail(1)) SWIG_fail
; 
6918         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
6919         if (SWIG_arg_fail(2)) SWIG_fail
; 
6921             SWIG_null_ref("wxHtmlTag"); 
6923         if (SWIG_arg_fail(2)) SWIG_fail
; 
6926         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6927         (arg1
)->SetWidthFloat((wxHtmlTag 
const &)*arg2
); 
6929         wxPyEndAllowThreads(__tstate
); 
6930         if (PyErr_Occurred()) SWIG_fail
; 
6932     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6939 static PyObject 
*_wrap_HtmlContainerCell_SetMinHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6940     PyObject 
*resultobj
; 
6941     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6943     int arg3 
= (int) wxHTML_ALIGN_TOP 
; 
6944     PyObject 
* obj0 
= 0 ; 
6945     PyObject 
* obj1 
= 0 ; 
6946     PyObject 
* obj2 
= 0 ; 
6948         (char *) "self",(char *) "h",(char *) "align", NULL 
 
6951     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlContainerCell_SetMinHeight",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6952     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6953     if (SWIG_arg_fail(1)) SWIG_fail
; 
6955         arg2 
= (int)(SWIG_As_int(obj1
));  
6956         if (SWIG_arg_fail(2)) SWIG_fail
; 
6960             arg3 
= (int)(SWIG_As_int(obj2
));  
6961             if (SWIG_arg_fail(3)) SWIG_fail
; 
6965         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6966         (arg1
)->SetMinHeight(arg2
,arg3
); 
6968         wxPyEndAllowThreads(__tstate
); 
6969         if (PyErr_Occurred()) SWIG_fail
; 
6971     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6978 static PyObject 
*_wrap_HtmlContainerCell_SetBackgroundColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6979     PyObject 
*resultobj
; 
6980     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6981     wxColour 
*arg2 
= 0 ; 
6983     PyObject 
* obj0 
= 0 ; 
6984     PyObject 
* obj1 
= 0 ; 
6986         (char *) "self",(char *) "clr", NULL 
 
6989     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
6990     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6991     if (SWIG_arg_fail(1)) SWIG_fail
; 
6994         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
6997         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6998         (arg1
)->SetBackgroundColour((wxColour 
const &)*arg2
); 
7000         wxPyEndAllowThreads(__tstate
); 
7001         if (PyErr_Occurred()) SWIG_fail
; 
7003     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7010 static PyObject 
*_wrap_HtmlContainerCell_GetBackgroundColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7011     PyObject 
*resultobj
; 
7012     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
7014     PyObject 
* obj0 
= 0 ; 
7016         (char *) "self", NULL 
 
7019     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetBackgroundColour",kwnames
,&obj0
)) goto fail
; 
7020     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
7021     if (SWIG_arg_fail(1)) SWIG_fail
; 
7023         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7024         result 
= (arg1
)->GetBackgroundColour(); 
7026         wxPyEndAllowThreads(__tstate
); 
7027         if (PyErr_Occurred()) SWIG_fail
; 
7030         wxColour 
* resultptr
; 
7031         resultptr 
= new wxColour((wxColour 
&)(result
)); 
7032         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
7040 static PyObject 
*_wrap_HtmlContainerCell_SetBorder(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7041     PyObject 
*resultobj
; 
7042     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
7043     wxColour 
*arg2 
= 0 ; 
7044     wxColour 
*arg3 
= 0 ; 
7047     PyObject 
* obj0 
= 0 ; 
7048     PyObject 
* obj1 
= 0 ; 
7049     PyObject 
* obj2 
= 0 ; 
7051         (char *) "self",(char *) "clr1",(char *) "clr2", NULL 
 
7054     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlContainerCell_SetBorder",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7055     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
7056     if (SWIG_arg_fail(1)) SWIG_fail
; 
7059         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
7063         if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
7066         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7067         (arg1
)->SetBorder((wxColour 
const &)*arg2
,(wxColour 
const &)*arg3
); 
7069         wxPyEndAllowThreads(__tstate
); 
7070         if (PyErr_Occurred()) SWIG_fail
; 
7072     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7079 static PyObject 
*_wrap_HtmlContainerCell_GetFirstChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7080     PyObject 
*resultobj
; 
7081     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
7083     PyObject 
* obj0 
= 0 ; 
7085         (char *) "self", NULL 
 
7088     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetFirstChild",kwnames
,&obj0
)) goto fail
; 
7089     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
7090     if (SWIG_arg_fail(1)) SWIG_fail
; 
7092         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7093         result 
= (wxHtmlCell 
*)(arg1
)->GetFirstChild(); 
7095         wxPyEndAllowThreads(__tstate
); 
7096         if (PyErr_Occurred()) SWIG_fail
; 
7098     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
7105 static PyObject 
* HtmlContainerCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7107     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7108     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlContainerCell
, obj
); 
7110     return Py_BuildValue((char *)""); 
7112 static PyObject 
*_wrap_new_HtmlColourCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7113     PyObject 
*resultobj
; 
7114     wxColour 
*arg1 
= 0 ; 
7115     int arg2 
= (int) wxHTML_CLR_FOREGROUND 
; 
7116     wxHtmlColourCell 
*result
; 
7118     PyObject 
* obj0 
= 0 ; 
7119     PyObject 
* obj1 
= 0 ; 
7121         (char *) "clr",(char *) "flags", NULL 
 
7124     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlColourCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7127         if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
; 
7131             arg2 
= (int)(SWIG_As_int(obj1
));  
7132             if (SWIG_arg_fail(2)) SWIG_fail
; 
7136         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7137         result 
= (wxHtmlColourCell 
*)new wxHtmlColourCell((wxColour 
const &)*arg1
,arg2
); 
7139         wxPyEndAllowThreads(__tstate
); 
7140         if (PyErr_Occurred()) SWIG_fail
; 
7142     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlColourCell
, 1); 
7149 static PyObject 
* HtmlColourCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7151     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7152     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlColourCell
, obj
); 
7154     return Py_BuildValue((char *)""); 
7156 static PyObject 
*_wrap_new_HtmlFontCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7157     PyObject 
*resultobj
; 
7158     wxFont 
*arg1 
= (wxFont 
*) 0 ; 
7159     wxHtmlFontCell 
*result
; 
7160     PyObject 
* obj0 
= 0 ; 
7162         (char *) "font", NULL 
 
7165     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_HtmlFontCell",kwnames
,&obj0
)) goto fail
; 
7166     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION 
| 0); 
7167     if (SWIG_arg_fail(1)) SWIG_fail
; 
7169         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7170         result 
= (wxHtmlFontCell 
*)new wxHtmlFontCell(arg1
); 
7172         wxPyEndAllowThreads(__tstate
); 
7173         if (PyErr_Occurred()) SWIG_fail
; 
7175     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlFontCell
, 1); 
7182 static PyObject 
* HtmlFontCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7184     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7185     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlFontCell
, obj
); 
7187     return Py_BuildValue((char *)""); 
7189 static PyObject 
*_wrap_new_HtmlWidgetCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7190     PyObject 
*resultobj
; 
7191     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7192     int arg2 
= (int) 0 ; 
7193     wxHtmlWidgetCell 
*result
; 
7194     PyObject 
* obj0 
= 0 ; 
7195     PyObject 
* obj1 
= 0 ; 
7197         (char *) "wnd",(char *) "w", NULL 
 
7200     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlWidgetCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7201     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7202     if (SWIG_arg_fail(1)) SWIG_fail
; 
7205             arg2 
= (int)(SWIG_As_int(obj1
));  
7206             if (SWIG_arg_fail(2)) SWIG_fail
; 
7210         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7211         result 
= (wxHtmlWidgetCell 
*)new wxHtmlWidgetCell(arg1
,arg2
); 
7213         wxPyEndAllowThreads(__tstate
); 
7214         if (PyErr_Occurred()) SWIG_fail
; 
7216     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWidgetCell
, 1); 
7223 static PyObject 
* HtmlWidgetCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7225     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7226     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWidgetCell
, obj
); 
7228     return Py_BuildValue((char *)""); 
7230 static PyObject 
*_wrap_new_HtmlFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7231     PyObject 
*resultobj
; 
7232     wxPyHtmlFilter 
*result
; 
7237     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlFilter",kwnames
)) goto fail
; 
7239         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7240         result 
= (wxPyHtmlFilter 
*)new wxPyHtmlFilter(); 
7242         wxPyEndAllowThreads(__tstate
); 
7243         if (PyErr_Occurred()) SWIG_fail
; 
7245     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlFilter
, 1); 
7252 static PyObject 
*_wrap_HtmlFilter__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7253     PyObject 
*resultobj
; 
7254     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
7255     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7256     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7257     PyObject 
* obj0 
= 0 ; 
7258     PyObject 
* obj1 
= 0 ; 
7259     PyObject 
* obj2 
= 0 ; 
7261         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7264     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlFilter__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7265     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
7266     if (SWIG_arg_fail(1)) SWIG_fail
; 
7270         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7271         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7273         wxPyEndAllowThreads(__tstate
); 
7274         if (PyErr_Occurred()) SWIG_fail
; 
7276     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7283 static PyObject 
* HtmlFilter_swigregister(PyObject 
*, PyObject 
*args
) { 
7285     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7286     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlFilter
, obj
); 
7288     return Py_BuildValue((char *)""); 
7290 static PyObject 
*_wrap_new_HtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7291     PyObject 
*resultobj
; 
7292     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7293     int arg2 
= (int) -1 ; 
7294     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
7295     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
7296     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
7297     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
7298     int arg5 
= (int) wxHW_DEFAULT_STYLE 
; 
7299     wxString 
const &arg6_defvalue 
= wxPyHtmlWindowNameStr 
; 
7300     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
7301     wxPyHtmlWindow 
*result
; 
7304     bool temp6 
= false ; 
7305     PyObject 
* obj0 
= 0 ; 
7306     PyObject 
* obj1 
= 0 ; 
7307     PyObject 
* obj2 
= 0 ; 
7308     PyObject 
* obj3 
= 0 ; 
7309     PyObject 
* obj4 
= 0 ; 
7310     PyObject 
* obj5 
= 0 ; 
7312         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7315     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
7316     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7317     if (SWIG_arg_fail(1)) SWIG_fail
; 
7320             arg2 
= (int)(SWIG_As_int(obj1
));  
7321             if (SWIG_arg_fail(2)) SWIG_fail
; 
7327             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
7333             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
7338             arg5 
= (int)(SWIG_As_int(obj4
));  
7339             if (SWIG_arg_fail(5)) SWIG_fail
; 
7344             arg6 
= wxString_in_helper(obj5
); 
7345             if (arg6 
== NULL
) SWIG_fail
; 
7350         if (!wxPyCheckForApp()) SWIG_fail
; 
7351         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7352         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
7354         wxPyEndAllowThreads(__tstate
); 
7355         if (PyErr_Occurred()) SWIG_fail
; 
7357     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7372 static PyObject 
*_wrap_new_PreHtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7373     PyObject 
*resultobj
; 
7374     wxPyHtmlWindow 
*result
; 
7379     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreHtmlWindow",kwnames
)) goto fail
; 
7381         if (!wxPyCheckForApp()) SWIG_fail
; 
7382         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7383         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(); 
7385         wxPyEndAllowThreads(__tstate
); 
7386         if (PyErr_Occurred()) SWIG_fail
; 
7388     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7395 static PyObject 
*_wrap_HtmlWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7396     PyObject 
*resultobj
; 
7397     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7398     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7399     int arg3 
= (int) -1 ; 
7400     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
7401     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
7402     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
7403     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
7404     int arg6 
= (int) wxHW_SCROLLBAR_AUTO 
; 
7405     wxString 
const &arg7_defvalue 
= wxPyHtmlWindowNameStr 
; 
7406     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
7410     bool temp7 
= false ; 
7411     PyObject 
* obj0 
= 0 ; 
7412     PyObject 
* obj1 
= 0 ; 
7413     PyObject 
* obj2 
= 0 ; 
7414     PyObject 
* obj3 
= 0 ; 
7415     PyObject 
* obj4 
= 0 ; 
7416     PyObject 
* obj5 
= 0 ; 
7417     PyObject 
* obj6 
= 0 ; 
7419         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7422     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
7423     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7424     if (SWIG_arg_fail(1)) SWIG_fail
; 
7425     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7426     if (SWIG_arg_fail(2)) SWIG_fail
; 
7429             arg3 
= (int)(SWIG_As_int(obj2
));  
7430             if (SWIG_arg_fail(3)) SWIG_fail
; 
7436             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
7442             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
7447             arg6 
= (int)(SWIG_As_int(obj5
));  
7448             if (SWIG_arg_fail(6)) SWIG_fail
; 
7453             arg7 
= wxString_in_helper(obj6
); 
7454             if (arg7 
== NULL
) SWIG_fail
; 
7459         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7460         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
7462         wxPyEndAllowThreads(__tstate
); 
7463         if (PyErr_Occurred()) SWIG_fail
; 
7466         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7482 static PyObject 
*_wrap_HtmlWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7483     PyObject 
*resultobj
; 
7484     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7485     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7486     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7487     PyObject 
* obj0 
= 0 ; 
7488     PyObject 
* obj1 
= 0 ; 
7489     PyObject 
* obj2 
= 0 ; 
7491         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7494     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7495     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7496     if (SWIG_arg_fail(1)) SWIG_fail
; 
7500         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7501         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7503         wxPyEndAllowThreads(__tstate
); 
7504         if (PyErr_Occurred()) SWIG_fail
; 
7506     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7513 static PyObject 
*_wrap_HtmlWindow_SetPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7514     PyObject 
*resultobj
; 
7515     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7516     wxString 
*arg2 
= 0 ; 
7518     bool temp2 
= false ; 
7519     PyObject 
* obj0 
= 0 ; 
7520     PyObject 
* obj1 
= 0 ; 
7522         (char *) "self",(char *) "source", NULL 
 
7525     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7526     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7527     if (SWIG_arg_fail(1)) SWIG_fail
; 
7529         arg2 
= wxString_in_helper(obj1
); 
7530         if (arg2 
== NULL
) SWIG_fail
; 
7534         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7535         result 
= (bool)(arg1
)->SetPage((wxString 
const &)*arg2
); 
7537         wxPyEndAllowThreads(__tstate
); 
7538         if (PyErr_Occurred()) SWIG_fail
; 
7541         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7557 static PyObject 
*_wrap_HtmlWindow_LoadPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7558     PyObject 
*resultobj
; 
7559     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7560     wxString 
*arg2 
= 0 ; 
7562     bool temp2 
= false ; 
7563     PyObject 
* obj0 
= 0 ; 
7564     PyObject 
* obj1 
= 0 ; 
7566         (char *) "self",(char *) "location", NULL 
 
7569     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7570     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7571     if (SWIG_arg_fail(1)) SWIG_fail
; 
7573         arg2 
= wxString_in_helper(obj1
); 
7574         if (arg2 
== NULL
) SWIG_fail
; 
7578         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7579         result 
= (bool)(arg1
)->LoadPage((wxString 
const &)*arg2
); 
7581         wxPyEndAllowThreads(__tstate
); 
7582         if (PyErr_Occurred()) SWIG_fail
; 
7585         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7601 static PyObject 
*_wrap_HtmlWindow_LoadFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7602     PyObject 
*resultobj
; 
7603     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7604     wxString 
*arg2 
= 0 ; 
7606     bool temp2 
= false ; 
7607     PyObject 
* obj0 
= 0 ; 
7608     PyObject 
* obj1 
= 0 ; 
7610         (char *) "self",(char *) "filename", NULL 
 
7613     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
7614     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7615     if (SWIG_arg_fail(1)) SWIG_fail
; 
7617         arg2 
= wxString_in_helper(obj1
); 
7618         if (arg2 
== NULL
) SWIG_fail
; 
7622         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7623         result 
= (bool)(arg1
)->LoadFile((wxString 
const &)*arg2
); 
7625         wxPyEndAllowThreads(__tstate
); 
7626         if (PyErr_Occurred()) SWIG_fail
; 
7629         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7645 static PyObject 
*_wrap_HtmlWindow_AppendToPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7646     PyObject 
*resultobj
; 
7647     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7648     wxString 
*arg2 
= 0 ; 
7650     bool temp2 
= false ; 
7651     PyObject 
* obj0 
= 0 ; 
7652     PyObject 
* obj1 
= 0 ; 
7654         (char *) "self",(char *) "source", NULL 
 
7657     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_AppendToPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7658     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7659     if (SWIG_arg_fail(1)) SWIG_fail
; 
7661         arg2 
= wxString_in_helper(obj1
); 
7662         if (arg2 
== NULL
) SWIG_fail
; 
7666         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7667         result 
= (bool)(arg1
)->AppendToPage((wxString 
const &)*arg2
); 
7669         wxPyEndAllowThreads(__tstate
); 
7670         if (PyErr_Occurred()) SWIG_fail
; 
7673         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7689 static PyObject 
*_wrap_HtmlWindow_GetOpenedPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7690     PyObject 
*resultobj
; 
7691     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7693     PyObject 
* obj0 
= 0 ; 
7695         (char *) "self", NULL 
 
7698     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPage",kwnames
,&obj0
)) goto fail
; 
7699     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7700     if (SWIG_arg_fail(1)) SWIG_fail
; 
7702         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7703         result 
= (arg1
)->GetOpenedPage(); 
7705         wxPyEndAllowThreads(__tstate
); 
7706         if (PyErr_Occurred()) SWIG_fail
; 
7710         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7712         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7721 static PyObject 
*_wrap_HtmlWindow_GetOpenedAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7722     PyObject 
*resultobj
; 
7723     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7725     PyObject 
* obj0 
= 0 ; 
7727         (char *) "self", NULL 
 
7730     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedAnchor",kwnames
,&obj0
)) goto fail
; 
7731     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7732     if (SWIG_arg_fail(1)) SWIG_fail
; 
7734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7735         result 
= (arg1
)->GetOpenedAnchor(); 
7737         wxPyEndAllowThreads(__tstate
); 
7738         if (PyErr_Occurred()) SWIG_fail
; 
7742         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7744         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7753 static PyObject 
*_wrap_HtmlWindow_GetOpenedPageTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7754     PyObject 
*resultobj
; 
7755     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7757     PyObject 
* obj0 
= 0 ; 
7759         (char *) "self", NULL 
 
7762     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPageTitle",kwnames
,&obj0
)) goto fail
; 
7763     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7764     if (SWIG_arg_fail(1)) SWIG_fail
; 
7766         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7767         result 
= (arg1
)->GetOpenedPageTitle(); 
7769         wxPyEndAllowThreads(__tstate
); 
7770         if (PyErr_Occurred()) SWIG_fail
; 
7774         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7776         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7785 static PyObject 
*_wrap_HtmlWindow_SetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7786     PyObject 
*resultobj
; 
7787     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7788     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
7789     wxString 
*arg3 
= 0 ; 
7790     bool temp3 
= false ; 
7791     PyObject 
* obj0 
= 0 ; 
7792     PyObject 
* obj1 
= 0 ; 
7793     PyObject 
* obj2 
= 0 ; 
7795         (char *) "self",(char *) "frame",(char *) "format", NULL 
 
7798     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow_SetRelatedFrame",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7799     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7800     if (SWIG_arg_fail(1)) SWIG_fail
; 
7801     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
7802     if (SWIG_arg_fail(2)) SWIG_fail
; 
7804         arg3 
= wxString_in_helper(obj2
); 
7805         if (arg3 
== NULL
) SWIG_fail
; 
7809         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7810         (arg1
)->SetRelatedFrame(arg2
,(wxString 
const &)*arg3
); 
7812         wxPyEndAllowThreads(__tstate
); 
7813         if (PyErr_Occurred()) SWIG_fail
; 
7815     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7830 static PyObject 
*_wrap_HtmlWindow_GetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7831     PyObject 
*resultobj
; 
7832     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7834     PyObject 
* obj0 
= 0 ; 
7836         (char *) "self", NULL 
 
7839     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetRelatedFrame",kwnames
,&obj0
)) goto fail
; 
7840     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7841     if (SWIG_arg_fail(1)) SWIG_fail
; 
7843         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7844         result 
= (wxFrame 
*)(arg1
)->GetRelatedFrame(); 
7846         wxPyEndAllowThreads(__tstate
); 
7847         if (PyErr_Occurred()) SWIG_fail
; 
7850         resultobj 
= wxPyMake_wxObject(result
, 0);  
7858 static PyObject 
*_wrap_HtmlWindow_SetRelatedStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7859     PyObject 
*resultobj
; 
7860     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7862     PyObject 
* obj0 
= 0 ; 
7863     PyObject 
* obj1 
= 0 ; 
7865         (char *) "self",(char *) "bar", NULL 
 
7868     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetRelatedStatusBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
7869     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7870     if (SWIG_arg_fail(1)) SWIG_fail
; 
7872         arg2 
= (int)(SWIG_As_int(obj1
));  
7873         if (SWIG_arg_fail(2)) SWIG_fail
; 
7876         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7877         (arg1
)->SetRelatedStatusBar(arg2
); 
7879         wxPyEndAllowThreads(__tstate
); 
7880         if (PyErr_Occurred()) SWIG_fail
; 
7882     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7889 static PyObject 
*_wrap_HtmlWindow_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7890     PyObject 
*resultobj
; 
7891     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7894     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
7895     PyObject 
* obj0 
= 0 ; 
7896     PyObject 
* obj1 
= 0 ; 
7897     PyObject 
* obj2 
= 0 ; 
7898     PyObject 
* obj3 
= 0 ; 
7900         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
7903     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlWindow_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7904     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7905     if (SWIG_arg_fail(1)) SWIG_fail
; 
7907         wxString
* sptr 
= wxString_in_helper(obj1
); 
7908         if (sptr 
== NULL
) SWIG_fail
; 
7913         wxString
* sptr 
= wxString_in_helper(obj2
); 
7914         if (sptr 
== NULL
) SWIG_fail
; 
7922         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7923         wxPyHtmlWindow_SetFonts(arg1
,arg2
,arg3
,arg4
); 
7925         wxPyEndAllowThreads(__tstate
); 
7926         if (PyErr_Occurred()) SWIG_fail
; 
7928     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7935 static PyObject 
*_wrap_HtmlWindow_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7936     PyObject 
*resultobj
; 
7937     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7938     int arg2 
= (int) -1 ; 
7939     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
7940     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
7941     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
7942     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
7943     bool temp3 
= false ; 
7944     bool temp4 
= false ; 
7945     PyObject 
* obj0 
= 0 ; 
7946     PyObject 
* obj1 
= 0 ; 
7947     PyObject 
* obj2 
= 0 ; 
7948     PyObject 
* obj3 
= 0 ; 
7950         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
7953     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlWindow_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7954     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7955     if (SWIG_arg_fail(1)) SWIG_fail
; 
7958             arg2 
= (int)(SWIG_As_int(obj1
));  
7959             if (SWIG_arg_fail(2)) SWIG_fail
; 
7964             arg3 
= wxString_in_helper(obj2
); 
7965             if (arg3 
== NULL
) SWIG_fail
; 
7971             arg4 
= wxString_in_helper(obj3
); 
7972             if (arg4 
== NULL
) SWIG_fail
; 
7977         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7978         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
7980         wxPyEndAllowThreads(__tstate
); 
7981         if (PyErr_Occurred()) SWIG_fail
; 
7983     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8006 static PyObject 
*_wrap_HtmlWindow_SetLabel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8007     PyObject 
*resultobj
; 
8008     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8009     wxString 
*arg2 
= 0 ; 
8010     bool temp2 
= false ; 
8011     PyObject 
* obj0 
= 0 ; 
8012     PyObject 
* obj1 
= 0 ; 
8014         (char *) "self",(char *) "title", NULL 
 
8017     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetLabel",kwnames
,&obj0
,&obj1
)) goto fail
; 
8018     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8019     if (SWIG_arg_fail(1)) SWIG_fail
; 
8021         arg2 
= wxString_in_helper(obj1
); 
8022         if (arg2 
== NULL
) SWIG_fail
; 
8026         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8027         (arg1
)->SetLabel((wxString 
const &)*arg2
); 
8029         wxPyEndAllowThreads(__tstate
); 
8030         if (PyErr_Occurred()) SWIG_fail
; 
8032     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8047 static PyObject 
*_wrap_HtmlWindow_SetBorders(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8048     PyObject 
*resultobj
; 
8049     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8051     PyObject 
* obj0 
= 0 ; 
8052     PyObject 
* obj1 
= 0 ; 
8054         (char *) "self",(char *) "b", NULL 
 
8057     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetBorders",kwnames
,&obj0
,&obj1
)) goto fail
; 
8058     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8059     if (SWIG_arg_fail(1)) SWIG_fail
; 
8061         arg2 
= (int)(SWIG_As_int(obj1
));  
8062         if (SWIG_arg_fail(2)) SWIG_fail
; 
8065         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8066         (arg1
)->SetBorders(arg2
); 
8068         wxPyEndAllowThreads(__tstate
); 
8069         if (PyErr_Occurred()) SWIG_fail
; 
8071     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8078 static PyObject 
*_wrap_HtmlWindow_SetBackgroundImage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8079     PyObject 
*resultobj
; 
8080     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8081     wxBitmap 
*arg2 
= 0 ; 
8082     PyObject 
* obj0 
= 0 ; 
8083     PyObject 
* obj1 
= 0 ; 
8085         (char *) "self",(char *) "bmpBg", NULL 
 
8088     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetBackgroundImage",kwnames
,&obj0
,&obj1
)) goto fail
; 
8089     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8090     if (SWIG_arg_fail(1)) SWIG_fail
; 
8092         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxBitmap
, SWIG_POINTER_EXCEPTION 
| 0); 
8093         if (SWIG_arg_fail(2)) SWIG_fail
; 
8095             SWIG_null_ref("wxBitmap"); 
8097         if (SWIG_arg_fail(2)) SWIG_fail
; 
8100         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8101         (arg1
)->SetBackgroundImage((wxBitmap 
const &)*arg2
); 
8103         wxPyEndAllowThreads(__tstate
); 
8104         if (PyErr_Occurred()) SWIG_fail
; 
8106     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8113 static PyObject 
*_wrap_HtmlWindow_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8114     PyObject 
*resultobj
; 
8115     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8116     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8117     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8118     PyObject 
* obj0 
= 0 ; 
8119     PyObject 
* obj1 
= 0 ; 
8120     PyObject 
* obj2 
= 0 ; 
8122         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8125     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8126     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8127     if (SWIG_arg_fail(1)) SWIG_fail
; 
8128     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8129     if (SWIG_arg_fail(2)) SWIG_fail
; 
8132             wxString
* sptr 
= wxString_in_helper(obj2
); 
8133             if (sptr 
== NULL
) SWIG_fail
; 
8139         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8140         (arg1
)->ReadCustomization(arg2
,arg3
); 
8142         wxPyEndAllowThreads(__tstate
); 
8143         if (PyErr_Occurred()) SWIG_fail
; 
8145     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8152 static PyObject 
*_wrap_HtmlWindow_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8153     PyObject 
*resultobj
; 
8154     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8155     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8156     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8157     PyObject 
* obj0 
= 0 ; 
8158     PyObject 
* obj1 
= 0 ; 
8159     PyObject 
* obj2 
= 0 ; 
8161         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8164     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8165     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8166     if (SWIG_arg_fail(1)) SWIG_fail
; 
8167     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8168     if (SWIG_arg_fail(2)) SWIG_fail
; 
8171             wxString
* sptr 
= wxString_in_helper(obj2
); 
8172             if (sptr 
== NULL
) SWIG_fail
; 
8178         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8179         (arg1
)->WriteCustomization(arg2
,arg3
); 
8181         wxPyEndAllowThreads(__tstate
); 
8182         if (PyErr_Occurred()) SWIG_fail
; 
8184     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8191 static PyObject 
*_wrap_HtmlWindow_HistoryBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8192     PyObject 
*resultobj
; 
8193     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8195     PyObject 
* obj0 
= 0 ; 
8197         (char *) "self", NULL 
 
8200     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryBack",kwnames
,&obj0
)) goto fail
; 
8201     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8202     if (SWIG_arg_fail(1)) SWIG_fail
; 
8204         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8205         result 
= (bool)(arg1
)->HistoryBack(); 
8207         wxPyEndAllowThreads(__tstate
); 
8208         if (PyErr_Occurred()) SWIG_fail
; 
8211         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8219 static PyObject 
*_wrap_HtmlWindow_HistoryForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8220     PyObject 
*resultobj
; 
8221     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8223     PyObject 
* obj0 
= 0 ; 
8225         (char *) "self", NULL 
 
8228     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryForward",kwnames
,&obj0
)) goto fail
; 
8229     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8230     if (SWIG_arg_fail(1)) SWIG_fail
; 
8232         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8233         result 
= (bool)(arg1
)->HistoryForward(); 
8235         wxPyEndAllowThreads(__tstate
); 
8236         if (PyErr_Occurred()) SWIG_fail
; 
8239         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8247 static PyObject 
*_wrap_HtmlWindow_HistoryCanBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8248     PyObject 
*resultobj
; 
8249     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8251     PyObject 
* obj0 
= 0 ; 
8253         (char *) "self", NULL 
 
8256     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanBack",kwnames
,&obj0
)) goto fail
; 
8257     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8258     if (SWIG_arg_fail(1)) SWIG_fail
; 
8260         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8261         result 
= (bool)(arg1
)->HistoryCanBack(); 
8263         wxPyEndAllowThreads(__tstate
); 
8264         if (PyErr_Occurred()) SWIG_fail
; 
8267         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8275 static PyObject 
*_wrap_HtmlWindow_HistoryCanForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8276     PyObject 
*resultobj
; 
8277     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8279     PyObject 
* obj0 
= 0 ; 
8281         (char *) "self", NULL 
 
8284     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanForward",kwnames
,&obj0
)) goto fail
; 
8285     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8286     if (SWIG_arg_fail(1)) SWIG_fail
; 
8288         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8289         result 
= (bool)(arg1
)->HistoryCanForward(); 
8291         wxPyEndAllowThreads(__tstate
); 
8292         if (PyErr_Occurred()) SWIG_fail
; 
8295         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8303 static PyObject 
*_wrap_HtmlWindow_HistoryClear(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8304     PyObject 
*resultobj
; 
8305     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8306     PyObject 
* obj0 
= 0 ; 
8308         (char *) "self", NULL 
 
8311     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryClear",kwnames
,&obj0
)) goto fail
; 
8312     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8313     if (SWIG_arg_fail(1)) SWIG_fail
; 
8315         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8316         (arg1
)->HistoryClear(); 
8318         wxPyEndAllowThreads(__tstate
); 
8319         if (PyErr_Occurred()) SWIG_fail
; 
8321     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8328 static PyObject 
*_wrap_HtmlWindow_GetInternalRepresentation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8329     PyObject 
*resultobj
; 
8330     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8331     wxHtmlContainerCell 
*result
; 
8332     PyObject 
* obj0 
= 0 ; 
8334         (char *) "self", NULL 
 
8337     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetInternalRepresentation",kwnames
,&obj0
)) goto fail
; 
8338     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8339     if (SWIG_arg_fail(1)) SWIG_fail
; 
8341         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8342         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetInternalRepresentation(); 
8344         wxPyEndAllowThreads(__tstate
); 
8345         if (PyErr_Occurred()) SWIG_fail
; 
8347     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
8354 static PyObject 
*_wrap_HtmlWindow_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8355     PyObject 
*resultobj
; 
8356     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8357     wxHtmlWinParser 
*result
; 
8358     PyObject 
* obj0 
= 0 ; 
8360         (char *) "self", NULL 
 
8363     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetParser",kwnames
,&obj0
)) goto fail
; 
8364     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8365     if (SWIG_arg_fail(1)) SWIG_fail
; 
8367         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8368         result 
= (wxHtmlWinParser 
*)(arg1
)->GetParser(); 
8370         wxPyEndAllowThreads(__tstate
); 
8371         if (PyErr_Occurred()) SWIG_fail
; 
8373     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 0); 
8380 static PyObject 
*_wrap_HtmlWindow_ScrollToAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8381     PyObject 
*resultobj
; 
8382     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8383     wxString 
*arg2 
= 0 ; 
8385     bool temp2 
= false ; 
8386     PyObject 
* obj0 
= 0 ; 
8387     PyObject 
* obj1 
= 0 ; 
8389         (char *) "self",(char *) "anchor", NULL 
 
8392     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_ScrollToAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8393     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8394     if (SWIG_arg_fail(1)) SWIG_fail
; 
8396         arg2 
= wxString_in_helper(obj1
); 
8397         if (arg2 
== NULL
) SWIG_fail
; 
8401         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8402         result 
= (bool)(arg1
)->ScrollToAnchor((wxString 
const &)*arg2
); 
8404         wxPyEndAllowThreads(__tstate
); 
8405         if (PyErr_Occurred()) SWIG_fail
; 
8408         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8424 static PyObject 
*_wrap_HtmlWindow_HasAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8425     PyObject 
*resultobj
; 
8426     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8427     wxString 
*arg2 
= 0 ; 
8429     bool temp2 
= false ; 
8430     PyObject 
* obj0 
= 0 ; 
8431     PyObject 
* obj1 
= 0 ; 
8433         (char *) "self",(char *) "anchor", NULL 
 
8436     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_HasAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8437     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8438     if (SWIG_arg_fail(1)) SWIG_fail
; 
8440         arg2 
= wxString_in_helper(obj1
); 
8441         if (arg2 
== NULL
) SWIG_fail
; 
8445         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8446         result 
= (bool)(arg1
)->HasAnchor((wxString 
const &)*arg2
); 
8448         wxPyEndAllowThreads(__tstate
); 
8449         if (PyErr_Occurred()) SWIG_fail
; 
8452         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8468 static PyObject 
*_wrap_HtmlWindow_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8469     PyObject 
*resultobj
; 
8470     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
8471     PyObject 
* obj0 
= 0 ; 
8473         (char *) "filter", NULL 
 
8476     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_AddFilter",kwnames
,&obj0
)) goto fail
; 
8477     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
8478     if (SWIG_arg_fail(1)) SWIG_fail
; 
8480         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8481         wxPyHtmlWindow::AddFilter(arg1
); 
8483         wxPyEndAllowThreads(__tstate
); 
8484         if (PyErr_Occurred()) SWIG_fail
; 
8486     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8493 static PyObject 
*_wrap_HtmlWindow_SelectWord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8494     PyObject 
*resultobj
; 
8495     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8498     PyObject 
* obj0 
= 0 ; 
8499     PyObject 
* obj1 
= 0 ; 
8501         (char *) "self",(char *) "pos", NULL 
 
8504     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectWord",kwnames
,&obj0
,&obj1
)) goto fail
; 
8505     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8506     if (SWIG_arg_fail(1)) SWIG_fail
; 
8509         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8512         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8513         (arg1
)->SelectWord((wxPoint 
const &)*arg2
); 
8515         wxPyEndAllowThreads(__tstate
); 
8516         if (PyErr_Occurred()) SWIG_fail
; 
8518     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8525 static PyObject 
*_wrap_HtmlWindow_SelectLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8526     PyObject 
*resultobj
; 
8527     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8530     PyObject 
* obj0 
= 0 ; 
8531     PyObject 
* obj1 
= 0 ; 
8533         (char *) "self",(char *) "pos", NULL 
 
8536     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectLine",kwnames
,&obj0
,&obj1
)) goto fail
; 
8537     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8538     if (SWIG_arg_fail(1)) SWIG_fail
; 
8541         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8544         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8545         (arg1
)->SelectLine((wxPoint 
const &)*arg2
); 
8547         wxPyEndAllowThreads(__tstate
); 
8548         if (PyErr_Occurred()) SWIG_fail
; 
8550     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8557 static PyObject 
*_wrap_HtmlWindow_SelectAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8558     PyObject 
*resultobj
; 
8559     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8560     PyObject 
* obj0 
= 0 ; 
8562         (char *) "self", NULL 
 
8565     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectAll",kwnames
,&obj0
)) goto fail
; 
8566     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8567     if (SWIG_arg_fail(1)) SWIG_fail
; 
8569         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8570         (arg1
)->SelectAll(); 
8572         wxPyEndAllowThreads(__tstate
); 
8573         if (PyErr_Occurred()) SWIG_fail
; 
8575     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8582 static PyObject 
*_wrap_HtmlWindow_SelectionToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8583     PyObject 
*resultobj
; 
8584     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8586     PyObject 
* obj0 
= 0 ; 
8588         (char *) "self", NULL 
 
8591     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectionToText",kwnames
,&obj0
)) goto fail
; 
8592     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8593     if (SWIG_arg_fail(1)) SWIG_fail
; 
8595         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8596         result 
= (arg1
)->SelectionToText(); 
8598         wxPyEndAllowThreads(__tstate
); 
8599         if (PyErr_Occurred()) SWIG_fail
; 
8603         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8605         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8614 static PyObject 
*_wrap_HtmlWindow_ToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8615     PyObject 
*resultobj
; 
8616     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8618     PyObject 
* obj0 
= 0 ; 
8620         (char *) "self", NULL 
 
8623     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_ToText",kwnames
,&obj0
)) goto fail
; 
8624     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8625     if (SWIG_arg_fail(1)) SWIG_fail
; 
8627         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8628         result 
= (arg1
)->ToText(); 
8630         wxPyEndAllowThreads(__tstate
); 
8631         if (PyErr_Occurred()) SWIG_fail
; 
8635         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8637         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8646 static PyObject 
*_wrap_HtmlWindow_base_OnLinkClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8647     PyObject 
*resultobj
; 
8648     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8649     wxHtmlLinkInfo 
*arg2 
= 0 ; 
8650     PyObject 
* obj0 
= 0 ; 
8651     PyObject 
* obj1 
= 0 ; 
8653         (char *) "self",(char *) "link", NULL 
 
8656     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnLinkClicked",kwnames
,&obj0
,&obj1
)) goto fail
; 
8657     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8658     if (SWIG_arg_fail(1)) SWIG_fail
; 
8660         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
8661         if (SWIG_arg_fail(2)) SWIG_fail
; 
8663             SWIG_null_ref("wxHtmlLinkInfo"); 
8665         if (SWIG_arg_fail(2)) SWIG_fail
; 
8668         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8669         (arg1
)->base_OnLinkClicked((wxHtmlLinkInfo 
const &)*arg2
); 
8671         wxPyEndAllowThreads(__tstate
); 
8672         if (PyErr_Occurred()) SWIG_fail
; 
8674     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8681 static PyObject 
*_wrap_HtmlWindow_base_OnSetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8682     PyObject 
*resultobj
; 
8683     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8684     wxString 
*arg2 
= 0 ; 
8685     bool temp2 
= false ; 
8686     PyObject 
* obj0 
= 0 ; 
8687     PyObject 
* obj1 
= 0 ; 
8689         (char *) "self",(char *) "title", NULL 
 
8692     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnSetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
8693     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8694     if (SWIG_arg_fail(1)) SWIG_fail
; 
8696         arg2 
= wxString_in_helper(obj1
); 
8697         if (arg2 
== NULL
) SWIG_fail
; 
8701         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8702         (arg1
)->base_OnSetTitle((wxString 
const &)*arg2
); 
8704         wxPyEndAllowThreads(__tstate
); 
8705         if (PyErr_Occurred()) SWIG_fail
; 
8707     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8722 static PyObject 
*_wrap_HtmlWindow_base_OnCellMouseHover(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8723     PyObject 
*resultobj
; 
8724     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8725     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8728     PyObject 
* obj0 
= 0 ; 
8729     PyObject 
* obj1 
= 0 ; 
8730     PyObject 
* obj2 
= 0 ; 
8731     PyObject 
* obj3 
= 0 ; 
8733         (char *) "self",(char *) "cell",(char *) "x",(char *) "y", NULL 
 
8736     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:HtmlWindow_base_OnCellMouseHover",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8737     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8738     if (SWIG_arg_fail(1)) SWIG_fail
; 
8739     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8740     if (SWIG_arg_fail(2)) SWIG_fail
; 
8742         arg3 
= (int)(SWIG_As_int(obj2
));  
8743         if (SWIG_arg_fail(3)) SWIG_fail
; 
8746         arg4 
= (int)(SWIG_As_int(obj3
));  
8747         if (SWIG_arg_fail(4)) SWIG_fail
; 
8750         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8751         (arg1
)->base_OnCellMouseHover(arg2
,arg3
,arg4
); 
8753         wxPyEndAllowThreads(__tstate
); 
8754         if (PyErr_Occurred()) SWIG_fail
; 
8756     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8763 static PyObject 
*_wrap_HtmlWindow_base_OnCellClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8764     PyObject 
*resultobj
; 
8765     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8766     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8769     wxMouseEvent 
*arg5 
= 0 ; 
8770     PyObject 
* obj0 
= 0 ; 
8771     PyObject 
* obj1 
= 0 ; 
8772     PyObject 
* obj2 
= 0 ; 
8773     PyObject 
* obj3 
= 0 ; 
8774     PyObject 
* obj4 
= 0 ; 
8776         (char *) "self",(char *) "cell",(char *) "x",(char *) "y",(char *) "event", NULL 
 
8779     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlWindow_base_OnCellClicked",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
8780     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8781     if (SWIG_arg_fail(1)) SWIG_fail
; 
8782     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8783     if (SWIG_arg_fail(2)) SWIG_fail
; 
8785         arg3 
= (int)(SWIG_As_int(obj2
));  
8786         if (SWIG_arg_fail(3)) SWIG_fail
; 
8789         arg4 
= (int)(SWIG_As_int(obj3
));  
8790         if (SWIG_arg_fail(4)) SWIG_fail
; 
8793         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8794         if (SWIG_arg_fail(5)) SWIG_fail
; 
8796             SWIG_null_ref("wxMouseEvent"); 
8798         if (SWIG_arg_fail(5)) SWIG_fail
; 
8801         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8802         (arg1
)->base_OnCellClicked(arg2
,arg3
,arg4
,(wxMouseEvent 
const &)*arg5
); 
8804         wxPyEndAllowThreads(__tstate
); 
8805         if (PyErr_Occurred()) SWIG_fail
; 
8807     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8814 static PyObject 
*_wrap_HtmlWindow_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8815     PyObject 
*resultobj
; 
8816     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
8817     wxVisualAttributes result
; 
8818     PyObject 
* obj0 
= 0 ; 
8820         (char *) "variant", NULL 
 
8823     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:HtmlWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
8826             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
8827             if (SWIG_arg_fail(1)) SWIG_fail
; 
8831         if (!wxPyCheckForApp()) SWIG_fail
; 
8832         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8833         result 
= wxPyHtmlWindow::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
8835         wxPyEndAllowThreads(__tstate
); 
8836         if (PyErr_Occurred()) SWIG_fail
; 
8839         wxVisualAttributes 
* resultptr
; 
8840         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
8841         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
8849 static PyObject 
* HtmlWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
8851     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
8852     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlWindow
, obj
); 
8854     return Py_BuildValue((char *)""); 
8856 static PyObject 
*_wrap_new_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8857     PyObject 
*resultobj
; 
8858     wxHtmlDCRenderer 
*result
; 
8863     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlDCRenderer",kwnames
)) goto fail
; 
8865         if (!wxPyCheckForApp()) SWIG_fail
; 
8866         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8867         result 
= (wxHtmlDCRenderer 
*)new wxHtmlDCRenderer(); 
8869         wxPyEndAllowThreads(__tstate
); 
8870         if (PyErr_Occurred()) SWIG_fail
; 
8872     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlDCRenderer
, 1); 
8879 static PyObject 
*_wrap_delete_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8880     PyObject 
*resultobj
; 
8881     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8882     PyObject 
* obj0 
= 0 ; 
8884         (char *) "self", NULL 
 
8887     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlDCRenderer",kwnames
,&obj0
)) goto fail
; 
8888     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8889     if (SWIG_arg_fail(1)) SWIG_fail
; 
8891         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8894         wxPyEndAllowThreads(__tstate
); 
8895         if (PyErr_Occurred()) SWIG_fail
; 
8897     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8904 static PyObject 
*_wrap_HtmlDCRenderer_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8905     PyObject 
*resultobj
; 
8906     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8907     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
8909     PyObject 
* obj0 
= 0 ; 
8910     PyObject 
* obj1 
= 0 ; 
8911     PyObject 
* obj2 
= 0 ; 
8913         (char *) "self",(char *) "dc",(char *) "maxwidth", NULL 
 
8916     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetDC",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8917     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8918     if (SWIG_arg_fail(1)) SWIG_fail
; 
8919     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
8920     if (SWIG_arg_fail(2)) SWIG_fail
; 
8922         arg3 
= (int)(SWIG_As_int(obj2
));  
8923         if (SWIG_arg_fail(3)) SWIG_fail
; 
8926         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8927         (arg1
)->SetDC(arg2
,arg3
); 
8929         wxPyEndAllowThreads(__tstate
); 
8930         if (PyErr_Occurred()) SWIG_fail
; 
8932     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8939 static PyObject 
*_wrap_HtmlDCRenderer_SetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8940     PyObject 
*resultobj
; 
8941     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8944     PyObject 
* obj0 
= 0 ; 
8945     PyObject 
* obj1 
= 0 ; 
8946     PyObject 
* obj2 
= 0 ; 
8948         (char *) "self",(char *) "width",(char *) "height", NULL 
 
8951     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8952     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8953     if (SWIG_arg_fail(1)) SWIG_fail
; 
8955         arg2 
= (int)(SWIG_As_int(obj1
));  
8956         if (SWIG_arg_fail(2)) SWIG_fail
; 
8959         arg3 
= (int)(SWIG_As_int(obj2
));  
8960         if (SWIG_arg_fail(3)) SWIG_fail
; 
8963         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8964         (arg1
)->SetSize(arg2
,arg3
); 
8966         wxPyEndAllowThreads(__tstate
); 
8967         if (PyErr_Occurred()) SWIG_fail
; 
8969     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8976 static PyObject 
*_wrap_HtmlDCRenderer_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8977     PyObject 
*resultobj
; 
8978     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8979     wxString 
*arg2 
= 0 ; 
8980     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
8981     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
8982     bool arg4 
= (bool) true ; 
8983     bool temp2 
= false ; 
8984     bool temp3 
= false ; 
8985     PyObject 
* obj0 
= 0 ; 
8986     PyObject 
* obj1 
= 0 ; 
8987     PyObject 
* obj2 
= 0 ; 
8988     PyObject 
* obj3 
= 0 ; 
8990         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
8993     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlDCRenderer_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8994     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8995     if (SWIG_arg_fail(1)) SWIG_fail
; 
8997         arg2 
= wxString_in_helper(obj1
); 
8998         if (arg2 
== NULL
) SWIG_fail
; 
9003             arg3 
= wxString_in_helper(obj2
); 
9004             if (arg3 
== NULL
) SWIG_fail
; 
9010             arg4 
= (bool)(SWIG_As_bool(obj3
));  
9011             if (SWIG_arg_fail(4)) SWIG_fail
; 
9015         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9016         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
9018         wxPyEndAllowThreads(__tstate
); 
9019         if (PyErr_Occurred()) SWIG_fail
; 
9021     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9044 static PyObject 
*_wrap_HtmlDCRenderer_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9045     PyObject 
*resultobj
; 
9046     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9049     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
9050     PyObject 
* obj0 
= 0 ; 
9051     PyObject 
* obj1 
= 0 ; 
9052     PyObject 
* obj2 
= 0 ; 
9053     PyObject 
* obj3 
= 0 ; 
9055         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
9058     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlDCRenderer_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9059     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9060     if (SWIG_arg_fail(1)) SWIG_fail
; 
9062         wxString
* sptr 
= wxString_in_helper(obj1
); 
9063         if (sptr 
== NULL
) SWIG_fail
; 
9068         wxString
* sptr 
= wxString_in_helper(obj2
); 
9069         if (sptr 
== NULL
) SWIG_fail
; 
9077         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9078         wxHtmlDCRenderer_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9080         wxPyEndAllowThreads(__tstate
); 
9081         if (PyErr_Occurred()) SWIG_fail
; 
9083     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9090 static PyObject 
*_wrap_HtmlDCRenderer_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9091     PyObject 
*resultobj
; 
9092     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9093     int arg2 
= (int) -1 ; 
9094     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9095     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9096     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9097     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9098     bool temp3 
= false ; 
9099     bool temp4 
= false ; 
9100     PyObject 
* obj0 
= 0 ; 
9101     PyObject 
* obj1 
= 0 ; 
9102     PyObject 
* obj2 
= 0 ; 
9103     PyObject 
* obj3 
= 0 ; 
9105         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9108     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlDCRenderer_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9109     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9110     if (SWIG_arg_fail(1)) SWIG_fail
; 
9113             arg2 
= (int)(SWIG_As_int(obj1
));  
9114             if (SWIG_arg_fail(2)) SWIG_fail
; 
9119             arg3 
= wxString_in_helper(obj2
); 
9120             if (arg3 
== NULL
) SWIG_fail
; 
9126             arg4 
= wxString_in_helper(obj3
); 
9127             if (arg4 
== NULL
) SWIG_fail
; 
9132         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9133         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9135         wxPyEndAllowThreads(__tstate
); 
9136         if (PyErr_Occurred()) SWIG_fail
; 
9138     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9161 static PyObject 
*_wrap_HtmlDCRenderer_Render(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9162     PyObject 
*resultobj
; 
9163     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9166     int arg4 
= (int) 0 ; 
9167     int arg5 
= (int) false ; 
9168     int arg6 
= (int) INT_MAX 
; 
9169     int *arg7 
= (int *) NULL 
; 
9170     int arg8 
= (int) 0 ; 
9172     PyObject 
* obj0 
= 0 ; 
9173     PyObject 
* obj1 
= 0 ; 
9174     PyObject 
* obj2 
= 0 ; 
9175     PyObject 
* obj3 
= 0 ; 
9176     PyObject 
* obj4 
= 0 ; 
9177     PyObject 
* obj5 
= 0 ; 
9178     PyObject 
* obj6 
= 0 ; 
9179     PyObject 
* obj7 
= 0 ; 
9181         (char *) "self",(char *) "x",(char *) "y",(char *) "from",(char *) "dont_render",(char *) "maxHeight",(char *) "choices",(char *) "LCOUNT", NULL 
 
9184     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOOO:HtmlDCRenderer_Render",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
9185     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9186     if (SWIG_arg_fail(1)) SWIG_fail
; 
9188         arg2 
= (int)(SWIG_As_int(obj1
));  
9189         if (SWIG_arg_fail(2)) SWIG_fail
; 
9192         arg3 
= (int)(SWIG_As_int(obj2
));  
9193         if (SWIG_arg_fail(3)) SWIG_fail
; 
9197             arg4 
= (int)(SWIG_As_int(obj3
));  
9198             if (SWIG_arg_fail(4)) SWIG_fail
; 
9203             arg5 
= (int)(SWIG_As_int(obj4
));  
9204             if (SWIG_arg_fail(5)) SWIG_fail
; 
9209             arg6 
= (int)(SWIG_As_int(obj5
));  
9210             if (SWIG_arg_fail(6)) SWIG_fail
; 
9214         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_int
, SWIG_POINTER_EXCEPTION 
| 0); 
9215         if (SWIG_arg_fail(7)) SWIG_fail
; 
9219             arg8 
= (int)(SWIG_As_int(obj7
));  
9220             if (SWIG_arg_fail(8)) SWIG_fail
; 
9224         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9225         result 
= (int)(arg1
)->Render(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
); 
9227         wxPyEndAllowThreads(__tstate
); 
9228         if (PyErr_Occurred()) SWIG_fail
; 
9231         resultobj 
= SWIG_From_int((int)(result
));  
9239 static PyObject 
*_wrap_HtmlDCRenderer_GetTotalHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9240     PyObject 
*resultobj
; 
9241     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9243     PyObject 
* obj0 
= 0 ; 
9245         (char *) "self", NULL 
 
9248     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlDCRenderer_GetTotalHeight",kwnames
,&obj0
)) goto fail
; 
9249     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9250     if (SWIG_arg_fail(1)) SWIG_fail
; 
9252         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9253         result 
= (int)(arg1
)->GetTotalHeight(); 
9255         wxPyEndAllowThreads(__tstate
); 
9256         if (PyErr_Occurred()) SWIG_fail
; 
9259         resultobj 
= SWIG_From_int((int)(result
));  
9267 static PyObject 
* HtmlDCRenderer_swigregister(PyObject 
*, PyObject 
*args
) { 
9269     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9270     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlDCRenderer
, obj
); 
9272     return Py_BuildValue((char *)""); 
9274 static PyObject 
*_wrap_new_HtmlPrintout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9275     PyObject 
*resultobj
; 
9276     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintoutTitleStr 
; 
9277     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9278     wxHtmlPrintout 
*result
; 
9279     bool temp1 
= false ; 
9280     PyObject 
* obj0 
= 0 ; 
9282         (char *) "title", NULL 
 
9285     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlPrintout",kwnames
,&obj0
)) goto fail
; 
9288             arg1 
= wxString_in_helper(obj0
); 
9289             if (arg1 
== NULL
) SWIG_fail
; 
9294         if (!wxPyCheckForApp()) SWIG_fail
; 
9295         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9296         result 
= (wxHtmlPrintout 
*)new wxHtmlPrintout((wxString 
const &)*arg1
); 
9298         wxPyEndAllowThreads(__tstate
); 
9299         if (PyErr_Occurred()) SWIG_fail
; 
9301     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlPrintout
, 1); 
9316 static PyObject 
*_wrap_HtmlPrintout_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9317     PyObject 
*resultobj
; 
9318     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9319     wxString 
*arg2 
= 0 ; 
9320     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9321     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9322     bool arg4 
= (bool) true ; 
9323     bool temp2 
= false ; 
9324     bool temp3 
= false ; 
9325     PyObject 
* obj0 
= 0 ; 
9326     PyObject 
* obj1 
= 0 ; 
9327     PyObject 
* obj2 
= 0 ; 
9328     PyObject 
* obj3 
= 0 ; 
9330         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
9333     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlPrintout_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9334     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9335     if (SWIG_arg_fail(1)) SWIG_fail
; 
9337         arg2 
= wxString_in_helper(obj1
); 
9338         if (arg2 
== NULL
) SWIG_fail
; 
9343             arg3 
= wxString_in_helper(obj2
); 
9344             if (arg3 
== NULL
) SWIG_fail
; 
9350             arg4 
= (bool)(SWIG_As_bool(obj3
));  
9351             if (SWIG_arg_fail(4)) SWIG_fail
; 
9355         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9356         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
9358         wxPyEndAllowThreads(__tstate
); 
9359         if (PyErr_Occurred()) SWIG_fail
; 
9361     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9384 static PyObject 
*_wrap_HtmlPrintout_SetHtmlFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9385     PyObject 
*resultobj
; 
9386     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9387     wxString 
*arg2 
= 0 ; 
9388     bool temp2 
= false ; 
9389     PyObject 
* obj0 
= 0 ; 
9390     PyObject 
* obj1 
= 0 ; 
9392         (char *) "self",(char *) "htmlfile", NULL 
 
9395     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlPrintout_SetHtmlFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9396     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9397     if (SWIG_arg_fail(1)) SWIG_fail
; 
9399         arg2 
= wxString_in_helper(obj1
); 
9400         if (arg2 
== NULL
) SWIG_fail
; 
9404         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9405         (arg1
)->SetHtmlFile((wxString 
const &)*arg2
); 
9407         wxPyEndAllowThreads(__tstate
); 
9408         if (PyErr_Occurred()) SWIG_fail
; 
9410     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9425 static PyObject 
*_wrap_HtmlPrintout_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9426     PyObject 
*resultobj
; 
9427     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9428     wxString 
*arg2 
= 0 ; 
9429     int arg3 
= (int) wxPAGE_ALL 
; 
9430     bool temp2 
= false ; 
9431     PyObject 
* obj0 
= 0 ; 
9432     PyObject 
* obj1 
= 0 ; 
9433     PyObject 
* obj2 
= 0 ; 
9435         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
9438     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9439     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9440     if (SWIG_arg_fail(1)) SWIG_fail
; 
9442         arg2 
= wxString_in_helper(obj1
); 
9443         if (arg2 
== NULL
) SWIG_fail
; 
9448             arg3 
= (int)(SWIG_As_int(obj2
));  
9449             if (SWIG_arg_fail(3)) SWIG_fail
; 
9453         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9454         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
9456         wxPyEndAllowThreads(__tstate
); 
9457         if (PyErr_Occurred()) SWIG_fail
; 
9459     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9474 static PyObject 
*_wrap_HtmlPrintout_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9475     PyObject 
*resultobj
; 
9476     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9477     wxString 
*arg2 
= 0 ; 
9478     int arg3 
= (int) wxPAGE_ALL 
; 
9479     bool temp2 
= false ; 
9480     PyObject 
* obj0 
= 0 ; 
9481     PyObject 
* obj1 
= 0 ; 
9482     PyObject 
* obj2 
= 0 ; 
9484         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
9487     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9488     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9489     if (SWIG_arg_fail(1)) SWIG_fail
; 
9491         arg2 
= wxString_in_helper(obj1
); 
9492         if (arg2 
== NULL
) SWIG_fail
; 
9497             arg3 
= (int)(SWIG_As_int(obj2
));  
9498             if (SWIG_arg_fail(3)) SWIG_fail
; 
9502         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9503         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
9505         wxPyEndAllowThreads(__tstate
); 
9506         if (PyErr_Occurred()) SWIG_fail
; 
9508     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9523 static PyObject 
*_wrap_HtmlPrintout_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9524     PyObject 
*resultobj
; 
9525     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9528     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
9529     PyObject 
* obj0 
= 0 ; 
9530     PyObject 
* obj1 
= 0 ; 
9531     PyObject 
* obj2 
= 0 ; 
9532     PyObject 
* obj3 
= 0 ; 
9534         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
9537     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlPrintout_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9538     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9539     if (SWIG_arg_fail(1)) SWIG_fail
; 
9541         wxString
* sptr 
= wxString_in_helper(obj1
); 
9542         if (sptr 
== NULL
) SWIG_fail
; 
9547         wxString
* sptr 
= wxString_in_helper(obj2
); 
9548         if (sptr 
== NULL
) SWIG_fail
; 
9556         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9557         wxHtmlPrintout_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9559         wxPyEndAllowThreads(__tstate
); 
9560         if (PyErr_Occurred()) SWIG_fail
; 
9562     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9569 static PyObject 
*_wrap_HtmlPrintout_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9570     PyObject 
*resultobj
; 
9571     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9572     int arg2 
= (int) -1 ; 
9573     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9574     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9575     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9576     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9577     bool temp3 
= false ; 
9578     bool temp4 
= false ; 
9579     PyObject 
* obj0 
= 0 ; 
9580     PyObject 
* obj1 
= 0 ; 
9581     PyObject 
* obj2 
= 0 ; 
9582     PyObject 
* obj3 
= 0 ; 
9584         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9587     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlPrintout_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9588     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9589     if (SWIG_arg_fail(1)) SWIG_fail
; 
9592             arg2 
= (int)(SWIG_As_int(obj1
));  
9593             if (SWIG_arg_fail(2)) SWIG_fail
; 
9598             arg3 
= wxString_in_helper(obj2
); 
9599             if (arg3 
== NULL
) SWIG_fail
; 
9605             arg4 
= wxString_in_helper(obj3
); 
9606             if (arg4 
== NULL
) SWIG_fail
; 
9611         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9612         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9614         wxPyEndAllowThreads(__tstate
); 
9615         if (PyErr_Occurred()) SWIG_fail
; 
9617     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9640 static PyObject 
*_wrap_HtmlPrintout_SetMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9641     PyObject 
*resultobj
; 
9642     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9643     float arg2 
= (float) 25.2 ; 
9644     float arg3 
= (float) 25.2 ; 
9645     float arg4 
= (float) 25.2 ; 
9646     float arg5 
= (float) 25.2 ; 
9647     float arg6 
= (float) 5 ; 
9648     PyObject 
* obj0 
= 0 ; 
9649     PyObject 
* obj1 
= 0 ; 
9650     PyObject 
* obj2 
= 0 ; 
9651     PyObject 
* obj3 
= 0 ; 
9652     PyObject 
* obj4 
= 0 ; 
9653     PyObject 
* obj5 
= 0 ; 
9655         (char *) "self",(char *) "top",(char *) "bottom",(char *) "left",(char *) "right",(char *) "spaces", NULL 
 
9658     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:HtmlPrintout_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
9659     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9660     if (SWIG_arg_fail(1)) SWIG_fail
; 
9663             arg2 
= (float)(SWIG_As_float(obj1
));  
9664             if (SWIG_arg_fail(2)) SWIG_fail
; 
9669             arg3 
= (float)(SWIG_As_float(obj2
));  
9670             if (SWIG_arg_fail(3)) SWIG_fail
; 
9675             arg4 
= (float)(SWIG_As_float(obj3
));  
9676             if (SWIG_arg_fail(4)) SWIG_fail
; 
9681             arg5 
= (float)(SWIG_As_float(obj4
));  
9682             if (SWIG_arg_fail(5)) SWIG_fail
; 
9687             arg6 
= (float)(SWIG_As_float(obj5
));  
9688             if (SWIG_arg_fail(6)) SWIG_fail
; 
9692         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9693         (arg1
)->SetMargins(arg2
,arg3
,arg4
,arg5
,arg6
); 
9695         wxPyEndAllowThreads(__tstate
); 
9696         if (PyErr_Occurred()) SWIG_fail
; 
9698     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9705 static PyObject 
*_wrap_HtmlPrintout_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9706     PyObject 
*resultobj
; 
9707     wxHtmlFilter 
*arg1 
= (wxHtmlFilter 
*) 0 ; 
9708     PyObject 
* obj0 
= 0 ; 
9710         (char *) "filter", NULL 
 
9713     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlPrintout_AddFilter",kwnames
,&obj0
)) goto fail
; 
9714     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
9715     if (SWIG_arg_fail(1)) SWIG_fail
; 
9717         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9718         wxHtmlPrintout::AddFilter(arg1
); 
9720         wxPyEndAllowThreads(__tstate
); 
9721         if (PyErr_Occurred()) SWIG_fail
; 
9723     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9730 static PyObject 
*_wrap_HtmlPrintout_CleanUpStatics(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9731     PyObject 
*resultobj
; 
9736     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":HtmlPrintout_CleanUpStatics",kwnames
)) goto fail
; 
9738         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9739         wxHtmlPrintout::CleanUpStatics(); 
9741         wxPyEndAllowThreads(__tstate
); 
9742         if (PyErr_Occurred()) SWIG_fail
; 
9744     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9751 static PyObject 
* HtmlPrintout_swigregister(PyObject 
*, PyObject 
*args
) { 
9753     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9754     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlPrintout
, obj
); 
9756     return Py_BuildValue((char *)""); 
9758 static PyObject 
*_wrap_new_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9759     PyObject 
*resultobj
; 
9760     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintingTitleStr 
; 
9761     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9762     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
9763     wxHtmlEasyPrinting 
*result
; 
9764     bool temp1 
= false ; 
9765     PyObject 
* obj0 
= 0 ; 
9766     PyObject 
* obj1 
= 0 ; 
9768         (char *) "name",(char *) "parentWindow", NULL 
 
9771     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_HtmlEasyPrinting",kwnames
,&obj0
,&obj1
)) goto fail
; 
9774             arg1 
= wxString_in_helper(obj0
); 
9775             if (arg1 
== NULL
) SWIG_fail
; 
9780         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9781         if (SWIG_arg_fail(2)) SWIG_fail
; 
9784         if (!wxPyCheckForApp()) SWIG_fail
; 
9785         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9786         result 
= (wxHtmlEasyPrinting 
*)new wxHtmlEasyPrinting((wxString 
const &)*arg1
,arg2
); 
9788         wxPyEndAllowThreads(__tstate
); 
9789         if (PyErr_Occurred()) SWIG_fail
; 
9791     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlEasyPrinting
, 1); 
9806 static PyObject 
*_wrap_delete_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9807     PyObject 
*resultobj
; 
9808     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9809     PyObject 
* obj0 
= 0 ; 
9811         (char *) "self", NULL 
 
9814     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlEasyPrinting",kwnames
,&obj0
)) goto fail
; 
9815     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9816     if (SWIG_arg_fail(1)) SWIG_fail
; 
9818         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9821         wxPyEndAllowThreads(__tstate
); 
9822         if (PyErr_Occurred()) SWIG_fail
; 
9824     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9831 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9832     PyObject 
*resultobj
; 
9833     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9834     wxString 
*arg2 
= 0 ; 
9835     bool temp2 
= false ; 
9836     PyObject 
* obj0 
= 0 ; 
9837     PyObject 
* obj1 
= 0 ; 
9839         (char *) "self",(char *) "htmlfile", NULL 
 
9842     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PreviewFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9843     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9844     if (SWIG_arg_fail(1)) SWIG_fail
; 
9846         arg2 
= wxString_in_helper(obj1
); 
9847         if (arg2 
== NULL
) SWIG_fail
; 
9851         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9852         (arg1
)->PreviewFile((wxString 
const &)*arg2
); 
9854         wxPyEndAllowThreads(__tstate
); 
9855         if (PyErr_Occurred()) SWIG_fail
; 
9857     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9872 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9873     PyObject 
*resultobj
; 
9874     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9875     wxString 
*arg2 
= 0 ; 
9876     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9877     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9878     bool temp2 
= false ; 
9879     bool temp3 
= false ; 
9880     PyObject 
* obj0 
= 0 ; 
9881     PyObject 
* obj1 
= 0 ; 
9882     PyObject 
* obj2 
= 0 ; 
9884         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9887     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PreviewText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9888     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9889     if (SWIG_arg_fail(1)) SWIG_fail
; 
9891         arg2 
= wxString_in_helper(obj1
); 
9892         if (arg2 
== NULL
) SWIG_fail
; 
9897             arg3 
= wxString_in_helper(obj2
); 
9898             if (arg3 
== NULL
) SWIG_fail
; 
9903         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9904         (arg1
)->PreviewText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
9906         wxPyEndAllowThreads(__tstate
); 
9907         if (PyErr_Occurred()) SWIG_fail
; 
9909     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9932 static PyObject 
*_wrap_HtmlEasyPrinting_PrintFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9933     PyObject 
*resultobj
; 
9934     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9935     wxString 
*arg2 
= 0 ; 
9936     bool temp2 
= false ; 
9937     PyObject 
* obj0 
= 0 ; 
9938     PyObject 
* obj1 
= 0 ; 
9940         (char *) "self",(char *) "htmlfile", NULL 
 
9943     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PrintFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9944     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9945     if (SWIG_arg_fail(1)) SWIG_fail
; 
9947         arg2 
= wxString_in_helper(obj1
); 
9948         if (arg2 
== NULL
) SWIG_fail
; 
9952         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9953         (arg1
)->PrintFile((wxString 
const &)*arg2
); 
9955         wxPyEndAllowThreads(__tstate
); 
9956         if (PyErr_Occurred()) SWIG_fail
; 
9958     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9973 static PyObject 
*_wrap_HtmlEasyPrinting_PrintText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9974     PyObject 
*resultobj
; 
9975     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9976     wxString 
*arg2 
= 0 ; 
9977     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9978     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9979     bool temp2 
= false ; 
9980     bool temp3 
= false ; 
9981     PyObject 
* obj0 
= 0 ; 
9982     PyObject 
* obj1 
= 0 ; 
9983     PyObject 
* obj2 
= 0 ; 
9985         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9988     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PrintText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9989     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9990     if (SWIG_arg_fail(1)) SWIG_fail
; 
9992         arg2 
= wxString_in_helper(obj1
); 
9993         if (arg2 
== NULL
) SWIG_fail
; 
9998             arg3 
= wxString_in_helper(obj2
); 
9999             if (arg3 
== NULL
) SWIG_fail
; 
10004         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10005         (arg1
)->PrintText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
10007         wxPyEndAllowThreads(__tstate
); 
10008         if (PyErr_Occurred()) SWIG_fail
; 
10010     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10033 static PyObject 
*_wrap_HtmlEasyPrinting_PageSetup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10034     PyObject 
*resultobj
; 
10035     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10036     PyObject 
* obj0 
= 0 ; 
10037     char *kwnames
[] = { 
10038         (char *) "self", NULL 
 
10041     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_PageSetup",kwnames
,&obj0
)) goto fail
; 
10042     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10043     if (SWIG_arg_fail(1)) SWIG_fail
; 
10045         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10046         (arg1
)->PageSetup(); 
10048         wxPyEndAllowThreads(__tstate
); 
10049         if (PyErr_Occurred()) SWIG_fail
; 
10051     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10058 static PyObject 
*_wrap_HtmlEasyPrinting_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10059     PyObject 
*resultobj
; 
10060     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10061     wxString 
*arg2 
= 0 ; 
10062     int arg3 
= (int) wxPAGE_ALL 
; 
10063     bool temp2 
= false ; 
10064     PyObject 
* obj0 
= 0 ; 
10065     PyObject 
* obj1 
= 0 ; 
10066     PyObject 
* obj2 
= 0 ; 
10067     char *kwnames
[] = { 
10068         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
10071     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10072     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10073     if (SWIG_arg_fail(1)) SWIG_fail
; 
10075         arg2 
= wxString_in_helper(obj1
); 
10076         if (arg2 
== NULL
) SWIG_fail
; 
10081             arg3 
= (int)(SWIG_As_int(obj2
));  
10082             if (SWIG_arg_fail(3)) SWIG_fail
; 
10086         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10087         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
10089         wxPyEndAllowThreads(__tstate
); 
10090         if (PyErr_Occurred()) SWIG_fail
; 
10092     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10107 static PyObject 
*_wrap_HtmlEasyPrinting_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10108     PyObject 
*resultobj
; 
10109     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10110     wxString 
*arg2 
= 0 ; 
10111     int arg3 
= (int) wxPAGE_ALL 
; 
10112     bool temp2 
= false ; 
10113     PyObject 
* obj0 
= 0 ; 
10114     PyObject 
* obj1 
= 0 ; 
10115     PyObject 
* obj2 
= 0 ; 
10116     char *kwnames
[] = { 
10117         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
10120     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10121     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10122     if (SWIG_arg_fail(1)) SWIG_fail
; 
10124         arg2 
= wxString_in_helper(obj1
); 
10125         if (arg2 
== NULL
) SWIG_fail
; 
10130             arg3 
= (int)(SWIG_As_int(obj2
));  
10131             if (SWIG_arg_fail(3)) SWIG_fail
; 
10135         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10136         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
10138         wxPyEndAllowThreads(__tstate
); 
10139         if (PyErr_Occurred()) SWIG_fail
; 
10141     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10156 static PyObject 
*_wrap_HtmlEasyPrinting_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10157     PyObject 
*resultobj
; 
10158     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10161     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
10162     PyObject 
* obj0 
= 0 ; 
10163     PyObject 
* obj1 
= 0 ; 
10164     PyObject 
* obj2 
= 0 ; 
10165     PyObject 
* obj3 
= 0 ; 
10166     char *kwnames
[] = { 
10167         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
10170     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlEasyPrinting_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10171     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10172     if (SWIG_arg_fail(1)) SWIG_fail
; 
10174         wxString
* sptr 
= wxString_in_helper(obj1
); 
10175         if (sptr 
== NULL
) SWIG_fail
; 
10180         wxString
* sptr 
= wxString_in_helper(obj2
); 
10181         if (sptr 
== NULL
) SWIG_fail
; 
10189         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10190         wxHtmlEasyPrinting_SetFonts(arg1
,arg2
,arg3
,arg4
); 
10192         wxPyEndAllowThreads(__tstate
); 
10193         if (PyErr_Occurred()) SWIG_fail
; 
10195     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10202 static PyObject 
*_wrap_HtmlEasyPrinting_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10203     PyObject 
*resultobj
; 
10204     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10205     int arg2 
= (int) -1 ; 
10206     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
10207     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
10208     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
10209     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
10210     bool temp3 
= false ; 
10211     bool temp4 
= false ; 
10212     PyObject 
* obj0 
= 0 ; 
10213     PyObject 
* obj1 
= 0 ; 
10214     PyObject 
* obj2 
= 0 ; 
10215     PyObject 
* obj3 
= 0 ; 
10216     char *kwnames
[] = { 
10217         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
10220     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlEasyPrinting_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10221     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10222     if (SWIG_arg_fail(1)) SWIG_fail
; 
10225             arg2 
= (int)(SWIG_As_int(obj1
));  
10226             if (SWIG_arg_fail(2)) SWIG_fail
; 
10231             arg3 
= wxString_in_helper(obj2
); 
10232             if (arg3 
== NULL
) SWIG_fail
; 
10238             arg4 
= wxString_in_helper(obj3
); 
10239             if (arg4 
== NULL
) SWIG_fail
; 
10244         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10245         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10247         wxPyEndAllowThreads(__tstate
); 
10248         if (PyErr_Occurred()) SWIG_fail
; 
10250     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10273 static PyObject 
*_wrap_HtmlEasyPrinting_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10274     PyObject 
*resultobj
; 
10275     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10276     wxPrintData 
*result
; 
10277     PyObject 
* obj0 
= 0 ; 
10278     char *kwnames
[] = { 
10279         (char *) "self", NULL 
 
10282     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPrintData",kwnames
,&obj0
)) goto fail
; 
10283     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10284     if (SWIG_arg_fail(1)) SWIG_fail
; 
10286         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10287         result 
= (wxPrintData 
*)(arg1
)->GetPrintData(); 
10289         wxPyEndAllowThreads(__tstate
); 
10290         if (PyErr_Occurred()) SWIG_fail
; 
10292     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
10299 static PyObject 
*_wrap_HtmlEasyPrinting_GetPageSetupData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10300     PyObject 
*resultobj
; 
10301     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10302     wxPageSetupDialogData 
*result
; 
10303     PyObject 
* obj0 
= 0 ; 
10304     char *kwnames
[] = { 
10305         (char *) "self", NULL 
 
10308     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPageSetupData",kwnames
,&obj0
)) goto fail
; 
10309     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10310     if (SWIG_arg_fail(1)) SWIG_fail
; 
10312         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10313         result 
= (wxPageSetupDialogData 
*)(arg1
)->GetPageSetupData(); 
10315         wxPyEndAllowThreads(__tstate
); 
10316         if (PyErr_Occurred()) SWIG_fail
; 
10318     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0); 
10325 static PyObject 
* HtmlEasyPrinting_swigregister(PyObject 
*, PyObject 
*args
) { 
10327     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10328     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlEasyPrinting
, obj
); 
10330     return Py_BuildValue((char *)""); 
10332 static PyObject 
*_wrap_new_HtmlBookRecord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10333     PyObject 
*resultobj
; 
10334     wxString 
*arg1 
= 0 ; 
10335     wxString 
*arg2 
= 0 ; 
10336     wxString 
*arg3 
= 0 ; 
10337     wxString 
*arg4 
= 0 ; 
10338     wxHtmlBookRecord 
*result
; 
10339     bool temp1 
= false ; 
10340     bool temp2 
= false ; 
10341     bool temp3 
= false ; 
10342     bool temp4 
= false ; 
10343     PyObject 
* obj0 
= 0 ; 
10344     PyObject 
* obj1 
= 0 ; 
10345     PyObject 
* obj2 
= 0 ; 
10346     PyObject 
* obj3 
= 0 ; 
10347     char *kwnames
[] = { 
10348         (char *) "bookfile",(char *) "basepath",(char *) "title",(char *) "start", NULL 
 
10351     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_HtmlBookRecord",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10353         arg1 
= wxString_in_helper(obj0
); 
10354         if (arg1 
== NULL
) SWIG_fail
; 
10358         arg2 
= wxString_in_helper(obj1
); 
10359         if (arg2 
== NULL
) SWIG_fail
; 
10363         arg3 
= wxString_in_helper(obj2
); 
10364         if (arg3 
== NULL
) SWIG_fail
; 
10368         arg4 
= wxString_in_helper(obj3
); 
10369         if (arg4 
== NULL
) SWIG_fail
; 
10373         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10374         result 
= (wxHtmlBookRecord 
*)new wxHtmlBookRecord((wxString 
const &)*arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10376         wxPyEndAllowThreads(__tstate
); 
10377         if (PyErr_Occurred()) SWIG_fail
; 
10379     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecord
, 1); 
10418 static PyObject 
*_wrap_HtmlBookRecord_GetBookFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10419     PyObject 
*resultobj
; 
10420     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10422     PyObject 
* obj0 
= 0 ; 
10423     char *kwnames
[] = { 
10424         (char *) "self", NULL 
 
10427     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBookFile",kwnames
,&obj0
)) goto fail
; 
10428     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10429     if (SWIG_arg_fail(1)) SWIG_fail
; 
10431         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10432         result 
= (arg1
)->GetBookFile(); 
10434         wxPyEndAllowThreads(__tstate
); 
10435         if (PyErr_Occurred()) SWIG_fail
; 
10439         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10441         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10450 static PyObject 
*_wrap_HtmlBookRecord_GetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10451     PyObject 
*resultobj
; 
10452     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10454     PyObject 
* obj0 
= 0 ; 
10455     char *kwnames
[] = { 
10456         (char *) "self", NULL 
 
10459     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetTitle",kwnames
,&obj0
)) goto fail
; 
10460     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10461     if (SWIG_arg_fail(1)) SWIG_fail
; 
10463         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10464         result 
= (arg1
)->GetTitle(); 
10466         wxPyEndAllowThreads(__tstate
); 
10467         if (PyErr_Occurred()) SWIG_fail
; 
10471         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10473         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10482 static PyObject 
*_wrap_HtmlBookRecord_GetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10483     PyObject 
*resultobj
; 
10484     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10486     PyObject 
* obj0 
= 0 ; 
10487     char *kwnames
[] = { 
10488         (char *) "self", NULL 
 
10491     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetStart",kwnames
,&obj0
)) goto fail
; 
10492     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10493     if (SWIG_arg_fail(1)) SWIG_fail
; 
10495         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10496         result 
= (arg1
)->GetStart(); 
10498         wxPyEndAllowThreads(__tstate
); 
10499         if (PyErr_Occurred()) SWIG_fail
; 
10503         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10505         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10514 static PyObject 
*_wrap_HtmlBookRecord_GetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10515     PyObject 
*resultobj
; 
10516     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10518     PyObject 
* obj0 
= 0 ; 
10519     char *kwnames
[] = { 
10520         (char *) "self", NULL 
 
10523     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBasePath",kwnames
,&obj0
)) goto fail
; 
10524     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10525     if (SWIG_arg_fail(1)) SWIG_fail
; 
10527         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10528         result 
= (arg1
)->GetBasePath(); 
10530         wxPyEndAllowThreads(__tstate
); 
10531         if (PyErr_Occurred()) SWIG_fail
; 
10535         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10537         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10546 static PyObject 
*_wrap_HtmlBookRecord_SetContentsRange(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10547     PyObject 
*resultobj
; 
10548     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10551     PyObject 
* obj0 
= 0 ; 
10552     PyObject 
* obj1 
= 0 ; 
10553     PyObject 
* obj2 
= 0 ; 
10554     char *kwnames
[] = { 
10555         (char *) "self",(char *) "start",(char *) "end", NULL 
 
10558     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlBookRecord_SetContentsRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10559     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10560     if (SWIG_arg_fail(1)) SWIG_fail
; 
10562         arg2 
= (int)(SWIG_As_int(obj1
));  
10563         if (SWIG_arg_fail(2)) SWIG_fail
; 
10566         arg3 
= (int)(SWIG_As_int(obj2
));  
10567         if (SWIG_arg_fail(3)) SWIG_fail
; 
10570         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10571         (arg1
)->SetContentsRange(arg2
,arg3
); 
10573         wxPyEndAllowThreads(__tstate
); 
10574         if (PyErr_Occurred()) SWIG_fail
; 
10576     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10583 static PyObject 
*_wrap_HtmlBookRecord_GetContentsStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10584     PyObject 
*resultobj
; 
10585     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10587     PyObject 
* obj0 
= 0 ; 
10588     char *kwnames
[] = { 
10589         (char *) "self", NULL 
 
10592     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsStart",kwnames
,&obj0
)) goto fail
; 
10593     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10594     if (SWIG_arg_fail(1)) SWIG_fail
; 
10596         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10597         result 
= (int)(arg1
)->GetContentsStart(); 
10599         wxPyEndAllowThreads(__tstate
); 
10600         if (PyErr_Occurred()) SWIG_fail
; 
10603         resultobj 
= SWIG_From_int((int)(result
));  
10611 static PyObject 
*_wrap_HtmlBookRecord_GetContentsEnd(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10612     PyObject 
*resultobj
; 
10613     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10615     PyObject 
* obj0 
= 0 ; 
10616     char *kwnames
[] = { 
10617         (char *) "self", NULL 
 
10620     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsEnd",kwnames
,&obj0
)) goto fail
; 
10621     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10622     if (SWIG_arg_fail(1)) SWIG_fail
; 
10624         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10625         result 
= (int)(arg1
)->GetContentsEnd(); 
10627         wxPyEndAllowThreads(__tstate
); 
10628         if (PyErr_Occurred()) SWIG_fail
; 
10631         resultobj 
= SWIG_From_int((int)(result
));  
10639 static PyObject 
*_wrap_HtmlBookRecord_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10640     PyObject 
*resultobj
; 
10641     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10642     wxString 
*arg2 
= 0 ; 
10643     bool temp2 
= false ; 
10644     PyObject 
* obj0 
= 0 ; 
10645     PyObject 
* obj1 
= 0 ; 
10646     char *kwnames
[] = { 
10647         (char *) "self",(char *) "title", NULL 
 
10650     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
10651     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10652     if (SWIG_arg_fail(1)) SWIG_fail
; 
10654         arg2 
= wxString_in_helper(obj1
); 
10655         if (arg2 
== NULL
) SWIG_fail
; 
10659         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10660         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
10662         wxPyEndAllowThreads(__tstate
); 
10663         if (PyErr_Occurred()) SWIG_fail
; 
10665     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10680 static PyObject 
*_wrap_HtmlBookRecord_SetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10681     PyObject 
*resultobj
; 
10682     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10683     wxString 
*arg2 
= 0 ; 
10684     bool temp2 
= false ; 
10685     PyObject 
* obj0 
= 0 ; 
10686     PyObject 
* obj1 
= 0 ; 
10687     char *kwnames
[] = { 
10688         (char *) "self",(char *) "path", NULL 
 
10691     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetBasePath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10692     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10693     if (SWIG_arg_fail(1)) SWIG_fail
; 
10695         arg2 
= wxString_in_helper(obj1
); 
10696         if (arg2 
== NULL
) SWIG_fail
; 
10700         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10701         (arg1
)->SetBasePath((wxString 
const &)*arg2
); 
10703         wxPyEndAllowThreads(__tstate
); 
10704         if (PyErr_Occurred()) SWIG_fail
; 
10706     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10721 static PyObject 
*_wrap_HtmlBookRecord_SetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10722     PyObject 
*resultobj
; 
10723     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10724     wxString 
*arg2 
= 0 ; 
10725     bool temp2 
= false ; 
10726     PyObject 
* obj0 
= 0 ; 
10727     PyObject 
* obj1 
= 0 ; 
10728     char *kwnames
[] = { 
10729         (char *) "self",(char *) "start", NULL 
 
10732     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetStart",kwnames
,&obj0
,&obj1
)) goto fail
; 
10733     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10734     if (SWIG_arg_fail(1)) SWIG_fail
; 
10736         arg2 
= wxString_in_helper(obj1
); 
10737         if (arg2 
== NULL
) SWIG_fail
; 
10741         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10742         (arg1
)->SetStart((wxString 
const &)*arg2
); 
10744         wxPyEndAllowThreads(__tstate
); 
10745         if (PyErr_Occurred()) SWIG_fail
; 
10747     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10762 static PyObject 
*_wrap_HtmlBookRecord_GetFullPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10763     PyObject 
*resultobj
; 
10764     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10765     wxString 
*arg2 
= 0 ; 
10767     bool temp2 
= false ; 
10768     PyObject 
* obj0 
= 0 ; 
10769     PyObject 
* obj1 
= 0 ; 
10770     char *kwnames
[] = { 
10771         (char *) "self",(char *) "page", NULL 
 
10774     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_GetFullPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10775     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10776     if (SWIG_arg_fail(1)) SWIG_fail
; 
10778         arg2 
= wxString_in_helper(obj1
); 
10779         if (arg2 
== NULL
) SWIG_fail
; 
10783         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10784         result 
= ((wxHtmlBookRecord 
const *)arg1
)->GetFullPath((wxString 
const &)*arg2
); 
10786         wxPyEndAllowThreads(__tstate
); 
10787         if (PyErr_Occurred()) SWIG_fail
; 
10791         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10793         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10810 static PyObject 
* HtmlBookRecord_swigregister(PyObject 
*, PyObject 
*args
) { 
10812     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10813     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlBookRecord
, obj
); 
10815     return Py_BuildValue((char *)""); 
10817 static PyObject 
*_wrap_HtmlSearchStatus_Search(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10818     PyObject 
*resultobj
; 
10819     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10821     PyObject 
* obj0 
= 0 ; 
10822     char *kwnames
[] = { 
10823         (char *) "self", NULL 
 
10826     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_Search",kwnames
,&obj0
)) goto fail
; 
10827     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10828     if (SWIG_arg_fail(1)) SWIG_fail
; 
10830         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10831         result 
= (bool)(arg1
)->Search(); 
10833         wxPyEndAllowThreads(__tstate
); 
10834         if (PyErr_Occurred()) SWIG_fail
; 
10837         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10845 static PyObject 
*_wrap_HtmlSearchStatus_IsActive(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10846     PyObject 
*resultobj
; 
10847     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10849     PyObject 
* obj0 
= 0 ; 
10850     char *kwnames
[] = { 
10851         (char *) "self", NULL 
 
10854     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_IsActive",kwnames
,&obj0
)) goto fail
; 
10855     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10856     if (SWIG_arg_fail(1)) SWIG_fail
; 
10858         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10859         result 
= (bool)(arg1
)->IsActive(); 
10861         wxPyEndAllowThreads(__tstate
); 
10862         if (PyErr_Occurred()) SWIG_fail
; 
10865         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10873 static PyObject 
*_wrap_HtmlSearchStatus_GetCurIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10874     PyObject 
*resultobj
; 
10875     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10877     PyObject 
* obj0 
= 0 ; 
10878     char *kwnames
[] = { 
10879         (char *) "self", NULL 
 
10882     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetCurIndex",kwnames
,&obj0
)) goto fail
; 
10883     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10884     if (SWIG_arg_fail(1)) SWIG_fail
; 
10886         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10887         result 
= (int)(arg1
)->GetCurIndex(); 
10889         wxPyEndAllowThreads(__tstate
); 
10890         if (PyErr_Occurred()) SWIG_fail
; 
10893         resultobj 
= SWIG_From_int((int)(result
));  
10901 static PyObject 
*_wrap_HtmlSearchStatus_GetMaxIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10902     PyObject 
*resultobj
; 
10903     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10905     PyObject 
* obj0 
= 0 ; 
10906     char *kwnames
[] = { 
10907         (char *) "self", NULL 
 
10910     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetMaxIndex",kwnames
,&obj0
)) goto fail
; 
10911     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10912     if (SWIG_arg_fail(1)) SWIG_fail
; 
10914         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10915         result 
= (int)(arg1
)->GetMaxIndex(); 
10917         wxPyEndAllowThreads(__tstate
); 
10918         if (PyErr_Occurred()) SWIG_fail
; 
10921         resultobj 
= SWIG_From_int((int)(result
));  
10929 static PyObject 
*_wrap_HtmlSearchStatus_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10930     PyObject 
*resultobj
; 
10931     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10933     PyObject 
* obj0 
= 0 ; 
10934     char *kwnames
[] = { 
10935         (char *) "self", NULL 
 
10938     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetName",kwnames
,&obj0
)) goto fail
; 
10939     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10940     if (SWIG_arg_fail(1)) SWIG_fail
; 
10942         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10944             wxString 
const &_result_ref 
= (arg1
)->GetName(); 
10945             result 
= (wxString 
*) &_result_ref
; 
10948         wxPyEndAllowThreads(__tstate
); 
10949         if (PyErr_Occurred()) SWIG_fail
; 
10953         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
10955         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
10964 static PyObject 
* HtmlSearchStatus_swigregister(PyObject 
*, PyObject 
*args
) { 
10966     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10967     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlSearchStatus
, obj
); 
10969     return Py_BuildValue((char *)""); 
10971 static PyObject 
*_wrap_new_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10972     PyObject 
*resultobj
; 
10973     wxHtmlHelpData 
*result
; 
10974     char *kwnames
[] = { 
10978     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlHelpData",kwnames
)) goto fail
; 
10980         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10981         result 
= (wxHtmlHelpData 
*)new wxHtmlHelpData(); 
10983         wxPyEndAllowThreads(__tstate
); 
10984         if (PyErr_Occurred()) SWIG_fail
; 
10986     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 1); 
10993 static PyObject 
*_wrap_delete_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10994     PyObject 
*resultobj
; 
10995     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
10996     PyObject 
* obj0 
= 0 ; 
10997     char *kwnames
[] = { 
10998         (char *) "self", NULL 
 
11001     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpData",kwnames
,&obj0
)) goto fail
; 
11002     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11003     if (SWIG_arg_fail(1)) SWIG_fail
; 
11005         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11008         wxPyEndAllowThreads(__tstate
); 
11009         if (PyErr_Occurred()) SWIG_fail
; 
11011     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11018 static PyObject 
*_wrap_HtmlHelpData_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11019     PyObject 
*resultobj
; 
11020     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11021     wxString 
*arg2 
= 0 ; 
11022     bool temp2 
= false ; 
11023     PyObject 
* obj0 
= 0 ; 
11024     PyObject 
* obj1 
= 0 ; 
11025     char *kwnames
[] = { 
11026         (char *) "self",(char *) "path", NULL 
 
11029     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
11030     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11031     if (SWIG_arg_fail(1)) SWIG_fail
; 
11033         arg2 
= wxString_in_helper(obj1
); 
11034         if (arg2 
== NULL
) SWIG_fail
; 
11038         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11039         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
11041         wxPyEndAllowThreads(__tstate
); 
11042         if (PyErr_Occurred()) SWIG_fail
; 
11044     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11059 static PyObject 
*_wrap_HtmlHelpData_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11060     PyObject 
*resultobj
; 
11061     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11062     wxString 
*arg2 
= 0 ; 
11064     bool temp2 
= false ; 
11065     PyObject 
* obj0 
= 0 ; 
11066     PyObject 
* obj1 
= 0 ; 
11067     char *kwnames
[] = { 
11068         (char *) "self",(char *) "book", NULL 
 
11071     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_AddBook",kwnames
,&obj0
,&obj1
)) goto fail
; 
11072     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11073     if (SWIG_arg_fail(1)) SWIG_fail
; 
11075         arg2 
= wxString_in_helper(obj1
); 
11076         if (arg2 
== NULL
) SWIG_fail
; 
11080         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11081         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
); 
11083         wxPyEndAllowThreads(__tstate
); 
11084         if (PyErr_Occurred()) SWIG_fail
; 
11087         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11103 static PyObject 
*_wrap_HtmlHelpData_FindPageByName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11104     PyObject 
*resultobj
; 
11105     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11106     wxString 
*arg2 
= 0 ; 
11108     bool temp2 
= false ; 
11109     PyObject 
* obj0 
= 0 ; 
11110     PyObject 
* obj1 
= 0 ; 
11111     char *kwnames
[] = { 
11112         (char *) "self",(char *) "page", NULL 
 
11115     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageByName",kwnames
,&obj0
,&obj1
)) goto fail
; 
11116     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11117     if (SWIG_arg_fail(1)) SWIG_fail
; 
11119         arg2 
= wxString_in_helper(obj1
); 
11120         if (arg2 
== NULL
) SWIG_fail
; 
11124         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11125         result 
= (arg1
)->FindPageByName((wxString 
const &)*arg2
); 
11127         wxPyEndAllowThreads(__tstate
); 
11128         if (PyErr_Occurred()) SWIG_fail
; 
11132         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11134         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11151 static PyObject 
*_wrap_HtmlHelpData_FindPageById(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11152     PyObject 
*resultobj
; 
11153     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11156     PyObject 
* obj0 
= 0 ; 
11157     PyObject 
* obj1 
= 0 ; 
11158     char *kwnames
[] = { 
11159         (char *) "self",(char *) "id", NULL 
 
11162     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageById",kwnames
,&obj0
,&obj1
)) goto fail
; 
11163     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11164     if (SWIG_arg_fail(1)) SWIG_fail
; 
11166         arg2 
= (int)(SWIG_As_int(obj1
));  
11167         if (SWIG_arg_fail(2)) SWIG_fail
; 
11170         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11171         result 
= (arg1
)->FindPageById(arg2
); 
11173         wxPyEndAllowThreads(__tstate
); 
11174         if (PyErr_Occurred()) SWIG_fail
; 
11178         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11180         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11189 static PyObject 
*_wrap_HtmlHelpData_GetBookRecArray(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11190     PyObject 
*resultobj
; 
11191     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11192     wxHtmlBookRecArray 
*result
; 
11193     PyObject 
* obj0 
= 0 ; 
11194     char *kwnames
[] = { 
11195         (char *) "self", NULL 
 
11198     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetBookRecArray",kwnames
,&obj0
)) goto fail
; 
11199     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11200     if (SWIG_arg_fail(1)) SWIG_fail
; 
11202         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11204             wxHtmlBookRecArray 
const &_result_ref 
= (arg1
)->GetBookRecArray(); 
11205             result 
= (wxHtmlBookRecArray 
*) &_result_ref
; 
11208         wxPyEndAllowThreads(__tstate
); 
11209         if (PyErr_Occurred()) SWIG_fail
; 
11211     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecArray
, 0); 
11218 static PyObject 
* HtmlHelpData_swigregister(PyObject 
*, PyObject 
*args
) { 
11220     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11221     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpData
, obj
); 
11223     return Py_BuildValue((char *)""); 
11225 static PyObject 
*_wrap_new_HtmlHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11226     PyObject 
*resultobj
; 
11227     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11229     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
11230     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
11231     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
11232     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
11233     int arg5 
= (int) wxTAB_TRAVERSAL
|wxNO_BORDER 
; 
11234     int arg6 
= (int) wxHF_DEFAULT_STYLE 
; 
11235     wxHtmlHelpData 
*arg7 
= (wxHtmlHelpData 
*) NULL 
; 
11236     wxHtmlHelpWindow 
*result
; 
11239     PyObject 
* obj0 
= 0 ; 
11240     PyObject 
* obj1 
= 0 ; 
11241     PyObject 
* obj2 
= 0 ; 
11242     PyObject 
* obj3 
= 0 ; 
11243     PyObject 
* obj4 
= 0 ; 
11244     PyObject 
* obj5 
= 0 ; 
11245     PyObject 
* obj6 
= 0 ; 
11246     char *kwnames
[] = { 
11247         (char *) "parent","arg2",(char *) "pos",(char *) "size",(char *) "style",(char *) "helpStyle",(char *) "data", NULL 
 
11250     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:new_HtmlHelpWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
11251     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11252     if (SWIG_arg_fail(1)) SWIG_fail
; 
11254         arg2 
= (int)(SWIG_As_int(obj1
));  
11255         if (SWIG_arg_fail(2)) SWIG_fail
; 
11260             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
11266             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
11271             arg5 
= (int)(SWIG_As_int(obj4
));  
11272             if (SWIG_arg_fail(5)) SWIG_fail
; 
11277             arg6 
= (int)(SWIG_As_int(obj5
));  
11278             if (SWIG_arg_fail(6)) SWIG_fail
; 
11282         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11283         if (SWIG_arg_fail(7)) SWIG_fail
; 
11286         if (!wxPyCheckForApp()) SWIG_fail
; 
11287         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11288         result 
= (wxHtmlHelpWindow 
*)new wxHtmlHelpWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,arg6
,arg7
); 
11290         wxPyEndAllowThreads(__tstate
); 
11291         if (PyErr_Occurred()) SWIG_fail
; 
11293     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpWindow
, 1); 
11300 static PyObject 
*_wrap_new_PreHtmlHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11301     PyObject 
*resultobj
; 
11302     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) NULL 
; 
11303     wxHtmlHelpWindow 
*result
; 
11304     PyObject 
* obj0 
= 0 ; 
11305     char *kwnames
[] = { 
11306         (char *) "data", NULL 
 
11309     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PreHtmlHelpWindow",kwnames
,&obj0
)) goto fail
; 
11311         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11312         if (SWIG_arg_fail(1)) SWIG_fail
; 
11315         if (!wxPyCheckForApp()) SWIG_fail
; 
11316         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11317         result 
= (wxHtmlHelpWindow 
*)new wxHtmlHelpWindow(arg1
); 
11319         wxPyEndAllowThreads(__tstate
); 
11320         if (PyErr_Occurred()) SWIG_fail
; 
11322     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpWindow
, 1); 
11329 static PyObject 
*_wrap_HtmlHelpWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11330     PyObject 
*resultobj
; 
11331     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11332     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
11334     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
11335     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
11336     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
11337     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
11338     int arg6 
= (int) wxTAB_TRAVERSAL
|wxNO_BORDER 
; 
11339     int arg7 
= (int) wxHF_DEFAULT_STYLE 
; 
11343     PyObject 
* obj0 
= 0 ; 
11344     PyObject 
* obj1 
= 0 ; 
11345     PyObject 
* obj2 
= 0 ; 
11346     PyObject 
* obj3 
= 0 ; 
11347     PyObject 
* obj4 
= 0 ; 
11348     PyObject 
* obj5 
= 0 ; 
11349     PyObject 
* obj6 
= 0 ; 
11350     char *kwnames
[] = { 
11351         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "helpStyle", NULL 
 
11354     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOO:HtmlHelpWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
11355     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11356     if (SWIG_arg_fail(1)) SWIG_fail
; 
11357     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11358     if (SWIG_arg_fail(2)) SWIG_fail
; 
11360         arg3 
= (int)(SWIG_As_int(obj2
));  
11361         if (SWIG_arg_fail(3)) SWIG_fail
; 
11366             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
11372             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
11377             arg6 
= (int)(SWIG_As_int(obj5
));  
11378             if (SWIG_arg_fail(6)) SWIG_fail
; 
11383             arg7 
= (int)(SWIG_As_int(obj6
));  
11384             if (SWIG_arg_fail(7)) SWIG_fail
; 
11388         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11389         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,arg7
); 
11391         wxPyEndAllowThreads(__tstate
); 
11392         if (PyErr_Occurred()) SWIG_fail
; 
11395         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11403 static PyObject 
*_wrap_HtmlHelpWindow_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11404     PyObject 
*resultobj
; 
11405     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11406     wxHtmlHelpData 
*result
; 
11407     PyObject 
* obj0 
= 0 ; 
11408     char *kwnames
[] = { 
11409         (char *) "self", NULL 
 
11412     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetData",kwnames
,&obj0
)) goto fail
; 
11413     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11414     if (SWIG_arg_fail(1)) SWIG_fail
; 
11416         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11417         result 
= (wxHtmlHelpData 
*)(arg1
)->GetData(); 
11419         wxPyEndAllowThreads(__tstate
); 
11420         if (PyErr_Occurred()) SWIG_fail
; 
11422     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 0); 
11429 static PyObject 
*_wrap_HtmlHelpWindow_GetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11430     PyObject 
*resultobj
; 
11431     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11432     wxHtmlHelpController 
*result
; 
11433     PyObject 
* obj0 
= 0 ; 
11434     char *kwnames
[] = { 
11435         (char *) "self", NULL 
 
11438     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetController",kwnames
,&obj0
)) goto fail
; 
11439     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11440     if (SWIG_arg_fail(1)) SWIG_fail
; 
11442         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11443         result 
= (wxHtmlHelpController 
*)((wxHtmlHelpWindow 
const *)arg1
)->GetController(); 
11445         wxPyEndAllowThreads(__tstate
); 
11446         if (PyErr_Occurred()) SWIG_fail
; 
11448     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 0); 
11455 static PyObject 
*_wrap_HtmlHelpWindow_SetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11456     PyObject 
*resultobj
; 
11457     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11458     wxHtmlHelpController 
*arg2 
= (wxHtmlHelpController 
*) 0 ; 
11459     PyObject 
* obj0 
= 0 ; 
11460     PyObject 
* obj1 
= 0 ; 
11461     char *kwnames
[] = { 
11462         (char *) "self",(char *) "controller", NULL 
 
11465     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpWindow_SetController",kwnames
,&obj0
,&obj1
)) goto fail
; 
11466     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11467     if (SWIG_arg_fail(1)) SWIG_fail
; 
11468     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11469     if (SWIG_arg_fail(2)) SWIG_fail
; 
11471         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11472         (arg1
)->SetController(arg2
); 
11474         wxPyEndAllowThreads(__tstate
); 
11475         if (PyErr_Occurred()) SWIG_fail
; 
11477     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11484 static PyObject 
*_wrap_HtmlHelpWindow_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11485     PyObject 
*resultobj
; 
11486     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11487     wxString 
*arg2 
= 0 ; 
11489     bool temp2 
= false ; 
11490     PyObject 
* obj0 
= 0 ; 
11491     PyObject 
* obj1 
= 0 ; 
11492     char *kwnames
[] = { 
11493         (char *) "self",(char *) "x", NULL 
 
11496     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpWindow_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
11497     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11498     if (SWIG_arg_fail(1)) SWIG_fail
; 
11500         arg2 
= wxString_in_helper(obj1
); 
11501         if (arg2 
== NULL
) SWIG_fail
; 
11505         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11506         result 
= (bool)(arg1
)->Display((wxString 
const &)*arg2
); 
11508         wxPyEndAllowThreads(__tstate
); 
11509         if (PyErr_Occurred()) SWIG_fail
; 
11512         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11528 static PyObject 
*_wrap_HtmlHelpWindow_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11529     PyObject 
*resultobj
; 
11530     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11533     PyObject 
* obj0 
= 0 ; 
11534     PyObject 
* obj1 
= 0 ; 
11535     char *kwnames
[] = { 
11536         (char *) "self",(char *) "id", NULL 
 
11539     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpWindow_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
11540     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11541     if (SWIG_arg_fail(1)) SWIG_fail
; 
11543         arg2 
= (int)(SWIG_As_int(obj1
));  
11544         if (SWIG_arg_fail(2)) SWIG_fail
; 
11547         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11548         result 
= (bool)(arg1
)->Display(arg2
); 
11550         wxPyEndAllowThreads(__tstate
); 
11551         if (PyErr_Occurred()) SWIG_fail
; 
11554         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11562 static PyObject 
*_wrap_HtmlHelpWindow_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11563     PyObject 
*resultobj
; 
11564     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11566     PyObject 
* obj0 
= 0 ; 
11567     char *kwnames
[] = { 
11568         (char *) "self", NULL 
 
11571     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_DisplayContents",kwnames
,&obj0
)) goto fail
; 
11572     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11573     if (SWIG_arg_fail(1)) SWIG_fail
; 
11575         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11576         result 
= (bool)(arg1
)->DisplayContents(); 
11578         wxPyEndAllowThreads(__tstate
); 
11579         if (PyErr_Occurred()) SWIG_fail
; 
11582         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11590 static PyObject 
*_wrap_HtmlHelpWindow_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11591     PyObject 
*resultobj
; 
11592     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11594     PyObject 
* obj0 
= 0 ; 
11595     char *kwnames
[] = { 
11596         (char *) "self", NULL 
 
11599     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
11600     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11601     if (SWIG_arg_fail(1)) SWIG_fail
; 
11603         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11604         result 
= (bool)(arg1
)->DisplayIndex(); 
11606         wxPyEndAllowThreads(__tstate
); 
11607         if (PyErr_Occurred()) SWIG_fail
; 
11610         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11618 static PyObject 
*_wrap_HtmlHelpWindow_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11619     PyObject 
*resultobj
; 
11620     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11621     wxString 
*arg2 
= 0 ; 
11622     wxHelpSearchMode arg3 
= (wxHelpSearchMode
) wxHELP_SEARCH_ALL 
; 
11624     bool temp2 
= false ; 
11625     PyObject 
* obj0 
= 0 ; 
11626     PyObject 
* obj1 
= 0 ; 
11627     PyObject 
* obj2 
= 0 ; 
11628     char *kwnames
[] = { 
11629         (char *) "self",(char *) "keyword",(char *) "mode", NULL 
 
11632     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpWindow_KeywordSearch",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11633     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11634     if (SWIG_arg_fail(1)) SWIG_fail
; 
11636         arg2 
= wxString_in_helper(obj1
); 
11637         if (arg2 
== NULL
) SWIG_fail
; 
11642             wxHelpSearchMode 
* argp
; 
11643             SWIG_Python_ConvertPtr(obj2
, (void **)&argp
, SWIGTYPE_p_wxHelpSearchMode
, SWIG_POINTER_EXCEPTION
); 
11644             if (SWIG_arg_fail(3)) SWIG_fail
; 
11645             if (argp 
== NULL
) { 
11646                 SWIG_null_ref("wxHelpSearchMode"); 
11648             if (SWIG_arg_fail(3)) SWIG_fail
; 
11653         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11654         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
,arg3
); 
11656         wxPyEndAllowThreads(__tstate
); 
11657         if (PyErr_Occurred()) SWIG_fail
; 
11660         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11676 static PyObject 
*_wrap_HtmlHelpWindow_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11677     PyObject 
*resultobj
; 
11678     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11679     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11680     wxString 
const &arg3_defvalue 
= wxEmptyString 
; 
11681     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11682     bool temp3 
= false ; 
11683     PyObject 
* obj0 
= 0 ; 
11684     PyObject 
* obj1 
= 0 ; 
11685     PyObject 
* obj2 
= 0 ; 
11686     char *kwnames
[] = { 
11687         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
11690     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpWindow_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11691     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11692     if (SWIG_arg_fail(1)) SWIG_fail
; 
11693     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11694     if (SWIG_arg_fail(2)) SWIG_fail
; 
11697             arg3 
= wxString_in_helper(obj2
); 
11698             if (arg3 
== NULL
) SWIG_fail
; 
11703         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11704         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
11706         wxPyEndAllowThreads(__tstate
); 
11707         if (PyErr_Occurred()) SWIG_fail
; 
11709     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11724 static PyObject 
*_wrap_HtmlHelpWindow_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11725     PyObject 
*resultobj
; 
11726     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11727     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11728     wxString 
const &arg3_defvalue 
= wxEmptyString 
; 
11729     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11730     bool temp3 
= false ; 
11731     PyObject 
* obj0 
= 0 ; 
11732     PyObject 
* obj1 
= 0 ; 
11733     PyObject 
* obj2 
= 0 ; 
11734     char *kwnames
[] = { 
11735         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11738     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpWindow_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11739     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11740     if (SWIG_arg_fail(1)) SWIG_fail
; 
11741     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11742     if (SWIG_arg_fail(2)) SWIG_fail
; 
11745             arg3 
= wxString_in_helper(obj2
); 
11746             if (arg3 
== NULL
) SWIG_fail
; 
11751         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11752         (arg1
)->ReadCustomization(arg2
,(wxString 
const &)*arg3
); 
11754         wxPyEndAllowThreads(__tstate
); 
11755         if (PyErr_Occurred()) SWIG_fail
; 
11757     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11772 static PyObject 
*_wrap_HtmlHelpWindow_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11773     PyObject 
*resultobj
; 
11774     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11775     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11776     wxString 
const &arg3_defvalue 
= wxEmptyString 
; 
11777     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11778     bool temp3 
= false ; 
11779     PyObject 
* obj0 
= 0 ; 
11780     PyObject 
* obj1 
= 0 ; 
11781     PyObject 
* obj2 
= 0 ; 
11782     char *kwnames
[] = { 
11783         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11786     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpWindow_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11787     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11788     if (SWIG_arg_fail(1)) SWIG_fail
; 
11789     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11790     if (SWIG_arg_fail(2)) SWIG_fail
; 
11793             arg3 
= wxString_in_helper(obj2
); 
11794             if (arg3 
== NULL
) SWIG_fail
; 
11799         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11800         (arg1
)->WriteCustomization(arg2
,(wxString 
const &)*arg3
); 
11802         wxPyEndAllowThreads(__tstate
); 
11803         if (PyErr_Occurred()) SWIG_fail
; 
11805     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11820 static PyObject 
*_wrap_HtmlHelpWindow_NotifyPageChanged(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11821     PyObject 
*resultobj
; 
11822     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11823     PyObject 
* obj0 
= 0 ; 
11824     char *kwnames
[] = { 
11825         (char *) "self", NULL 
 
11828     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_NotifyPageChanged",kwnames
,&obj0
)) goto fail
; 
11829     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11830     if (SWIG_arg_fail(1)) SWIG_fail
; 
11832         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11833         (arg1
)->NotifyPageChanged(); 
11835         wxPyEndAllowThreads(__tstate
); 
11836         if (PyErr_Occurred()) SWIG_fail
; 
11838     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11845 static PyObject 
*_wrap_HtmlHelpWindow_RefreshLists(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11846     PyObject 
*resultobj
; 
11847     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11848     PyObject 
* obj0 
= 0 ; 
11849     char *kwnames
[] = { 
11850         (char *) "self", NULL 
 
11853     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_RefreshLists",kwnames
,&obj0
)) goto fail
; 
11854     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11855     if (SWIG_arg_fail(1)) SWIG_fail
; 
11857         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11858         (arg1
)->RefreshLists(); 
11860         wxPyEndAllowThreads(__tstate
); 
11861         if (PyErr_Occurred()) SWIG_fail
; 
11863     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11870 static PyObject 
*_wrap_HtmlHelpWindow_GetHtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11871     PyObject 
*resultobj
; 
11872     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11873     wxHtmlWindow 
*result
; 
11874     PyObject 
* obj0 
= 0 ; 
11875     char *kwnames
[] = { 
11876         (char *) "self", NULL 
 
11879     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetHtmlWindow",kwnames
,&obj0
)) goto fail
; 
11880     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11881     if (SWIG_arg_fail(1)) SWIG_fail
; 
11883         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11884         result 
= (wxHtmlWindow 
*)((wxHtmlHelpWindow 
const *)arg1
)->GetHtmlWindow(); 
11886         wxPyEndAllowThreads(__tstate
); 
11887         if (PyErr_Occurred()) SWIG_fail
; 
11889     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWindow
, 0); 
11896 static PyObject 
*_wrap_HtmlHelpWindow_GetSplitterWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11897     PyObject 
*resultobj
; 
11898     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11899     wxSplitterWindow 
*result
; 
11900     PyObject 
* obj0 
= 0 ; 
11901     char *kwnames
[] = { 
11902         (char *) "self", NULL 
 
11905     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetSplitterWindow",kwnames
,&obj0
)) goto fail
; 
11906     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11907     if (SWIG_arg_fail(1)) SWIG_fail
; 
11909         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11910         result 
= (wxSplitterWindow 
*)(arg1
)->GetSplitterWindow(); 
11912         wxPyEndAllowThreads(__tstate
); 
11913         if (PyErr_Occurred()) SWIG_fail
; 
11915     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxSplitterWindow
, 0); 
11922 static PyObject 
*_wrap_HtmlHelpWindow_GetToolBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11923     PyObject 
*resultobj
; 
11924     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11926     PyObject 
* obj0 
= 0 ; 
11927     char *kwnames
[] = { 
11928         (char *) "self", NULL 
 
11931     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetToolBar",kwnames
,&obj0
)) goto fail
; 
11932     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11933     if (SWIG_arg_fail(1)) SWIG_fail
; 
11935         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11936         result 
= (wxToolBar 
*)((wxHtmlHelpWindow 
const *)arg1
)->GetToolBar(); 
11938         wxPyEndAllowThreads(__tstate
); 
11939         if (PyErr_Occurred()) SWIG_fail
; 
11942         resultobj 
= wxPyMake_wxObject(result
, 0);  
11950 static PyObject 
*_wrap_HtmlHelpWindow_GetCfgData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11951     PyObject 
*resultobj
; 
11952     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11953     wxHtmlHelpFrameCfg 
*result
; 
11954     PyObject 
* obj0 
= 0 ; 
11955     char *kwnames
[] = { 
11956         (char *) "self", NULL 
 
11959     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetCfgData",kwnames
,&obj0
)) goto fail
; 
11960     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11961     if (SWIG_arg_fail(1)) SWIG_fail
; 
11963         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11965             wxHtmlHelpFrameCfg 
&_result_ref 
= (arg1
)->GetCfgData(); 
11966             result 
= (wxHtmlHelpFrameCfg 
*) &_result_ref
; 
11969         wxPyEndAllowThreads(__tstate
); 
11970         if (PyErr_Occurred()) SWIG_fail
; 
11972     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrameCfg
, 0); 
11979 static PyObject 
*_wrap_HtmlHelpWindow_GetTreeCtrl(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11980     PyObject 
*resultobj
; 
11981     wxHtmlHelpWindow 
*arg1 
= (wxHtmlHelpWindow 
*) 0 ; 
11982     wxTreeCtrl 
*result
; 
11983     PyObject 
* obj0 
= 0 ; 
11984     char *kwnames
[] = { 
11985         (char *) "self", NULL 
 
11988     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpWindow_GetTreeCtrl",kwnames
,&obj0
)) goto fail
; 
11989     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11990     if (SWIG_arg_fail(1)) SWIG_fail
; 
11992         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11993         result 
= (wxTreeCtrl 
*)((wxHtmlHelpWindow 
const *)arg1
)->GetTreeCtrl(); 
11995         wxPyEndAllowThreads(__tstate
); 
11996         if (PyErr_Occurred()) SWIG_fail
; 
11998     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxTreeCtrl
, 0); 
12005 static PyObject 
* HtmlHelpWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
12007     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12008     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpWindow
, obj
); 
12010     return Py_BuildValue((char *)""); 
12012 static PyObject 
*_wrap_new_HtmlWindowEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12013     PyObject 
*resultobj
; 
12014     wxEventType arg1 
= (wxEventType
) wxEVT_NULL 
; 
12015     int arg2 
= (int) 0 ; 
12016     wxHtmlWindowEvent 
*result
; 
12017     PyObject 
* obj0 
= 0 ; 
12018     PyObject 
* obj1 
= 0 ; 
12019     char *kwnames
[] = { 
12020         (char *) "commandType",(char *) "id", NULL 
 
12023     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_HtmlWindowEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
12026             arg1 
= (wxEventType
)(SWIG_As_int(obj0
));  
12027             if (SWIG_arg_fail(1)) SWIG_fail
; 
12032             arg2 
= (int)(SWIG_As_int(obj1
));  
12033             if (SWIG_arg_fail(2)) SWIG_fail
; 
12037         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12038         result 
= (wxHtmlWindowEvent 
*)new wxHtmlWindowEvent(arg1
,arg2
); 
12040         wxPyEndAllowThreads(__tstate
); 
12041         if (PyErr_Occurred()) SWIG_fail
; 
12043     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWindowEvent
, 1); 
12050 static PyObject 
*_wrap_HtmlWindowEvent_SetURL(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12051     PyObject 
*resultobj
; 
12052     wxHtmlWindowEvent 
*arg1 
= (wxHtmlWindowEvent 
*) 0 ; 
12053     wxString 
*arg2 
= 0 ; 
12054     bool temp2 
= false ; 
12055     PyObject 
* obj0 
= 0 ; 
12056     PyObject 
* obj1 
= 0 ; 
12057     char *kwnames
[] = { 
12058         (char *) "self",(char *) "url", NULL 
 
12061     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindowEvent_SetURL",kwnames
,&obj0
,&obj1
)) goto fail
; 
12062     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWindowEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
12063     if (SWIG_arg_fail(1)) SWIG_fail
; 
12065         arg2 
= wxString_in_helper(obj1
); 
12066         if (arg2 
== NULL
) SWIG_fail
; 
12070         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12071         (arg1
)->SetURL((wxString 
const &)*arg2
); 
12073         wxPyEndAllowThreads(__tstate
); 
12074         if (PyErr_Occurred()) SWIG_fail
; 
12076     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12091 static PyObject 
*_wrap_HtmlWindowEvent_GetURL(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12092     PyObject 
*resultobj
; 
12093     wxHtmlWindowEvent 
*arg1 
= (wxHtmlWindowEvent 
*) 0 ; 
12095     PyObject 
* obj0 
= 0 ; 
12096     char *kwnames
[] = { 
12097         (char *) "self", NULL 
 
12100     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindowEvent_GetURL",kwnames
,&obj0
)) goto fail
; 
12101     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWindowEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
12102     if (SWIG_arg_fail(1)) SWIG_fail
; 
12104         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12106             wxString 
const &_result_ref 
= ((wxHtmlWindowEvent 
const *)arg1
)->GetURL(); 
12107             result 
= (wxString 
*) &_result_ref
; 
12110         wxPyEndAllowThreads(__tstate
); 
12111         if (PyErr_Occurred()) SWIG_fail
; 
12115         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
12117         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
12126 static PyObject 
* HtmlWindowEvent_swigregister(PyObject 
*, PyObject 
*args
) { 
12128     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12129     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWindowEvent
, obj
); 
12131     return Py_BuildValue((char *)""); 
12133 static PyObject 
*_wrap_new_HtmlHelpFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12134     PyObject 
*resultobj
; 
12135     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
12137     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
12138     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
12139     int arg4 
= (int) wxHF_DEFAULTSTYLE 
; 
12140     wxHtmlHelpData 
*arg5 
= (wxHtmlHelpData 
*) NULL 
; 
12141     wxHtmlHelpFrame 
*result
; 
12142     bool temp3 
= false ; 
12143     PyObject 
* obj0 
= 0 ; 
12144     PyObject 
* obj1 
= 0 ; 
12145     PyObject 
* obj2 
= 0 ; 
12146     PyObject 
* obj3 
= 0 ; 
12147     PyObject 
* obj4 
= 0 ; 
12148     char *kwnames
[] = { 
12149         (char *) "parent","arg2",(char *) "title",(char *) "style",(char *) "data", NULL 
 
12152     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_HtmlHelpFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
12153     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12154     if (SWIG_arg_fail(1)) SWIG_fail
; 
12156         arg2 
= (int)(SWIG_As_int(obj1
));  
12157         if (SWIG_arg_fail(2)) SWIG_fail
; 
12161             arg3 
= wxString_in_helper(obj2
); 
12162             if (arg3 
== NULL
) SWIG_fail
; 
12168             arg4 
= (int)(SWIG_As_int(obj3
));  
12169             if (SWIG_arg_fail(4)) SWIG_fail
; 
12173         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
12174         if (SWIG_arg_fail(5)) SWIG_fail
; 
12177         if (!wxPyCheckForApp()) SWIG_fail
; 
12178         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12179         result 
= (wxHtmlHelpFrame 
*)new wxHtmlHelpFrame(arg1
,arg2
,(wxString 
const &)*arg3
,arg4
,arg5
); 
12181         wxPyEndAllowThreads(__tstate
); 
12182         if (PyErr_Occurred()) SWIG_fail
; 
12184     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 1); 
12199 static PyObject 
*_wrap_new_PreHtmlHelpFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12200     PyObject 
*resultobj
; 
12201     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) NULL 
; 
12202     wxHtmlHelpFrame 
*result
; 
12203     PyObject 
* obj0 
= 0 ; 
12204     char *kwnames
[] = { 
12205         (char *) "data", NULL 
 
12208     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PreHtmlHelpFrame",kwnames
,&obj0
)) goto fail
; 
12210         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
12211         if (SWIG_arg_fail(1)) SWIG_fail
; 
12214         if (!wxPyCheckForApp()) SWIG_fail
; 
12215         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12216         result 
= (wxHtmlHelpFrame 
*)new wxHtmlHelpFrame(arg1
); 
12218         wxPyEndAllowThreads(__tstate
); 
12219         if (PyErr_Occurred()) SWIG_fail
; 
12221     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 1); 
12228 static PyObject 
*_wrap_HtmlHelpFrame_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12229     PyObject 
*resultobj
; 
12230     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12231     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
12233     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
12234     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
12235     int arg5 
= (int) wxHF_DEFAULT_STYLE 
; 
12237     bool temp4 
= false ; 
12238     PyObject 
* obj0 
= 0 ; 
12239     PyObject 
* obj1 
= 0 ; 
12240     PyObject 
* obj2 
= 0 ; 
12241     PyObject 
* obj3 
= 0 ; 
12242     PyObject 
* obj4 
= 0 ; 
12243     char *kwnames
[] = { 
12244         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "style", NULL 
 
12247     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:HtmlHelpFrame_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
12248     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12249     if (SWIG_arg_fail(1)) SWIG_fail
; 
12250     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12251     if (SWIG_arg_fail(2)) SWIG_fail
; 
12253         arg3 
= (int)(SWIG_As_int(obj2
));  
12254         if (SWIG_arg_fail(3)) SWIG_fail
; 
12258             arg4 
= wxString_in_helper(obj3
); 
12259             if (arg4 
== NULL
) SWIG_fail
; 
12265             arg5 
= (int)(SWIG_As_int(obj4
));  
12266             if (SWIG_arg_fail(5)) SWIG_fail
; 
12270         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12271         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
); 
12273         wxPyEndAllowThreads(__tstate
); 
12274         if (PyErr_Occurred()) SWIG_fail
; 
12277         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12293 static PyObject 
*_wrap_HtmlHelpFrame_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12294     PyObject 
*resultobj
; 
12295     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12296     wxHtmlHelpData 
*result
; 
12297     PyObject 
* obj0 
= 0 ; 
12298     char *kwnames
[] = { 
12299         (char *) "self", NULL 
 
12302     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_GetData",kwnames
,&obj0
)) goto fail
; 
12303     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12304     if (SWIG_arg_fail(1)) SWIG_fail
; 
12306         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12307         result 
= (wxHtmlHelpData 
*)(arg1
)->GetData(); 
12309         wxPyEndAllowThreads(__tstate
); 
12310         if (PyErr_Occurred()) SWIG_fail
; 
12312     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 0); 
12319 static PyObject 
*_wrap_HtmlHelpFrame_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12320     PyObject 
*resultobj
; 
12321     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12322     wxString 
*arg2 
= 0 ; 
12323     bool temp2 
= false ; 
12324     PyObject 
* obj0 
= 0 ; 
12325     PyObject 
* obj1 
= 0 ; 
12326     char *kwnames
[] = { 
12327         (char *) "self",(char *) "format", NULL 
 
12330     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
12331     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12332     if (SWIG_arg_fail(1)) SWIG_fail
; 
12334         arg2 
= wxString_in_helper(obj1
); 
12335         if (arg2 
== NULL
) SWIG_fail
; 
12339         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12340         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
12342         wxPyEndAllowThreads(__tstate
); 
12343         if (PyErr_Occurred()) SWIG_fail
; 
12345     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12360 static PyObject 
*_wrap_HtmlHelpFrame_AddGrabIfNeeded(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12361     PyObject 
*resultobj
; 
12362     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12363     PyObject 
* obj0 
= 0 ; 
12364     char *kwnames
[] = { 
12365         (char *) "self", NULL 
 
12368     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_AddGrabIfNeeded",kwnames
,&obj0
)) goto fail
; 
12369     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12370     if (SWIG_arg_fail(1)) SWIG_fail
; 
12372         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12373         (arg1
)->AddGrabIfNeeded(); 
12375         wxPyEndAllowThreads(__tstate
); 
12376         if (PyErr_Occurred()) SWIG_fail
; 
12378     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12385 static PyObject 
*_wrap_HtmlHelpFrame_GetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12386     PyObject 
*resultobj
; 
12387     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12388     wxHtmlHelpController 
*result
; 
12389     PyObject 
* obj0 
= 0 ; 
12390     char *kwnames
[] = { 
12391         (char *) "self", NULL 
 
12394     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_GetController",kwnames
,&obj0
)) goto fail
; 
12395     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12396     if (SWIG_arg_fail(1)) SWIG_fail
; 
12398         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12399         result 
= (wxHtmlHelpController 
*)((wxHtmlHelpFrame 
const *)arg1
)->GetController(); 
12401         wxPyEndAllowThreads(__tstate
); 
12402         if (PyErr_Occurred()) SWIG_fail
; 
12404     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 0); 
12411 static PyObject 
*_wrap_HtmlHelpFrame_SetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12412     PyObject 
*resultobj
; 
12413     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12414     wxHtmlHelpController 
*arg2 
= (wxHtmlHelpController 
*) 0 ; 
12415     PyObject 
* obj0 
= 0 ; 
12416     PyObject 
* obj1 
= 0 ; 
12417     char *kwnames
[] = { 
12418         (char *) "self",(char *) "controller", NULL 
 
12421     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_SetController",kwnames
,&obj0
,&obj1
)) goto fail
; 
12422     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12423     if (SWIG_arg_fail(1)) SWIG_fail
; 
12424     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12425     if (SWIG_arg_fail(2)) SWIG_fail
; 
12427         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12428         (arg1
)->SetController(arg2
); 
12430         wxPyEndAllowThreads(__tstate
); 
12431         if (PyErr_Occurred()) SWIG_fail
; 
12433     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12440 static PyObject 
*_wrap_HtmlHelpFrame_GetHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12441     PyObject 
*resultobj
; 
12442     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
12443     wxHtmlHelpWindow 
*result
; 
12444     PyObject 
* obj0 
= 0 ; 
12445     char *kwnames
[] = { 
12446         (char *) "self", NULL 
 
12449     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_GetHelpWindow",kwnames
,&obj0
)) goto fail
; 
12450     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
12451     if (SWIG_arg_fail(1)) SWIG_fail
; 
12453         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12454         result 
= (wxHtmlHelpWindow 
*)((wxHtmlHelpFrame 
const *)arg1
)->GetHelpWindow(); 
12456         wxPyEndAllowThreads(__tstate
); 
12457         if (PyErr_Occurred()) SWIG_fail
; 
12460         resultobj 
= wxPyMake_wxObject(result
, 0);  
12468 static PyObject 
* HtmlHelpFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
12470     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12471     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpFrame
, obj
); 
12473     return Py_BuildValue((char *)""); 
12475 static PyObject 
*_wrap_new_HtmlHelpDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12476     PyObject 
*resultobj
; 
12477     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
12479     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
12480     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
12481     int arg4 
= (int) wxHF_DEFAULT_STYLE 
; 
12482     wxHtmlHelpData 
*arg5 
= (wxHtmlHelpData 
*) NULL 
; 
12483     wxHtmlHelpDialog 
*result
; 
12484     bool temp3 
= false ; 
12485     PyObject 
* obj0 
= 0 ; 
12486     PyObject 
* obj1 
= 0 ; 
12487     PyObject 
* obj2 
= 0 ; 
12488     PyObject 
* obj3 
= 0 ; 
12489     PyObject 
* obj4 
= 0 ; 
12490     char *kwnames
[] = { 
12491         (char *) "parent","arg2",(char *) "title",(char *) "style",(char *) "data", NULL 
 
12494     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_HtmlHelpDialog",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
12495     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12496     if (SWIG_arg_fail(1)) SWIG_fail
; 
12498         arg2 
= (int)(SWIG_As_int(obj1
));  
12499         if (SWIG_arg_fail(2)) SWIG_fail
; 
12503             arg3 
= wxString_in_helper(obj2
); 
12504             if (arg3 
== NULL
) SWIG_fail
; 
12510             arg4 
= (int)(SWIG_As_int(obj3
));  
12511             if (SWIG_arg_fail(4)) SWIG_fail
; 
12515         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
12516         if (SWIG_arg_fail(5)) SWIG_fail
; 
12519         if (!wxPyCheckForApp()) SWIG_fail
; 
12520         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12521         result 
= (wxHtmlHelpDialog 
*)new wxHtmlHelpDialog(arg1
,arg2
,(wxString 
const &)*arg3
,arg4
,arg5
); 
12523         wxPyEndAllowThreads(__tstate
); 
12524         if (PyErr_Occurred()) SWIG_fail
; 
12526     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpDialog
, 1); 
12541 static PyObject 
*_wrap_new_PreHtmlHelpDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12542     PyObject 
*resultobj
; 
12543     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) NULL 
; 
12544     wxHtmlHelpDialog 
*result
; 
12545     PyObject 
* obj0 
= 0 ; 
12546     char *kwnames
[] = { 
12547         (char *) "data", NULL 
 
12550     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_PreHtmlHelpDialog",kwnames
,&obj0
)) goto fail
; 
12552         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
12553         if (SWIG_arg_fail(1)) SWIG_fail
; 
12556         if (!wxPyCheckForApp()) SWIG_fail
; 
12557         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12558         result 
= (wxHtmlHelpDialog 
*)new wxHtmlHelpDialog(arg1
); 
12560         wxPyEndAllowThreads(__tstate
); 
12561         if (PyErr_Occurred()) SWIG_fail
; 
12563     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpDialog
, 1); 
12570 static PyObject 
*_wrap_HtmlHelpDialog_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12571     PyObject 
*resultobj
; 
12572     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12573     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
12575     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
12576     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
12577     int arg5 
= (int) wxHF_DEFAULT_STYLE 
; 
12579     bool temp4 
= false ; 
12580     PyObject 
* obj0 
= 0 ; 
12581     PyObject 
* obj1 
= 0 ; 
12582     PyObject 
* obj2 
= 0 ; 
12583     PyObject 
* obj3 
= 0 ; 
12584     PyObject 
* obj4 
= 0 ; 
12585     char *kwnames
[] = { 
12586         (char *) "self",(char *) "parent",(char *) "id",(char *) "title",(char *) "style", NULL 
 
12589     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:HtmlHelpDialog_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
12590     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12591     if (SWIG_arg_fail(1)) SWIG_fail
; 
12592     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
12593     if (SWIG_arg_fail(2)) SWIG_fail
; 
12595         arg3 
= (int)(SWIG_As_int(obj2
));  
12596         if (SWIG_arg_fail(3)) SWIG_fail
; 
12600             arg4 
= wxString_in_helper(obj3
); 
12601             if (arg4 
== NULL
) SWIG_fail
; 
12607             arg5 
= (int)(SWIG_As_int(obj4
));  
12608             if (SWIG_arg_fail(5)) SWIG_fail
; 
12612         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12613         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
); 
12615         wxPyEndAllowThreads(__tstate
); 
12616         if (PyErr_Occurred()) SWIG_fail
; 
12619         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12635 static PyObject 
*_wrap_HtmlHelpDialog_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12636     PyObject 
*resultobj
; 
12637     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12638     wxHtmlHelpData 
*result
; 
12639     PyObject 
* obj0 
= 0 ; 
12640     char *kwnames
[] = { 
12641         (char *) "self", NULL 
 
12644     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpDialog_GetData",kwnames
,&obj0
)) goto fail
; 
12645     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12646     if (SWIG_arg_fail(1)) SWIG_fail
; 
12648         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12649         result 
= (wxHtmlHelpData 
*)(arg1
)->GetData(); 
12651         wxPyEndAllowThreads(__tstate
); 
12652         if (PyErr_Occurred()) SWIG_fail
; 
12654     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 0); 
12661 static PyObject 
*_wrap_HtmlHelpDialog_GetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12662     PyObject 
*resultobj
; 
12663     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12664     wxHtmlHelpController 
*result
; 
12665     PyObject 
* obj0 
= 0 ; 
12666     char *kwnames
[] = { 
12667         (char *) "self", NULL 
 
12670     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpDialog_GetController",kwnames
,&obj0
)) goto fail
; 
12671     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12672     if (SWIG_arg_fail(1)) SWIG_fail
; 
12674         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12675         result 
= (wxHtmlHelpController 
*)((wxHtmlHelpDialog 
const *)arg1
)->GetController(); 
12677         wxPyEndAllowThreads(__tstate
); 
12678         if (PyErr_Occurred()) SWIG_fail
; 
12680     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 0); 
12687 static PyObject 
*_wrap_HtmlHelpDialog_SetController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12688     PyObject 
*resultobj
; 
12689     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12690     wxHtmlHelpController 
*arg2 
= (wxHtmlHelpController 
*) 0 ; 
12691     PyObject 
* obj0 
= 0 ; 
12692     PyObject 
* obj1 
= 0 ; 
12693     char *kwnames
[] = { 
12694         (char *) "self",(char *) "controller", NULL 
 
12697     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpDialog_SetController",kwnames
,&obj0
,&obj1
)) goto fail
; 
12698     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12699     if (SWIG_arg_fail(1)) SWIG_fail
; 
12700     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12701     if (SWIG_arg_fail(2)) SWIG_fail
; 
12703         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12704         (arg1
)->SetController(arg2
); 
12706         wxPyEndAllowThreads(__tstate
); 
12707         if (PyErr_Occurred()) SWIG_fail
; 
12709     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12716 static PyObject 
*_wrap_HtmlHelpDialog_GetHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12717     PyObject 
*resultobj
; 
12718     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12719     wxHtmlHelpWindow 
*result
; 
12720     PyObject 
* obj0 
= 0 ; 
12721     char *kwnames
[] = { 
12722         (char *) "self", NULL 
 
12725     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpDialog_GetHelpWindow",kwnames
,&obj0
)) goto fail
; 
12726     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12727     if (SWIG_arg_fail(1)) SWIG_fail
; 
12729         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12730         result 
= (wxHtmlHelpWindow 
*)((wxHtmlHelpDialog 
const *)arg1
)->GetHelpWindow(); 
12732         wxPyEndAllowThreads(__tstate
); 
12733         if (PyErr_Occurred()) SWIG_fail
; 
12736         resultobj 
= wxPyMake_wxObject(result
, 0);  
12744 static PyObject 
*_wrap_HtmlHelpDialog_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12745     PyObject 
*resultobj
; 
12746     wxHtmlHelpDialog 
*arg1 
= (wxHtmlHelpDialog 
*) 0 ; 
12747     wxString 
*arg2 
= 0 ; 
12748     bool temp2 
= false ; 
12749     PyObject 
* obj0 
= 0 ; 
12750     PyObject 
* obj1 
= 0 ; 
12751     char *kwnames
[] = { 
12752         (char *) "self",(char *) "format", NULL 
 
12755     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpDialog_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
12756     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpDialog
, SWIG_POINTER_EXCEPTION 
| 0); 
12757     if (SWIG_arg_fail(1)) SWIG_fail
; 
12759         arg2 
= wxString_in_helper(obj1
); 
12760         if (arg2 
== NULL
) SWIG_fail
; 
12764         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12765         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
12767         wxPyEndAllowThreads(__tstate
); 
12768         if (PyErr_Occurred()) SWIG_fail
; 
12770     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12785 static PyObject 
* HtmlHelpDialog_swigregister(PyObject 
*, PyObject 
*args
) { 
12787     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12788     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpDialog
, obj
); 
12790     return Py_BuildValue((char *)""); 
12792 static PyObject 
*_wrap_HelpControllerBase_Initialize__SWIG_0(PyObject 
*, PyObject 
*args
) { 
12793     PyObject 
*resultobj
; 
12794     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
12795     wxString 
*arg2 
= 0 ; 
12798     bool temp2 
= false ; 
12799     PyObject 
* obj0 
= 0 ; 
12800     PyObject 
* obj1 
= 0 ; 
12801     PyObject 
* obj2 
= 0 ; 
12803     if(!PyArg_ParseTuple(args
,(char *)"OOO:HelpControllerBase_Initialize",&obj0
,&obj1
,&obj2
)) goto fail
; 
12804     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12805     if (SWIG_arg_fail(1)) SWIG_fail
; 
12807         arg2 
= wxString_in_helper(obj1
); 
12808         if (arg2 
== NULL
) SWIG_fail
; 
12812         arg3 
= (int)(SWIG_As_int(obj2
));  
12813         if (SWIG_arg_fail(3)) SWIG_fail
; 
12816         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12817         result 
= (bool)(arg1
)->Initialize((wxString 
const &)*arg2
,arg3
); 
12819         wxPyEndAllowThreads(__tstate
); 
12820         if (PyErr_Occurred()) SWIG_fail
; 
12823         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12839 static PyObject 
*_wrap_HelpControllerBase_Initialize__SWIG_1(PyObject 
*, PyObject 
*args
) { 
12840     PyObject 
*resultobj
; 
12841     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
12842     wxString 
*arg2 
= 0 ; 
12844     bool temp2 
= false ; 
12845     PyObject 
* obj0 
= 0 ; 
12846     PyObject 
* obj1 
= 0 ; 
12848     if(!PyArg_ParseTuple(args
,(char *)"OO:HelpControllerBase_Initialize",&obj0
,&obj1
)) goto fail
; 
12849     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12850     if (SWIG_arg_fail(1)) SWIG_fail
; 
12852         arg2 
= wxString_in_helper(obj1
); 
12853         if (arg2 
== NULL
) SWIG_fail
; 
12857         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12858         result 
= (bool)(arg1
)->Initialize((wxString 
const &)*arg2
); 
12860         wxPyEndAllowThreads(__tstate
); 
12861         if (PyErr_Occurred()) SWIG_fail
; 
12864         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12880 static PyObject 
*_wrap_HelpControllerBase_Initialize(PyObject 
*self
, PyObject 
*args
) { 
12885     argc 
= PyObject_Length(args
); 
12886     for (ii 
= 0; (ii 
< argc
) && (ii 
< 3); ii
++) { 
12887         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
12893             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxHelpControllerBase
, 0) == -1) { 
12902                 _v 
= PyString_Check(argv
[1]) || PyUnicode_Check(argv
[1]); 
12905                 return _wrap_HelpControllerBase_Initialize__SWIG_1(self
,args
); 
12913             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxHelpControllerBase
, 0) == -1) { 
12922                 _v 
= PyString_Check(argv
[1]) || PyUnicode_Check(argv
[1]); 
12925                 _v 
= SWIG_Check_int(argv
[2]); 
12927                     return _wrap_HelpControllerBase_Initialize__SWIG_0(self
,args
); 
12933     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'HelpControllerBase_Initialize'"); 
12938 static PyObject 
*_wrap_HelpControllerBase_SetViewer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12939     PyObject 
*resultobj
; 
12940     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
12941     wxString 
*arg2 
= 0 ; 
12942     long arg3 
= (long) 0 ; 
12943     bool temp2 
= false ; 
12944     PyObject 
* obj0 
= 0 ; 
12945     PyObject 
* obj1 
= 0 ; 
12946     PyObject 
* obj2 
= 0 ; 
12947     char *kwnames
[] = { 
12948         (char *) "self",(char *) "viewer",(char *) "flags", NULL 
 
12951     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HelpControllerBase_SetViewer",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12952     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12953     if (SWIG_arg_fail(1)) SWIG_fail
; 
12955         arg2 
= wxString_in_helper(obj1
); 
12956         if (arg2 
== NULL
) SWIG_fail
; 
12961             arg3 
= (long)(SWIG_As_long(obj2
));  
12962             if (SWIG_arg_fail(3)) SWIG_fail
; 
12966         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12967         (arg1
)->SetViewer((wxString 
const &)*arg2
,arg3
); 
12969         wxPyEndAllowThreads(__tstate
); 
12970         if (PyErr_Occurred()) SWIG_fail
; 
12972     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12987 static PyObject 
*_wrap_HelpControllerBase_LoadFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12988     PyObject 
*resultobj
; 
12989     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
12990     wxString 
const &arg2_defvalue 
= wxEmptyString 
; 
12991     wxString 
*arg2 
= (wxString 
*) &arg2_defvalue 
; 
12993     bool temp2 
= false ; 
12994     PyObject 
* obj0 
= 0 ; 
12995     PyObject 
* obj1 
= 0 ; 
12996     char *kwnames
[] = { 
12997         (char *) "self",(char *) "file", NULL 
 
13000     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:HelpControllerBase_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
13001     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13002     if (SWIG_arg_fail(1)) SWIG_fail
; 
13005             arg2 
= wxString_in_helper(obj1
); 
13006             if (arg2 
== NULL
) SWIG_fail
; 
13011         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13012         result 
= (bool)(arg1
)->LoadFile((wxString 
const &)*arg2
); 
13014         wxPyEndAllowThreads(__tstate
); 
13015         if (PyErr_Occurred()) SWIG_fail
; 
13018         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13034 static PyObject 
*_wrap_HelpControllerBase_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13035     PyObject 
*resultobj
; 
13036     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13038     PyObject 
* obj0 
= 0 ; 
13039     char *kwnames
[] = { 
13040         (char *) "self", NULL 
 
13043     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpControllerBase_DisplayContents",kwnames
,&obj0
)) goto fail
; 
13044     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13045     if (SWIG_arg_fail(1)) SWIG_fail
; 
13047         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13048         result 
= (bool)(arg1
)->DisplayContents(); 
13050         wxPyEndAllowThreads(__tstate
); 
13051         if (PyErr_Occurred()) SWIG_fail
; 
13054         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13062 static PyObject 
*_wrap_HelpControllerBase_DisplaySection__SWIG_0(PyObject 
*, PyObject 
*args
) { 
13063     PyObject 
*resultobj
; 
13064     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13067     PyObject 
* obj0 
= 0 ; 
13068     PyObject 
* obj1 
= 0 ; 
13070     if(!PyArg_ParseTuple(args
,(char *)"OO:HelpControllerBase_DisplaySection",&obj0
,&obj1
)) goto fail
; 
13071     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13072     if (SWIG_arg_fail(1)) SWIG_fail
; 
13074         arg2 
= (int)(SWIG_As_int(obj1
));  
13075         if (SWIG_arg_fail(2)) SWIG_fail
; 
13078         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13079         result 
= (bool)(arg1
)->DisplaySection(arg2
); 
13081         wxPyEndAllowThreads(__tstate
); 
13082         if (PyErr_Occurred()) SWIG_fail
; 
13085         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13093 static PyObject 
*_wrap_HelpControllerBase_DisplayContextPopup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13094     PyObject 
*resultobj
; 
13095     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13098     PyObject 
* obj0 
= 0 ; 
13099     PyObject 
* obj1 
= 0 ; 
13100     char *kwnames
[] = { 
13101         (char *) "self",(char *) "contextId", NULL 
 
13104     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpControllerBase_DisplayContextPopup",kwnames
,&obj0
,&obj1
)) goto fail
; 
13105     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13106     if (SWIG_arg_fail(1)) SWIG_fail
; 
13108         arg2 
= (int)(SWIG_As_int(obj1
));  
13109         if (SWIG_arg_fail(2)) SWIG_fail
; 
13112         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13113         result 
= (bool)(arg1
)->DisplayContextPopup(arg2
); 
13115         wxPyEndAllowThreads(__tstate
); 
13116         if (PyErr_Occurred()) SWIG_fail
; 
13119         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13127 static PyObject 
*_wrap_HelpControllerBase_DisplayTextPopup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13128     PyObject 
*resultobj
; 
13129     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13130     wxString 
*arg2 
= 0 ; 
13131     wxPoint 
*arg3 
= 0 ; 
13133     bool temp2 
= false ; 
13135     PyObject 
* obj0 
= 0 ; 
13136     PyObject 
* obj1 
= 0 ; 
13137     PyObject 
* obj2 
= 0 ; 
13138     char *kwnames
[] = { 
13139         (char *) "self",(char *) "text",(char *) "pos", NULL 
 
13142     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HelpControllerBase_DisplayTextPopup",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
13143     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13144     if (SWIG_arg_fail(1)) SWIG_fail
; 
13146         arg2 
= wxString_in_helper(obj1
); 
13147         if (arg2 
== NULL
) SWIG_fail
; 
13152         if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
13155         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13156         result 
= (bool)(arg1
)->DisplayTextPopup((wxString 
const &)*arg2
,(wxPoint 
const &)*arg3
); 
13158         wxPyEndAllowThreads(__tstate
); 
13159         if (PyErr_Occurred()) SWIG_fail
; 
13162         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13178 static PyObject 
*_wrap_HelpControllerBase_DisplaySection__SWIG_1(PyObject 
*, PyObject 
*args
) { 
13179     PyObject 
*resultobj
; 
13180     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13181     wxString 
*arg2 
= 0 ; 
13183     bool temp2 
= false ; 
13184     PyObject 
* obj0 
= 0 ; 
13185     PyObject 
* obj1 
= 0 ; 
13187     if(!PyArg_ParseTuple(args
,(char *)"OO:HelpControllerBase_DisplaySection",&obj0
,&obj1
)) goto fail
; 
13188     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13189     if (SWIG_arg_fail(1)) SWIG_fail
; 
13191         arg2 
= wxString_in_helper(obj1
); 
13192         if (arg2 
== NULL
) SWIG_fail
; 
13196         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13197         result 
= (bool)(arg1
)->DisplaySection((wxString 
const &)*arg2
); 
13199         wxPyEndAllowThreads(__tstate
); 
13200         if (PyErr_Occurred()) SWIG_fail
; 
13203         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13219 static PyObject 
*_wrap_HelpControllerBase_DisplaySection(PyObject 
*self
, PyObject 
*args
) { 
13224     argc 
= PyObject_Length(args
); 
13225     for (ii 
= 0; (ii 
< argc
) && (ii 
< 2); ii
++) { 
13226         argv
[ii
] = PyTuple_GetItem(args
,ii
); 
13232             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxHelpControllerBase
, 0) == -1) { 
13241                 _v 
= PyString_Check(argv
[1]) || PyUnicode_Check(argv
[1]); 
13244                 return _wrap_HelpControllerBase_DisplaySection__SWIG_1(self
,args
); 
13252             if (SWIG_ConvertPtr(argv
[0], &ptr
, SWIGTYPE_p_wxHelpControllerBase
, 0) == -1) { 
13260             _v 
= SWIG_Check_int(argv
[1]); 
13262                 return _wrap_HelpControllerBase_DisplaySection__SWIG_0(self
,args
); 
13267     PyErr_SetString(PyExc_NotImplementedError
,"No matching function for overloaded 'HelpControllerBase_DisplaySection'"); 
13272 static PyObject 
*_wrap_HelpControllerBase_DisplayBlock(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13273     PyObject 
*resultobj
; 
13274     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13277     PyObject 
* obj0 
= 0 ; 
13278     PyObject 
* obj1 
= 0 ; 
13279     char *kwnames
[] = { 
13280         (char *) "self",(char *) "blockNo", NULL 
 
13283     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpControllerBase_DisplayBlock",kwnames
,&obj0
,&obj1
)) goto fail
; 
13284     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13285     if (SWIG_arg_fail(1)) SWIG_fail
; 
13287         arg2 
= (long)(SWIG_As_long(obj1
));  
13288         if (SWIG_arg_fail(2)) SWIG_fail
; 
13291         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13292         result 
= (bool)(arg1
)->DisplayBlock(arg2
); 
13294         wxPyEndAllowThreads(__tstate
); 
13295         if (PyErr_Occurred()) SWIG_fail
; 
13298         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13306 static PyObject 
*_wrap_HelpControllerBase_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13307     PyObject 
*resultobj
; 
13308     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13309     wxString 
*arg2 
= 0 ; 
13310     wxHelpSearchMode arg3 
= (wxHelpSearchMode
) wxHELP_SEARCH_ALL 
; 
13312     bool temp2 
= false ; 
13313     PyObject 
* obj0 
= 0 ; 
13314     PyObject 
* obj1 
= 0 ; 
13315     PyObject 
* obj2 
= 0 ; 
13316     char *kwnames
[] = { 
13317         (char *) "self",(char *) "k",(char *) "mode", NULL 
 
13320     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HelpControllerBase_KeywordSearch",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
13321     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13322     if (SWIG_arg_fail(1)) SWIG_fail
; 
13324         arg2 
= wxString_in_helper(obj1
); 
13325         if (arg2 
== NULL
) SWIG_fail
; 
13330             wxHelpSearchMode 
* argp
; 
13331             SWIG_Python_ConvertPtr(obj2
, (void **)&argp
, SWIGTYPE_p_wxHelpSearchMode
, SWIG_POINTER_EXCEPTION
); 
13332             if (SWIG_arg_fail(3)) SWIG_fail
; 
13333             if (argp 
== NULL
) { 
13334                 SWIG_null_ref("wxHelpSearchMode"); 
13336             if (SWIG_arg_fail(3)) SWIG_fail
; 
13341         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13342         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
,arg3
); 
13344         wxPyEndAllowThreads(__tstate
); 
13345         if (PyErr_Occurred()) SWIG_fail
; 
13348         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13364 static PyObject 
*_wrap_HelpControllerBase_SetFrameParameters(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13365     PyObject 
*resultobj
; 
13366     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13367     wxString 
*arg2 
= 0 ; 
13369     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
13370     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
13371     bool arg5 
= (bool) false ; 
13372     bool temp2 
= false ; 
13375     PyObject 
* obj0 
= 0 ; 
13376     PyObject 
* obj1 
= 0 ; 
13377     PyObject 
* obj2 
= 0 ; 
13378     PyObject 
* obj3 
= 0 ; 
13379     PyObject 
* obj4 
= 0 ; 
13380     char *kwnames
[] = { 
13381         (char *) "self",(char *) "title",(char *) "size",(char *) "pos",(char *) "newFrameEachTime", NULL 
 
13384     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:HelpControllerBase_SetFrameParameters",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
13385     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13386     if (SWIG_arg_fail(1)) SWIG_fail
; 
13388         arg2 
= wxString_in_helper(obj1
); 
13389         if (arg2 
== NULL
) SWIG_fail
; 
13394         if ( ! wxSize_helper(obj2
, &arg3
)) SWIG_fail
; 
13399             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
13404             arg5 
= (bool)(SWIG_As_bool(obj4
));  
13405             if (SWIG_arg_fail(5)) SWIG_fail
; 
13409         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13410         (arg1
)->SetFrameParameters((wxString 
const &)*arg2
,(wxSize 
const &)*arg3
,(wxPoint 
const &)*arg4
,arg5
); 
13412         wxPyEndAllowThreads(__tstate
); 
13413         if (PyErr_Occurred()) SWIG_fail
; 
13415     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13430 static PyObject 
*_wrap_HelpControllerBase_GetFrameParameters(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13431     PyObject 
*resultobj
; 
13432     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13433     wxSize 
*arg2 
= (wxSize 
*) NULL 
; 
13434     wxPoint 
*arg3 
= (wxPoint 
*) NULL 
; 
13435     bool *arg4 
= (bool *) NULL 
; 
13437     PyObject 
* obj0 
= 0 ; 
13438     PyObject 
* obj1 
= 0 ; 
13439     PyObject 
* obj2 
= 0 ; 
13440     PyObject 
* obj3 
= 0 ; 
13441     char *kwnames
[] = { 
13442         (char *) "self",(char *) "size",(char *) "pos",(char *) "newFrameEachTime", NULL 
 
13445     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HelpControllerBase_GetFrameParameters",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
13446     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13447     if (SWIG_arg_fail(1)) SWIG_fail
; 
13449         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxSize
, SWIG_POINTER_EXCEPTION 
| 0); 
13450         if (SWIG_arg_fail(2)) SWIG_fail
; 
13453         SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxPoint
, SWIG_POINTER_EXCEPTION 
| 0); 
13454         if (SWIG_arg_fail(3)) SWIG_fail
; 
13457         SWIG_Python_ConvertPtr(obj3
, (void **)&arg4
, SWIGTYPE_p_bool
, SWIG_POINTER_EXCEPTION 
| 0); 
13458         if (SWIG_arg_fail(4)) SWIG_fail
; 
13461         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13462         result 
= (wxFrame 
*)(arg1
)->GetFrameParameters(arg2
,arg3
,arg4
); 
13464         wxPyEndAllowThreads(__tstate
); 
13465         if (PyErr_Occurred()) SWIG_fail
; 
13468         resultobj 
= wxPyMake_wxObject(result
, 0);  
13476 static PyObject 
*_wrap_HelpControllerBase_Quit(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13477     PyObject 
*resultobj
; 
13478     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13480     PyObject 
* obj0 
= 0 ; 
13481     char *kwnames
[] = { 
13482         (char *) "self", NULL 
 
13485     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpControllerBase_Quit",kwnames
,&obj0
)) goto fail
; 
13486     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13487     if (SWIG_arg_fail(1)) SWIG_fail
; 
13489         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13490         result 
= (bool)(arg1
)->Quit(); 
13492         wxPyEndAllowThreads(__tstate
); 
13493         if (PyErr_Occurred()) SWIG_fail
; 
13496         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13504 static PyObject 
*_wrap_HelpControllerBase_OnQuit(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13505     PyObject 
*resultobj
; 
13506     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13507     PyObject 
* obj0 
= 0 ; 
13508     char *kwnames
[] = { 
13509         (char *) "self", NULL 
 
13512     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpControllerBase_OnQuit",kwnames
,&obj0
)) goto fail
; 
13513     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13514     if (SWIG_arg_fail(1)) SWIG_fail
; 
13516         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13519         wxPyEndAllowThreads(__tstate
); 
13520         if (PyErr_Occurred()) SWIG_fail
; 
13522     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13529 static PyObject 
*_wrap_HelpControllerBase_SetParentWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13530     PyObject 
*resultobj
; 
13531     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13532     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
13533     PyObject 
* obj0 
= 0 ; 
13534     PyObject 
* obj1 
= 0 ; 
13535     char *kwnames
[] = { 
13536         (char *) "self",(char *) "win", NULL 
 
13539     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HelpControllerBase_SetParentWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
13540     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13541     if (SWIG_arg_fail(1)) SWIG_fail
; 
13542     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
13543     if (SWIG_arg_fail(2)) SWIG_fail
; 
13545         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13546         (arg1
)->SetParentWindow(arg2
); 
13548         wxPyEndAllowThreads(__tstate
); 
13549         if (PyErr_Occurred()) SWIG_fail
; 
13551     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13558 static PyObject 
*_wrap_HelpControllerBase_GetParentWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13559     PyObject 
*resultobj
; 
13560     wxHelpControllerBase 
*arg1 
= (wxHelpControllerBase 
*) 0 ; 
13562     PyObject 
* obj0 
= 0 ; 
13563     char *kwnames
[] = { 
13564         (char *) "self", NULL 
 
13567     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HelpControllerBase_GetParentWindow",kwnames
,&obj0
)) goto fail
; 
13568     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHelpControllerBase
, SWIG_POINTER_EXCEPTION 
| 0); 
13569     if (SWIG_arg_fail(1)) SWIG_fail
; 
13571         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13572         result 
= (wxWindow 
*)((wxHelpControllerBase 
const *)arg1
)->GetParentWindow(); 
13574         wxPyEndAllowThreads(__tstate
); 
13575         if (PyErr_Occurred()) SWIG_fail
; 
13578         resultobj 
= wxPyMake_wxObject(result
, 0);  
13586 static PyObject 
* HelpControllerBase_swigregister(PyObject 
*, PyObject 
*args
) { 
13588     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
13589     SWIG_TypeClientData(SWIGTYPE_p_wxHelpControllerBase
, obj
); 
13591     return Py_BuildValue((char *)""); 
13593 static PyObject 
*_wrap_new_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13594     PyObject 
*resultobj
; 
13595     int arg1 
= (int) wxHF_DEFAULT_STYLE 
; 
13596     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
13597     wxHtmlHelpController 
*result
; 
13598     PyObject 
* obj0 
= 0 ; 
13599     PyObject 
* obj1 
= 0 ; 
13600     char *kwnames
[] = { 
13601         (char *) "style",(char *) "parentWindow", NULL 
 
13604     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_HtmlHelpController",kwnames
,&obj0
,&obj1
)) goto fail
; 
13607             arg1 
= (int)(SWIG_As_int(obj0
));  
13608             if (SWIG_arg_fail(1)) SWIG_fail
; 
13612         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
13613         if (SWIG_arg_fail(2)) SWIG_fail
; 
13616         if (!wxPyCheckForApp()) SWIG_fail
; 
13617         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13618         result 
= (wxHtmlHelpController 
*)new wxHtmlHelpController(arg1
,arg2
); 
13620         wxPyEndAllowThreads(__tstate
); 
13621         if (PyErr_Occurred()) SWIG_fail
; 
13623     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 1); 
13630 static PyObject 
*_wrap_delete_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13631     PyObject 
*resultobj
; 
13632     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13633     PyObject 
* obj0 
= 0 ; 
13634     char *kwnames
[] = { 
13635         (char *) "self", NULL 
 
13638     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpController",kwnames
,&obj0
)) goto fail
; 
13639     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13640     if (SWIG_arg_fail(1)) SWIG_fail
; 
13642         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13645         wxPyEndAllowThreads(__tstate
); 
13646         if (PyErr_Occurred()) SWIG_fail
; 
13648     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13655 static PyObject 
*_wrap_HtmlHelpController_GetHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13656     PyObject 
*resultobj
; 
13657     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13658     wxHtmlHelpWindow 
*result
; 
13659     PyObject 
* obj0 
= 0 ; 
13660     char *kwnames
[] = { 
13661         (char *) "self", NULL 
 
13664     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_GetHelpWindow",kwnames
,&obj0
)) goto fail
; 
13665     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13666     if (SWIG_arg_fail(1)) SWIG_fail
; 
13668         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13669         result 
= (wxHtmlHelpWindow 
*)(arg1
)->GetHelpWindow(); 
13671         wxPyEndAllowThreads(__tstate
); 
13672         if (PyErr_Occurred()) SWIG_fail
; 
13675         resultobj 
= wxPyMake_wxObject(result
, 0);  
13683 static PyObject 
*_wrap_HtmlHelpController_SetHelpWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13684     PyObject 
*resultobj
; 
13685     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13686     wxHtmlHelpWindow 
*arg2 
= (wxHtmlHelpWindow 
*) 0 ; 
13687     PyObject 
* obj0 
= 0 ; 
13688     PyObject 
* obj1 
= 0 ; 
13689     char *kwnames
[] = { 
13690         (char *) "self",(char *) "helpWindow", NULL 
 
13693     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetHelpWindow",kwnames
,&obj0
,&obj1
)) goto fail
; 
13694     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13695     if (SWIG_arg_fail(1)) SWIG_fail
; 
13696     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlHelpWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
13697     if (SWIG_arg_fail(2)) SWIG_fail
; 
13699         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13700         (arg1
)->SetHelpWindow(arg2
); 
13702         wxPyEndAllowThreads(__tstate
); 
13703         if (PyErr_Occurred()) SWIG_fail
; 
13705     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13712 static PyObject 
*_wrap_HtmlHelpController_GetFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13713     PyObject 
*resultobj
; 
13714     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13715     wxHtmlHelpFrame 
*result
; 
13716     PyObject 
* obj0 
= 0 ; 
13717     char *kwnames
[] = { 
13718         (char *) "self", NULL 
 
13721     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_GetFrame",kwnames
,&obj0
)) goto fail
; 
13722     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13723     if (SWIG_arg_fail(1)) SWIG_fail
; 
13725         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13726         result 
= (wxHtmlHelpFrame 
*)(arg1
)->GetFrame(); 
13728         wxPyEndAllowThreads(__tstate
); 
13729         if (PyErr_Occurred()) SWIG_fail
; 
13732         resultobj 
= wxPyMake_wxObject(result
, 0);  
13740 static PyObject 
*_wrap_HtmlHelpController_GetDialog(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13741     PyObject 
*resultobj
; 
13742     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13743     wxHtmlHelpDialog 
*result
; 
13744     PyObject 
* obj0 
= 0 ; 
13745     char *kwnames
[] = { 
13746         (char *) "self", NULL 
 
13749     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_GetDialog",kwnames
,&obj0
)) goto fail
; 
13750     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13751     if (SWIG_arg_fail(1)) SWIG_fail
; 
13753         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13754         result 
= (wxHtmlHelpDialog 
*)(arg1
)->GetDialog(); 
13756         wxPyEndAllowThreads(__tstate
); 
13757         if (PyErr_Occurred()) SWIG_fail
; 
13760         resultobj 
= wxPyMake_wxObject(result
, 0);  
13768 static PyObject 
*_wrap_HtmlHelpController_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13769     PyObject 
*resultobj
; 
13770     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13771     wxString 
*arg2 
= 0 ; 
13772     bool temp2 
= false ; 
13773     PyObject 
* obj0 
= 0 ; 
13774     PyObject 
* obj1 
= 0 ; 
13775     char *kwnames
[] = { 
13776         (char *) "self",(char *) "format", NULL 
 
13779     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
13780     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13781     if (SWIG_arg_fail(1)) SWIG_fail
; 
13783         arg2 
= wxString_in_helper(obj1
); 
13784         if (arg2 
== NULL
) SWIG_fail
; 
13788         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13789         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
13791         wxPyEndAllowThreads(__tstate
); 
13792         if (PyErr_Occurred()) SWIG_fail
; 
13794     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13809 static PyObject 
*_wrap_HtmlHelpController_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13810     PyObject 
*resultobj
; 
13811     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13812     wxString 
*arg2 
= 0 ; 
13813     bool temp2 
= false ; 
13814     PyObject 
* obj0 
= 0 ; 
13815     PyObject 
* obj1 
= 0 ; 
13816     char *kwnames
[] = { 
13817         (char *) "self",(char *) "path", NULL 
 
13820     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
13821     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13822     if (SWIG_arg_fail(1)) SWIG_fail
; 
13824         arg2 
= wxString_in_helper(obj1
); 
13825         if (arg2 
== NULL
) SWIG_fail
; 
13829         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13830         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
13832         wxPyEndAllowThreads(__tstate
); 
13833         if (PyErr_Occurred()) SWIG_fail
; 
13835     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13850 static PyObject 
*_wrap_HtmlHelpController_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13851     PyObject 
*resultobj
; 
13852     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13853     wxString 
*arg2 
= 0 ; 
13854     int arg3 
= (int) false ; 
13856     bool temp2 
= false ; 
13857     PyObject 
* obj0 
= 0 ; 
13858     PyObject 
* obj1 
= 0 ; 
13859     PyObject 
* obj2 
= 0 ; 
13860     char *kwnames
[] = { 
13861         (char *) "self",(char *) "book",(char *) "show_wait_msg", NULL 
 
13864     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_AddBook",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
13865     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13866     if (SWIG_arg_fail(1)) SWIG_fail
; 
13868         arg2 
= wxString_in_helper(obj1
); 
13869         if (arg2 
== NULL
) SWIG_fail
; 
13874             arg3 
= (int)(SWIG_As_int(obj2
));  
13875             if (SWIG_arg_fail(3)) SWIG_fail
; 
13879         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13880         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
,arg3
); 
13882         wxPyEndAllowThreads(__tstate
); 
13883         if (PyErr_Occurred()) SWIG_fail
; 
13886         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
13902 static PyObject 
*_wrap_HtmlHelpController_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13903     PyObject 
*resultobj
; 
13904     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13905     wxString 
*arg2 
= 0 ; 
13906     bool temp2 
= false ; 
13907     PyObject 
* obj0 
= 0 ; 
13908     PyObject 
* obj1 
= 0 ; 
13909     char *kwnames
[] = { 
13910         (char *) "self",(char *) "x", NULL 
 
13913     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
13914     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13915     if (SWIG_arg_fail(1)) SWIG_fail
; 
13917         arg2 
= wxString_in_helper(obj1
); 
13918         if (arg2 
== NULL
) SWIG_fail
; 
13922         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13923         (arg1
)->Display((wxString 
const &)*arg2
); 
13925         wxPyEndAllowThreads(__tstate
); 
13926         if (PyErr_Occurred()) SWIG_fail
; 
13928     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13943 static PyObject 
*_wrap_HtmlHelpController_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13944     PyObject 
*resultobj
; 
13945     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13947     PyObject 
* obj0 
= 0 ; 
13948     PyObject 
* obj1 
= 0 ; 
13949     char *kwnames
[] = { 
13950         (char *) "self",(char *) "id", NULL 
 
13953     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
13954     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13955     if (SWIG_arg_fail(1)) SWIG_fail
; 
13957         arg2 
= (int)(SWIG_As_int(obj1
));  
13958         if (SWIG_arg_fail(2)) SWIG_fail
; 
13961         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13962         (arg1
)->Display(arg2
); 
13964         wxPyEndAllowThreads(__tstate
); 
13965         if (PyErr_Occurred()) SWIG_fail
; 
13967     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13974 static PyObject 
*_wrap_HtmlHelpController_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
13975     PyObject 
*resultobj
; 
13976     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
13977     PyObject 
* obj0 
= 0 ; 
13978     char *kwnames
[] = { 
13979         (char *) "self", NULL 
 
13982     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayContents",kwnames
,&obj0
)) goto fail
; 
13983     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
13984     if (SWIG_arg_fail(1)) SWIG_fail
; 
13986         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13987         (arg1
)->DisplayContents(); 
13989         wxPyEndAllowThreads(__tstate
); 
13990         if (PyErr_Occurred()) SWIG_fail
; 
13992     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
13999 static PyObject 
*_wrap_HtmlHelpController_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14000     PyObject 
*resultobj
; 
14001     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14002     PyObject 
* obj0 
= 0 ; 
14003     char *kwnames
[] = { 
14004         (char *) "self", NULL 
 
14007     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
14008     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14009     if (SWIG_arg_fail(1)) SWIG_fail
; 
14011         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14012         (arg1
)->DisplayIndex(); 
14014         wxPyEndAllowThreads(__tstate
); 
14015         if (PyErr_Occurred()) SWIG_fail
; 
14017     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14024 static PyObject 
*_wrap_HtmlHelpController_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14025     PyObject 
*resultobj
; 
14026     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14027     wxString 
*arg2 
= 0 ; 
14029     bool temp2 
= false ; 
14030     PyObject 
* obj0 
= 0 ; 
14031     PyObject 
* obj1 
= 0 ; 
14032     char *kwnames
[] = { 
14033         (char *) "self",(char *) "keyword", NULL 
 
14036     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_KeywordSearch",kwnames
,&obj0
,&obj1
)) goto fail
; 
14037     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14038     if (SWIG_arg_fail(1)) SWIG_fail
; 
14040         arg2 
= wxString_in_helper(obj1
); 
14041         if (arg2 
== NULL
) SWIG_fail
; 
14045         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14046         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
); 
14048         wxPyEndAllowThreads(__tstate
); 
14049         if (PyErr_Occurred()) SWIG_fail
; 
14052         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14068 static PyObject 
*_wrap_HtmlHelpController_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14069     PyObject 
*resultobj
; 
14070     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14071     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
14072     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
14073     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
14074     bool temp3 
= false ; 
14075     PyObject 
* obj0 
= 0 ; 
14076     PyObject 
* obj1 
= 0 ; 
14077     PyObject 
* obj2 
= 0 ; 
14078     char *kwnames
[] = { 
14079         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
14082     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
14083     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14084     if (SWIG_arg_fail(1)) SWIG_fail
; 
14085     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
14086     if (SWIG_arg_fail(2)) SWIG_fail
; 
14089             arg3 
= wxString_in_helper(obj2
); 
14090             if (arg3 
== NULL
) SWIG_fail
; 
14095         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14096         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
14098         wxPyEndAllowThreads(__tstate
); 
14099         if (PyErr_Occurred()) SWIG_fail
; 
14101     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14116 static PyObject 
*_wrap_HtmlHelpController_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14117     PyObject 
*resultobj
; 
14118     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14119     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
14120     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
14121     PyObject 
* obj0 
= 0 ; 
14122     PyObject 
* obj1 
= 0 ; 
14123     PyObject 
* obj2 
= 0 ; 
14124     char *kwnames
[] = { 
14125         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
14128     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
14129     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14130     if (SWIG_arg_fail(1)) SWIG_fail
; 
14131     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
14132     if (SWIG_arg_fail(2)) SWIG_fail
; 
14135             wxString
* sptr 
= wxString_in_helper(obj2
); 
14136             if (sptr 
== NULL
) SWIG_fail
; 
14142         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14143         (arg1
)->ReadCustomization(arg2
,arg3
); 
14145         wxPyEndAllowThreads(__tstate
); 
14146         if (PyErr_Occurred()) SWIG_fail
; 
14148     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14155 static PyObject 
*_wrap_HtmlHelpController_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14156     PyObject 
*resultobj
; 
14157     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14158     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
14159     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
14160     PyObject 
* obj0 
= 0 ; 
14161     PyObject 
* obj1 
= 0 ; 
14162     PyObject 
* obj2 
= 0 ; 
14163     char *kwnames
[] = { 
14164         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
14167     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
14168     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14169     if (SWIG_arg_fail(1)) SWIG_fail
; 
14170     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
14171     if (SWIG_arg_fail(2)) SWIG_fail
; 
14174             wxString
* sptr 
= wxString_in_helper(obj2
); 
14175             if (sptr 
== NULL
) SWIG_fail
; 
14181         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14182         (arg1
)->WriteCustomization(arg2
,arg3
); 
14184         wxPyEndAllowThreads(__tstate
); 
14185         if (PyErr_Occurred()) SWIG_fail
; 
14187     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14194 static PyObject 
*_wrap_HtmlHelpController_MakeModalIfNeeded(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14195     PyObject 
*resultobj
; 
14196     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14197     PyObject 
* obj0 
= 0 ; 
14198     char *kwnames
[] = { 
14199         (char *) "self", NULL 
 
14202     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_MakeModalIfNeeded",kwnames
,&obj0
)) goto fail
; 
14203     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14204     if (SWIG_arg_fail(1)) SWIG_fail
; 
14206         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14207         (arg1
)->MakeModalIfNeeded(); 
14209         wxPyEndAllowThreads(__tstate
); 
14210         if (PyErr_Occurred()) SWIG_fail
; 
14212     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
14219 static PyObject 
*_wrap_HtmlHelpController_FindTopLevelWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14220     PyObject 
*resultobj
; 
14221     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
14223     PyObject 
* obj0 
= 0 ; 
14224     char *kwnames
[] = { 
14225         (char *) "self", NULL 
 
14228     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_FindTopLevelWindow",kwnames
,&obj0
)) goto fail
; 
14229     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
14230     if (SWIG_arg_fail(1)) SWIG_fail
; 
14232         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14233         result 
= (wxWindow 
*)(arg1
)->FindTopLevelWindow(); 
14235         wxPyEndAllowThreads(__tstate
); 
14236         if (PyErr_Occurred()) SWIG_fail
; 
14239         resultobj 
= wxPyMake_wxObject(result
, 0);  
14247 static PyObject 
* HtmlHelpController_swigregister(PyObject 
*, PyObject 
*args
) { 
14249     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
14250     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpController
, obj
); 
14252     return Py_BuildValue((char *)""); 
14254 static PyObject 
*_wrap_new_HtmlModalHelp(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
14255     PyObject 
*resultobj
; 
14256     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
14257     wxString 
*arg2 
= 0 ; 
14258     wxString 
const &arg3_defvalue 
= wxEmptyString 
; 
14259     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
14260     int arg4 
= (int) wxHF_DEFAULT_STYLE
|wxHF_DIALOG
|wxHF_MODAL 
; 
14261     wxHtmlModalHelp 
*result
; 
14262     bool temp2 
= false ; 
14263     bool temp3 
= false ; 
14264     PyObject 
* obj0 
= 0 ; 
14265     PyObject 
* obj1 
= 0 ; 
14266     PyObject 
* obj2 
= 0 ; 
14267     PyObject 
* obj3 
= 0 ; 
14268     char *kwnames
[] = { 
14269         (char *) "parent",(char *) "helpFile",(char *) "topic",(char *) "style", NULL 
 
14272     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:new_HtmlModalHelp",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
14273     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
14274     if (SWIG_arg_fail(1)) SWIG_fail
; 
14276         arg2 
= wxString_in_helper(obj1
); 
14277         if (arg2 
== NULL
) SWIG_fail
; 
14282             arg3 
= wxString_in_helper(obj2
); 
14283             if (arg3 
== NULL
) SWIG_fail
; 
14289             arg4 
= (int)(SWIG_As_int(obj3
));  
14290             if (SWIG_arg_fail(4)) SWIG_fail
; 
14294         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14295         result 
= (wxHtmlModalHelp 
*)new wxHtmlModalHelp(arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
14297         wxPyEndAllowThreads(__tstate
); 
14298         if (PyErr_Occurred()) SWIG_fail
; 
14300     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlModalHelp
, 1); 
14323 static PyObject 
* HtmlModalHelp_swigregister(PyObject 
*, PyObject 
*args
) { 
14325     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
14326     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlModalHelp
, obj
); 
14328     return Py_BuildValue((char *)""); 
14330 static PyMethodDef SwigMethods
[] = { 
14331          { (char *)"new_HtmlLinkInfo", (PyCFunction
) _wrap_new_HtmlLinkInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14332          { (char *)"HtmlLinkInfo_GetHref", (PyCFunction
) _wrap_HtmlLinkInfo_GetHref
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14333          { (char *)"HtmlLinkInfo_GetTarget", (PyCFunction
) _wrap_HtmlLinkInfo_GetTarget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14334          { (char *)"HtmlLinkInfo_GetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_GetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14335          { (char *)"HtmlLinkInfo_GetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_GetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14336          { (char *)"HtmlLinkInfo_SetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_SetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14337          { (char *)"HtmlLinkInfo_SetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_SetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14338          { (char *)"HtmlLinkInfo_swigregister", HtmlLinkInfo_swigregister
, METH_VARARGS
, NULL
}, 
14339          { (char *)"HtmlTag_GetName", (PyCFunction
) _wrap_HtmlTag_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14340          { (char *)"HtmlTag_HasParam", (PyCFunction
) _wrap_HtmlTag_HasParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14341          { (char *)"HtmlTag_GetParam", (PyCFunction
) _wrap_HtmlTag_GetParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14342          { (char *)"HtmlTag_GetAllParams", (PyCFunction
) _wrap_HtmlTag_GetAllParams
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14343          { (char *)"HtmlTag_HasEnding", (PyCFunction
) _wrap_HtmlTag_HasEnding
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14344          { (char *)"HtmlTag_GetBeginPos", (PyCFunction
) _wrap_HtmlTag_GetBeginPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14345          { (char *)"HtmlTag_GetEndPos1", (PyCFunction
) _wrap_HtmlTag_GetEndPos1
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14346          { (char *)"HtmlTag_GetEndPos2", (PyCFunction
) _wrap_HtmlTag_GetEndPos2
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14347          { (char *)"HtmlTag_swigregister", HtmlTag_swigregister
, METH_VARARGS
, NULL
}, 
14348          { (char *)"HtmlParser_SetFS", (PyCFunction
) _wrap_HtmlParser_SetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14349          { (char *)"HtmlParser_GetFS", (PyCFunction
) _wrap_HtmlParser_GetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14350          { (char *)"HtmlParser_Parse", (PyCFunction
) _wrap_HtmlParser_Parse
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14351          { (char *)"HtmlParser_InitParser", (PyCFunction
) _wrap_HtmlParser_InitParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14352          { (char *)"HtmlParser_DoneParser", (PyCFunction
) _wrap_HtmlParser_DoneParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14353          { (char *)"HtmlParser_DoParsing", (PyCFunction
) _wrap_HtmlParser_DoParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14354          { (char *)"HtmlParser_StopParsing", (PyCFunction
) _wrap_HtmlParser_StopParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14355          { (char *)"HtmlParser_AddTagHandler", (PyCFunction
) _wrap_HtmlParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14356          { (char *)"HtmlParser_GetSource", (PyCFunction
) _wrap_HtmlParser_GetSource
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14357          { (char *)"HtmlParser_PushTagHandler", (PyCFunction
) _wrap_HtmlParser_PushTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14358          { (char *)"HtmlParser_PopTagHandler", (PyCFunction
) _wrap_HtmlParser_PopTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14359          { (char *)"HtmlParser_swigregister", HtmlParser_swigregister
, METH_VARARGS
, NULL
}, 
14360          { (char *)"new_HtmlWinParser", (PyCFunction
) _wrap_new_HtmlWinParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14361          { (char *)"HtmlWinParser_SetDC", (PyCFunction
) _wrap_HtmlWinParser_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14362          { (char *)"HtmlWinParser_GetDC", (PyCFunction
) _wrap_HtmlWinParser_GetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14363          { (char *)"HtmlWinParser_GetCharHeight", (PyCFunction
) _wrap_HtmlWinParser_GetCharHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14364          { (char *)"HtmlWinParser_GetCharWidth", (PyCFunction
) _wrap_HtmlWinParser_GetCharWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14365          { (char *)"HtmlWinParser_GetWindow", (PyCFunction
) _wrap_HtmlWinParser_GetWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14366          { (char *)"HtmlWinParser_SetFonts", (PyCFunction
) _wrap_HtmlWinParser_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14367          { (char *)"HtmlWinParser_SetStandardFonts", (PyCFunction
) _wrap_HtmlWinParser_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14368          { (char *)"HtmlWinParser_GetContainer", (PyCFunction
) _wrap_HtmlWinParser_GetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14369          { (char *)"HtmlWinParser_OpenContainer", (PyCFunction
) _wrap_HtmlWinParser_OpenContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14370          { (char *)"HtmlWinParser_SetContainer", (PyCFunction
) _wrap_HtmlWinParser_SetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14371          { (char *)"HtmlWinParser_CloseContainer", (PyCFunction
) _wrap_HtmlWinParser_CloseContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14372          { (char *)"HtmlWinParser_GetFontSize", (PyCFunction
) _wrap_HtmlWinParser_GetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14373          { (char *)"HtmlWinParser_SetFontSize", (PyCFunction
) _wrap_HtmlWinParser_SetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14374          { (char *)"HtmlWinParser_GetFontBold", (PyCFunction
) _wrap_HtmlWinParser_GetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14375          { (char *)"HtmlWinParser_SetFontBold", (PyCFunction
) _wrap_HtmlWinParser_SetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14376          { (char *)"HtmlWinParser_GetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_GetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14377          { (char *)"HtmlWinParser_SetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_SetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14378          { (char *)"HtmlWinParser_GetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_GetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14379          { (char *)"HtmlWinParser_SetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_SetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14380          { (char *)"HtmlWinParser_GetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_GetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14381          { (char *)"HtmlWinParser_SetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_SetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14382          { (char *)"HtmlWinParser_GetAlign", (PyCFunction
) _wrap_HtmlWinParser_GetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14383          { (char *)"HtmlWinParser_SetAlign", (PyCFunction
) _wrap_HtmlWinParser_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14384          { (char *)"HtmlWinParser_GetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_GetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14385          { (char *)"HtmlWinParser_SetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_SetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14386          { (char *)"HtmlWinParser_GetActualColor", (PyCFunction
) _wrap_HtmlWinParser_GetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14387          { (char *)"HtmlWinParser_SetActualColor", (PyCFunction
) _wrap_HtmlWinParser_SetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14388          { (char *)"HtmlWinParser_SetLink", (PyCFunction
) _wrap_HtmlWinParser_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14389          { (char *)"HtmlWinParser_CreateCurrentFont", (PyCFunction
) _wrap_HtmlWinParser_CreateCurrentFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14390          { (char *)"HtmlWinParser_GetLink", (PyCFunction
) _wrap_HtmlWinParser_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14391          { (char *)"HtmlWinParser_swigregister", HtmlWinParser_swigregister
, METH_VARARGS
, NULL
}, 
14392          { (char *)"new_HtmlTagHandler", (PyCFunction
) _wrap_new_HtmlTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14393          { (char *)"HtmlTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14394          { (char *)"HtmlTagHandler_SetParser", (PyCFunction
) _wrap_HtmlTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14395          { (char *)"HtmlTagHandler_GetParser", (PyCFunction
) _wrap_HtmlTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14396          { (char *)"HtmlTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14397          { (char *)"HtmlTagHandler_swigregister", HtmlTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
14398          { (char *)"new_HtmlWinTagHandler", (PyCFunction
) _wrap_new_HtmlWinTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14399          { (char *)"HtmlWinTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlWinTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14400          { (char *)"HtmlWinTagHandler_SetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14401          { (char *)"HtmlWinTagHandler_GetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14402          { (char *)"HtmlWinTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlWinTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14403          { (char *)"HtmlWinTagHandler_swigregister", HtmlWinTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
14404          { (char *)"HtmlWinParser_AddTagHandler", (PyCFunction
) _wrap_HtmlWinParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14405          { (char *)"new_HtmlSelection", (PyCFunction
) _wrap_new_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14406          { (char *)"delete_HtmlSelection", (PyCFunction
) _wrap_delete_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14407          { (char *)"HtmlSelection_Set", (PyCFunction
) _wrap_HtmlSelection_Set
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14408          { (char *)"HtmlSelection_SetCells", (PyCFunction
) _wrap_HtmlSelection_SetCells
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14409          { (char *)"HtmlSelection_GetFromCell", (PyCFunction
) _wrap_HtmlSelection_GetFromCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14410          { (char *)"HtmlSelection_GetToCell", (PyCFunction
) _wrap_HtmlSelection_GetToCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14411          { (char *)"HtmlSelection_GetFromPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14412          { (char *)"HtmlSelection_GetToPos", (PyCFunction
) _wrap_HtmlSelection_GetToPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14413          { (char *)"HtmlSelection_GetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14414          { (char *)"HtmlSelection_GetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14415          { (char *)"HtmlSelection_SetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14416          { (char *)"HtmlSelection_SetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14417          { (char *)"HtmlSelection_ClearPrivPos", (PyCFunction
) _wrap_HtmlSelection_ClearPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14418          { (char *)"HtmlSelection_IsEmpty", (PyCFunction
) _wrap_HtmlSelection_IsEmpty
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14419          { (char *)"HtmlSelection_swigregister", HtmlSelection_swigregister
, METH_VARARGS
, NULL
}, 
14420          { (char *)"new_HtmlRenderingState", (PyCFunction
) _wrap_new_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14421          { (char *)"delete_HtmlRenderingState", (PyCFunction
) _wrap_delete_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14422          { (char *)"HtmlRenderingState_SetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_SetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14423          { (char *)"HtmlRenderingState_GetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_GetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14424          { (char *)"HtmlRenderingState_SetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14425          { (char *)"HtmlRenderingState_GetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14426          { (char *)"HtmlRenderingState_SetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14427          { (char *)"HtmlRenderingState_GetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14428          { (char *)"HtmlRenderingState_swigregister", HtmlRenderingState_swigregister
, METH_VARARGS
, NULL
}, 
14429          { (char *)"HtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14430          { (char *)"HtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14431          { (char *)"HtmlRenderingStyle_swigregister", HtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
14432          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14433          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14434          { (char *)"DefaultHtmlRenderingStyle_swigregister", DefaultHtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
14435          { (char *)"new_HtmlRenderingInfo", (PyCFunction
) _wrap_new_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14436          { (char *)"delete_HtmlRenderingInfo", (PyCFunction
) _wrap_delete_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14437          { (char *)"HtmlRenderingInfo_SetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14438          { (char *)"HtmlRenderingInfo_GetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14439          { (char *)"HtmlRenderingInfo_SetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_SetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14440          { (char *)"HtmlRenderingInfo_GetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_GetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14441          { (char *)"HtmlRenderingInfo_GetState", (PyCFunction
) _wrap_HtmlRenderingInfo_GetState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14442          { (char *)"HtmlRenderingInfo_swigregister", HtmlRenderingInfo_swigregister
, METH_VARARGS
, NULL
}, 
14443          { (char *)"new_HtmlCell", (PyCFunction
) _wrap_new_HtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14444          { (char *)"HtmlCell_GetPosX", (PyCFunction
) _wrap_HtmlCell_GetPosX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14445          { (char *)"HtmlCell_GetPosY", (PyCFunction
) _wrap_HtmlCell_GetPosY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14446          { (char *)"HtmlCell_GetWidth", (PyCFunction
) _wrap_HtmlCell_GetWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14447          { (char *)"HtmlCell_GetHeight", (PyCFunction
) _wrap_HtmlCell_GetHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14448          { (char *)"HtmlCell_GetDescent", (PyCFunction
) _wrap_HtmlCell_GetDescent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14449          { (char *)"HtmlCell_GetMaxTotalWidth", (PyCFunction
) _wrap_HtmlCell_GetMaxTotalWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14450          { (char *)"HtmlCell_GetId", (PyCFunction
) _wrap_HtmlCell_GetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14451          { (char *)"HtmlCell_SetId", (PyCFunction
) _wrap_HtmlCell_SetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14452          { (char *)"HtmlCell_GetLink", (PyCFunction
) _wrap_HtmlCell_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14453          { (char *)"HtmlCell_GetNext", (PyCFunction
) _wrap_HtmlCell_GetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14454          { (char *)"HtmlCell_GetParent", (PyCFunction
) _wrap_HtmlCell_GetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14455          { (char *)"HtmlCell_GetFirstChild", (PyCFunction
) _wrap_HtmlCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14456          { (char *)"HtmlCell_GetCursor", (PyCFunction
) _wrap_HtmlCell_GetCursor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14457          { (char *)"HtmlCell_IsFormattingCell", (PyCFunction
) _wrap_HtmlCell_IsFormattingCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14458          { (char *)"HtmlCell_SetLink", (PyCFunction
) _wrap_HtmlCell_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14459          { (char *)"HtmlCell_SetNext", (PyCFunction
) _wrap_HtmlCell_SetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14460          { (char *)"HtmlCell_SetParent", (PyCFunction
) _wrap_HtmlCell_SetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14461          { (char *)"HtmlCell_SetPos", (PyCFunction
) _wrap_HtmlCell_SetPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14462          { (char *)"HtmlCell_Layout", (PyCFunction
) _wrap_HtmlCell_Layout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14463          { (char *)"HtmlCell_Draw", (PyCFunction
) _wrap_HtmlCell_Draw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14464          { (char *)"HtmlCell_DrawInvisible", (PyCFunction
) _wrap_HtmlCell_DrawInvisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14465          { (char *)"HtmlCell_Find", (PyCFunction
) _wrap_HtmlCell_Find
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14466          { (char *)"HtmlCell_AdjustPagebreak", (PyCFunction
) _wrap_HtmlCell_AdjustPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14467          { (char *)"HtmlCell_SetCanLiveOnPagebreak", (PyCFunction
) _wrap_HtmlCell_SetCanLiveOnPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14468          { (char *)"HtmlCell_IsLinebreakAllowed", (PyCFunction
) _wrap_HtmlCell_IsLinebreakAllowed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14469          { (char *)"HtmlCell_IsTerminalCell", (PyCFunction
) _wrap_HtmlCell_IsTerminalCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14470          { (char *)"HtmlCell_FindCellByPos", (PyCFunction
) _wrap_HtmlCell_FindCellByPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14471          { (char *)"HtmlCell_GetAbsPos", (PyCFunction
) _wrap_HtmlCell_GetAbsPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14472          { (char *)"HtmlCell_GetFirstTerminal", (PyCFunction
) _wrap_HtmlCell_GetFirstTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14473          { (char *)"HtmlCell_GetLastTerminal", (PyCFunction
) _wrap_HtmlCell_GetLastTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14474          { (char *)"HtmlCell_GetDepth", (PyCFunction
) _wrap_HtmlCell_GetDepth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14475          { (char *)"HtmlCell_IsBefore", (PyCFunction
) _wrap_HtmlCell_IsBefore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14476          { (char *)"HtmlCell_ConvertToText", (PyCFunction
) _wrap_HtmlCell_ConvertToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14477          { (char *)"HtmlCell_swigregister", HtmlCell_swigregister
, METH_VARARGS
, NULL
}, 
14478          { (char *)"new_HtmlWordCell", (PyCFunction
) _wrap_new_HtmlWordCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14479          { (char *)"HtmlWordCell_swigregister", HtmlWordCell_swigregister
, METH_VARARGS
, NULL
}, 
14480          { (char *)"new_HtmlContainerCell", (PyCFunction
) _wrap_new_HtmlContainerCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14481          { (char *)"HtmlContainerCell_InsertCell", (PyCFunction
) _wrap_HtmlContainerCell_InsertCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14482          { (char *)"HtmlContainerCell_SetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14483          { (char *)"HtmlContainerCell_GetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14484          { (char *)"HtmlContainerCell_SetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14485          { (char *)"HtmlContainerCell_GetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14486          { (char *)"HtmlContainerCell_SetIndent", (PyCFunction
) _wrap_HtmlContainerCell_SetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14487          { (char *)"HtmlContainerCell_GetIndent", (PyCFunction
) _wrap_HtmlContainerCell_GetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14488          { (char *)"HtmlContainerCell_GetIndentUnits", (PyCFunction
) _wrap_HtmlContainerCell_GetIndentUnits
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14489          { (char *)"HtmlContainerCell_SetAlign", (PyCFunction
) _wrap_HtmlContainerCell_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14490          { (char *)"HtmlContainerCell_SetWidthFloat", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14491          { (char *)"HtmlContainerCell_SetWidthFloatFromTag", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloatFromTag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14492          { (char *)"HtmlContainerCell_SetMinHeight", (PyCFunction
) _wrap_HtmlContainerCell_SetMinHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14493          { (char *)"HtmlContainerCell_SetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_SetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14494          { (char *)"HtmlContainerCell_GetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_GetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14495          { (char *)"HtmlContainerCell_SetBorder", (PyCFunction
) _wrap_HtmlContainerCell_SetBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14496          { (char *)"HtmlContainerCell_GetFirstChild", (PyCFunction
) _wrap_HtmlContainerCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14497          { (char *)"HtmlContainerCell_swigregister", HtmlContainerCell_swigregister
, METH_VARARGS
, NULL
}, 
14498          { (char *)"new_HtmlColourCell", (PyCFunction
) _wrap_new_HtmlColourCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14499          { (char *)"HtmlColourCell_swigregister", HtmlColourCell_swigregister
, METH_VARARGS
, NULL
}, 
14500          { (char *)"new_HtmlFontCell", (PyCFunction
) _wrap_new_HtmlFontCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14501          { (char *)"HtmlFontCell_swigregister", HtmlFontCell_swigregister
, METH_VARARGS
, NULL
}, 
14502          { (char *)"new_HtmlWidgetCell", (PyCFunction
) _wrap_new_HtmlWidgetCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14503          { (char *)"HtmlWidgetCell_swigregister", HtmlWidgetCell_swigregister
, METH_VARARGS
, NULL
}, 
14504          { (char *)"new_HtmlFilter", (PyCFunction
) _wrap_new_HtmlFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14505          { (char *)"HtmlFilter__setCallbackInfo", (PyCFunction
) _wrap_HtmlFilter__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14506          { (char *)"HtmlFilter_swigregister", HtmlFilter_swigregister
, METH_VARARGS
, NULL
}, 
14507          { (char *)"new_HtmlWindow", (PyCFunction
) _wrap_new_HtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14508          { (char *)"new_PreHtmlWindow", (PyCFunction
) _wrap_new_PreHtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14509          { (char *)"HtmlWindow_Create", (PyCFunction
) _wrap_HtmlWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14510          { (char *)"HtmlWindow__setCallbackInfo", (PyCFunction
) _wrap_HtmlWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14511          { (char *)"HtmlWindow_SetPage", (PyCFunction
) _wrap_HtmlWindow_SetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14512          { (char *)"HtmlWindow_LoadPage", (PyCFunction
) _wrap_HtmlWindow_LoadPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14513          { (char *)"HtmlWindow_LoadFile", (PyCFunction
) _wrap_HtmlWindow_LoadFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14514          { (char *)"HtmlWindow_AppendToPage", (PyCFunction
) _wrap_HtmlWindow_AppendToPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14515          { (char *)"HtmlWindow_GetOpenedPage", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14516          { (char *)"HtmlWindow_GetOpenedAnchor", (PyCFunction
) _wrap_HtmlWindow_GetOpenedAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14517          { (char *)"HtmlWindow_GetOpenedPageTitle", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPageTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14518          { (char *)"HtmlWindow_SetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_SetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14519          { (char *)"HtmlWindow_GetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_GetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14520          { (char *)"HtmlWindow_SetRelatedStatusBar", (PyCFunction
) _wrap_HtmlWindow_SetRelatedStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14521          { (char *)"HtmlWindow_SetFonts", (PyCFunction
) _wrap_HtmlWindow_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14522          { (char *)"HtmlWindow_SetStandardFonts", (PyCFunction
) _wrap_HtmlWindow_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14523          { (char *)"HtmlWindow_SetLabel", (PyCFunction
) _wrap_HtmlWindow_SetLabel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14524          { (char *)"HtmlWindow_SetBorders", (PyCFunction
) _wrap_HtmlWindow_SetBorders
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14525          { (char *)"HtmlWindow_SetBackgroundImage", (PyCFunction
) _wrap_HtmlWindow_SetBackgroundImage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14526          { (char *)"HtmlWindow_ReadCustomization", (PyCFunction
) _wrap_HtmlWindow_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14527          { (char *)"HtmlWindow_WriteCustomization", (PyCFunction
) _wrap_HtmlWindow_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14528          { (char *)"HtmlWindow_HistoryBack", (PyCFunction
) _wrap_HtmlWindow_HistoryBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14529          { (char *)"HtmlWindow_HistoryForward", (PyCFunction
) _wrap_HtmlWindow_HistoryForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14530          { (char *)"HtmlWindow_HistoryCanBack", (PyCFunction
) _wrap_HtmlWindow_HistoryCanBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14531          { (char *)"HtmlWindow_HistoryCanForward", (PyCFunction
) _wrap_HtmlWindow_HistoryCanForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14532          { (char *)"HtmlWindow_HistoryClear", (PyCFunction
) _wrap_HtmlWindow_HistoryClear
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14533          { (char *)"HtmlWindow_GetInternalRepresentation", (PyCFunction
) _wrap_HtmlWindow_GetInternalRepresentation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14534          { (char *)"HtmlWindow_GetParser", (PyCFunction
) _wrap_HtmlWindow_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14535          { (char *)"HtmlWindow_ScrollToAnchor", (PyCFunction
) _wrap_HtmlWindow_ScrollToAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14536          { (char *)"HtmlWindow_HasAnchor", (PyCFunction
) _wrap_HtmlWindow_HasAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14537          { (char *)"HtmlWindow_AddFilter", (PyCFunction
) _wrap_HtmlWindow_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14538          { (char *)"HtmlWindow_SelectWord", (PyCFunction
) _wrap_HtmlWindow_SelectWord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14539          { (char *)"HtmlWindow_SelectLine", (PyCFunction
) _wrap_HtmlWindow_SelectLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14540          { (char *)"HtmlWindow_SelectAll", (PyCFunction
) _wrap_HtmlWindow_SelectAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14541          { (char *)"HtmlWindow_SelectionToText", (PyCFunction
) _wrap_HtmlWindow_SelectionToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14542          { (char *)"HtmlWindow_ToText", (PyCFunction
) _wrap_HtmlWindow_ToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14543          { (char *)"HtmlWindow_base_OnLinkClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnLinkClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14544          { (char *)"HtmlWindow_base_OnSetTitle", (PyCFunction
) _wrap_HtmlWindow_base_OnSetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14545          { (char *)"HtmlWindow_base_OnCellMouseHover", (PyCFunction
) _wrap_HtmlWindow_base_OnCellMouseHover
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14546          { (char *)"HtmlWindow_base_OnCellClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnCellClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14547          { (char *)"HtmlWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_HtmlWindow_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14548          { (char *)"HtmlWindow_swigregister", HtmlWindow_swigregister
, METH_VARARGS
, NULL
}, 
14549          { (char *)"new_HtmlDCRenderer", (PyCFunction
) _wrap_new_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14550          { (char *)"delete_HtmlDCRenderer", (PyCFunction
) _wrap_delete_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14551          { (char *)"HtmlDCRenderer_SetDC", (PyCFunction
) _wrap_HtmlDCRenderer_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14552          { (char *)"HtmlDCRenderer_SetSize", (PyCFunction
) _wrap_HtmlDCRenderer_SetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14553          { (char *)"HtmlDCRenderer_SetHtmlText", (PyCFunction
) _wrap_HtmlDCRenderer_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14554          { (char *)"HtmlDCRenderer_SetFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14555          { (char *)"HtmlDCRenderer_SetStandardFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14556          { (char *)"HtmlDCRenderer_Render", (PyCFunction
) _wrap_HtmlDCRenderer_Render
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14557          { (char *)"HtmlDCRenderer_GetTotalHeight", (PyCFunction
) _wrap_HtmlDCRenderer_GetTotalHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14558          { (char *)"HtmlDCRenderer_swigregister", HtmlDCRenderer_swigregister
, METH_VARARGS
, NULL
}, 
14559          { (char *)"new_HtmlPrintout", (PyCFunction
) _wrap_new_HtmlPrintout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14560          { (char *)"HtmlPrintout_SetHtmlText", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14561          { (char *)"HtmlPrintout_SetHtmlFile", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14562          { (char *)"HtmlPrintout_SetHeader", (PyCFunction
) _wrap_HtmlPrintout_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14563          { (char *)"HtmlPrintout_SetFooter", (PyCFunction
) _wrap_HtmlPrintout_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14564          { (char *)"HtmlPrintout_SetFonts", (PyCFunction
) _wrap_HtmlPrintout_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14565          { (char *)"HtmlPrintout_SetStandardFonts", (PyCFunction
) _wrap_HtmlPrintout_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14566          { (char *)"HtmlPrintout_SetMargins", (PyCFunction
) _wrap_HtmlPrintout_SetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14567          { (char *)"HtmlPrintout_AddFilter", (PyCFunction
) _wrap_HtmlPrintout_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14568          { (char *)"HtmlPrintout_CleanUpStatics", (PyCFunction
) _wrap_HtmlPrintout_CleanUpStatics
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14569          { (char *)"HtmlPrintout_swigregister", HtmlPrintout_swigregister
, METH_VARARGS
, NULL
}, 
14570          { (char *)"new_HtmlEasyPrinting", (PyCFunction
) _wrap_new_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14571          { (char *)"delete_HtmlEasyPrinting", (PyCFunction
) _wrap_delete_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14572          { (char *)"HtmlEasyPrinting_PreviewFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14573          { (char *)"HtmlEasyPrinting_PreviewText", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14574          { (char *)"HtmlEasyPrinting_PrintFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14575          { (char *)"HtmlEasyPrinting_PrintText", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14576          { (char *)"HtmlEasyPrinting_PageSetup", (PyCFunction
) _wrap_HtmlEasyPrinting_PageSetup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14577          { (char *)"HtmlEasyPrinting_SetHeader", (PyCFunction
) _wrap_HtmlEasyPrinting_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14578          { (char *)"HtmlEasyPrinting_SetFooter", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14579          { (char *)"HtmlEasyPrinting_SetFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14580          { (char *)"HtmlEasyPrinting_SetStandardFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14581          { (char *)"HtmlEasyPrinting_GetPrintData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14582          { (char *)"HtmlEasyPrinting_GetPageSetupData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPageSetupData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14583          { (char *)"HtmlEasyPrinting_swigregister", HtmlEasyPrinting_swigregister
, METH_VARARGS
, NULL
}, 
14584          { (char *)"new_HtmlBookRecord", (PyCFunction
) _wrap_new_HtmlBookRecord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14585          { (char *)"HtmlBookRecord_GetBookFile", (PyCFunction
) _wrap_HtmlBookRecord_GetBookFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14586          { (char *)"HtmlBookRecord_GetTitle", (PyCFunction
) _wrap_HtmlBookRecord_GetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14587          { (char *)"HtmlBookRecord_GetStart", (PyCFunction
) _wrap_HtmlBookRecord_GetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14588          { (char *)"HtmlBookRecord_GetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_GetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14589          { (char *)"HtmlBookRecord_SetContentsRange", (PyCFunction
) _wrap_HtmlBookRecord_SetContentsRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14590          { (char *)"HtmlBookRecord_GetContentsStart", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14591          { (char *)"HtmlBookRecord_GetContentsEnd", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14592          { (char *)"HtmlBookRecord_SetTitle", (PyCFunction
) _wrap_HtmlBookRecord_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14593          { (char *)"HtmlBookRecord_SetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_SetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14594          { (char *)"HtmlBookRecord_SetStart", (PyCFunction
) _wrap_HtmlBookRecord_SetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14595          { (char *)"HtmlBookRecord_GetFullPath", (PyCFunction
) _wrap_HtmlBookRecord_GetFullPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14596          { (char *)"HtmlBookRecord_swigregister", HtmlBookRecord_swigregister
, METH_VARARGS
, NULL
}, 
14597          { (char *)"HtmlSearchStatus_Search", (PyCFunction
) _wrap_HtmlSearchStatus_Search
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14598          { (char *)"HtmlSearchStatus_IsActive", (PyCFunction
) _wrap_HtmlSearchStatus_IsActive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14599          { (char *)"HtmlSearchStatus_GetCurIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetCurIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14600          { (char *)"HtmlSearchStatus_GetMaxIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetMaxIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14601          { (char *)"HtmlSearchStatus_GetName", (PyCFunction
) _wrap_HtmlSearchStatus_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14602          { (char *)"HtmlSearchStatus_swigregister", HtmlSearchStatus_swigregister
, METH_VARARGS
, NULL
}, 
14603          { (char *)"new_HtmlHelpData", (PyCFunction
) _wrap_new_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14604          { (char *)"delete_HtmlHelpData", (PyCFunction
) _wrap_delete_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14605          { (char *)"HtmlHelpData_SetTempDir", (PyCFunction
) _wrap_HtmlHelpData_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14606          { (char *)"HtmlHelpData_AddBook", (PyCFunction
) _wrap_HtmlHelpData_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14607          { (char *)"HtmlHelpData_FindPageByName", (PyCFunction
) _wrap_HtmlHelpData_FindPageByName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14608          { (char *)"HtmlHelpData_FindPageById", (PyCFunction
) _wrap_HtmlHelpData_FindPageById
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14609          { (char *)"HtmlHelpData_GetBookRecArray", (PyCFunction
) _wrap_HtmlHelpData_GetBookRecArray
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14610          { (char *)"HtmlHelpData_swigregister", HtmlHelpData_swigregister
, METH_VARARGS
, NULL
}, 
14611          { (char *)"new_HtmlHelpWindow", (PyCFunction
) _wrap_new_HtmlHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14612          { (char *)"new_PreHtmlHelpWindow", (PyCFunction
) _wrap_new_PreHtmlHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14613          { (char *)"HtmlHelpWindow_Create", (PyCFunction
) _wrap_HtmlHelpWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14614          { (char *)"HtmlHelpWindow_GetData", (PyCFunction
) _wrap_HtmlHelpWindow_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14615          { (char *)"HtmlHelpWindow_GetController", (PyCFunction
) _wrap_HtmlHelpWindow_GetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14616          { (char *)"HtmlHelpWindow_SetController", (PyCFunction
) _wrap_HtmlHelpWindow_SetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14617          { (char *)"HtmlHelpWindow_Display", (PyCFunction
) _wrap_HtmlHelpWindow_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14618          { (char *)"HtmlHelpWindow_DisplayID", (PyCFunction
) _wrap_HtmlHelpWindow_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14619          { (char *)"HtmlHelpWindow_DisplayContents", (PyCFunction
) _wrap_HtmlHelpWindow_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14620          { (char *)"HtmlHelpWindow_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpWindow_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14621          { (char *)"HtmlHelpWindow_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpWindow_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14622          { (char *)"HtmlHelpWindow_UseConfig", (PyCFunction
) _wrap_HtmlHelpWindow_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14623          { (char *)"HtmlHelpWindow_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpWindow_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14624          { (char *)"HtmlHelpWindow_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpWindow_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14625          { (char *)"HtmlHelpWindow_NotifyPageChanged", (PyCFunction
) _wrap_HtmlHelpWindow_NotifyPageChanged
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14626          { (char *)"HtmlHelpWindow_RefreshLists", (PyCFunction
) _wrap_HtmlHelpWindow_RefreshLists
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14627          { (char *)"HtmlHelpWindow_GetHtmlWindow", (PyCFunction
) _wrap_HtmlHelpWindow_GetHtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14628          { (char *)"HtmlHelpWindow_GetSplitterWindow", (PyCFunction
) _wrap_HtmlHelpWindow_GetSplitterWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14629          { (char *)"HtmlHelpWindow_GetToolBar", (PyCFunction
) _wrap_HtmlHelpWindow_GetToolBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14630          { (char *)"HtmlHelpWindow_GetCfgData", (PyCFunction
) _wrap_HtmlHelpWindow_GetCfgData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14631          { (char *)"HtmlHelpWindow_GetTreeCtrl", (PyCFunction
) _wrap_HtmlHelpWindow_GetTreeCtrl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14632          { (char *)"HtmlHelpWindow_swigregister", HtmlHelpWindow_swigregister
, METH_VARARGS
, NULL
}, 
14633          { (char *)"new_HtmlWindowEvent", (PyCFunction
) _wrap_new_HtmlWindowEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14634          { (char *)"HtmlWindowEvent_SetURL", (PyCFunction
) _wrap_HtmlWindowEvent_SetURL
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14635          { (char *)"HtmlWindowEvent_GetURL", (PyCFunction
) _wrap_HtmlWindowEvent_GetURL
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14636          { (char *)"HtmlWindowEvent_swigregister", HtmlWindowEvent_swigregister
, METH_VARARGS
, NULL
}, 
14637          { (char *)"new_HtmlHelpFrame", (PyCFunction
) _wrap_new_HtmlHelpFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14638          { (char *)"new_PreHtmlHelpFrame", (PyCFunction
) _wrap_new_PreHtmlHelpFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14639          { (char *)"HtmlHelpFrame_Create", (PyCFunction
) _wrap_HtmlHelpFrame_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14640          { (char *)"HtmlHelpFrame_GetData", (PyCFunction
) _wrap_HtmlHelpFrame_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14641          { (char *)"HtmlHelpFrame_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpFrame_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14642          { (char *)"HtmlHelpFrame_AddGrabIfNeeded", (PyCFunction
) _wrap_HtmlHelpFrame_AddGrabIfNeeded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14643          { (char *)"HtmlHelpFrame_GetController", (PyCFunction
) _wrap_HtmlHelpFrame_GetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14644          { (char *)"HtmlHelpFrame_SetController", (PyCFunction
) _wrap_HtmlHelpFrame_SetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14645          { (char *)"HtmlHelpFrame_GetHelpWindow", (PyCFunction
) _wrap_HtmlHelpFrame_GetHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14646          { (char *)"HtmlHelpFrame_swigregister", HtmlHelpFrame_swigregister
, METH_VARARGS
, NULL
}, 
14647          { (char *)"new_HtmlHelpDialog", (PyCFunction
) _wrap_new_HtmlHelpDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14648          { (char *)"new_PreHtmlHelpDialog", (PyCFunction
) _wrap_new_PreHtmlHelpDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14649          { (char *)"HtmlHelpDialog_Create", (PyCFunction
) _wrap_HtmlHelpDialog_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14650          { (char *)"HtmlHelpDialog_GetData", (PyCFunction
) _wrap_HtmlHelpDialog_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14651          { (char *)"HtmlHelpDialog_GetController", (PyCFunction
) _wrap_HtmlHelpDialog_GetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14652          { (char *)"HtmlHelpDialog_SetController", (PyCFunction
) _wrap_HtmlHelpDialog_SetController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14653          { (char *)"HtmlHelpDialog_GetHelpWindow", (PyCFunction
) _wrap_HtmlHelpDialog_GetHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14654          { (char *)"HtmlHelpDialog_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpDialog_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14655          { (char *)"HtmlHelpDialog_swigregister", HtmlHelpDialog_swigregister
, METH_VARARGS
, NULL
}, 
14656          { (char *)"HelpControllerBase_Initialize", _wrap_HelpControllerBase_Initialize
, METH_VARARGS
, NULL
}, 
14657          { (char *)"HelpControllerBase_SetViewer", (PyCFunction
) _wrap_HelpControllerBase_SetViewer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14658          { (char *)"HelpControllerBase_LoadFile", (PyCFunction
) _wrap_HelpControllerBase_LoadFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14659          { (char *)"HelpControllerBase_DisplayContents", (PyCFunction
) _wrap_HelpControllerBase_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14660          { (char *)"HelpControllerBase_DisplayContextPopup", (PyCFunction
) _wrap_HelpControllerBase_DisplayContextPopup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14661          { (char *)"HelpControllerBase_DisplayTextPopup", (PyCFunction
) _wrap_HelpControllerBase_DisplayTextPopup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14662          { (char *)"HelpControllerBase_DisplaySection", _wrap_HelpControllerBase_DisplaySection
, METH_VARARGS
, NULL
}, 
14663          { (char *)"HelpControllerBase_DisplayBlock", (PyCFunction
) _wrap_HelpControllerBase_DisplayBlock
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14664          { (char *)"HelpControllerBase_KeywordSearch", (PyCFunction
) _wrap_HelpControllerBase_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14665          { (char *)"HelpControllerBase_SetFrameParameters", (PyCFunction
) _wrap_HelpControllerBase_SetFrameParameters
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14666          { (char *)"HelpControllerBase_GetFrameParameters", (PyCFunction
) _wrap_HelpControllerBase_GetFrameParameters
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14667          { (char *)"HelpControllerBase_Quit", (PyCFunction
) _wrap_HelpControllerBase_Quit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14668          { (char *)"HelpControllerBase_OnQuit", (PyCFunction
) _wrap_HelpControllerBase_OnQuit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14669          { (char *)"HelpControllerBase_SetParentWindow", (PyCFunction
) _wrap_HelpControllerBase_SetParentWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14670          { (char *)"HelpControllerBase_GetParentWindow", (PyCFunction
) _wrap_HelpControllerBase_GetParentWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14671          { (char *)"HelpControllerBase_swigregister", HelpControllerBase_swigregister
, METH_VARARGS
, NULL
}, 
14672          { (char *)"new_HtmlHelpController", (PyCFunction
) _wrap_new_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14673          { (char *)"delete_HtmlHelpController", (PyCFunction
) _wrap_delete_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14674          { (char *)"HtmlHelpController_GetHelpWindow", (PyCFunction
) _wrap_HtmlHelpController_GetHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14675          { (char *)"HtmlHelpController_SetHelpWindow", (PyCFunction
) _wrap_HtmlHelpController_SetHelpWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14676          { (char *)"HtmlHelpController_GetFrame", (PyCFunction
) _wrap_HtmlHelpController_GetFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14677          { (char *)"HtmlHelpController_GetDialog", (PyCFunction
) _wrap_HtmlHelpController_GetDialog
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14678          { (char *)"HtmlHelpController_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpController_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14679          { (char *)"HtmlHelpController_SetTempDir", (PyCFunction
) _wrap_HtmlHelpController_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14680          { (char *)"HtmlHelpController_AddBook", (PyCFunction
) _wrap_HtmlHelpController_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14681          { (char *)"HtmlHelpController_Display", (PyCFunction
) _wrap_HtmlHelpController_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14682          { (char *)"HtmlHelpController_DisplayID", (PyCFunction
) _wrap_HtmlHelpController_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14683          { (char *)"HtmlHelpController_DisplayContents", (PyCFunction
) _wrap_HtmlHelpController_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14684          { (char *)"HtmlHelpController_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpController_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14685          { (char *)"HtmlHelpController_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpController_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14686          { (char *)"HtmlHelpController_UseConfig", (PyCFunction
) _wrap_HtmlHelpController_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14687          { (char *)"HtmlHelpController_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpController_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14688          { (char *)"HtmlHelpController_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpController_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14689          { (char *)"HtmlHelpController_MakeModalIfNeeded", (PyCFunction
) _wrap_HtmlHelpController_MakeModalIfNeeded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14690          { (char *)"HtmlHelpController_FindTopLevelWindow", (PyCFunction
) _wrap_HtmlHelpController_FindTopLevelWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14691          { (char *)"HtmlHelpController_swigregister", HtmlHelpController_swigregister
, METH_VARARGS
, NULL
}, 
14692          { (char *)"new_HtmlModalHelp", (PyCFunction
) _wrap_new_HtmlModalHelp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
14693          { (char *)"HtmlModalHelp_swigregister", HtmlModalHelp_swigregister
, METH_VARARGS
, NULL
}, 
14694          { NULL
, NULL
, 0, NULL 
} 
14698 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
14700 static void *_p_wxDefaultHtmlRenderingStyleTo_p_wxHtmlRenderingStyle(void *x
) { 
14701     return (void *)((wxHtmlRenderingStyle 
*)  ((wxDefaultHtmlRenderingStyle 
*) x
)); 
14703 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) { 
14704     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
14706 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) { 
14707     return (void *)((wxEvent 
*)  ((wxMenuEvent 
*) x
)); 
14709 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) { 
14710     return (void *)((wxEvent 
*)  ((wxCloseEvent 
*) x
)); 
14712 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) { 
14713     return (void *)((wxEvent 
*)  ((wxMouseEvent 
*) x
)); 
14715 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) { 
14716     return (void *)((wxEvent 
*)  ((wxEraseEvent 
*) x
)); 
14718 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) { 
14719     return (void *)((wxEvent 
*)  ((wxSetCursorEvent 
*) x
)); 
14721 static void *_p_wxSplitterEventTo_p_wxEvent(void *x
) { 
14722     return (void *)((wxEvent 
*) (wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
14724 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) { 
14725     return (void *)((wxEvent 
*)  ((wxInitDialogEvent 
*) x
)); 
14727 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) { 
14728     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
14730 static void *_p_wxFindDialogEventTo_p_wxEvent(void *x
) { 
14731     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
14733 static void *_p_wxPyEventTo_p_wxEvent(void *x
) { 
14734     return (void *)((wxEvent 
*)  ((wxPyEvent 
*) x
)); 
14736 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) { 
14737     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
14739 static void *_p_wxCalculateLayoutEventTo_p_wxEvent(void *x
) { 
14740     return (void *)((wxEvent 
*)  ((wxCalculateLayoutEvent 
*) x
)); 
14742 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) { 
14743     return (void *)((wxEvent 
*)  ((wxIdleEvent 
*) x
)); 
14745 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) { 
14746     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
14748 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) { 
14749     return (void *)((wxEvent 
*)  ((wxQueryNewPaletteEvent 
*) x
)); 
14751 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) { 
14752     return (void *)((wxEvent 
*)  ((wxMaximizeEvent 
*) x
)); 
14754 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) { 
14755     return (void *)((wxEvent 
*)  ((wxIconizeEvent 
*) x
)); 
14757 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) { 
14758     return (void *)((wxEvent 
*)  ((wxActivateEvent 
*) x
)); 
14760 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) { 
14761     return (void *)((wxEvent 
*)  ((wxSizeEvent 
*) x
)); 
14763 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) { 
14764     return (void *)((wxEvent 
*)  ((wxMoveEvent 
*) x
)); 
14766 static void *_p_wxDateEventTo_p_wxEvent(void *x
) { 
14767     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
14769 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) { 
14770     return (void *)((wxEvent 
*)  ((wxPaintEvent 
*) x
)); 
14772 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) { 
14773     return (void *)((wxEvent 
*)  ((wxNcPaintEvent 
*) x
)); 
14775 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) { 
14776     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
14778 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) { 
14779     return (void *)((wxEvent 
*)  ((wxPaletteChangedEvent 
*) x
)); 
14781 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) { 
14782     return (void *)((wxEvent 
*)  ((wxDisplayChangedEvent 
*) x
)); 
14784 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) { 
14785     return (void *)((wxEvent 
*)  ((wxMouseCaptureChangedEvent 
*) x
)); 
14787 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) { 
14788     return (void *)((wxEvent 
*)  ((wxSysColourChangedEvent 
*) x
)); 
14790 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) { 
14791     return (void *)((wxEvent 
*)  ((wxDropFilesEvent 
*) x
)); 
14793 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) { 
14794     return (void *)((wxEvent 
*)  ((wxFocusEvent 
*) x
)); 
14796 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) { 
14797     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
14799 static void *_p_wxSashEventTo_p_wxEvent(void *x
) { 
14800     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
14802 static void *_p_wxQueryLayoutInfoEventTo_p_wxEvent(void *x
) { 
14803     return (void *)((wxEvent 
*)  ((wxQueryLayoutInfoEvent 
*) x
)); 
14805 static void *_p_wxShowEventTo_p_wxEvent(void *x
) { 
14806     return (void *)((wxEvent 
*)  ((wxShowEvent 
*) x
)); 
14808 static void *_p_wxHtmlWindowEventTo_p_wxEvent(void *x
) { 
14809     return (void *)((wxEvent 
*) (wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxHtmlWindowEvent 
*) x
)); 
14811 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) { 
14812     return (void *)((wxEvent 
*)  ((wxCommandEvent 
*) x
)); 
14814 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) { 
14815     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
14817 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) { 
14818     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
14820 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) { 
14821     return (void *)((wxEvent 
*)  ((wxNavigationKeyEvent 
*) x
)); 
14823 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) { 
14824     return (void *)((wxEvent 
*)  ((wxKeyEvent 
*) x
)); 
14826 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) { 
14827     return (void *)((wxEvent 
*)  ((wxScrollWinEvent 
*) x
)); 
14829 static void *_p_wxTaskBarIconEventTo_p_wxEvent(void *x
) { 
14830     return (void *)((wxEvent 
*)  ((wxTaskBarIconEvent 
*) x
)); 
14832 static void *_p_wxHtmlContainerCellTo_p_wxHtmlCell(void *x
) { 
14833     return (void *)((wxHtmlCell 
*)  ((wxHtmlContainerCell 
*) x
)); 
14835 static void *_p_wxHtmlWidgetCellTo_p_wxHtmlCell(void *x
) { 
14836     return (void *)((wxHtmlCell 
*)  ((wxHtmlWidgetCell 
*) x
)); 
14838 static void *_p_wxHtmlColourCellTo_p_wxHtmlCell(void *x
) { 
14839     return (void *)((wxHtmlCell 
*)  ((wxHtmlColourCell 
*) x
)); 
14841 static void *_p_wxHtmlWordCellTo_p_wxHtmlCell(void *x
) { 
14842     return (void *)((wxHtmlCell 
*)  ((wxHtmlWordCell 
*) x
)); 
14844 static void *_p_wxHtmlFontCellTo_p_wxHtmlCell(void *x
) { 
14845     return (void *)((wxHtmlCell 
*)  ((wxHtmlFontCell 
*) x
)); 
14847 static void *_p_wxHtmlWindowEventTo_p_wxNotifyEvent(void *x
) { 
14848     return (void *)((wxNotifyEvent 
*)  ((wxHtmlWindowEvent 
*) x
)); 
14850 static void *_p_wxSplitterEventTo_p_wxNotifyEvent(void *x
) { 
14851     return (void *)((wxNotifyEvent 
*)  ((wxSplitterEvent 
*) x
)); 
14853 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) { 
14854     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
14856 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) { 
14857     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
14859 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) { 
14860     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
14862 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
14863     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
14865 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
14866     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
14868 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
14869     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
14871 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
14872     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
14874 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) { 
14875     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
14877 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) { 
14878     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
14880 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) { 
14881     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
14883 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) { 
14884     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
14886 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) { 
14887     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
14889 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) { 
14890     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
14892 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) { 
14893     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
14895 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) { 
14896     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
14898 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) { 
14899     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPanel 
*) x
)); 
14901 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) { 
14902     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxStatusBar 
*) x
)); 
14904 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
14905     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
14907 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) { 
14908     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
14910 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) { 
14911     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
14913 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) { 
14914     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPopupWindow 
*) x
)); 
14916 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) { 
14917     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
14919 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) { 
14920     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSashWindow 
*) x
)); 
14922 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) { 
14923     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
14925 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) { 
14926     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
14928 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
14929     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
14931 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) { 
14932     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
14934 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) { 
14935     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
14937 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
14938     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
14940 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) { 
14941     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
14943 static void *_p_wxPyHtmlWindowTo_p_wxEvtHandler(void *x
) { 
14944     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
14946 static void *_p_wxHtmlHelpWindowTo_p_wxEvtHandler(void *x
) { 
14947     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxHtmlHelpWindow 
*) x
)); 
14949 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
14950     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
14952 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) { 
14953     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
14955 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) { 
14956     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
14958 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
14959     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
14961 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
14962     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
14964 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
14965     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
14967 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) { 
14968     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPyWindow 
*) x
)); 
14970 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) { 
14971     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
14973 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
14974     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
14976 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) { 
14977     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
14979 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
14980     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
14982 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
14983     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
14985 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) { 
14986     return (void *)((wxEvtHandler 
*)  ((wxPyTaskBarIcon 
*) x
)); 
14988 static void *_p_wxHtmlHelpFrameTo_p_wxEvtHandler(void *x
) { 
14989     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
14991 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) { 
14992     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
14994 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) { 
14995     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
14997 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) { 
14998     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
15000 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) { 
15001     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
15003 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) { 
15004     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
15006 static void *_p_wxHtmlHelpDialogTo_p_wxEvtHandler(void *x
) { 
15007     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxHtmlHelpDialog 
*) x
)); 
15009 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
15010     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
15012 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxPyHtmlTagHandler(void *x
) { 
15013     return (void *)((wxPyHtmlTagHandler 
*)  ((wxPyHtmlWinTagHandler 
*) x
)); 
15015 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) { 
15016     return (void *)((wxFrame 
*)  ((wxMDIChildFrame 
*) x
)); 
15018 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) { 
15019     return (void *)((wxFrame 
*)  ((wxProgressDialog 
*) x
)); 
15021 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) { 
15022     return (void *)((wxFrame 
*)  ((wxPreviewFrame 
*) x
)); 
15024 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) { 
15025     return (void *)((wxFrame 
*) (wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
15027 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) { 
15028     return (void *)((wxFrame 
*)  ((wxMiniFrame 
*) x
)); 
15030 static void *_p_wxHtmlHelpFrameTo_p_wxFrame(void *x
) { 
15031     return (void *)((wxFrame 
*)  ((wxHtmlHelpFrame 
*) x
)); 
15033 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) { 
15034     return (void *)((wxFrame 
*)  ((wxSplashScreen 
*) x
)); 
15036 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) { 
15037     return (void *)((wxFrame 
*)  ((wxMDIParentFrame 
*) x
)); 
15039 static void *_p_wxHtmlPrintoutTo_p_wxPyPrintout(void *x
) { 
15040     return (void *)((wxPyPrintout 
*)  ((wxHtmlPrintout 
*) x
)); 
15042 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
15043     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
15045 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) { 
15046     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
15048 static void *_p_wxEventTo_p_wxObject(void *x
) { 
15049     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
15051 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) { 
15052     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
15054 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
15055     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
15057 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
15058     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
15060 static void *_p_wxHtmlFontCellTo_p_wxObject(void *x
) { 
15061     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlFontCell 
*) x
)); 
15063 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) { 
15064     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
15066 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) { 
15067     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
15069 static void *_p_wxHtmlTagTo_p_wxObject(void *x
) { 
15070     return (void *)((wxObject 
*)  ((wxHtmlTag 
*) x
)); 
15072 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
15073     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
15075 static void *_p_wxImageTo_p_wxObject(void *x
) { 
15076     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
15078 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
15079     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
15081 static void *_p_wxPyHtmlFilterTo_p_wxObject(void *x
) { 
15082     return (void *)((wxObject 
*)  ((wxPyHtmlFilter 
*) x
)); 
15084 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) { 
15085     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTaskBarIcon 
*) x
)); 
15087 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) { 
15088     return (void *)((wxObject 
*)  ((wxLayoutAlgorithm 
*) x
)); 
15090 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
15091     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
15093 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) { 
15094     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
15096 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) { 
15097     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
15099 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) { 
15100     return (void *)((wxObject 
*)  ((wxFindReplaceData 
*) x
)); 
15102 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
15103     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
15105 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
15106     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
15108 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
15109     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
15111 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
15112     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
15114 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
15115     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
15117 static void *_p_wxHtmlEasyPrintingTo_p_wxObject(void *x
) { 
15118     return (void *)((wxObject 
*)  ((wxHtmlEasyPrinting 
*) x
)); 
15120 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
15121     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
15123 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) { 
15124     return (void *)((wxObject 
*)  ((wxPrintDialogData 
*) x
)); 
15126 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) { 
15127     return (void *)((wxObject 
*)  ((wxPageSetupDialogData 
*) x
)); 
15129 static void *_p_wxPrinterTo_p_wxObject(void *x
) { 
15130     return (void *)((wxObject 
*)  ((wxPrinter 
*) x
)); 
15132 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
15133     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
15135 static void *_p_wxHtmlWinParserTo_p_wxObject(void *x
) { 
15136     return (void *)((wxObject 
*) (wxHtmlParser 
*) ((wxHtmlWinParser 
*) x
)); 
15138 static void *_p_wxHtmlParserTo_p_wxObject(void *x
) { 
15139     return (void *)((wxObject 
*)  ((wxHtmlParser 
*) x
)); 
15141 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
15142     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
15144 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
15145     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
15147 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
15148     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
15150 static void *_p_wxControlTo_p_wxObject(void *x
) { 
15151     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
15153 static void *_p_wxHtmlHelpFrameTo_p_wxObject(void *x
) { 
15154     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
15156 static void *_p_wxHtmlWidgetCellTo_p_wxObject(void *x
) { 
15157     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWidgetCell 
*) x
)); 
15159 static void *_p_wxColourDataTo_p_wxObject(void *x
) { 
15160     return (void *)((wxObject 
*)  ((wxColourData 
*) x
)); 
15162 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
15163     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
15165 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
15166     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
15168 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
15169     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
15171 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
15172     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
15174 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
15175     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
15177 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
15178     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
15180 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
15181     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
15183 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
15184     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
15186 static void *_p_wxDateEventTo_p_wxObject(void *x
) { 
15187     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
15189 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) { 
15190     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCalculateLayoutEvent 
*) x
)); 
15192 static void *_p_wxHtmlPrintoutTo_p_wxObject(void *x
) { 
15193     return (void *)((wxObject 
*) (wxPyPrintout 
*) ((wxHtmlPrintout 
*) x
)); 
15195 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) { 
15196     return (void *)((wxObject 
*)  ((wxPyPrintout 
*) x
)); 
15198 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) { 
15199     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
15201 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) { 
15202     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
15204 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
15205     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
15207 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
15208     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
15210 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
15211     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
15213 static void *_p_wxSashEventTo_p_wxObject(void *x
) { 
15214     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
15216 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) { 
15217     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
15219 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) { 
15220     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
15222 static void *_p_wxPrintDataTo_p_wxObject(void *x
) { 
15223     return (void *)((wxObject 
*)  ((wxPrintData 
*) x
)); 
15225 static void *_p_wxFontDataTo_p_wxObject(void *x
) { 
15226     return (void *)((wxObject 
*)  ((wxFontData 
*) x
)); 
15228 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) { 
15229     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
15231 static void *_p_wxFrameTo_p_wxObject(void *x
) { 
15232     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
15234 static void *_p_wxPyPanelTo_p_wxObject(void *x
) { 
15235     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
15237 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) { 
15238     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryLayoutInfoEvent 
*) x
)); 
15240 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) { 
15241     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
15243 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
15244     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
15246 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) { 
15247     return (void *)((wxObject 
*) (wxPrintPreview 
*) ((wxPyPrintPreview 
*) x
)); 
15249 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) { 
15250     return (void *)((wxObject 
*)  ((wxPrintPreview 
*) x
)); 
15252 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
15253     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
15255 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
15256     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
15258 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
15259     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
15261 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
15262     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
15264 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
15265     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
15267 static void *_p_wxHtmlContainerCellTo_p_wxObject(void *x
) { 
15268     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlContainerCell 
*) x
)); 
15270 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
15271     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
15273 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
15274     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
15276 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
15277     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
15279 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) { 
15280     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
15282 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
15283     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
15285 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
15286     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
15288 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
15289     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
15291 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
15292     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
15294 static void *_p_wxHtmlHelpDialogTo_p_wxObject(void *x
) { 
15295     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxHtmlHelpDialog 
*) x
)); 
15297 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) { 
15298     return (void *)((wxObject 
*)  ((wxPrintDialog 
*) x
)); 
15300 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) { 
15301     return (void *)((wxObject 
*)  ((wxPageSetupDialog 
*) x
)); 
15303 static void *_p_wxFontDialogTo_p_wxObject(void *x
) { 
15304     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
15306 static void *_p_wxDirDialogTo_p_wxObject(void *x
) { 
15307     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
15309 static void *_p_wxColourDialogTo_p_wxObject(void *x
) { 
15310     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
15312 static void *_p_wxDialogTo_p_wxObject(void *x
) { 
15313     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
15315 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
15316     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
15318 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
15319     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
15321 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxObject(void *x
) { 
15322     return (void *)((wxObject 
*) (wxPyHtmlTagHandler 
*) ((wxPyHtmlWinTagHandler 
*) x
)); 
15324 static void *_p_wxPyHtmlTagHandlerTo_p_wxObject(void *x
) { 
15325     return (void *)((wxObject 
*)  ((wxPyHtmlTagHandler 
*) x
)); 
15327 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
15328     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
15330 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
15331     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
15333 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
15334     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
15336 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
15337     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
15339 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) { 
15340     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPyImageHandler 
*) x
)); 
15342 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
15343     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
15345 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
15346     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
15348 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
15349     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
15351 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
15352     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
15354 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
15355     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
15357 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
15358     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
15360 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
15361     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
15363 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
15364     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
15366 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
15367     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
15369 static void *_p_wxHtmlWindowEventTo_p_wxObject(void *x
) { 
15370     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxHtmlWindowEvent 
*) x
)); 
15372 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
15373     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
15375 static void *_p_wxHtmlHelpWindowTo_p_wxObject(void *x
) { 
15376     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxHtmlHelpWindow 
*) x
)); 
15378 static void *_p_wxPyHtmlWindowTo_p_wxObject(void *x
) { 
15379     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
15381 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) { 
15382     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
15384 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) { 
15385     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
15387 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) { 
15388     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
15390 static void *_p_wxTipWindowTo_p_wxObject(void *x
) { 
15391     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
15393 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) { 
15394     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
15396 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) { 
15397     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPopupWindow 
*) x
)); 
15399 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) { 
15400     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
15402 static void *_p_wxSashWindowTo_p_wxObject(void *x
) { 
15403     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSashWindow 
*) x
)); 
15405 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) { 
15406     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
15408 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) { 
15409     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
15411 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) { 
15412     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
15414 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) { 
15415     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
15417 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
15418     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
15420 static void *_p_wxHelpControllerBaseTo_p_wxObject(void *x
) { 
15421     return (void *)((wxObject 
*)  ((wxHelpControllerBase 
*) x
)); 
15423 static void *_p_wxHtmlDCRendererTo_p_wxObject(void *x
) { 
15424     return (void *)((wxObject 
*)  ((wxHtmlDCRenderer 
*) x
)); 
15426 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) { 
15427     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
15429 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) { 
15430     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
15432 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) { 
15433     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
15435 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) { 
15436     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
15438 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) { 
15439     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
15441 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) { 
15442     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
15444 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) { 
15445     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
15447 static void *_p_wxFileDialogTo_p_wxObject(void *x
) { 
15448     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
15450 static void *_p_wxHtmlLinkInfoTo_p_wxObject(void *x
) { 
15451     return (void *)((wxObject 
*)  ((wxHtmlLinkInfo 
*) x
)); 
15453 static void *_p_wxPyWindowTo_p_wxObject(void *x
) { 
15454     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPyWindow 
*) x
)); 
15456 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
15457     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
15459 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
15460     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
15462 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
15463     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
15465 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
15466     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
15468 static void *_p_wxHtmlHelpControllerTo_p_wxObject(void *x
) { 
15469     return (void *)((wxObject 
*) (wxHelpControllerBase 
*) ((wxHtmlHelpController 
*) x
)); 
15471 static void *_p_wxPanelTo_p_wxObject(void *x
) { 
15472     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPanel 
*) x
)); 
15474 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) { 
15475     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTaskBarIconEvent 
*) x
)); 
15477 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
15478     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
15480 static void *_p_wxHtmlCellTo_p_wxObject(void *x
) { 
15481     return (void *)((wxObject 
*)  ((wxHtmlCell 
*) x
)); 
15483 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
15484     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
15486 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
15487     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
15489 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
15490     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
15492 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
15493     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
15495 static void *_p_wxHtmlColourCellTo_p_wxObject(void *x
) { 
15496     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlColourCell 
*) x
)); 
15498 static void *_p_wxStatusBarTo_p_wxObject(void *x
) { 
15499     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxStatusBar 
*) x
)); 
15501 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
15502     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
15504 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
15505     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
15507 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
15508     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
15510 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) { 
15511     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
15513 static void *_p_wxHtmlWordCellTo_p_wxObject(void *x
) { 
15514     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWordCell 
*) x
)); 
15516 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
15517     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
15519 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) { 
15520     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
15522 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) { 
15523     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
15525 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) { 
15526     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyPanel 
*) x
)); 
15528 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
15529     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
15531 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) { 
15532     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
15534 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) { 
15535     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
15537 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) { 
15538     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
15540 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) { 
15541     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
15543 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) { 
15544     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
15546 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) { 
15547     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
15549 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) { 
15550     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
15552 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) { 
15553     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
15555 static void *_p_wxPanelTo_p_wxWindow(void *x
) { 
15556     return (void *)((wxWindow 
*)  ((wxPanel 
*) x
)); 
15558 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) { 
15559     return (void *)((wxWindow 
*)  ((wxStatusBar 
*) x
)); 
15561 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) { 
15562     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
15564 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) { 
15565     return (void *)((wxWindow 
*) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
15567 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) { 
15568     return (void *)((wxWindow 
*) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
15570 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) { 
15571     return (void *)((wxWindow 
*)  ((wxPopupWindow 
*) x
)); 
15573 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) { 
15574     return (void *)((wxWindow 
*) (wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
15576 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) { 
15577     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
15579 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) { 
15580     return (void *)((wxWindow 
*)  ((wxTopLevelWindow 
*) x
)); 
15582 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) { 
15583     return (void *)((wxWindow 
*)  ((wxSplashScreenWindow 
*) x
)); 
15585 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) { 
15586     return (void *)((wxWindow 
*)  ((wxSplitterWindow 
*) x
)); 
15588 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) { 
15589     return (void *)((wxWindow 
*)  ((wxSashWindow 
*) x
)); 
15591 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) { 
15592     return (void *)((wxWindow 
*)  ((wxMDIClientWindow 
*) x
)); 
15594 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) { 
15595     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
15597 static void *_p_wxPyHtmlWindowTo_p_wxWindow(void *x
) { 
15598     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
15600 static void *_p_wxHtmlHelpWindowTo_p_wxWindow(void *x
) { 
15601     return (void *)((wxWindow 
*)  ((wxHtmlHelpWindow 
*) x
)); 
15603 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
15604     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
15606 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) { 
15607     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
15609 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) { 
15610     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
15612 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) { 
15613     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
15615 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
15616     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
15618 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) { 
15619     return (void *)((wxWindow 
*)  ((wxPyWindow 
*) x
)); 
15621 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) { 
15622     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
15624 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) { 
15625     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
15627 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) { 
15628     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
15630 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) { 
15631     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
15633 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) { 
15634     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
15636 static void *_p_wxHtmlHelpFrameTo_p_wxWindow(void *x
) { 
15637     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
15639 static void *_p_wxFrameTo_p_wxWindow(void *x
) { 
15640     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
15642 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) { 
15643     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
15645 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) { 
15646     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
15648 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) { 
15649     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
15651 static void *_p_wxDialogTo_p_wxWindow(void *x
) { 
15652     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
15654 static void *_p_wxHtmlHelpDialogTo_p_wxWindow(void *x
) { 
15655     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxHtmlHelpDialog 
*) x
)); 
15657 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) { 
15658     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
15660 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) { 
15661     return (void *)((wxScrolledWindow 
*)  ((wxPyScrolledWindow 
*) x
)); 
15663 static void *_p_wxPyHtmlWindowTo_p_wxScrolledWindow(void *x
) { 
15664     return (void *)((wxScrolledWindow 
*)  ((wxPyHtmlWindow 
*) x
)); 
15666 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) { 
15667     return (void *)((wxScrolledWindow 
*)  ((wxPreviewCanvas 
*) x
)); 
15669 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) { 
15670     return (void *)((wxTopLevelWindow 
*)  ((wxFrame 
*) x
)); 
15672 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) { 
15673     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMiniFrame 
*) x
)); 
15675 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) { 
15676     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFontDialog 
*) x
)); 
15678 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) { 
15679     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxDirDialog 
*) x
)); 
15681 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) { 
15682     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxColourDialog 
*) x
)); 
15684 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) { 
15685     return (void *)((wxTopLevelWindow 
*)  ((wxDialog 
*) x
)); 
15687 static void *_p_wxHtmlHelpDialogTo_p_wxTopLevelWindow(void *x
) { 
15688     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxHtmlHelpDialog 
*) x
)); 
15690 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) { 
15691     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxSplashScreen 
*) x
)); 
15693 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
15694     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
15696 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) { 
15697     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
15699 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) { 
15700     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxProgressDialog 
*) x
)); 
15702 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) { 
15703     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMessageDialog 
*) x
)); 
15705 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
15706     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
15708 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
15709     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
15711 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
15712     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
15714 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
15715     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
15717 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) { 
15718     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFileDialog 
*) x
)); 
15720 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) { 
15721     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
15723 static void *_p_wxHtmlHelpFrameTo_p_wxTopLevelWindow(void *x
) { 
15724     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
15726 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
15727     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
15729 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
15730     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
15732 static void *_p_wxColourDialogTo_p_wxDialog(void *x
) { 
15733     return (void *)((wxDialog 
*)  ((wxColourDialog 
*) x
)); 
15735 static void *_p_wxDirDialogTo_p_wxDialog(void *x
) { 
15736     return (void *)((wxDialog 
*)  ((wxDirDialog 
*) x
)); 
15738 static void *_p_wxFontDialogTo_p_wxDialog(void *x
) { 
15739     return (void *)((wxDialog 
*)  ((wxFontDialog 
*) x
)); 
15741 static void *_p_wxHtmlHelpDialogTo_p_wxDialog(void *x
) { 
15742     return (void *)((wxDialog 
*)  ((wxHtmlHelpDialog 
*) x
)); 
15744 static void *_p_wxFileDialogTo_p_wxDialog(void *x
) { 
15745     return (void *)((wxDialog 
*)  ((wxFileDialog 
*) x
)); 
15747 static void *_p_wxMultiChoiceDialogTo_p_wxDialog(void *x
) { 
15748     return (void *)((wxDialog 
*)  ((wxMultiChoiceDialog 
*) x
)); 
15750 static void *_p_wxSingleChoiceDialogTo_p_wxDialog(void *x
) { 
15751     return (void *)((wxDialog 
*)  ((wxSingleChoiceDialog 
*) x
)); 
15753 static void *_p_wxTextEntryDialogTo_p_wxDialog(void *x
) { 
15754     return (void *)((wxDialog 
*)  ((wxTextEntryDialog 
*) x
)); 
15756 static void *_p_wxPasswordEntryDialogTo_p_wxDialog(void *x
) { 
15757     return (void *)((wxDialog 
*) (wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
15759 static void *_p_wxMessageDialogTo_p_wxDialog(void *x
) { 
15760     return (void *)((wxDialog 
*)  ((wxMessageDialog 
*) x
)); 
15762 static void *_p_wxFindReplaceDialogTo_p_wxDialog(void *x
) { 
15763     return (void *)((wxDialog 
*)  ((wxFindReplaceDialog 
*) x
)); 
15765 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) { 
15766     return (void *)((wxPanel 
*)  ((wxScrolledWindow 
*) x
)); 
15768 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) { 
15769     return (void *)((wxPanel 
*)  ((wxPyVScrolledWindow 
*) x
)); 
15771 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) { 
15772     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
15774 static void *_p_wxPyHtmlWindowTo_p_wxPanel(void *x
) { 
15775     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
15777 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) { 
15778     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
15780 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) { 
15781     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
15783 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) { 
15784     return (void *)((wxPanel 
*)  ((wxPyPanel 
*) x
)); 
15786 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) { 
15787     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
15789 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) { 
15790     return (void *)((wxPanel 
*)  ((wxPreviewControlBar 
*) x
)); 
15792 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) { 
15793     return (void *)((wxPanel 
*) (wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
15795 static void *_p_wxHtmlWinParserTo_p_wxHtmlParser(void *x
) { 
15796     return (void *)((wxHtmlParser 
*)  ((wxHtmlWinParser 
*) x
)); 
15798 static void *_p_wxHtmlHelpControllerTo_p_wxHelpControllerBase(void *x
) { 
15799     return (void *)((wxHelpControllerBase 
*)  ((wxHtmlHelpController 
*) x
)); 
15801 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) { 
15802     return (void *)((wxCommandEvent 
*)  ((wxChildFocusEvent 
*) x
)); 
15804 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) { 
15805     return (void *)((wxCommandEvent 
*)  ((wxScrollEvent 
*) x
)); 
15807 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) { 
15808     return (void *)((wxCommandEvent 
*)  ((wxWindowCreateEvent 
*) x
)); 
15810 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) { 
15811     return (void *)((wxCommandEvent 
*)  ((wxDateEvent 
*) x
)); 
15813 static void *_p_wxHtmlWindowEventTo_p_wxCommandEvent(void *x
) { 
15814     return (void *)((wxCommandEvent 
*) (wxNotifyEvent 
*) ((wxHtmlWindowEvent 
*) x
)); 
15816 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) { 
15817     return (void *)((wxCommandEvent 
*)  ((wxUpdateUIEvent 
*) x
)); 
15819 static void *_p_wxFindDialogEventTo_p_wxCommandEvent(void *x
) { 
15820     return (void *)((wxCommandEvent 
*)  ((wxFindDialogEvent 
*) x
)); 
15822 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) { 
15823     return (void *)((wxCommandEvent 
*)  ((wxWindowDestroyEvent 
*) x
)); 
15825 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) { 
15826     return (void *)((wxCommandEvent 
*)  ((wxContextMenuEvent 
*) x
)); 
15828 static void *_p_wxSplitterEventTo_p_wxCommandEvent(void *x
) { 
15829     return (void *)((wxCommandEvent 
*) (wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
15831 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) { 
15832     return (void *)((wxCommandEvent 
*)  ((wxNotifyEvent 
*) x
)); 
15834 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) { 
15835     return (void *)((wxCommandEvent 
*)  ((wxPyCommandEvent 
*) x
)); 
15837 static void *_p_wxSashEventTo_p_wxCommandEvent(void *x
) { 
15838     return (void *)((wxCommandEvent 
*)  ((wxSashEvent 
*) x
)); 
15840 static swig_type_info _swigt__p_wxHtmlSearchStatus
[] = {{"_p_wxHtmlSearchStatus", 0, "wxHtmlSearchStatus *", 0, 0, 0, 0},{"_p_wxHtmlSearchStatus", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15841 static swig_type_info _swigt__p_wxHtmlLinkInfo
[] = {{"_p_wxHtmlLinkInfo", 0, "wxHtmlLinkInfo *", 0, 0, 0, 0},{"_p_wxHtmlLinkInfo", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15842 static swig_type_info _swigt__p_wxHtmlHelpFrameCfg
[] = {{"_p_wxHtmlHelpFrameCfg", 0, "wxHtmlHelpFrameCfg *", 0, 0, 0, 0},{"_p_wxHtmlHelpFrameCfg", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15843 static swig_type_info _swigt__p_wxDefaultHtmlRenderingStyle
[] = {{"_p_wxDefaultHtmlRenderingStyle", 0, "wxDefaultHtmlRenderingStyle *", 0, 0, 0, 0},{"_p_wxDefaultHtmlRenderingStyle", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15844 static swig_type_info _swigt__p_wxHtmlRenderingStyle
[] = {{"_p_wxHtmlRenderingStyle", 0, "wxHtmlRenderingStyle *", 0, 0, 0, 0},{"_p_wxHtmlRenderingStyle", 0, 0, 0, 0, 0, 0},{"_p_wxDefaultHtmlRenderingStyle", _p_wxDefaultHtmlRenderingStyleTo_p_wxHtmlRenderingStyle
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15845 static swig_type_info _swigt__p_wxTreeCtrl
[] = {{"_p_wxTreeCtrl", 0, "wxTreeCtrl *", 0, 0, 0, 0},{"_p_wxTreeCtrl", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15846 static swig_type_info _swigt__p_wxHtmlFontCell
[] = {{"_p_wxHtmlFontCell", 0, "wxHtmlFontCell *", 0, 0, 0, 0},{"_p_wxHtmlFontCell", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15847 static swig_type_info _swigt__p_wxHtmlTag
[] = {{"_p_wxHtmlTag", 0, "wxHtmlTag *", 0, 0, 0, 0},{"_p_wxHtmlTag", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15848 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}}; 
15849 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_wxHtmlWindowEvent", _p_wxHtmlWindowEventTo_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}}; 
15850 static swig_type_info _swigt__p_wxHtmlHelpFrame
[] = {{"_p_wxHtmlHelpFrame", 0, "wxHtmlHelpFrame *", 0, 0, 0, 0},{"_p_wxHtmlHelpFrame", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15851 static swig_type_info _swigt__p_wxConfigBase
[] = {{"_p_wxConfigBase", 0, "wxConfigBase *", 0, 0, 0, 0},{"_p_wxConfigBase", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15852 static swig_type_info _swigt__p_bool
[] = {{"_p_bool", 0, "bool *", 0, 0, 0, 0},{"_p_bool", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15853 static swig_type_info _swigt__p_wxHtmlCell
[] = {{"_p_wxHtmlCell", 0, "wxHtmlCell *", 0, 0, 0, 0},{"_p_wxHtmlCell", 0, 0, 0, 0, 0, 0},{"_p_wxHtmlContainerCell", _p_wxHtmlContainerCellTo_p_wxHtmlCell
, 0, 0, 0, 0, 0},{"_p_wxHtmlWidgetCell", _p_wxHtmlWidgetCellTo_p_wxHtmlCell
, 0, 0, 0, 0, 0},{"_p_wxHtmlColourCell", _p_wxHtmlColourCellTo_p_wxHtmlCell
, 0, 0, 0, 0, 0},{"_p_wxHtmlWordCell", _p_wxHtmlWordCellTo_p_wxHtmlCell
, 0, 0, 0, 0, 0},{"_p_wxHtmlFontCell", _p_wxHtmlFontCellTo_p_wxHtmlCell
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15854 static swig_type_info _swigt__p_wxHtmlRenderingState
[] = {{"_p_wxHtmlRenderingState", 0, "wxHtmlRenderingState *", 0, 0, 0, 0},{"_p_wxHtmlRenderingState", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15855 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}}; 
15856 static swig_type_info _swigt__p_wxHtmlBookRecArray
[] = {{"_p_wxHtmlBookRecArray", 0, "wxHtmlBookRecArray *", 0, 0, 0, 0},{"_p_wxHtmlBookRecArray", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15857 static swig_type_info _swigt__p_wxHtmlWidgetCell
[] = {{"_p_wxHtmlWidgetCell", 0, "wxHtmlWidgetCell *", 0, 0, 0, 0},{"_p_wxHtmlWidgetCell", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15858 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}}; 
15859 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}}; 
15860 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}}; 
15861 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}}; 
15862 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}}; 
15863 static swig_type_info _swigt__p_wxHtmlColourCell
[] = {{"_p_wxHtmlColourCell", 0, "wxHtmlColourCell *", 0, 0, 0, 0},{"_p_wxHtmlColourCell", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15864 static swig_type_info _swigt__p_wxHtmlHelpData
[] = {{"_p_wxHtmlHelpData", 0, "wxHtmlHelpData *", 0, 0, 0, 0},{"_p_wxHtmlHelpData", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15865 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}}; 
15866 static swig_type_info _swigt__p_wxHelpSearchMode
[] = {{"_p_wxHelpSearchMode", 0, "wxHelpSearchMode *", 0, 0, 0, 0},{"_p_wxHelpSearchMode", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15867 static swig_type_info _swigt__p_wxHtmlModalHelp
[] = {{"_p_wxHtmlModalHelp", 0, "wxHtmlModalHelp *", 0, 0, 0, 0},{"_p_wxHtmlModalHelp", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15868 static swig_type_info _swigt__p_wxNotifyEvent
[] = {{"_p_wxNotifyEvent", 0, "wxNotifyEvent *", 0, 0, 0, 0},{"_p_wxHtmlWindowEvent", _p_wxHtmlWindowEventTo_p_wxNotifyEvent
, 0, 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}}; 
15869 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}}; 
15870 static swig_type_info _swigt__p_wxHtmlWindowEvent
[] = {{"_p_wxHtmlWindowEvent", 0, "wxHtmlWindowEvent *", 0, 0, 0, 0},{"_p_wxHtmlWindowEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15871 static swig_type_info _swigt__p_wxHtmlFilter
[] = {{"_p_wxHtmlFilter", 0, "wxHtmlFilter *", 0, 0, 0, 0},{"_p_wxHtmlFilter", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15872 static swig_type_info _swigt__p_wxPyHtmlFilter
[] = {{"_p_wxPyHtmlFilter", 0, "wxPyHtmlFilter *", 0, 0, 0, 0},{"_p_wxPyHtmlFilter", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15873 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}}; 
15874 static swig_type_info _swigt__p_wxPyHtmlWinTagHandler
[] = {{"_p_wxPyHtmlWinTagHandler", 0, "wxPyHtmlWinTagHandler *", 0, 0, 0, 0},{"_p_wxPyHtmlWinTagHandler", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15875 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_wxHtmlHelpWindow", _p_wxHtmlHelpWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_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_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_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_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpDialog", _p_wxHtmlHelpDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_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}}; 
15876 static swig_type_info _swigt__p_wxPyHtmlTagHandler
[] = {{"_p_wxPyHtmlTagHandler", 0, "wxPyHtmlTagHandler *", 0, 0, 0, 0},{"_p_wxPyHtmlTagHandler", 0, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWinTagHandler", _p_wxPyHtmlWinTagHandlerTo_p_wxPyHtmlTagHandler
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15877 static swig_type_info _swigt__p_wxHtmlTagHandler
[] = {{"_p_wxHtmlTagHandler", 0, "wxHtmlTagHandler *", 0, 0, 0, 0},{"_p_wxHtmlTagHandler", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15878 static swig_type_info _swigt__p_wxHtmlSelection
[] = {{"_p_wxHtmlSelection", 0, "wxHtmlSelection *", 0, 0, 0, 0},{"_p_wxHtmlSelection", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15879 static swig_type_info _swigt__p_wxHtmlRenderingInfo
[] = {{"_p_wxHtmlRenderingInfo", 0, "wxHtmlRenderingInfo *", 0, 0, 0, 0},{"_p_wxHtmlRenderingInfo", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15880 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}}; 
15881 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_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_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}}; 
15882 static swig_type_info _swigt__p_wxHtmlPrintout
[] = {{"_p_wxHtmlPrintout", 0, "wxHtmlPrintout *", 0, 0, 0, 0},{"_p_wxHtmlPrintout", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15883 static swig_type_info _swigt__p_wxPyPrintout
[] = {{"_p_wxPyPrintout", 0, "wxPyPrintout *", 0, 0, 0, 0},{"_p_wxPyPrintout", 0, 0, 0, 0, 0, 0},{"_p_wxHtmlPrintout", _p_wxHtmlPrintoutTo_p_wxPyPrintout
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15884 static swig_type_info _swigt__p_wxHtmlBookRecord
[] = {{"_p_wxHtmlBookRecord", 0, "wxHtmlBookRecord *", 0, 0, 0, 0},{"_p_wxHtmlBookRecord", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15885 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}}; 
15886 static swig_type_info _swigt__p_wxHtmlDCRenderer
[] = {{"_p_wxHtmlDCRenderer", 0, "wxHtmlDCRenderer *", 0, 0, 0, 0},{"_p_wxHtmlDCRenderer", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15887 static swig_type_info _swigt__p_wxHtmlContainerCell
[] = {{"_p_wxHtmlContainerCell", 0, "wxHtmlContainerCell *", 0, 0, 0, 0},{"_p_wxHtmlContainerCell", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15888 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}}; 
15889 static swig_type_info _swigt__p_wxCursor
[] = {{"_p_wxCursor", 0, "wxCursor *", 0, 0, 0, 0},{"_p_wxCursor", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15890 static swig_type_info _swigt__p_wxObject
[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_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_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlFontCell", _p_wxHtmlFontCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlTag", _p_wxHtmlTagTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlFilter", _p_wxPyHtmlFilterTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxLayoutAlgorithm", _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyTaskBarIcon", _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyApp", _p_wxPyAppTo_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_wxFindReplaceData", _p_wxFindReplaceDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_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_wxHtmlEasyPrinting", _p_wxHtmlEasyPrintingTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_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_wxPrinter", _p_wxPrinterTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_wxHtmlParser", _p_wxHtmlParserTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWinParser", _p_wxHtmlWinParserTo_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_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWidgetCell", _p_wxHtmlWidgetCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourData", _p_wxColourDataTo_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_wxActivateEvent", _p_wxActivateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizeEvent", _p_wxSizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDateEvent", _p_wxDateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintout", _p_wxPyPrintoutTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlPrintout", _p_wxHtmlPrintoutTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStdDialogButtonSizer", _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNavigationKeyEvent", _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxKeyEvent", _p_wxKeyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_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_wxFontData", _p_wxFontDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintData", _p_wxPrintDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_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_wxLayoutConstraints", _p_wxLayoutConstraintsTo_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_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlContainerCell", _p_wxHtmlContainerCellTo_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_wxFSFile", _p_wxFSFileTo_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_wxSizerItem", _p_wxSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpDialog", _p_wxHtmlHelpDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWinTagHandler", _p_wxPyHtmlWinTagHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlTagHandler", _p_wxPyHtmlTagHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyImageHandler", _p_wxPyImageHandlerTo_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_wxHtmlWindowEvent", _p_wxHtmlWindowEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpWindow", _p_wxHtmlHelpWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHelpControllerBase", _p_wxHelpControllerBaseTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlDCRenderer", _p_wxHtmlDCRendererTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_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_wxProgressDialog", _p_wxProgressDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlLinkInfo", _p_wxHtmlLinkInfoTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_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_wxHtmlHelpController", _p_wxHtmlHelpControllerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollWinEvent", _p_wxScrollWinEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTaskBarIconEvent", _p_wxTaskBarIconEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlCell", _p_wxHtmlCellTo_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_wxCommandEvent", _p_wxCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlColourCell", _p_wxHtmlColourCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWordCell", _p_wxHtmlWordCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxObject
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15891 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}}; 
15892 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}}; 
15893 static swig_type_info _swigt__p_wxHtmlWindow
[] = {{"_p_wxHtmlWindow", 0, "wxHtmlWindow *", 0, 0, 0, 0},{"_p_wxHtmlWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15894 static swig_type_info _swigt__p_wxHtmlHelpWindow
[] = {{"_p_wxHtmlHelpWindow", 0, "wxHtmlHelpWindow *", 0, 0, 0, 0},{"_p_wxHtmlHelpWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15895 static swig_type_info _swigt__p_wxPyHtmlWindow
[] = {{"_p_wxPyHtmlWindow", 0, "wxPyHtmlWindow *", 0, 0, 0, 0},{"_p_wxPyHtmlWindow", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15896 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_wxSashWindow", _p_wxSashWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpWindow", _p_wxHtmlHelpWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_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_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxWindow
, 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_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxWindow
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpDialog", _p_wxHtmlHelpDialogTo_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}}; 
15897 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_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_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}}; 
15898 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_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_wxHtmlHelpDialog", _p_wxHtmlHelpDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_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_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_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}}; 
15899 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}}; 
15900 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_wxHtmlHelpDialog", _p_wxHtmlHelpDialogTo_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}}; 
15901 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_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_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}}; 
15902 static swig_type_info _swigt__p_wxHtmlWinParser
[] = {{"_p_wxHtmlWinParser", 0, "wxHtmlWinParser *", 0, 0, 0, 0},{"_p_wxHtmlWinParser", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15903 static swig_type_info _swigt__p_wxHtmlParser
[] = {{"_p_wxHtmlParser", 0, "wxHtmlParser *", 0, 0, 0, 0},{"_p_wxHtmlParser", 0, 0, 0, 0, 0, 0},{"_p_wxHtmlWinParser", _p_wxHtmlWinParserTo_p_wxHtmlParser
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15904 static swig_type_info _swigt__p_wxHtmlHelpDialog
[] = {{"_p_wxHtmlHelpDialog", 0, "wxHtmlHelpDialog *", 0, 0, 0, 0},{"_p_wxHtmlHelpDialog", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15905 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}}; 
15906 static swig_type_info _swigt__p_wxHelpControllerBase
[] = {{"_p_wxHelpControllerBase", 0, "wxHelpControllerBase *", 0, 0, 0, 0},{"_p_wxHelpControllerBase", 0, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpController", _p_wxHtmlHelpControllerTo_p_wxHelpControllerBase
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15907 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}}; 
15908 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}}; 
15909 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}}; 
15910 static swig_type_info _swigt__p_wxHtmlWordCell
[] = {{"_p_wxHtmlWordCell", 0, "wxHtmlWordCell *", 0, 0, 0, 0},{"_p_wxHtmlWordCell", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15911 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}}; 
15912 static swig_type_info _swigt__p_wxMouseEvent
[] = {{"_p_wxMouseEvent", 0, "wxMouseEvent *", 0, 0, 0, 0},{"_p_wxMouseEvent", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15913 static swig_type_info _swigt__p_wxCommandEvent
[] = {{"_p_wxCommandEvent", 0, "wxCommandEvent *", 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxWindowDestroyEvent", _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", 0, 0, 0, 0, 0, 0},{"_p_wxContextMenuEvent", _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_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_wxNotifyEvent", _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxHtmlWindowEvent", _p_wxHtmlWindowEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15914 static swig_type_info _swigt__p_wxHtmlEasyPrinting
[] = {{"_p_wxHtmlEasyPrinting", 0, "wxHtmlEasyPrinting *", 0, 0, 0, 0},{"_p_wxHtmlEasyPrinting", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15915 static swig_type_info _swigt__p_wxHtmlHelpController
[] = {{"_p_wxHtmlHelpController", 0, "wxHtmlHelpController *", 0, 0, 0, 0},{"_p_wxHtmlHelpController", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
15916 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}}; 
15917 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}}; 
15919 static swig_type_info 
*swig_types_initial
[] = { 
15920 _swigt__p_wxHtmlSearchStatus
,  
15921 _swigt__p_wxHtmlLinkInfo
,  
15922 _swigt__p_wxHtmlHelpFrameCfg
,  
15923 _swigt__p_wxDefaultHtmlRenderingStyle
,  
15924 _swigt__p_wxHtmlRenderingStyle
,  
15925 _swigt__p_wxTreeCtrl
,  
15926 _swigt__p_wxHtmlFontCell
,  
15927 _swigt__p_wxHtmlTag
,  
15928 _swigt__p_wxPrintData
,  
15930 _swigt__p_wxHtmlHelpFrame
,  
15931 _swigt__p_wxConfigBase
,  
15933 _swigt__p_wxHtmlCell
,  
15934 _swigt__p_wxHtmlRenderingState
,  
15936 _swigt__p_wxHtmlBookRecArray
,  
15937 _swigt__p_wxHtmlWidgetCell
,  
15939 _swigt__std__ptrdiff_t
,  
15943 _swigt__p_wxHtmlColourCell
,  
15944 _swigt__p_wxHtmlHelpData
,  
15945 _swigt__p_wxVisualAttributes
,  
15946 _swigt__p_wxHelpSearchMode
,  
15947 _swigt__p_wxHtmlModalHelp
,  
15948 _swigt__p_wxNotifyEvent
,  
15949 _swigt__p_form_ops_t
,  
15950 _swigt__p_wxHtmlWindowEvent
,  
15951 _swigt__p_wxHtmlFilter
,  
15952 _swigt__p_wxPyHtmlFilter
,  
15953 _swigt__p_wxDuplexMode
,  
15954 _swigt__p_wxPyHtmlWinTagHandler
,  
15955 _swigt__p_wxEvtHandler
,  
15956 _swigt__p_wxPyHtmlTagHandler
,  
15957 _swigt__p_wxHtmlTagHandler
,  
15958 _swigt__p_wxHtmlSelection
,  
15959 _swigt__p_wxHtmlRenderingInfo
,  
15962 _swigt__p_wxHtmlPrintout
,  
15963 _swigt__p_wxPyPrintout
,  
15964 _swigt__p_wxHtmlBookRecord
,  
15965 _swigt__p_wxPaperSize
,  
15966 _swigt__p_wxHtmlDCRenderer
,  
15967 _swigt__p_wxHtmlContainerCell
,  
15969 _swigt__p_wxCursor
,  
15970 _swigt__p_wxObject
,  
15971 _swigt__p_unsigned_long
,  
15972 _swigt__p_wxSplitterWindow
,  
15973 _swigt__p_wxHtmlWindow
,  
15974 _swigt__p_wxHtmlHelpWindow
,  
15975 _swigt__p_wxPyHtmlWindow
,  
15976 _swigt__p_wxWindow
,  
15977 _swigt__p_wxScrolledWindow
,  
15978 _swigt__p_wxTopLevelWindow
,  
15979 _swigt__p_wxString
,  
15980 _swigt__p_wxDialog
,  
15982 _swigt__p_wxHtmlWinParser
,  
15983 _swigt__p_wxHtmlParser
,  
15984 _swigt__p_wxHtmlHelpDialog
,  
15985 _swigt__p_wxFileSystem
,  
15986 _swigt__p_wxHelpControllerBase
,  
15987 _swigt__p_wxBitmap
,  
15988 _swigt__unsigned_int
,  
15989 _swigt__p_unsigned_int
,  
15990 _swigt__p_wxHtmlWordCell
,  
15991 _swigt__p_unsigned_char
,  
15992 _swigt__p_wxMouseEvent
,  
15993 _swigt__p_wxCommandEvent
,  
15994 _swigt__p_wxHtmlEasyPrinting
,  
15995 _swigt__p_wxHtmlHelpController
,  
15996 _swigt__p_wxColour
,  
15997 _swigt__p_wxPageSetupDialogData
,  
16002 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
16004 static swig_const_info swig_const_table
[] = { 
16005 {0, 0, 0, 0.0, 0, 0}}; 
16016     /* Python-specific SWIG API */ 
16017 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
16018 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
16019 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
16021     /* ----------------------------------------------------------------------------- 
16022      * global variable support code. 
16023      * ----------------------------------------------------------------------------- */ 
16025     typedef struct swig_globalvar 
{ 
16026         char       *name
;                  /* Name of global variable */ 
16027         PyObject 
*(*get_attr
)();           /* Return the current value */ 
16028         int       (*set_attr
)(PyObject 
*); /* Set the value */ 
16029         struct swig_globalvar 
*next
; 
16032     typedef struct swig_varlinkobject 
{ 
16034         swig_globalvar 
*vars
; 
16035     } swig_varlinkobject
; 
16038     swig_varlink_repr(swig_varlinkobject 
*v
) { 
16040         return PyString_FromString("<Swig global variables>"); 
16044     swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int flags
) { 
16045         swig_globalvar  
*var
; 
16047         fprintf(fp
,"Swig global variables { "); 
16048         for (var 
= v
->vars
; var
; var
=var
->next
) { 
16049             fprintf(fp
,"%s", var
->name
); 
16050             if (var
->next
) fprintf(fp
,", "); 
16052         fprintf(fp
," }\n"); 
16057     swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
16058         swig_globalvar 
*var 
= v
->vars
; 
16060             if (strcmp(var
->name
,n
) == 0) { 
16061                 return (*var
->get_attr
)(); 
16065         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
16070     swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
16071         swig_globalvar 
*var 
= v
->vars
; 
16073             if (strcmp(var
->name
,n
) == 0) { 
16074                 return (*var
->set_attr
)(p
); 
16078         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
16082     static PyTypeObject varlinktype 
= { 
16083         PyObject_HEAD_INIT(0)               
16084         0,                                  /* Number of items in variable part (ob_size) */ 
16085         (char *)"swigvarlink",              /* Type name (tp_name) */ 
16086         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
16087         0,                                  /* Itemsize (tp_itemsize) */ 
16088         0,                                  /* Deallocator (tp_dealloc) */  
16089         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
16090         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
16091         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
16092         0,                                  /* tp_compare */ 
16093         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
16094         0,                                  /* tp_as_number */ 
16095         0,                                  /* tp_as_sequence */ 
16096         0,                                  /* tp_as_mapping */ 
16100         0,                                  /* tp_getattro */ 
16101         0,                                  /* tp_setattro */ 
16102         0,                                  /* tp_as_buffer */ 
16105 #if PY_VERSION_HEX >= 0x02000000 
16106         0,                                  /* tp_traverse */ 
16109 #if PY_VERSION_HEX >= 0x02010000 
16110         0,                                  /* tp_richcompare */ 
16111         0,                                  /* tp_weaklistoffset */ 
16113 #if PY_VERSION_HEX >= 0x02020000 
16114         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
16116 #if PY_VERSION_HEX >= 0x02030000 
16119 #ifdef COUNT_ALLOCS 
16120         0,0,0,0                             /* tp_alloc -> tp_next */ 
16124     /* Create a variable linking object for use later */ 
16126     SWIG_Python_newvarlink(void) { 
16127         swig_varlinkobject 
*result 
= 0; 
16128         result 
= PyMem_NEW(swig_varlinkobject
,1); 
16129         varlinktype
.ob_type 
= &PyType_Type
;    /* Patch varlinktype into a PyType */ 
16130         result
->ob_type 
= &varlinktype
; 
16132         result
->ob_refcnt 
= 0; 
16133         Py_XINCREF((PyObject 
*) result
); 
16134         return ((PyObject
*) result
); 
16138     SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
16139         swig_varlinkobject 
*v
; 
16140         swig_globalvar 
*gv
; 
16141         v
= (swig_varlinkobject 
*) p
; 
16142         gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
16143         gv
->name 
= (char *) malloc(strlen(name
)+1); 
16144         strcpy(gv
->name
,name
); 
16145         gv
->get_attr 
= get_attr
; 
16146         gv
->set_attr 
= set_attr
; 
16147         gv
->next 
= v
->vars
; 
16151     /* ----------------------------------------------------------------------------- 
16152      * constants/methods manipulation 
16153      * ----------------------------------------------------------------------------- */ 
16155     /* Install Constants */ 
16157     SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
16160         for (i 
= 0; constants
[i
].type
; i
++) { 
16161             switch(constants
[i
].type
) { 
16163                 obj 
= PyInt_FromLong(constants
[i
].lvalue
); 
16165                 case SWIG_PY_FLOAT
: 
16166                 obj 
= PyFloat_FromDouble(constants
[i
].dvalue
); 
16168                 case SWIG_PY_STRING
: 
16169                 if (constants
[i
].pvalue
) { 
16170                     obj 
= PyString_FromString((char *) constants
[i
].pvalue
); 
16172                     Py_INCREF(Py_None
); 
16176                 case SWIG_PY_POINTER
: 
16177                 obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
16179                 case SWIG_PY_BINARY
: 
16180                 obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
16187                 PyDict_SetItemString(d
,constants
[i
].name
,obj
); 
16193     /* -----------------------------------------------------------------------------*/ 
16194     /* Fix SwigMethods to carry the callback ptrs when needed */ 
16195     /* -----------------------------------------------------------------------------*/ 
16198     SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
16199     swig_const_info 
*const_table
, 
16200     swig_type_info 
**types
, 
16201     swig_type_info 
**types_initial
) { 
16203         for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
16204             char *c 
= methods
[i
].ml_doc
; 
16205             if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
16207                 swig_const_info 
*ci 
= 0; 
16208                 char *name 
= c 
+ 10; 
16209                 for (j 
= 0; const_table
[j
].type
; j
++) { 
16210                     if (strncmp(const_table
[j
].name
, name
,  
16211                     strlen(const_table
[j
].name
)) == 0) { 
16212                         ci 
= &(const_table
[j
]); 
16217                     size_t shift 
= (ci
->ptype
) - types
; 
16218                     swig_type_info 
*ty 
= types_initial
[shift
]; 
16219                     size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
16220                     size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
16221                     char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
16223                     void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue
: (void *)(ci
->lvalue
); 
16224                     strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
16226                     strncpy(buff
, "swig_ptr: ", 10); 
16228                     SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
16229                     methods
[i
].ml_doc 
= ndoc
; 
16235     /* -----------------------------------------------------------------------------* 
16236      *  Initialize type list 
16237      * -----------------------------------------------------------------------------*/ 
16239 #if PY_MAJOR_VERSION < 2 
16240     /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
16241     is copied out of Python/modsupport.c in python version 2.3.4 */ 
16243     PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
16246         if (!PyModule_Check(m
)) { 
16247             PyErr_SetString(PyExc_TypeError
, 
16248             "PyModule_AddObject() needs module as first arg"); 
16252             PyErr_SetString(PyExc_TypeError
, 
16253             "PyModule_AddObject() needs non-NULL value"); 
16257         dict 
= PyModule_GetDict(m
); 
16258         if (dict 
== NULL
) { 
16259             /* Internal error -- modules must have a dict! */ 
16260             PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
16261             PyModule_GetName(m
)); 
16264         if (PyDict_SetItemString(dict
, name
, o
)) 
16271     static swig_type_info 
** 
16272     SWIG_Python_SetTypeListHandle(swig_type_info 
**type_list_handle
) { 
16273         static PyMethodDef swig_empty_runtime_method_table
[] = { 
16275                 NULL
, NULL
, 0, NULL
 
16279         PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
16280         swig_empty_runtime_method_table
); 
16281         PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) type_list_handle
, NULL
); 
16282         if (pointer 
&& module) { 
16283             PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
16285         return type_list_handle
; 
16288     static swig_type_info 
** 
16289     SWIG_Python_LookupTypePointer(swig_type_info 
**type_list_handle
) { 
16290         swig_type_info 
**type_pointer
; 
16292         /* first check if module already created */ 
16293         type_pointer 
= SWIG_Python_GetTypeListHandle(); 
16294         if (type_pointer
) { 
16295             return type_pointer
; 
16297             /* create a new module and variable */ 
16298             return SWIG_Python_SetTypeListHandle(type_list_handle
); 
16306 /* -----------------------------------------------------------------------------* 
16307  *  Partial Init method 
16308  * -----------------------------------------------------------------------------*/ 
16310 #ifdef SWIG_LINK_RUNTIME 
16314 SWIGEXPORT(void *) SWIG_ReturnGlobalTypeList(void *); 
16320 SWIGEXPORT(void) SWIG_init(void) { 
16321     static PyObject 
*SWIG_globals 
= 0;  
16322     static int       typeinit 
= 0; 
16325     if (!SWIG_globals
) SWIG_globals 
= SWIG_newvarlink(); 
16327     /* Fix SwigMethods to carry the callback ptrs when needed */ 
16328     SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_types_initial
); 
16330     m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
16331     d 
= PyModule_GetDict(m
); 
16334 #ifdef SWIG_LINK_RUNTIME 
16335         swig_type_list_handle 
= (swig_type_info 
**) SWIG_ReturnGlobalTypeList(swig_type_list_handle
); 
16337 #  ifndef SWIG_STATIC_RUNTIME 
16338         swig_type_list_handle 
= SWIG_Python_LookupTypePointer(swig_type_list_handle
); 
16341         for (i 
= 0; swig_types_initial
[i
]; i
++) { 
16342             swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]); 
16346     SWIG_InstallConstants(d
,swig_const_table
); 
16348     PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
); 
16349     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlWindowNameStr",_wrap_HtmlWindowNameStr_get
, _wrap_HtmlWindowNameStr_set
); 
16350     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintoutTitleStr",_wrap_HtmlPrintoutTitleStr_get
, _wrap_HtmlPrintoutTitleStr_set
); 
16351     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintingTitleStr",_wrap_HtmlPrintingTitleStr_get
, _wrap_HtmlPrintingTitleStr_set
); 
16353         PyDict_SetItemString(d
,"HTML_ALIGN_LEFT", SWIG_From_int((int)(wxHTML_ALIGN_LEFT
)));  
16356         PyDict_SetItemString(d
,"HTML_ALIGN_CENTER", SWIG_From_int((int)(wxHTML_ALIGN_CENTER
)));  
16359         PyDict_SetItemString(d
,"HTML_ALIGN_RIGHT", SWIG_From_int((int)(wxHTML_ALIGN_RIGHT
)));  
16362         PyDict_SetItemString(d
,"HTML_ALIGN_BOTTOM", SWIG_From_int((int)(wxHTML_ALIGN_BOTTOM
)));  
16365         PyDict_SetItemString(d
,"HTML_ALIGN_TOP", SWIG_From_int((int)(wxHTML_ALIGN_TOP
)));  
16368         PyDict_SetItemString(d
,"HTML_CLR_FOREGROUND", SWIG_From_int((int)(wxHTML_CLR_FOREGROUND
)));  
16371         PyDict_SetItemString(d
,"HTML_CLR_BACKGROUND", SWIG_From_int((int)(wxHTML_CLR_BACKGROUND
)));  
16374         PyDict_SetItemString(d
,"HTML_UNITS_PIXELS", SWIG_From_int((int)(wxHTML_UNITS_PIXELS
)));  
16377         PyDict_SetItemString(d
,"HTML_UNITS_PERCENT", SWIG_From_int((int)(wxHTML_UNITS_PERCENT
)));  
16380         PyDict_SetItemString(d
,"HTML_INDENT_LEFT", SWIG_From_int((int)(wxHTML_INDENT_LEFT
)));  
16383         PyDict_SetItemString(d
,"HTML_INDENT_RIGHT", SWIG_From_int((int)(wxHTML_INDENT_RIGHT
)));  
16386         PyDict_SetItemString(d
,"HTML_INDENT_TOP", SWIG_From_int((int)(wxHTML_INDENT_TOP
)));  
16389         PyDict_SetItemString(d
,"HTML_INDENT_BOTTOM", SWIG_From_int((int)(wxHTML_INDENT_BOTTOM
)));  
16392         PyDict_SetItemString(d
,"HTML_INDENT_HORIZONTAL", SWIG_From_int((int)(wxHTML_INDENT_HORIZONTAL
)));  
16395         PyDict_SetItemString(d
,"HTML_INDENT_VERTICAL", SWIG_From_int((int)(wxHTML_INDENT_VERTICAL
)));  
16398         PyDict_SetItemString(d
,"HTML_INDENT_ALL", SWIG_From_int((int)(wxHTML_INDENT_ALL
)));  
16401         PyDict_SetItemString(d
,"HTML_COND_ISANCHOR", SWIG_From_int((int)(wxHTML_COND_ISANCHOR
)));  
16404         PyDict_SetItemString(d
,"HTML_COND_ISIMAGEMAP", SWIG_From_int((int)(wxHTML_COND_ISIMAGEMAP
)));  
16407         PyDict_SetItemString(d
,"HTML_COND_USER", SWIG_From_int((int)(wxHTML_COND_USER
)));  
16410         PyDict_SetItemString(d
,"HTML_FONT_SIZE_1", SWIG_From_int((int)(wxHTML_FONT_SIZE_1
)));  
16413         PyDict_SetItemString(d
,"HTML_FONT_SIZE_2", SWIG_From_int((int)(wxHTML_FONT_SIZE_2
)));  
16416         PyDict_SetItemString(d
,"HTML_FONT_SIZE_3", SWIG_From_int((int)(wxHTML_FONT_SIZE_3
)));  
16419         PyDict_SetItemString(d
,"HTML_FONT_SIZE_4", SWIG_From_int((int)(wxHTML_FONT_SIZE_4
)));  
16422         PyDict_SetItemString(d
,"HTML_FONT_SIZE_5", SWIG_From_int((int)(wxHTML_FONT_SIZE_5
)));  
16425         PyDict_SetItemString(d
,"HTML_FONT_SIZE_6", SWIG_From_int((int)(wxHTML_FONT_SIZE_6
)));  
16428         PyDict_SetItemString(d
,"HTML_FONT_SIZE_7", SWIG_From_int((int)(wxHTML_FONT_SIZE_7
)));  
16431         PyDict_SetItemString(d
,"HW_SCROLLBAR_NEVER", SWIG_From_int((int)(wxHW_SCROLLBAR_NEVER
)));  
16434         PyDict_SetItemString(d
,"HW_SCROLLBAR_AUTO", SWIG_From_int((int)(wxHW_SCROLLBAR_AUTO
)));  
16437         PyDict_SetItemString(d
,"HW_NO_SELECTION", SWIG_From_int((int)(wxHW_NO_SELECTION
)));  
16440         PyDict_SetItemString(d
,"HW_DEFAULT_STYLE", SWIG_From_int((int)(wxHW_DEFAULT_STYLE
)));  
16443         PyDict_SetItemString(d
,"HTML_OPEN", SWIG_From_int((int)(wxHTML_OPEN
)));  
16446         PyDict_SetItemString(d
,"HTML_BLOCK", SWIG_From_int((int)(wxHTML_BLOCK
)));  
16449         PyDict_SetItemString(d
,"HTML_REDIRECT", SWIG_From_int((int)(wxHTML_REDIRECT
)));  
16452         PyDict_SetItemString(d
,"HTML_URL_PAGE", SWIG_From_int((int)(wxHTML_URL_PAGE
)));  
16455         PyDict_SetItemString(d
,"HTML_URL_IMAGE", SWIG_From_int((int)(wxHTML_URL_IMAGE
)));  
16458         PyDict_SetItemString(d
,"HTML_URL_OTHER", SWIG_From_int((int)(wxHTML_URL_OTHER
)));  
16461         PyDict_SetItemString(d
,"HTML_SEL_OUT", SWIG_From_int((int)(wxHTML_SEL_OUT
)));  
16464         PyDict_SetItemString(d
,"HTML_SEL_IN", SWIG_From_int((int)(wxHTML_SEL_IN
)));  
16467         PyDict_SetItemString(d
,"HTML_SEL_CHANGING", SWIG_From_int((int)(wxHTML_SEL_CHANGING
)));  
16470         PyDict_SetItemString(d
,"HTML_FIND_EXACT", SWIG_From_int((int)(wxHTML_FIND_EXACT
)));  
16473         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_BEFORE", SWIG_From_int((int)(wxHTML_FIND_NEAREST_BEFORE
)));  
16476         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_AFTER", SWIG_From_int((int)(wxHTML_FIND_NEAREST_AFTER
)));  
16479         PyDict_SetItemString(d
,"PAGE_ODD", SWIG_From_int((int)(wxPAGE_ODD
)));  
16482         PyDict_SetItemString(d
,"PAGE_EVEN", SWIG_From_int((int)(wxPAGE_EVEN
)));  
16485         PyDict_SetItemString(d
,"PAGE_ALL", SWIG_From_int((int)(wxPAGE_ALL
)));  
16488         PyDict_SetItemString(d
,"HF_TOOLBAR", SWIG_From_int((int)(wxHF_TOOLBAR
)));  
16491         PyDict_SetItemString(d
,"HF_CONTENTS", SWIG_From_int((int)(wxHF_CONTENTS
)));  
16494         PyDict_SetItemString(d
,"HF_INDEX", SWIG_From_int((int)(wxHF_INDEX
)));  
16497         PyDict_SetItemString(d
,"HF_SEARCH", SWIG_From_int((int)(wxHF_SEARCH
)));  
16500         PyDict_SetItemString(d
,"HF_BOOKMARKS", SWIG_From_int((int)(wxHF_BOOKMARKS
)));  
16503         PyDict_SetItemString(d
,"HF_OPEN_FILES", SWIG_From_int((int)(wxHF_OPEN_FILES
)));  
16506         PyDict_SetItemString(d
,"HF_PRINT", SWIG_From_int((int)(wxHF_PRINT
)));  
16509         PyDict_SetItemString(d
,"HF_FLAT_TOOLBAR", SWIG_From_int((int)(wxHF_FLAT_TOOLBAR
)));  
16512         PyDict_SetItemString(d
,"HF_MERGE_BOOKS", SWIG_From_int((int)(wxHF_MERGE_BOOKS
)));  
16515         PyDict_SetItemString(d
,"HF_ICONS_BOOK", SWIG_From_int((int)(wxHF_ICONS_BOOK
)));  
16518         PyDict_SetItemString(d
,"HF_ICONS_BOOK_CHAPTER", SWIG_From_int((int)(wxHF_ICONS_BOOK_CHAPTER
)));  
16521         PyDict_SetItemString(d
,"HF_ICONS_FOLDER", SWIG_From_int((int)(wxHF_ICONS_FOLDER
)));  
16524         PyDict_SetItemString(d
,"HF_DEFAULT_STYLE", SWIG_From_int((int)(wxHF_DEFAULT_STYLE
)));  
16527         PyDict_SetItemString(d
,"HF_EMBEDDED", SWIG_From_int((int)(wxHF_EMBEDDED
)));  
16530         PyDict_SetItemString(d
,"HF_DIALOG", SWIG_From_int((int)(wxHF_DIALOG
)));  
16533         PyDict_SetItemString(d
,"HF_FRAME", SWIG_From_int((int)(wxHF_FRAME
)));  
16536         PyDict_SetItemString(d
,"HF_MODAL", SWIG_From_int((int)(wxHF_MODAL
)));  
16539         PyDict_SetItemString(d
,"ID_HTML_PANEL", SWIG_From_int((int)(wxID_HTML_PANEL
)));  
16542         PyDict_SetItemString(d
,"ID_HTML_BACK", SWIG_From_int((int)(wxID_HTML_BACK
)));  
16545         PyDict_SetItemString(d
,"ID_HTML_FORWARD", SWIG_From_int((int)(wxID_HTML_FORWARD
)));  
16548         PyDict_SetItemString(d
,"ID_HTML_UPNODE", SWIG_From_int((int)(wxID_HTML_UPNODE
)));  
16551         PyDict_SetItemString(d
,"ID_HTML_UP", SWIG_From_int((int)(wxID_HTML_UP
)));  
16554         PyDict_SetItemString(d
,"ID_HTML_DOWN", SWIG_From_int((int)(wxID_HTML_DOWN
)));  
16557         PyDict_SetItemString(d
,"ID_HTML_PRINT", SWIG_From_int((int)(wxID_HTML_PRINT
)));  
16560         PyDict_SetItemString(d
,"ID_HTML_OPENFILE", SWIG_From_int((int)(wxID_HTML_OPENFILE
)));  
16563         PyDict_SetItemString(d
,"ID_HTML_OPTIONS", SWIG_From_int((int)(wxID_HTML_OPTIONS
)));  
16566         PyDict_SetItemString(d
,"ID_HTML_BOOKMARKSLIST", SWIG_From_int((int)(wxID_HTML_BOOKMARKSLIST
)));  
16569         PyDict_SetItemString(d
,"ID_HTML_BOOKMARKSADD", SWIG_From_int((int)(wxID_HTML_BOOKMARKSADD
)));  
16572         PyDict_SetItemString(d
,"ID_HTML_BOOKMARKSREMOVE", SWIG_From_int((int)(wxID_HTML_BOOKMARKSREMOVE
)));  
16575         PyDict_SetItemString(d
,"ID_HTML_TREECTRL", SWIG_From_int((int)(wxID_HTML_TREECTRL
)));  
16578         PyDict_SetItemString(d
,"ID_HTML_INDEXPAGE", SWIG_From_int((int)(wxID_HTML_INDEXPAGE
)));  
16581         PyDict_SetItemString(d
,"ID_HTML_INDEXLIST", SWIG_From_int((int)(wxID_HTML_INDEXLIST
)));  
16584         PyDict_SetItemString(d
,"ID_HTML_INDEXTEXT", SWIG_From_int((int)(wxID_HTML_INDEXTEXT
)));  
16587         PyDict_SetItemString(d
,"ID_HTML_INDEXBUTTON", SWIG_From_int((int)(wxID_HTML_INDEXBUTTON
)));  
16590         PyDict_SetItemString(d
,"ID_HTML_INDEXBUTTONALL", SWIG_From_int((int)(wxID_HTML_INDEXBUTTONALL
)));  
16593         PyDict_SetItemString(d
,"ID_HTML_NOTEBOOK", SWIG_From_int((int)(wxID_HTML_NOTEBOOK
)));  
16596         PyDict_SetItemString(d
,"ID_HTML_SEARCHPAGE", SWIG_From_int((int)(wxID_HTML_SEARCHPAGE
)));  
16599         PyDict_SetItemString(d
,"ID_HTML_SEARCHTEXT", SWIG_From_int((int)(wxID_HTML_SEARCHTEXT
)));  
16602         PyDict_SetItemString(d
,"ID_HTML_SEARCHLIST", SWIG_From_int((int)(wxID_HTML_SEARCHLIST
)));  
16605         PyDict_SetItemString(d
,"ID_HTML_SEARCHBUTTON", SWIG_From_int((int)(wxID_HTML_SEARCHBUTTON
)));  
16608         PyDict_SetItemString(d
,"ID_HTML_SEARCHCHOICE", SWIG_From_int((int)(wxID_HTML_SEARCHCHOICE
)));  
16611         PyDict_SetItemString(d
,"ID_HTML_COUNTINFO", SWIG_From_int((int)(wxID_HTML_COUNTINFO
)));  
16614     wxPyPtrTypeMap_Add("wxHtmlTagHandler",    "wxPyHtmlTagHandler"); 
16615     wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler"); 
16616     wxPyPtrTypeMap_Add("wxHtmlWindow",        "wxPyHtmlWindow"); 
16617     wxPyPtrTypeMap_Add("wxHtmlFilter",        "wxPyHtmlFilter");