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", 
1044     PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
); 
1046     PyErr_Format(PyExc_TypeError
, "unexpected type is received"); 
1050 SWIGRUNTIMEINLINE 
void 
1051 SWIG_Python_NullRef(const char *type
) 
1054     PyErr_Format(PyExc_TypeError
, "null reference of type '%s' was received",type
); 
1056     PyErr_Format(PyExc_TypeError
, "null reference was received"); 
1061 SWIG_Python_AddErrMesg(const char* mesg
, int infront
) 
1063   if (PyErr_Occurred()) { 
1065     PyObject 
*value 
= 0; 
1066     PyObject 
*traceback 
= 0; 
1067     PyErr_Fetch(&type
, &value
, &traceback
); 
1069       PyObject 
*old_str 
= PyObject_Str(value
); 
1073         PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
)); 
1075         PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
1086 SWIG_Python_ArgFail(int argnum
) 
1088   if (PyErr_Occurred()) { 
1089     /* add information about failing argument */ 
1091     sprintf(mesg
, "argument number %d:", argnum
); 
1092     return SWIG_Python_AddErrMesg(mesg
, 1); 
1099 /* ----------------------------------------------------------------------------- 
1100  * pointers/data manipulation 
1101  * ----------------------------------------------------------------------------- */ 
1103 /* Convert a pointer value */ 
1105 SWIG_Python_ConvertPtr(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
, int flags
) { 
1108   static PyObject 
*SWIG_this 
= 0; 
1110   PyObject  
*pyobj 
= 0; 
1114   if (obj 
== Py_None
) { 
1119 #ifdef SWIG_COBJECT_TYPES 
1120   if (!(PySwigObject_Check(obj
))) { 
1122       SWIG_this 
= PyString_FromString("this"); 
1124     obj 
= PyObject_GetAttr(obj
,SWIG_this
); 
1126     if (!obj
) goto type_error
; 
1127     if (!PySwigObject_Check(obj
)) { 
1132   vptr 
= PySwigObject_AsVoidPtr(obj
); 
1133   c 
= (const char *) PySwigObject_GetDesc(obj
); 
1134   if (newref
) { Py_DECREF(obj
); } 
1137   if (!(PyString_Check(obj
))) { 
1139       SWIG_this 
= PyString_FromString("this"); 
1141     obj 
= PyObject_GetAttr(obj
,SWIG_this
); 
1143     if (!obj
) goto type_error
; 
1144     if (!PyString_Check(obj
)) { 
1149   c 
= PyString_AS_STRING(obj
); 
1150   /* Pointer values must start with leading underscore */ 
1151   c 
= SWIG_UnpackVoidPtr(c
, &vptr
, ty
->name
); 
1152   if (newref
) { Py_DECREF(obj
); } 
1153   if (!c
) goto type_error
; 
1159     tc 
= SWIG_TypeCheck(c
,ty
); 
1160     if (!tc
) goto type_error
; 
1161     *ptr 
= SWIG_TypeCast(tc
,vptr
); 
1166   if ((pyobj
) && (flags 
& SWIG_POINTER_DISOWN
)) { 
1167     PyObject_SetAttrString(pyobj
,(char*)"thisown",Py_False
); 
1173   if (pyobj 
&& !obj
) {     
1175     if (PyCFunction_Check(obj
)) { 
1176       /* here we get the method pointer for callbacks */ 
1177       char *doc 
= (((PyCFunctionObject 
*)obj
) -> m_ml 
-> ml_doc
); 
1178       c 
= doc 
? strstr(doc
, "swig_ptr: ") : 0; 
1180         c 
= SWIG_UnpackVoidPtr(c 
+ 10, &vptr
, ty
->name
); 
1181         if (!c
) goto type_error
; 
1186   if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1188       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1190       SWIG_Python_TypeError("C/C++ pointer", obj
); 
1196 /* Convert a pointer value, signal an exception on a type mismatch */ 
1198 SWIG_Python_MustGetPtr(PyObject 
*obj
, swig_type_info 
*ty
, int argnum
, int flags
) { 
1200   if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) { 
1202     if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1203       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1204       SWIG_Python_ArgFail(argnum
); 
1210 /* Convert a packed value value */ 
1212 SWIG_Python_ConvertPacked(PyObject 
*obj
, void *ptr
, size_t sz
, swig_type_info 
*ty
, int flags
) { 
1216 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) 
1217   c 
= PySwigPacked_UnpackData(obj
, ptr
, sz
); 
1219   if ((!obj
) || (!PyString_Check(obj
))) goto type_error
; 
1220   c 
= PyString_AS_STRING(obj
); 
1221   /* Pointer values must start with leading underscore */ 
1222   c 
= SWIG_UnpackDataName(c
, ptr
, sz
, ty
->name
); 
1224   if (!c
) goto type_error
; 
1226     tc 
= SWIG_TypeCheck(c
,ty
); 
1227     if (!tc
) goto type_error
; 
1233   if (flags 
& SWIG_POINTER_EXCEPTION
) { 
1235       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
1237       SWIG_Python_TypeError("C/C++ packed data", obj
); 
1243 /* Create a new array object */ 
1244 SWIGRUNTIME PyObject 
* 
1245 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info 
*type
, int own
) { 
1251 #ifdef SWIG_COBJECT_TYPES 
1252   robj 
= PySwigObject_FromVoidPtrAndDesc((void *) ptr
, (char *)type
->name
); 
1255     char result
[SWIG_BUFFER_SIZE
]; 
1256     robj 
= SWIG_PackVoidPtr(result
, ptr
, type
->name
, sizeof(result
)) ? 
1257       PyString_FromString(result
) : 0; 
1260   if (!robj 
|| (robj 
== Py_None
)) return robj
; 
1261   if (type
->clientdata
) { 
1263     PyObject 
*args 
= Py_BuildValue((char*)"(O)", robj
); 
1265     inst 
= PyObject_CallObject((PyObject 
*) type
->clientdata
, args
); 
1269         PyObject_SetAttrString(inst
,(char*)"thisown",Py_True
); 
1277 SWIGRUNTIME PyObject 
* 
1278 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info 
*type
) { 
1284 #if defined(SWIG_COBJECT_TYPES) && !defined(SWIG_COBJECT_PYTHON) 
1285   robj 
= PySwigPacked_FromDataAndDesc((void *) ptr
, sz
, (char *)type
->name
); 
1288     char result
[SWIG_BUFFER_SIZE
]; 
1289     robj 
= SWIG_PackDataName(result
, ptr
, sz
, type
->name
, sizeof(result
)) ? 
1290       PyString_FromString(result
) : 0; 
1296 /* -----------------------------------------------------------------------------* 
1298  * -----------------------------------------------------------------------------*/ 
1300 #ifdef SWIG_LINK_RUNTIME 
1301 void *SWIG_ReturnGlobalTypeList(void *); 
1304 SWIGRUNTIME swig_type_info 
** 
1305 SWIG_Python_GetTypeListHandle() { 
1306   static void *type_pointer 
= (void *)0; 
1307   /* first check if module already created */ 
1308   if (!type_pointer
) { 
1309 #ifdef SWIG_LINK_RUNTIME 
1310     type_pointer 
= SWIG_ReturnGlobalTypeList((void *)0); 
1312     type_pointer 
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
1313                                     (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
); 
1314     if (PyErr_Occurred()) { 
1316       type_pointer 
= (void *)0; 
1320   return (swig_type_info 
**) type_pointer
; 
1324   Search for a swig_type_info structure 
1326 SWIGRUNTIMEINLINE swig_type_info 
* 
1327 SWIG_Python_GetTypeList() { 
1328   swig_type_info 
**tlh 
= SWIG_Python_GetTypeListHandle(); 
1329   return tlh 
? *tlh 
: (swig_type_info
*)0; 
1332 #define SWIG_Runtime_GetTypeList SWIG_Python_GetTypeList  
1339 /* -------- TYPES TABLE (BEGIN) -------- */ 
1341 #define  SWIGTYPE_p_wxHtmlDCRenderer swig_types[0]  
1342 #define  SWIGTYPE_p_wxColour swig_types[1]  
1343 #define  SWIGTYPE_p_wxPageSetupDialogData swig_types[2]  
1344 #define  SWIGTYPE_p_wxDC swig_types[3]  
1345 #define  SWIGTYPE_p_form_ops_t swig_types[4]  
1346 #define  SWIGTYPE_p_wxHtmlRenderingStyle swig_types[5]  
1347 #define  SWIGTYPE_p_wxMouseEvent swig_types[6]  
1348 #define  SWIGTYPE_p_wxDuplexMode swig_types[7]  
1349 #define  SWIGTYPE_p_wxDefaultHtmlRenderingStyle swig_types[8]  
1350 #define  SWIGTYPE_p_wxHtmlWordCell swig_types[9]  
1351 #define  SWIGTYPE_p_wxVisualAttributes swig_types[10]  
1352 #define  SWIGTYPE_p_wxHtmlHelpData swig_types[11]  
1353 #define  SWIGTYPE_p_char swig_types[12]  
1354 #define  SWIGTYPE_p_wxHtmlWinParser swig_types[13]  
1355 #define  SWIGTYPE_p_wxHtmlParser swig_types[14]  
1356 #define  SWIGTYPE_p_wxPanel swig_types[15]  
1357 #define  SWIGTYPE_p_wxPyHtmlWindow swig_types[16]  
1358 #define  SWIGTYPE_p_wxScrolledWindow swig_types[17]  
1359 #define  SWIGTYPE_p_wxWindow swig_types[18]  
1360 #define  SWIGTYPE_p_wxTopLevelWindow swig_types[19]  
1361 #define  SWIGTYPE_p_wxFont swig_types[20]  
1362 #define  SWIGTYPE_p_wxHtmlColourCell swig_types[21]  
1363 #define  SWIGTYPE_p_wxHtmlFontCell swig_types[22]  
1364 #define  SWIGTYPE_p_wxHtmlEasyPrinting swig_types[23]  
1365 #define  SWIGTYPE_p_wxHtmlSelection swig_types[24]  
1366 #define  SWIGTYPE_p_wxHtmlRenderingInfo swig_types[25]  
1367 #define  SWIGTYPE_p_wxHtmlWidgetCell swig_types[26]  
1368 #define  SWIGTYPE_p_wxObject swig_types[27]  
1369 #define  SWIGTYPE_p_wxPaperSize swig_types[28]  
1370 #define  SWIGTYPE_p_wxString swig_types[29]  
1371 #define  SWIGTYPE_p_unsigned_int swig_types[30]  
1372 #define  SWIGTYPE_unsigned_int swig_types[31]  
1373 #define  SWIGTYPE_p_wxHtmlTagHandler swig_types[32]  
1374 #define  SWIGTYPE_p_wxPyHtmlTagHandler swig_types[33]  
1375 #define  SWIGTYPE_p_wxEvtHandler swig_types[34]  
1376 #define  SWIGTYPE_p_wxPyHtmlWinTagHandler swig_types[35]  
1377 #define  SWIGTYPE_p_wxPoint swig_types[36]  
1378 #define  SWIGTYPE_p_wxHtmlHelpController swig_types[37]  
1379 #define  SWIGTYPE_p_wxCursor swig_types[38]  
1380 #define  SWIGTYPE_p_wxFileSystem swig_types[39]  
1381 #define  SWIGTYPE_p_wxHtmlBookRecArray swig_types[40]  
1382 #define  SWIGTYPE_p_unsigned_char swig_types[41]  
1383 #define  SWIGTYPE_p_wxPyPrintout swig_types[42]  
1384 #define  SWIGTYPE_p_wxHtmlPrintout swig_types[43]  
1385 #define  SWIGTYPE_p_wxHtmlSearchStatus swig_types[44]  
1386 #define  SWIGTYPE_std__ptrdiff_t swig_types[45]  
1387 #define  SWIGTYPE_ptrdiff_t swig_types[46]  
1388 #define  SWIGTYPE_p_wxHtmlContentsItem swig_types[47]  
1389 #define  SWIGTYPE_p_wxConfigBase swig_types[48]  
1390 #define  SWIGTYPE_p_wxPrintData swig_types[49]  
1391 #define  SWIGTYPE_p_wxHtmlHelpFrame swig_types[50]  
1392 #define  SWIGTYPE_p_wxFrame swig_types[51]  
1393 #define  SWIGTYPE_p_wxHtmlRenderingState swig_types[52]  
1394 #define  SWIGTYPE_p_wxPyHtmlFilter swig_types[53]  
1395 #define  SWIGTYPE_p_wxHtmlFilter swig_types[54]  
1396 #define  SWIGTYPE_p_wxHtmlCell swig_types[55]  
1397 #define  SWIGTYPE_p_wxHtmlContainerCell swig_types[56]  
1398 #define  SWIGTYPE_p_wxHtmlTag swig_types[57]  
1399 #define  SWIGTYPE_p_int swig_types[58]  
1400 #define  SWIGTYPE_p_wxHtmlLinkInfo swig_types[59]  
1401 #define  SWIGTYPE_p_unsigned_long swig_types[60]  
1402 #define  SWIGTYPE_p_wxHtmlBookRecord swig_types[61]  
1403 static swig_type_info 
*swig_types
[63]; 
1405 /* -------- TYPES TABLE (END) -------- */ 
1408 /*----------------------------------------------- 
1409               @(target):= _html.so 
1410   ------------------------------------------------*/ 
1411 #define SWIG_init    init_html 
1413 #define SWIG_name    "_html" 
1415 #include "wx/wxPython/wxPython.h" 
1416 #include "wx/wxPython/pyclasses.h" 
1417 #include "wx/wxPython/pyistream.h" 
1418 #include "wx/wxPython/printfw.h" 
1420 #include <wx/html/htmlwin.h> 
1421 #include <wx/html/htmprint.h> 
1422 #include <wx/html/helpctrl.h> 
1425  static const wxString 
wxPyEmptyString(wxEmptyString
);  
1426  static const wxString 
wxPyHtmlWindowNameStr(wxT("htmlWindow"));  
1427  static const wxString 
wxPyHtmlPrintoutTitleStr(wxT("Printout"));  
1428  static const wxString 
wxPyHtmlPrintingTitleStr(wxT("Printing"));  
1430   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1431 #define SWIG_From_int PyInt_FromLong 
1439   SWIG_CheckLongInRange(long value
, long min_value
, long max_value
, 
1442   if (value 
< min_value
) { 
1444       PyErr_Format(PyExc_OverflowError
,  
1445                    "value %ld is less than '%s' minimum %ld",  
1446                    value
, errmsg
, min_value
); 
1449   } else if (value 
> max_value
) { 
1451       PyErr_Format(PyExc_OverflowError
, 
1452                    "value %ld is greater than '%s' maximum %ld",  
1453                    value
, errmsg
, max_value
); 
1462 SWIG_AsVal_long(PyObject
* obj
, long* val
) 
1464     if (PyNumber_Check(obj
)) { 
1465         if (val
) *val 
= PyInt_AsLong(obj
); 
1469         SWIG_type_error("number", obj
); 
1475 #if INT_MAX != LONG_MAX 
1477   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1479   const char* errmsg 
= val 
? "int" : (char*)0; 
1481   if (SWIG_AsVal_long(obj
, &v
)) { 
1482     if (SWIG_CheckLongInRange(v
, INT_MIN
,INT_MAX
, errmsg
)) { 
1483       if (val
) *val 
= (int)(v
); 
1492     SWIG_type_error(errmsg
, obj
); 
1498   SWIG_AsVal_int(PyObject 
*obj
, int *val
) 
1500   return SWIG_AsVal_long(obj
,(long*)val
); 
1506 SWIG_As_int(PyObject
* obj
) 
1509   if (!SWIG_AsVal_int(obj
, &v
)) { 
1511       this is needed to make valgrind/purify happier.  
1513     memset((void*)&v
, 0, sizeof(int)); 
1520 SWIG_Check_int(PyObject
* obj
) 
1522   return SWIG_AsVal_int(obj
, (int*)0); 
1525 static void wxHtmlWinParser_SetFonts(wxHtmlWinParser 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1527             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1528             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1533 class wxPyHtmlTagHandler 
: public wxHtmlTagHandler 
{ 
1534     DECLARE_DYNAMIC_CLASS(wxPyHtmlTagHandler
); 
1536     wxPyHtmlTagHandler() : wxHtmlTagHandler() {}; 
1538     wxHtmlParser
* GetParser() { return m_Parser
; } 
1539     void ParseInner(const wxHtmlTag
& tag
) { wxHtmlTagHandler::ParseInner(tag
); } 
1541     DEC_PYCALLBACK_STRING__pure(GetSupportedTags
); 
1542     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag
); 
1547 IMPLEMENT_DYNAMIC_CLASS(wxPyHtmlTagHandler
, wxHtmlTagHandler
); 
1549 IMP_PYCALLBACK_STRING__pure(wxPyHtmlTagHandler
, wxHtmlTagHandler
, GetSupportedTags
); 
1550 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlTagHandler
, wxHtmlTagHandler
, HandleTag
); 
1553 class wxPyHtmlWinTagHandler 
: public wxHtmlWinTagHandler 
{ 
1554     DECLARE_DYNAMIC_CLASS(wxPyHtmlWinTagHandler
); 
1556     wxPyHtmlWinTagHandler() : wxHtmlWinTagHandler() {}; 
1558     wxHtmlWinParser
* GetParser() { return m_WParser
; } 
1559     void ParseInner(const wxHtmlTag
& tag
) 
1560         { wxHtmlWinTagHandler::ParseInner(tag
); } 
1562     DEC_PYCALLBACK_STRING__pure(GetSupportedTags
); 
1563     DEC_PYCALLBACK_BOOL_TAG_pure(HandleTag
); 
1568 IMPLEMENT_DYNAMIC_CLASS( wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
); 
1570 IMP_PYCALLBACK_STRING__pure(wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
, GetSupportedTags
); 
1571 IMP_PYCALLBACK_BOOL_TAG_pure(wxPyHtmlWinTagHandler
, wxHtmlWinTagHandler
, HandleTag
); 
1575 class wxPyHtmlTagsModule 
: public wxHtmlTagsModule 
{ 
1577     wxPyHtmlTagsModule(PyObject
* thc
) : wxHtmlTagsModule() { 
1578         m_tagHandlerClass 
= thc
; 
1579         Py_INCREF(m_tagHandlerClass
); 
1580         RegisterModule(this); 
1581         wxHtmlWinParser::AddModule(this); 
1585         bool blocked 
= wxPyBeginBlockThreads(); 
1586         Py_DECREF(m_tagHandlerClass
); 
1587         m_tagHandlerClass 
= NULL
; 
1588         for (size_t x
=0; x 
< m_objArray
.GetCount(); x
++) { 
1589             PyObject
* obj 
= (PyObject
*)m_objArray
.Item(x
); 
1592         wxPyEndBlockThreads(blocked
); 
1595     void FillHandlersTable(wxHtmlWinParser 
*parser
) { 
1596         // Wave our magic wand...  (if it works it's a miracle!  ;-) 
1598         // First, make a new instance of the tag handler 
1599         bool blocked 
= wxPyBeginBlockThreads(); 
1600         PyObject
* arg 
= PyTuple_New(0); 
1601         PyObject
* obj 
= PyObject_CallObject(m_tagHandlerClass
, arg
); 
1604         // now figure out where it's C++ object is... 
1605         wxPyHtmlWinTagHandler
* thPtr
; 
1606         if (! wxPyConvertSwigPtr(obj
, (void **)&thPtr
, wxT("wxPyHtmlWinTagHandler"))) { 
1607             wxPyEndBlockThreads(blocked
); 
1610         wxPyEndBlockThreads(blocked
); 
1613         parser
->AddTagHandler(thPtr
); 
1616         m_objArray
.Add(obj
); 
1620     PyObject
*           m_tagHandlerClass
; 
1621     wxArrayPtrVoid      m_objArray
; 
1626     void wxHtmlWinParser_AddTagHandler(PyObject
* tagHandlerClass
) { 
1627         // Dynamically create a new wxModule.  Refcounts tagHandlerClass 
1628         // and adds itself to the wxModules list and to the wxHtmlWinParser. 
1629         new wxPyHtmlTagsModule(tagHandlerClass
); 
1633 SWIGINTERNSHORT PyObject
* 
1634   SWIG_From_bool(bool value
) 
1636   PyObject 
*obj 
= value 
? Py_True 
: Py_False
; 
1642   static PyObject
* t_output_helper(PyObject
* target
, PyObject
* o
) { 
1648     } else if (target 
== Py_None
) {   
1652         if (!PyTuple_Check(target
)) { 
1654             target 
= PyTuple_New(1); 
1655             PyTuple_SetItem(target
, 0, o2
); 
1657         o3 
= PyTuple_New(1);             
1658         PyTuple_SetItem(o3
, 0, o
);       
1661         target 
= PySequence_Concat(o2
, o3
);  
1671   SWIG_AsVal_bool(PyObject 
*obj
, bool *val
) 
1673   if (obj 
== Py_True
) { 
1674     if (val
) *val 
= true; 
1677   if (obj 
== Py_False
) { 
1678     if (val
) *val 
= false; 
1682   if (SWIG_AsVal_int(obj
, &res
)) {     
1683     if (val
) *val 
= res 
? true : false; 
1689     SWIG_type_error("bool", obj
); 
1695 SWIGINTERNSHORT 
bool 
1696 SWIG_As_bool(PyObject
* obj
) 
1699   if (!SWIG_AsVal_bool(obj
, &v
)) { 
1701       this is needed to make valgrind/purify happier.  
1703     memset((void*)&v
, 0, sizeof(bool)); 
1710 SWIG_Check_bool(PyObject
* obj
) 
1712   return SWIG_AsVal_bool(obj
, (bool*)0); 
1717   SWIG_CheckUnsignedLongInRange(unsigned long value
, 
1718                                 unsigned long max_value
, 
1721   if (value 
> max_value
) { 
1723       PyErr_Format(PyExc_OverflowError
, 
1724                    "value %lu is greater than '%s' minimum %lu", 
1725                    value
, errmsg
, max_value
); 
1734 SWIG_AsVal_unsigned_SS_long(PyObject
* obj
, unsigned long* val
) 
1737     if (SWIG_AsVal_long(obj
, &v
) && v 
< 0) { 
1738         SWIG_type_error("unsigned number", obj
); 
1741         *val 
= (unsigned long)v
; 
1746 #if UINT_MAX != ULONG_MAX 
1748   SWIG_AsVal_unsigned_SS_int(PyObject 
*obj
, unsigned int *val
) 
1750   const char* errmsg 
= val 
? "unsigned int" : (char*)0; 
1752   if (SWIG_AsVal_unsigned_SS_long(obj
, &v
)) { 
1753     if (SWIG_CheckUnsignedLongInRange(v
, INT_MAX
, errmsg
)) { 
1754       if (val
) *val 
= (unsigned int)(v
); 
1761     SWIG_type_error(errmsg
, obj
); 
1766 SWIGINTERNSHORT 
unsigned int 
1767   SWIG_AsVal_unsigned_SS_int(PyObject 
*obj
, unsigned int *val
) 
1769   return SWIG_AsVal_unsigned_SS_long(obj
,(unsigned long *)val
); 
1774 SWIGINTERNSHORT 
unsigned int 
1775 SWIG_As_unsigned_SS_int(PyObject
* obj
) 
1778   if (!SWIG_AsVal_unsigned_SS_int(obj
, &v
)) { 
1780       this is needed to make valgrind/purify happier.  
1782     memset((void*)&v
, 0, sizeof(unsigned int)); 
1789 SWIG_Check_unsigned_SS_int(PyObject
* obj
) 
1791   return SWIG_AsVal_unsigned_SS_int(obj
, (unsigned int*)0); 
1795   /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1796 #define SWIG_From_long PyInt_FromLong 
1800 SWIGINTERNSHORT PyObject
*  
1801   SWIG_From_unsigned_SS_long(unsigned long value
) 
1803   return (value 
> LONG_MAX
) ? 
1804     PyLong_FromUnsignedLong(value
)  
1805     : PyInt_FromLong((long)(value
));  
1809 #if UINT_MAX < LONG_MAX 
1810 /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1811 #define SWIG_From_unsigned_SS_int SWIG_From_long 
1814 /*@/opt/swig/share/swig/1.3.24/python/pymacros.swg,66,SWIG_define@*/ 
1815 #define SWIG_From_unsigned_SS_int SWIG_From_unsigned_SS_long 
1819  // here's the C++ version 
1820 class wxPyHtmlFilter 
: public wxHtmlFilter 
{ 
1821     DECLARE_ABSTRACT_CLASS(wxPyHtmlFilter
); 
1823     wxPyHtmlFilter() : wxHtmlFilter() {} 
1825     // returns True if this filter is able to open&read given file 
1826     virtual bool CanRead(const wxFSFile
& file
) const { 
1829         bool blocked 
= wxPyBeginBlockThreads(); 
1830         if ((found 
= wxPyCBH_findCallback(m_myInst
, "CanRead"))) { 
1831             PyObject
* obj 
= wxPyMake_wxObject((wxFSFile
*)&file
,false);  // cast away const 
1832             rval 
= wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", obj
)); 
1835         wxPyEndBlockThreads(blocked
); 
1840     // Reads given file and returns HTML document. 
1841     // Returns empty string if opening failed 
1842     virtual wxString 
ReadFile(const wxFSFile
& file
) const { 
1845         bool blocked 
= wxPyBeginBlockThreads(); 
1846         if ((found 
= wxPyCBH_findCallback(m_myInst
, "ReadFile"))) { 
1847             PyObject
* obj 
= wxPyMake_wxObject((wxFSFile
*)&file
,false);  // cast away const 
1849             ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(O)", obj
)); 
1852                 rval 
= Py2wxString(ro
); 
1856         wxPyEndBlockThreads(blocked
); 
1863 IMPLEMENT_ABSTRACT_CLASS(wxPyHtmlFilter
, wxHtmlFilter
); 
1866 class wxPyHtmlWindow 
: public wxHtmlWindow 
{ 
1867     DECLARE_ABSTRACT_CLASS(wxPyHtmlWindow
); 
1869     wxPyHtmlWindow(wxWindow 
*parent
, wxWindowID id 
= -1, 
1870                    const wxPoint
& pos 
= wxDefaultPosition
, 
1871                    const wxSize
& size 
= wxDefaultSize
, 
1872                    long style 
= wxHW_DEFAULT_STYLE
, 
1873                    const wxString
& name 
= wxPyHtmlWindowNameStr
) 
1874         : wxHtmlWindow(parent
, id
, pos
, size
, style
, name
)  {}; 
1875     wxPyHtmlWindow() : wxHtmlWindow() {}; 
1877     bool ScrollToAnchor(const wxString
& anchor
) { 
1878         return wxHtmlWindow::ScrollToAnchor(anchor
); 
1881     bool HasAnchor(const wxString
& anchor
) { 
1882         const wxHtmlCell 
*c 
= m_Cell
->Find(wxHTML_COND_ISANCHOR
, &anchor
); 
1886     void OnLinkClicked(const wxHtmlLinkInfo
& link
); 
1887     void base_OnLinkClicked(const wxHtmlLinkInfo
& link
); 
1889     wxHtmlOpeningStatus 
OnOpeningURL(wxHtmlURLType type
, 
1890                                       const wxString
& url
, 
1891                                       wxString 
*redirect
) const; 
1893     DEC_PYCALLBACK__STRING(OnSetTitle
); 
1894     DEC_PYCALLBACK__CELLINTINT(OnCellMouseHover
); 
1895     DEC_PYCALLBACK__CELLINTINTME(OnCellClicked
); 
1899 IMPLEMENT_ABSTRACT_CLASS( wxPyHtmlWindow
, wxHtmlWindow 
); 
1900 IMP_PYCALLBACK__STRING(wxPyHtmlWindow
, wxHtmlWindow
, OnSetTitle
); 
1901 IMP_PYCALLBACK__CELLINTINT(wxPyHtmlWindow
, wxHtmlWindow
, OnCellMouseHover
); 
1902 IMP_PYCALLBACK__CELLINTINTME(wxPyHtmlWindow
, wxHtmlWindow
, OnCellClicked
); 
1905 void wxPyHtmlWindow::OnLinkClicked(const wxHtmlLinkInfo
& link
) { 
1907     bool blocked 
= wxPyBeginBlockThreads(); 
1908     if ((found 
= wxPyCBH_findCallback(m_myInst
, "OnLinkClicked"))) { 
1909         PyObject
* obj 
= wxPyConstructObject((void*)&link
, wxT("wxHtmlLinkInfo"), 0); 
1910         wxPyCBH_callCallback(m_myInst
, Py_BuildValue("(O)", obj
)); 
1913     wxPyEndBlockThreads(blocked
); 
1915         wxHtmlWindow::OnLinkClicked(link
); 
1917 void wxPyHtmlWindow::base_OnLinkClicked(const wxHtmlLinkInfo
& link
) { 
1918     wxHtmlWindow::OnLinkClicked(link
); 
1922 wxHtmlOpeningStatus 
wxPyHtmlWindow::OnOpeningURL(wxHtmlURLType type
, 
1923                                                  const wxString
& url
, 
1924                                                  wxString 
*redirect
) const { 
1926     wxHtmlOpeningStatus rval
; 
1927     bool blocked 
= wxPyBeginBlockThreads(); 
1928     if ((found 
= wxPyCBH_findCallback(m_myInst
, "OnOpeningURL"))) { 
1930         PyObject
* s 
= wx2PyString(url
); 
1931         ro 
= wxPyCBH_callCallbackObj(m_myInst
, Py_BuildValue("(iO)", type
, s
)); 
1933         if (PyString_Check(ro
) 
1934 #if PYTHON_API_VERSION >= 1009 
1935             || PyUnicode_Check(ro
) 
1938             *redirect 
= Py2wxString(ro
); 
1939             rval 
= wxHTML_REDIRECT
; 
1942             PyObject
* num 
= PyNumber_Int(ro
); 
1943             rval 
= (wxHtmlOpeningStatus
)PyInt_AsLong(num
); 
1948     wxPyEndBlockThreads(blocked
); 
1950         rval 
= wxHtmlWindow::OnOpeningURL(type
, url
, redirect
); 
1956 static void wxPyHtmlWindow_SetFonts(wxPyHtmlWindow 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1958             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1959             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1963 static void wxHtmlDCRenderer_SetFonts(wxHtmlDCRenderer 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1965             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1966             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1970 static void wxHtmlPrintout_SetFonts(wxHtmlPrintout 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
1972             if (sizes
) temp 
= int_LIST_helper(sizes
); 
1973             self
->SetFonts(normal_face
, fixed_face
, temp
); 
1980   SWIG_CheckDoubleInRange(double value
, double min_value
,  
1981                           double max_value
, const char* errmsg
) 
1983   if (value 
< min_value
) { 
1985       PyErr_Format(PyExc_OverflowError
,  
1986                    "value %g is less than %s minimum %g",  
1987                    value
, errmsg
, min_value
); 
1990   } else if (value 
> max_value
) { 
1992       PyErr_Format(PyExc_OverflowError
,  
1993                    "value %g is greater than %s maximum %g",  
1994                    value
, errmsg
, max_value
); 
2003 SWIG_AsVal_double(PyObject 
*obj
, double* val
) 
2005     if (PyNumber_Check(obj
)) { 
2006         if (val
) *val 
= PyFloat_AsDouble(obj
); 
2010         SWIG_type_error("number", obj
); 
2017   SWIG_AsVal_float(PyObject 
*obj
, float *val
) 
2019   const char* errmsg 
= val 
? "float" : (char*)0; 
2021   if (SWIG_AsVal_double(obj
, &v
)) { 
2022     if (SWIG_CheckDoubleInRange(v
, -FLT_MAX
, FLT_MAX
, errmsg
)) { 
2023       if (val
) *val 
= (float)(v
); 
2032     SWIG_type_error(errmsg
, obj
); 
2038 SWIGINTERNSHORT 
float 
2039 SWIG_As_float(PyObject
* obj
) 
2042   if (!SWIG_AsVal_float(obj
, &v
)) { 
2044       this is needed to make valgrind/purify happier.  
2046     memset((void*)&v
, 0, sizeof(float)); 
2053 SWIG_Check_float(PyObject
* obj
) 
2055   return SWIG_AsVal_float(obj
, (float*)0); 
2058 static void wxHtmlEasyPrinting_SetFonts(wxHtmlEasyPrinting 
*self
,wxString normal_face
,wxString fixed_face
,PyObject 
*sizes
=NULL
){ 
2060             if (sizes
) temp 
= int_LIST_helper(sizes
); 
2061             self
->SetFonts(normal_face
, fixed_face
, temp
); 
2065 static int wxHtmlContentsItem_GetLevel(wxHtmlContentsItem 
*self
){ return self
->m_Level
; } 
2066 static int wxHtmlContentsItem_GetID(wxHtmlContentsItem 
*self
){ return self
->m_ID
; } 
2067 static wxString 
wxHtmlContentsItem_GetName(wxHtmlContentsItem 
*self
){ return self
->m_Name
; } 
2068 static wxString 
wxHtmlContentsItem_GetPage(wxHtmlContentsItem 
*self
){ return self
->m_Page
; } 
2069 static wxHtmlBookRecord 
*wxHtmlContentsItem_GetBook(wxHtmlContentsItem 
*self
){ return self
->m_Book
; } 
2073 static int _wrap_HtmlWindowNameStr_set(PyObject 
*) { 
2074     PyErr_SetString(PyExc_TypeError
,"Variable HtmlWindowNameStr is read-only."); 
2079 static PyObject 
*_wrap_HtmlWindowNameStr_get(void) { 
2084         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlWindowNameStr
)->c_str(), (&wxPyHtmlWindowNameStr
)->Len()); 
2086         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlWindowNameStr
)->c_str(), (&wxPyHtmlWindowNameStr
)->Len()); 
2093 static int _wrap_HtmlPrintoutTitleStr_set(PyObject 
*) { 
2094     PyErr_SetString(PyExc_TypeError
,"Variable HtmlPrintoutTitleStr is read-only."); 
2099 static PyObject 
*_wrap_HtmlPrintoutTitleStr_get(void) { 
2104         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlPrintoutTitleStr
)->c_str(), (&wxPyHtmlPrintoutTitleStr
)->Len()); 
2106         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlPrintoutTitleStr
)->c_str(), (&wxPyHtmlPrintoutTitleStr
)->Len()); 
2113 static int _wrap_HtmlPrintingTitleStr_set(PyObject 
*) { 
2114     PyErr_SetString(PyExc_TypeError
,"Variable HtmlPrintingTitleStr is read-only."); 
2119 static PyObject 
*_wrap_HtmlPrintingTitleStr_get(void) { 
2124         pyobj 
= PyUnicode_FromWideChar((&wxPyHtmlPrintingTitleStr
)->c_str(), (&wxPyHtmlPrintingTitleStr
)->Len()); 
2126         pyobj 
= PyString_FromStringAndSize((&wxPyHtmlPrintingTitleStr
)->c_str(), (&wxPyHtmlPrintingTitleStr
)->Len()); 
2133 static PyObject 
*_wrap_new_HtmlLinkInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2134     PyObject 
*resultobj
; 
2135     wxString 
*arg1 
= 0 ; 
2136     wxString 
const &arg2_defvalue 
= wxPyEmptyString 
; 
2137     wxString 
*arg2 
= (wxString 
*) &arg2_defvalue 
; 
2138     wxHtmlLinkInfo 
*result
; 
2139     bool temp1 
= false ; 
2140     bool temp2 
= false ; 
2141     PyObject 
* obj0 
= 0 ; 
2142     PyObject 
* obj1 
= 0 ; 
2144         (char *) "href",(char *) "target", NULL 
 
2147     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlLinkInfo",kwnames
,&obj0
,&obj1
)) goto fail
; 
2149         arg1 
= wxString_in_helper(obj0
); 
2150         if (arg1 
== NULL
) SWIG_fail
; 
2155             arg2 
= wxString_in_helper(obj1
); 
2156             if (arg2 
== NULL
) SWIG_fail
; 
2161         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2162         result 
= (wxHtmlLinkInfo 
*)new wxHtmlLinkInfo((wxString 
const &)*arg1
,(wxString 
const &)*arg2
); 
2164         wxPyEndAllowThreads(__tstate
); 
2165         if (PyErr_Occurred()) SWIG_fail
; 
2167     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlLinkInfo
, 1); 
2190 static PyObject 
*_wrap_HtmlLinkInfo_GetHref(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2191     PyObject 
*resultobj
; 
2192     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2194     PyObject 
* obj0 
= 0 ; 
2196         (char *) "self", NULL 
 
2199     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetHref",kwnames
,&obj0
)) goto fail
; 
2200     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2201     if (SWIG_arg_fail(1)) SWIG_fail
; 
2203         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2204         result 
= (arg1
)->GetHref(); 
2206         wxPyEndAllowThreads(__tstate
); 
2207         if (PyErr_Occurred()) SWIG_fail
; 
2211         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2213         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2222 static PyObject 
*_wrap_HtmlLinkInfo_GetTarget(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2223     PyObject 
*resultobj
; 
2224     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2226     PyObject 
* obj0 
= 0 ; 
2228         (char *) "self", NULL 
 
2231     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetTarget",kwnames
,&obj0
)) goto fail
; 
2232     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2233     if (SWIG_arg_fail(1)) SWIG_fail
; 
2235         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2236         result 
= (arg1
)->GetTarget(); 
2238         wxPyEndAllowThreads(__tstate
); 
2239         if (PyErr_Occurred()) SWIG_fail
; 
2243         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2245         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2254 static PyObject 
*_wrap_HtmlLinkInfo_GetEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2255     PyObject 
*resultobj
; 
2256     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2257     wxMouseEvent 
*result
; 
2258     PyObject 
* obj0 
= 0 ; 
2260         (char *) "self", NULL 
 
2263     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetEvent",kwnames
,&obj0
)) goto fail
; 
2264     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2265     if (SWIG_arg_fail(1)) SWIG_fail
; 
2267         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2268         result 
= (wxMouseEvent 
*)(arg1
)->GetEvent(); 
2270         wxPyEndAllowThreads(__tstate
); 
2271         if (PyErr_Occurred()) SWIG_fail
; 
2274         resultobj 
= wxPyMake_wxObject(result
, 0);  
2282 static PyObject 
*_wrap_HtmlLinkInfo_GetHtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2283     PyObject 
*resultobj
; 
2284     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2286     PyObject 
* obj0 
= 0 ; 
2288         (char *) "self", NULL 
 
2291     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlLinkInfo_GetHtmlCell",kwnames
,&obj0
)) goto fail
; 
2292     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2293     if (SWIG_arg_fail(1)) SWIG_fail
; 
2295         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2296         result 
= (wxHtmlCell 
*)(arg1
)->GetHtmlCell(); 
2298         wxPyEndAllowThreads(__tstate
); 
2299         if (PyErr_Occurred()) SWIG_fail
; 
2301     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
2308 static PyObject 
*_wrap_HtmlLinkInfo_SetEvent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2309     PyObject 
*resultobj
; 
2310     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2311     wxMouseEvent 
*arg2 
= (wxMouseEvent 
*) 0 ; 
2312     PyObject 
* obj0 
= 0 ; 
2313     PyObject 
* obj1 
= 0 ; 
2315         (char *) "self",(char *) "e", NULL 
 
2318     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlLinkInfo_SetEvent",kwnames
,&obj0
,&obj1
)) goto fail
; 
2319     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2320     if (SWIG_arg_fail(1)) SWIG_fail
; 
2321     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
2322     if (SWIG_arg_fail(2)) SWIG_fail
; 
2324         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2325         (arg1
)->SetEvent((wxMouseEvent 
const *)arg2
); 
2327         wxPyEndAllowThreads(__tstate
); 
2328         if (PyErr_Occurred()) SWIG_fail
; 
2330     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2337 static PyObject 
*_wrap_HtmlLinkInfo_SetHtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2338     PyObject 
*resultobj
; 
2339     wxHtmlLinkInfo 
*arg1 
= (wxHtmlLinkInfo 
*) 0 ; 
2340     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
2341     PyObject 
* obj0 
= 0 ; 
2342     PyObject 
* obj1 
= 0 ; 
2344         (char *) "self",(char *) "e", NULL 
 
2347     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlLinkInfo_SetHtmlCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
2348     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
2349     if (SWIG_arg_fail(1)) SWIG_fail
; 
2350     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
2351     if (SWIG_arg_fail(2)) SWIG_fail
; 
2353         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2354         (arg1
)->SetHtmlCell((wxHtmlCell 
const *)arg2
); 
2356         wxPyEndAllowThreads(__tstate
); 
2357         if (PyErr_Occurred()) SWIG_fail
; 
2359     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2366 static PyObject 
* HtmlLinkInfo_swigregister(PyObject 
*, PyObject 
*args
) { 
2368     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
2369     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlLinkInfo
, obj
); 
2371     return Py_BuildValue((char *)""); 
2373 static PyObject 
*_wrap_HtmlTag_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2374     PyObject 
*resultobj
; 
2375     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2377     PyObject 
* obj0 
= 0 ; 
2379         (char *) "self", NULL 
 
2382     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetName",kwnames
,&obj0
)) goto fail
; 
2383     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2384     if (SWIG_arg_fail(1)) SWIG_fail
; 
2386         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2387         result 
= (arg1
)->GetName(); 
2389         wxPyEndAllowThreads(__tstate
); 
2390         if (PyErr_Occurred()) SWIG_fail
; 
2394         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2396         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2405 static PyObject 
*_wrap_HtmlTag_HasParam(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2406     PyObject 
*resultobj
; 
2407     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2408     wxString 
*arg2 
= 0 ; 
2410     bool temp2 
= false ; 
2411     PyObject 
* obj0 
= 0 ; 
2412     PyObject 
* obj1 
= 0 ; 
2414         (char *) "self",(char *) "par", NULL 
 
2417     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTag_HasParam",kwnames
,&obj0
,&obj1
)) goto fail
; 
2418     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2419     if (SWIG_arg_fail(1)) SWIG_fail
; 
2421         arg2 
= wxString_in_helper(obj1
); 
2422         if (arg2 
== NULL
) SWIG_fail
; 
2426         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2427         result 
= (bool)(arg1
)->HasParam((wxString 
const &)*arg2
); 
2429         wxPyEndAllowThreads(__tstate
); 
2430         if (PyErr_Occurred()) SWIG_fail
; 
2433         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
2449 static PyObject 
*_wrap_HtmlTag_GetParam(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2450     PyObject 
*resultobj
; 
2451     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2452     wxString 
*arg2 
= 0 ; 
2453     int arg3 
= (int) false ; 
2455     bool temp2 
= false ; 
2456     PyObject 
* obj0 
= 0 ; 
2457     PyObject 
* obj1 
= 0 ; 
2458     PyObject 
* obj2 
= 0 ; 
2460         (char *) "self",(char *) "par",(char *) "with_commas", NULL 
 
2463     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlTag_GetParam",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2464     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2465     if (SWIG_arg_fail(1)) SWIG_fail
; 
2467         arg2 
= wxString_in_helper(obj1
); 
2468         if (arg2 
== NULL
) SWIG_fail
; 
2473             arg3 
= (int)(SWIG_As_int(obj2
));  
2474             if (SWIG_arg_fail(3)) SWIG_fail
; 
2478         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2479         result 
= (arg1
)->GetParam((wxString 
const &)*arg2
,arg3
); 
2481         wxPyEndAllowThreads(__tstate
); 
2482         if (PyErr_Occurred()) SWIG_fail
; 
2486         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2488         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2505 static PyObject 
*_wrap_HtmlTag_GetAllParams(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2506     PyObject 
*resultobj
; 
2507     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2509     PyObject 
* obj0 
= 0 ; 
2511         (char *) "self", NULL 
 
2514     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetAllParams",kwnames
,&obj0
)) goto fail
; 
2515     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2516     if (SWIG_arg_fail(1)) SWIG_fail
; 
2518         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2519         result 
= (arg1
)->GetAllParams(); 
2521         wxPyEndAllowThreads(__tstate
); 
2522         if (PyErr_Occurred()) SWIG_fail
; 
2526         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
2528         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
2537 static PyObject 
*_wrap_HtmlTag_HasEnding(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2538     PyObject 
*resultobj
; 
2539     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2541     PyObject 
* obj0 
= 0 ; 
2543         (char *) "self", NULL 
 
2546     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_HasEnding",kwnames
,&obj0
)) goto fail
; 
2547     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2548     if (SWIG_arg_fail(1)) SWIG_fail
; 
2550         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2551         result 
= (bool)(arg1
)->HasEnding(); 
2553         wxPyEndAllowThreads(__tstate
); 
2554         if (PyErr_Occurred()) SWIG_fail
; 
2557         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
2565 static PyObject 
*_wrap_HtmlTag_GetBeginPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2566     PyObject 
*resultobj
; 
2567     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2569     PyObject 
* obj0 
= 0 ; 
2571         (char *) "self", NULL 
 
2574     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetBeginPos",kwnames
,&obj0
)) goto fail
; 
2575     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2576     if (SWIG_arg_fail(1)) SWIG_fail
; 
2578         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2579         result 
= (int)(arg1
)->GetBeginPos(); 
2581         wxPyEndAllowThreads(__tstate
); 
2582         if (PyErr_Occurred()) SWIG_fail
; 
2585         resultobj 
= SWIG_From_int((int)(result
));  
2593 static PyObject 
*_wrap_HtmlTag_GetEndPos1(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2594     PyObject 
*resultobj
; 
2595     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2597     PyObject 
* obj0 
= 0 ; 
2599         (char *) "self", NULL 
 
2602     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetEndPos1",kwnames
,&obj0
)) goto fail
; 
2603     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2604     if (SWIG_arg_fail(1)) SWIG_fail
; 
2606         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2607         result 
= (int)(arg1
)->GetEndPos1(); 
2609         wxPyEndAllowThreads(__tstate
); 
2610         if (PyErr_Occurred()) SWIG_fail
; 
2613         resultobj 
= SWIG_From_int((int)(result
));  
2621 static PyObject 
*_wrap_HtmlTag_GetEndPos2(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2622     PyObject 
*resultobj
; 
2623     wxHtmlTag 
*arg1 
= (wxHtmlTag 
*) 0 ; 
2625     PyObject 
* obj0 
= 0 ; 
2627         (char *) "self", NULL 
 
2630     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTag_GetEndPos2",kwnames
,&obj0
)) goto fail
; 
2631     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
2632     if (SWIG_arg_fail(1)) SWIG_fail
; 
2634         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2635         result 
= (int)(arg1
)->GetEndPos2(); 
2637         wxPyEndAllowThreads(__tstate
); 
2638         if (PyErr_Occurred()) SWIG_fail
; 
2641         resultobj 
= SWIG_From_int((int)(result
));  
2649 static PyObject 
* HtmlTag_swigregister(PyObject 
*, PyObject 
*args
) { 
2651     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
2652     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlTag
, obj
); 
2654     return Py_BuildValue((char *)""); 
2656 static PyObject 
*_wrap_HtmlParser_SetFS(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2657     PyObject 
*resultobj
; 
2658     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2659     wxFileSystem 
*arg2 
= (wxFileSystem 
*) 0 ; 
2660     PyObject 
* obj0 
= 0 ; 
2661     PyObject 
* obj1 
= 0 ; 
2663         (char *) "self",(char *) "fs", NULL 
 
2666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_SetFS",kwnames
,&obj0
,&obj1
)) goto fail
; 
2667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2668     if (SWIG_arg_fail(1)) SWIG_fail
; 
2669     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFileSystem
, SWIG_POINTER_EXCEPTION 
| 0); 
2670     if (SWIG_arg_fail(2)) SWIG_fail
; 
2672         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2673         (arg1
)->SetFS(arg2
); 
2675         wxPyEndAllowThreads(__tstate
); 
2676         if (PyErr_Occurred()) SWIG_fail
; 
2678     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2685 static PyObject 
*_wrap_HtmlParser_GetFS(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2686     PyObject 
*resultobj
; 
2687     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2688     wxFileSystem 
*result
; 
2689     PyObject 
* obj0 
= 0 ; 
2691         (char *) "self", NULL 
 
2694     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_GetFS",kwnames
,&obj0
)) goto fail
; 
2695     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2696     if (SWIG_arg_fail(1)) SWIG_fail
; 
2698         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2699         result 
= (wxFileSystem 
*)(arg1
)->GetFS(); 
2701         wxPyEndAllowThreads(__tstate
); 
2702         if (PyErr_Occurred()) SWIG_fail
; 
2705         resultobj 
= wxPyMake_wxObject(result
, 0);  
2713 static PyObject 
*_wrap_HtmlParser_Parse(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2714     PyObject 
*resultobj
; 
2715     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2716     wxString 
*arg2 
= 0 ; 
2718     bool temp2 
= false ; 
2719     PyObject 
* obj0 
= 0 ; 
2720     PyObject 
* obj1 
= 0 ; 
2722         (char *) "self",(char *) "source", NULL 
 
2725     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_Parse",kwnames
,&obj0
,&obj1
)) goto fail
; 
2726     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2727     if (SWIG_arg_fail(1)) SWIG_fail
; 
2729         arg2 
= wxString_in_helper(obj1
); 
2730         if (arg2 
== NULL
) SWIG_fail
; 
2734         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2735         result 
= (wxObject 
*)(arg1
)->Parse((wxString 
const &)*arg2
); 
2737         wxPyEndAllowThreads(__tstate
); 
2738         if (PyErr_Occurred()) SWIG_fail
; 
2741         resultobj 
= wxPyMake_wxObject(result
, 0);  
2757 static PyObject 
*_wrap_HtmlParser_InitParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2758     PyObject 
*resultobj
; 
2759     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2760     wxString 
*arg2 
= 0 ; 
2761     bool temp2 
= false ; 
2762     PyObject 
* obj0 
= 0 ; 
2763     PyObject 
* obj1 
= 0 ; 
2765         (char *) "self",(char *) "source", NULL 
 
2768     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_InitParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
2769     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2770     if (SWIG_arg_fail(1)) SWIG_fail
; 
2772         arg2 
= wxString_in_helper(obj1
); 
2773         if (arg2 
== NULL
) SWIG_fail
; 
2777         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2778         (arg1
)->InitParser((wxString 
const &)*arg2
); 
2780         wxPyEndAllowThreads(__tstate
); 
2781         if (PyErr_Occurred()) SWIG_fail
; 
2783     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2798 static PyObject 
*_wrap_HtmlParser_DoneParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2799     PyObject 
*resultobj
; 
2800     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2801     PyObject 
* obj0 
= 0 ; 
2803         (char *) "self", NULL 
 
2806     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_DoneParser",kwnames
,&obj0
)) goto fail
; 
2807     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2808     if (SWIG_arg_fail(1)) SWIG_fail
; 
2810         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2811         (arg1
)->DoneParser(); 
2813         wxPyEndAllowThreads(__tstate
); 
2814         if (PyErr_Occurred()) SWIG_fail
; 
2816     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2823 static PyObject 
*_wrap_HtmlParser_DoParsing(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2824     PyObject 
*resultobj
; 
2825     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2828     PyObject 
* obj0 
= 0 ; 
2829     PyObject 
* obj1 
= 0 ; 
2830     PyObject 
* obj2 
= 0 ; 
2832         (char *) "self",(char *) "begin_pos",(char *) "end_pos", NULL 
 
2835     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlParser_DoParsing",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2836     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2837     if (SWIG_arg_fail(1)) SWIG_fail
; 
2839         arg2 
= (int)(SWIG_As_int(obj1
));  
2840         if (SWIG_arg_fail(2)) SWIG_fail
; 
2843         arg3 
= (int)(SWIG_As_int(obj2
));  
2844         if (SWIG_arg_fail(3)) SWIG_fail
; 
2847         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2848         (arg1
)->DoParsing(arg2
,arg3
); 
2850         wxPyEndAllowThreads(__tstate
); 
2851         if (PyErr_Occurred()) SWIG_fail
; 
2853     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2860 static PyObject 
*_wrap_HtmlParser_StopParsing(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2861     PyObject 
*resultobj
; 
2862     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2863     PyObject 
* obj0 
= 0 ; 
2865         (char *) "self", NULL 
 
2868     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_StopParsing",kwnames
,&obj0
)) goto fail
; 
2869     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2870     if (SWIG_arg_fail(1)) SWIG_fail
; 
2872         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2873         (arg1
)->StopParsing(); 
2875         wxPyEndAllowThreads(__tstate
); 
2876         if (PyErr_Occurred()) SWIG_fail
; 
2878     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2885 static PyObject 
*_wrap_HtmlParser_AddTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2886     PyObject 
*resultobj
; 
2887     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2888     wxHtmlTagHandler 
*arg2 
= (wxHtmlTagHandler 
*) 0 ; 
2889     PyObject 
* obj0 
= 0 ; 
2890     PyObject 
* obj1 
= 0 ; 
2892         (char *) "self",(char *) "handler", NULL 
 
2895     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlParser_AddTagHandler",kwnames
,&obj0
,&obj1
)) goto fail
; 
2896     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2897     if (SWIG_arg_fail(1)) SWIG_fail
; 
2898     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
2899     if (SWIG_arg_fail(2)) SWIG_fail
; 
2901         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2902         (arg1
)->AddTagHandler(arg2
); 
2904         wxPyEndAllowThreads(__tstate
); 
2905         if (PyErr_Occurred()) SWIG_fail
; 
2907     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2914 static PyObject 
*_wrap_HtmlParser_GetSource(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2915     PyObject 
*resultobj
; 
2916     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2918     PyObject 
* obj0 
= 0 ; 
2920         (char *) "self", NULL 
 
2923     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_GetSource",kwnames
,&obj0
)) goto fail
; 
2924     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2925     if (SWIG_arg_fail(1)) SWIG_fail
; 
2927         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2928         result 
= (wxString 
*)(arg1
)->GetSource(); 
2930         wxPyEndAllowThreads(__tstate
); 
2931         if (PyErr_Occurred()) SWIG_fail
; 
2935         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
2937         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
2946 static PyObject 
*_wrap_HtmlParser_PushTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2947     PyObject 
*resultobj
; 
2948     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2949     wxHtmlTagHandler 
*arg2 
= (wxHtmlTagHandler 
*) 0 ; 
2951     PyObject 
* obj0 
= 0 ; 
2952     PyObject 
* obj1 
= 0 ; 
2953     PyObject 
* obj2 
= 0 ; 
2955         (char *) "self",(char *) "handler",(char *) "tags", NULL 
 
2958     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlParser_PushTagHandler",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
2959     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2960     if (SWIG_arg_fail(1)) SWIG_fail
; 
2961     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
2962     if (SWIG_arg_fail(2)) SWIG_fail
; 
2964         wxString
* sptr 
= wxString_in_helper(obj2
); 
2965         if (sptr 
== NULL
) SWIG_fail
; 
2970         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2971         (arg1
)->PushTagHandler(arg2
,arg3
); 
2973         wxPyEndAllowThreads(__tstate
); 
2974         if (PyErr_Occurred()) SWIG_fail
; 
2976     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
2983 static PyObject 
*_wrap_HtmlParser_PopTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
2984     PyObject 
*resultobj
; 
2985     wxHtmlParser 
*arg1 
= (wxHtmlParser 
*) 0 ; 
2986     PyObject 
* obj0 
= 0 ; 
2988         (char *) "self", NULL 
 
2991     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlParser_PopTagHandler",kwnames
,&obj0
)) goto fail
; 
2992     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
2993     if (SWIG_arg_fail(1)) SWIG_fail
; 
2995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2996         (arg1
)->PopTagHandler(); 
2998         wxPyEndAllowThreads(__tstate
); 
2999         if (PyErr_Occurred()) SWIG_fail
; 
3001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3008 static PyObject 
* HtmlParser_swigregister(PyObject 
*, PyObject 
*args
) { 
3010     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
3011     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlParser
, obj
); 
3013     return Py_BuildValue((char *)""); 
3015 static PyObject 
*_wrap_new_HtmlWinParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3016     PyObject 
*resultobj
; 
3017     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) NULL 
; 
3018     wxHtmlWinParser 
*result
; 
3019     PyObject 
* obj0 
= 0 ; 
3021         (char *) "wnd", NULL 
 
3024     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlWinParser",kwnames
,&obj0
)) goto fail
; 
3026         SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
3027         if (SWIG_arg_fail(1)) SWIG_fail
; 
3030         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3031         result 
= (wxHtmlWinParser 
*)new wxHtmlWinParser(arg1
); 
3033         wxPyEndAllowThreads(__tstate
); 
3034         if (PyErr_Occurred()) SWIG_fail
; 
3036     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 1); 
3043 static PyObject 
*_wrap_HtmlWinParser_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3044     PyObject 
*resultobj
; 
3045     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3046     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
3047     PyObject 
* obj0 
= 0 ; 
3048     PyObject 
* obj1 
= 0 ; 
3050         (char *) "self",(char *) "dc", NULL 
 
3053     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetDC",kwnames
,&obj0
,&obj1
)) goto fail
; 
3054     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3055     if (SWIG_arg_fail(1)) SWIG_fail
; 
3056     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
3057     if (SWIG_arg_fail(2)) SWIG_fail
; 
3059         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3060         (arg1
)->SetDC(arg2
); 
3062         wxPyEndAllowThreads(__tstate
); 
3063         if (PyErr_Occurred()) SWIG_fail
; 
3065     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3072 static PyObject 
*_wrap_HtmlWinParser_GetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3073     PyObject 
*resultobj
; 
3074     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3076     PyObject 
* obj0 
= 0 ; 
3078         (char *) "self", NULL 
 
3081     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetDC",kwnames
,&obj0
)) goto fail
; 
3082     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3083     if (SWIG_arg_fail(1)) SWIG_fail
; 
3085         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3086         result 
= (wxDC 
*)(arg1
)->GetDC(); 
3088         wxPyEndAllowThreads(__tstate
); 
3089         if (PyErr_Occurred()) SWIG_fail
; 
3092         resultobj 
= wxPyMake_wxObject(result
, 0);  
3100 static PyObject 
*_wrap_HtmlWinParser_GetCharHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3101     PyObject 
*resultobj
; 
3102     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3104     PyObject 
* obj0 
= 0 ; 
3106         (char *) "self", NULL 
 
3109     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetCharHeight",kwnames
,&obj0
)) goto fail
; 
3110     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3111     if (SWIG_arg_fail(1)) SWIG_fail
; 
3113         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3114         result 
= (int)(arg1
)->GetCharHeight(); 
3116         wxPyEndAllowThreads(__tstate
); 
3117         if (PyErr_Occurred()) SWIG_fail
; 
3120         resultobj 
= SWIG_From_int((int)(result
));  
3128 static PyObject 
*_wrap_HtmlWinParser_GetCharWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3129     PyObject 
*resultobj
; 
3130     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3132     PyObject 
* obj0 
= 0 ; 
3134         (char *) "self", NULL 
 
3137     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetCharWidth",kwnames
,&obj0
)) goto fail
; 
3138     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3139     if (SWIG_arg_fail(1)) SWIG_fail
; 
3141         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3142         result 
= (int)(arg1
)->GetCharWidth(); 
3144         wxPyEndAllowThreads(__tstate
); 
3145         if (PyErr_Occurred()) SWIG_fail
; 
3148         resultobj 
= SWIG_From_int((int)(result
));  
3156 static PyObject 
*_wrap_HtmlWinParser_GetWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3157     PyObject 
*resultobj
; 
3158     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3159     wxPyHtmlWindow 
*result
; 
3160     PyObject 
* obj0 
= 0 ; 
3162         (char *) "self", NULL 
 
3165     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetWindow",kwnames
,&obj0
)) goto fail
; 
3166     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3167     if (SWIG_arg_fail(1)) SWIG_fail
; 
3169         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3170         result 
= (wxPyHtmlWindow 
*)(arg1
)->GetWindow(); 
3172         wxPyEndAllowThreads(__tstate
); 
3173         if (PyErr_Occurred()) SWIG_fail
; 
3176         resultobj 
= wxPyMake_wxObject(result
, 0);  
3184 static PyObject 
*_wrap_HtmlWinParser_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3185     PyObject 
*resultobj
; 
3186     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3189     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
3190     PyObject 
* obj0 
= 0 ; 
3191     PyObject 
* obj1 
= 0 ; 
3192     PyObject 
* obj2 
= 0 ; 
3193     PyObject 
* obj3 
= 0 ; 
3195         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
3198     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlWinParser_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
3199     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3200     if (SWIG_arg_fail(1)) SWIG_fail
; 
3202         wxString
* sptr 
= wxString_in_helper(obj1
); 
3203         if (sptr 
== NULL
) SWIG_fail
; 
3208         wxString
* sptr 
= wxString_in_helper(obj2
); 
3209         if (sptr 
== NULL
) SWIG_fail
; 
3217         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3218         wxHtmlWinParser_SetFonts(arg1
,arg2
,arg3
,arg4
); 
3220         wxPyEndAllowThreads(__tstate
); 
3221         if (PyErr_Occurred()) SWIG_fail
; 
3223     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3230 static PyObject 
*_wrap_HtmlWinParser_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3231     PyObject 
*resultobj
; 
3232     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3233     int arg2 
= (int) -1 ; 
3234     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
3235     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
3236     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
3237     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
3238     bool temp3 
= false ; 
3239     bool temp4 
= false ; 
3240     PyObject 
* obj0 
= 0 ; 
3241     PyObject 
* obj1 
= 0 ; 
3242     PyObject 
* obj2 
= 0 ; 
3243     PyObject 
* obj3 
= 0 ; 
3245         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
3248     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlWinParser_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
3249     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3250     if (SWIG_arg_fail(1)) SWIG_fail
; 
3253             arg2 
= (int)(SWIG_As_int(obj1
));  
3254             if (SWIG_arg_fail(2)) SWIG_fail
; 
3259             arg3 
= wxString_in_helper(obj2
); 
3260             if (arg3 
== NULL
) SWIG_fail
; 
3266             arg4 
= wxString_in_helper(obj3
); 
3267             if (arg4 
== NULL
) SWIG_fail
; 
3272         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3273         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
3275         wxPyEndAllowThreads(__tstate
); 
3276         if (PyErr_Occurred()) SWIG_fail
; 
3278     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3301 static PyObject 
*_wrap_HtmlWinParser_GetContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3302     PyObject 
*resultobj
; 
3303     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3304     wxHtmlContainerCell 
*result
; 
3305     PyObject 
* obj0 
= 0 ; 
3307         (char *) "self", NULL 
 
3310     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetContainer",kwnames
,&obj0
)) goto fail
; 
3311     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3312     if (SWIG_arg_fail(1)) SWIG_fail
; 
3314         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3315         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetContainer(); 
3317         wxPyEndAllowThreads(__tstate
); 
3318         if (PyErr_Occurred()) SWIG_fail
; 
3320     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3327 static PyObject 
*_wrap_HtmlWinParser_OpenContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3328     PyObject 
*resultobj
; 
3329     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3330     wxHtmlContainerCell 
*result
; 
3331     PyObject 
* obj0 
= 0 ; 
3333         (char *) "self", NULL 
 
3336     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_OpenContainer",kwnames
,&obj0
)) goto fail
; 
3337     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3338     if (SWIG_arg_fail(1)) SWIG_fail
; 
3340         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3341         result 
= (wxHtmlContainerCell 
*)(arg1
)->OpenContainer(); 
3343         wxPyEndAllowThreads(__tstate
); 
3344         if (PyErr_Occurred()) SWIG_fail
; 
3346     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3353 static PyObject 
*_wrap_HtmlWinParser_SetContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3354     PyObject 
*resultobj
; 
3355     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3356     wxHtmlContainerCell 
*arg2 
= (wxHtmlContainerCell 
*) 0 ; 
3357     wxHtmlContainerCell 
*result
; 
3358     PyObject 
* obj0 
= 0 ; 
3359     PyObject 
* obj1 
= 0 ; 
3361         (char *) "self",(char *) "c", NULL 
 
3364     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetContainer",kwnames
,&obj0
,&obj1
)) goto fail
; 
3365     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3366     if (SWIG_arg_fail(1)) SWIG_fail
; 
3367     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
3368     if (SWIG_arg_fail(2)) SWIG_fail
; 
3370         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3371         result 
= (wxHtmlContainerCell 
*)(arg1
)->SetContainer(arg2
); 
3373         wxPyEndAllowThreads(__tstate
); 
3374         if (PyErr_Occurred()) SWIG_fail
; 
3376     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3383 static PyObject 
*_wrap_HtmlWinParser_CloseContainer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3384     PyObject 
*resultobj
; 
3385     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3386     wxHtmlContainerCell 
*result
; 
3387     PyObject 
* obj0 
= 0 ; 
3389         (char *) "self", NULL 
 
3392     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_CloseContainer",kwnames
,&obj0
)) goto fail
; 
3393     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3394     if (SWIG_arg_fail(1)) SWIG_fail
; 
3396         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3397         result 
= (wxHtmlContainerCell 
*)(arg1
)->CloseContainer(); 
3399         wxPyEndAllowThreads(__tstate
); 
3400         if (PyErr_Occurred()) SWIG_fail
; 
3402     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
3409 static PyObject 
*_wrap_HtmlWinParser_GetFontSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3410     PyObject 
*resultobj
; 
3411     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3413     PyObject 
* obj0 
= 0 ; 
3415         (char *) "self", NULL 
 
3418     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontSize",kwnames
,&obj0
)) goto fail
; 
3419     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3420     if (SWIG_arg_fail(1)) SWIG_fail
; 
3422         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3423         result 
= (int)(arg1
)->GetFontSize(); 
3425         wxPyEndAllowThreads(__tstate
); 
3426         if (PyErr_Occurred()) SWIG_fail
; 
3429         resultobj 
= SWIG_From_int((int)(result
));  
3437 static PyObject 
*_wrap_HtmlWinParser_SetFontSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3438     PyObject 
*resultobj
; 
3439     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3441     PyObject 
* obj0 
= 0 ; 
3442     PyObject 
* obj1 
= 0 ; 
3444         (char *) "self",(char *) "s", NULL 
 
3447     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontSize",kwnames
,&obj0
,&obj1
)) goto fail
; 
3448     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3449     if (SWIG_arg_fail(1)) SWIG_fail
; 
3451         arg2 
= (int)(SWIG_As_int(obj1
));  
3452         if (SWIG_arg_fail(2)) SWIG_fail
; 
3455         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3456         (arg1
)->SetFontSize(arg2
); 
3458         wxPyEndAllowThreads(__tstate
); 
3459         if (PyErr_Occurred()) SWIG_fail
; 
3461     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3468 static PyObject 
*_wrap_HtmlWinParser_GetFontBold(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3469     PyObject 
*resultobj
; 
3470     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3472     PyObject 
* obj0 
= 0 ; 
3474         (char *) "self", NULL 
 
3477     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontBold",kwnames
,&obj0
)) goto fail
; 
3478     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3479     if (SWIG_arg_fail(1)) SWIG_fail
; 
3481         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3482         result 
= (int)(arg1
)->GetFontBold(); 
3484         wxPyEndAllowThreads(__tstate
); 
3485         if (PyErr_Occurred()) SWIG_fail
; 
3488         resultobj 
= SWIG_From_int((int)(result
));  
3496 static PyObject 
*_wrap_HtmlWinParser_SetFontBold(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3497     PyObject 
*resultobj
; 
3498     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3500     PyObject 
* obj0 
= 0 ; 
3501     PyObject 
* obj1 
= 0 ; 
3503         (char *) "self",(char *) "x", NULL 
 
3506     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontBold",kwnames
,&obj0
,&obj1
)) goto fail
; 
3507     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3508     if (SWIG_arg_fail(1)) SWIG_fail
; 
3510         arg2 
= (int)(SWIG_As_int(obj1
));  
3511         if (SWIG_arg_fail(2)) SWIG_fail
; 
3514         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3515         (arg1
)->SetFontBold(arg2
); 
3517         wxPyEndAllowThreads(__tstate
); 
3518         if (PyErr_Occurred()) SWIG_fail
; 
3520     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3527 static PyObject 
*_wrap_HtmlWinParser_GetFontItalic(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3528     PyObject 
*resultobj
; 
3529     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3531     PyObject 
* obj0 
= 0 ; 
3533         (char *) "self", NULL 
 
3536     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontItalic",kwnames
,&obj0
)) goto fail
; 
3537     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3538     if (SWIG_arg_fail(1)) SWIG_fail
; 
3540         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3541         result 
= (int)(arg1
)->GetFontItalic(); 
3543         wxPyEndAllowThreads(__tstate
); 
3544         if (PyErr_Occurred()) SWIG_fail
; 
3547         resultobj 
= SWIG_From_int((int)(result
));  
3555 static PyObject 
*_wrap_HtmlWinParser_SetFontItalic(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3556     PyObject 
*resultobj
; 
3557     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3559     PyObject 
* obj0 
= 0 ; 
3560     PyObject 
* obj1 
= 0 ; 
3562         (char *) "self",(char *) "x", NULL 
 
3565     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontItalic",kwnames
,&obj0
,&obj1
)) goto fail
; 
3566     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3567     if (SWIG_arg_fail(1)) SWIG_fail
; 
3569         arg2 
= (int)(SWIG_As_int(obj1
));  
3570         if (SWIG_arg_fail(2)) SWIG_fail
; 
3573         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3574         (arg1
)->SetFontItalic(arg2
); 
3576         wxPyEndAllowThreads(__tstate
); 
3577         if (PyErr_Occurred()) SWIG_fail
; 
3579     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3586 static PyObject 
*_wrap_HtmlWinParser_GetFontUnderlined(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3587     PyObject 
*resultobj
; 
3588     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3590     PyObject 
* obj0 
= 0 ; 
3592         (char *) "self", NULL 
 
3595     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontUnderlined",kwnames
,&obj0
)) goto fail
; 
3596     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3597     if (SWIG_arg_fail(1)) SWIG_fail
; 
3599         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3600         result 
= (int)(arg1
)->GetFontUnderlined(); 
3602         wxPyEndAllowThreads(__tstate
); 
3603         if (PyErr_Occurred()) SWIG_fail
; 
3606         resultobj 
= SWIG_From_int((int)(result
));  
3614 static PyObject 
*_wrap_HtmlWinParser_SetFontUnderlined(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3615     PyObject 
*resultobj
; 
3616     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3618     PyObject 
* obj0 
= 0 ; 
3619     PyObject 
* obj1 
= 0 ; 
3621         (char *) "self",(char *) "x", NULL 
 
3624     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontUnderlined",kwnames
,&obj0
,&obj1
)) goto fail
; 
3625     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3626     if (SWIG_arg_fail(1)) SWIG_fail
; 
3628         arg2 
= (int)(SWIG_As_int(obj1
));  
3629         if (SWIG_arg_fail(2)) SWIG_fail
; 
3632         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3633         (arg1
)->SetFontUnderlined(arg2
); 
3635         wxPyEndAllowThreads(__tstate
); 
3636         if (PyErr_Occurred()) SWIG_fail
; 
3638     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3645 static PyObject 
*_wrap_HtmlWinParser_GetFontFixed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3646     PyObject 
*resultobj
; 
3647     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3649     PyObject 
* obj0 
= 0 ; 
3651         (char *) "self", NULL 
 
3654     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetFontFixed",kwnames
,&obj0
)) goto fail
; 
3655     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3656     if (SWIG_arg_fail(1)) SWIG_fail
; 
3658         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3659         result 
= (int)(arg1
)->GetFontFixed(); 
3661         wxPyEndAllowThreads(__tstate
); 
3662         if (PyErr_Occurred()) SWIG_fail
; 
3665         resultobj 
= SWIG_From_int((int)(result
));  
3673 static PyObject 
*_wrap_HtmlWinParser_SetFontFixed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3674     PyObject 
*resultobj
; 
3675     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3677     PyObject 
* obj0 
= 0 ; 
3678     PyObject 
* obj1 
= 0 ; 
3680         (char *) "self",(char *) "x", NULL 
 
3683     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetFontFixed",kwnames
,&obj0
,&obj1
)) goto fail
; 
3684     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3685     if (SWIG_arg_fail(1)) SWIG_fail
; 
3687         arg2 
= (int)(SWIG_As_int(obj1
));  
3688         if (SWIG_arg_fail(2)) SWIG_fail
; 
3691         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3692         (arg1
)->SetFontFixed(arg2
); 
3694         wxPyEndAllowThreads(__tstate
); 
3695         if (PyErr_Occurred()) SWIG_fail
; 
3697     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3704 static PyObject 
*_wrap_HtmlWinParser_GetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3705     PyObject 
*resultobj
; 
3706     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3708     PyObject 
* obj0 
= 0 ; 
3710         (char *) "self", NULL 
 
3713     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetAlign",kwnames
,&obj0
)) goto fail
; 
3714     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3715     if (SWIG_arg_fail(1)) SWIG_fail
; 
3717         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3718         result 
= (int)(arg1
)->GetAlign(); 
3720         wxPyEndAllowThreads(__tstate
); 
3721         if (PyErr_Occurred()) SWIG_fail
; 
3724         resultobj 
= SWIG_From_int((int)(result
));  
3732 static PyObject 
*_wrap_HtmlWinParser_SetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3733     PyObject 
*resultobj
; 
3734     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3736     PyObject 
* obj0 
= 0 ; 
3737     PyObject 
* obj1 
= 0 ; 
3739         (char *) "self",(char *) "a", NULL 
 
3742     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
; 
3743     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3744     if (SWIG_arg_fail(1)) SWIG_fail
; 
3746         arg2 
= (int)(SWIG_As_int(obj1
));  
3747         if (SWIG_arg_fail(2)) SWIG_fail
; 
3750         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3751         (arg1
)->SetAlign(arg2
); 
3753         wxPyEndAllowThreads(__tstate
); 
3754         if (PyErr_Occurred()) SWIG_fail
; 
3756     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3763 static PyObject 
*_wrap_HtmlWinParser_GetLinkColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3764     PyObject 
*resultobj
; 
3765     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3767     PyObject 
* obj0 
= 0 ; 
3769         (char *) "self", NULL 
 
3772     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetLinkColor",kwnames
,&obj0
)) goto fail
; 
3773     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3774     if (SWIG_arg_fail(1)) SWIG_fail
; 
3776         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3777         result 
= (arg1
)->GetLinkColor(); 
3779         wxPyEndAllowThreads(__tstate
); 
3780         if (PyErr_Occurred()) SWIG_fail
; 
3783         wxColour 
* resultptr
; 
3784         resultptr 
= new wxColour((wxColour 
&)(result
)); 
3785         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
3793 static PyObject 
*_wrap_HtmlWinParser_SetLinkColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3794     PyObject 
*resultobj
; 
3795     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3796     wxColour 
*arg2 
= 0 ; 
3798     PyObject 
* obj0 
= 0 ; 
3799     PyObject 
* obj1 
= 0 ; 
3801         (char *) "self",(char *) "clr", NULL 
 
3804     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetLinkColor",kwnames
,&obj0
,&obj1
)) goto fail
; 
3805     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3806     if (SWIG_arg_fail(1)) SWIG_fail
; 
3809         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
3812         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3813         (arg1
)->SetLinkColor((wxColour 
const &)*arg2
); 
3815         wxPyEndAllowThreads(__tstate
); 
3816         if (PyErr_Occurred()) SWIG_fail
; 
3818     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3825 static PyObject 
*_wrap_HtmlWinParser_GetActualColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3826     PyObject 
*resultobj
; 
3827     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3829     PyObject 
* obj0 
= 0 ; 
3831         (char *) "self", NULL 
 
3834     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetActualColor",kwnames
,&obj0
)) goto fail
; 
3835     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3836     if (SWIG_arg_fail(1)) SWIG_fail
; 
3838         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3839         result 
= (arg1
)->GetActualColor(); 
3841         wxPyEndAllowThreads(__tstate
); 
3842         if (PyErr_Occurred()) SWIG_fail
; 
3845         wxColour 
* resultptr
; 
3846         resultptr 
= new wxColour((wxColour 
&)(result
)); 
3847         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
3855 static PyObject 
*_wrap_HtmlWinParser_SetActualColor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3856     PyObject 
*resultobj
; 
3857     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3858     wxColour 
*arg2 
= 0 ; 
3860     PyObject 
* obj0 
= 0 ; 
3861     PyObject 
* obj1 
= 0 ; 
3863         (char *) "self",(char *) "clr", NULL 
 
3866     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetActualColor",kwnames
,&obj0
,&obj1
)) goto fail
; 
3867     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3868     if (SWIG_arg_fail(1)) SWIG_fail
; 
3871         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
3874         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3875         (arg1
)->SetActualColor((wxColour 
const &)*arg2
); 
3877         wxPyEndAllowThreads(__tstate
); 
3878         if (PyErr_Occurred()) SWIG_fail
; 
3880     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3887 static PyObject 
*_wrap_HtmlWinParser_SetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3888     PyObject 
*resultobj
; 
3889     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3890     wxString 
*arg2 
= 0 ; 
3891     bool temp2 
= false ; 
3892     PyObject 
* obj0 
= 0 ; 
3893     PyObject 
* obj1 
= 0 ; 
3895         (char *) "self",(char *) "link", NULL 
 
3898     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinParser_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
; 
3899     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3900     if (SWIG_arg_fail(1)) SWIG_fail
; 
3902         arg2 
= wxString_in_helper(obj1
); 
3903         if (arg2 
== NULL
) SWIG_fail
; 
3907         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3908         (arg1
)->SetLink((wxString 
const &)*arg2
); 
3910         wxPyEndAllowThreads(__tstate
); 
3911         if (PyErr_Occurred()) SWIG_fail
; 
3913     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
3928 static PyObject 
*_wrap_HtmlWinParser_CreateCurrentFont(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3929     PyObject 
*resultobj
; 
3930     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3932     PyObject 
* obj0 
= 0 ; 
3934         (char *) "self", NULL 
 
3937     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_CreateCurrentFont",kwnames
,&obj0
)) goto fail
; 
3938     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3939     if (SWIG_arg_fail(1)) SWIG_fail
; 
3941         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3942         result 
= (wxFont 
*)(arg1
)->CreateCurrentFont(); 
3944         wxPyEndAllowThreads(__tstate
); 
3945         if (PyErr_Occurred()) SWIG_fail
; 
3947     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxFont
, 0); 
3954 static PyObject 
*_wrap_HtmlWinParser_GetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3955     PyObject 
*resultobj
; 
3956     wxHtmlWinParser 
*arg1 
= (wxHtmlWinParser 
*) 0 ; 
3957     SwigValueWrapper
<wxHtmlLinkInfo 
> result
; 
3958     PyObject 
* obj0 
= 0 ; 
3960         (char *) "self", NULL 
 
3963     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_GetLink",kwnames
,&obj0
)) goto fail
; 
3964     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlWinParser
, SWIG_POINTER_EXCEPTION 
| 0); 
3965     if (SWIG_arg_fail(1)) SWIG_fail
; 
3967         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3968         result 
= (arg1
)->GetLink(); 
3970         wxPyEndAllowThreads(__tstate
); 
3971         if (PyErr_Occurred()) SWIG_fail
; 
3974         wxHtmlLinkInfo 
* resultptr
; 
3975         resultptr 
= new wxHtmlLinkInfo((wxHtmlLinkInfo 
&)(result
)); 
3976         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxHtmlLinkInfo
, 1); 
3984 static PyObject 
* HtmlWinParser_swigregister(PyObject 
*, PyObject 
*args
) { 
3986     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
3987     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWinParser
, obj
); 
3989     return Py_BuildValue((char *)""); 
3991 static PyObject 
*_wrap_new_HtmlTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
3992     PyObject 
*resultobj
; 
3993     wxPyHtmlTagHandler 
*result
; 
3998     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlTagHandler",kwnames
)) goto fail
; 
4000         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4001         result 
= (wxPyHtmlTagHandler 
*)new wxPyHtmlTagHandler(); 
4003         wxPyEndAllowThreads(__tstate
); 
4004         if (PyErr_Occurred()) SWIG_fail
; 
4006     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlTagHandler
, 1); 
4013 static PyObject 
*_wrap_HtmlTagHandler__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4014     PyObject 
*resultobj
; 
4015     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4016     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
4017     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
4018     PyObject 
* obj0 
= 0 ; 
4019     PyObject 
* obj1 
= 0 ; 
4020     PyObject 
* obj2 
= 0 ; 
4022         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
4025     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlTagHandler__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4026     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4027     if (SWIG_arg_fail(1)) SWIG_fail
; 
4031         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4032         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
4034         wxPyEndAllowThreads(__tstate
); 
4035         if (PyErr_Occurred()) SWIG_fail
; 
4037     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4044 static PyObject 
*_wrap_HtmlTagHandler_SetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4045     PyObject 
*resultobj
; 
4046     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4047     wxHtmlParser 
*arg2 
= (wxHtmlParser 
*) 0 ; 
4048     PyObject 
* obj0 
= 0 ; 
4049     PyObject 
* obj1 
= 0 ; 
4051         (char *) "self",(char *) "parser", NULL 
 
4054     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTagHandler_SetParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
4055     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4056     if (SWIG_arg_fail(1)) SWIG_fail
; 
4057     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
4058     if (SWIG_arg_fail(2)) SWIG_fail
; 
4060         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4061         (arg1
)->SetParser(arg2
); 
4063         wxPyEndAllowThreads(__tstate
); 
4064         if (PyErr_Occurred()) SWIG_fail
; 
4066     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4073 static PyObject 
*_wrap_HtmlTagHandler_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4074     PyObject 
*resultobj
; 
4075     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4076     wxHtmlParser 
*result
; 
4077     PyObject 
* obj0 
= 0 ; 
4079         (char *) "self", NULL 
 
4082     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlTagHandler_GetParser",kwnames
,&obj0
)) goto fail
; 
4083     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4084     if (SWIG_arg_fail(1)) SWIG_fail
; 
4086         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4087         result 
= (wxHtmlParser 
*)(arg1
)->GetParser(); 
4089         wxPyEndAllowThreads(__tstate
); 
4090         if (PyErr_Occurred()) SWIG_fail
; 
4092     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlParser
, 0); 
4099 static PyObject 
*_wrap_HtmlTagHandler_ParseInner(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4100     PyObject 
*resultobj
; 
4101     wxPyHtmlTagHandler 
*arg1 
= (wxPyHtmlTagHandler 
*) 0 ; 
4102     wxHtmlTag 
*arg2 
= 0 ; 
4103     PyObject 
* obj0 
= 0 ; 
4104     PyObject 
* obj1 
= 0 ; 
4106         (char *) "self",(char *) "tag", NULL 
 
4109     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlTagHandler_ParseInner",kwnames
,&obj0
,&obj1
)) goto fail
; 
4110     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4111     if (SWIG_arg_fail(1)) SWIG_fail
; 
4113         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
4114         if (SWIG_arg_fail(2)) SWIG_fail
; 
4116             SWIG_null_ref("wxHtmlTag"); 
4118         if (SWIG_arg_fail(2)) SWIG_fail
; 
4121         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4122         (arg1
)->ParseInner((wxHtmlTag 
const &)*arg2
); 
4124         wxPyEndAllowThreads(__tstate
); 
4125         if (PyErr_Occurred()) SWIG_fail
; 
4127     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4134 static PyObject 
* HtmlTagHandler_swigregister(PyObject 
*, PyObject 
*args
) { 
4136     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4137     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlTagHandler
, obj
); 
4139     return Py_BuildValue((char *)""); 
4141 static PyObject 
*_wrap_new_HtmlWinTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4142     PyObject 
*resultobj
; 
4143     wxPyHtmlWinTagHandler 
*result
; 
4148     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlWinTagHandler",kwnames
)) goto fail
; 
4150         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4151         result 
= (wxPyHtmlWinTagHandler 
*)new wxPyHtmlWinTagHandler(); 
4153         wxPyEndAllowThreads(__tstate
); 
4154         if (PyErr_Occurred()) SWIG_fail
; 
4156     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWinTagHandler
, 1); 
4163 static PyObject 
*_wrap_HtmlWinTagHandler__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4164     PyObject 
*resultobj
; 
4165     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4166     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
4167     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
4168     PyObject 
* obj0 
= 0 ; 
4169     PyObject 
* obj1 
= 0 ; 
4170     PyObject 
* obj2 
= 0 ; 
4172         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
4175     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWinTagHandler__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4176     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4177     if (SWIG_arg_fail(1)) SWIG_fail
; 
4181         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4182         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
4184         wxPyEndAllowThreads(__tstate
); 
4185         if (PyErr_Occurred()) SWIG_fail
; 
4187     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4194 static PyObject 
*_wrap_HtmlWinTagHandler_SetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4195     PyObject 
*resultobj
; 
4196     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4197     wxHtmlParser 
*arg2 
= (wxHtmlParser 
*) 0 ; 
4198     PyObject 
* obj0 
= 0 ; 
4199     PyObject 
* obj1 
= 0 ; 
4201         (char *) "self",(char *) "parser", NULL 
 
4204     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinTagHandler_SetParser",kwnames
,&obj0
,&obj1
)) goto fail
; 
4205     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4206     if (SWIG_arg_fail(1)) SWIG_fail
; 
4207     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlParser
, SWIG_POINTER_EXCEPTION 
| 0); 
4208     if (SWIG_arg_fail(2)) SWIG_fail
; 
4210         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4211         (arg1
)->SetParser(arg2
); 
4213         wxPyEndAllowThreads(__tstate
); 
4214         if (PyErr_Occurred()) SWIG_fail
; 
4216     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4223 static PyObject 
*_wrap_HtmlWinTagHandler_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4224     PyObject 
*resultobj
; 
4225     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4226     wxHtmlWinParser 
*result
; 
4227     PyObject 
* obj0 
= 0 ; 
4229         (char *) "self", NULL 
 
4232     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinTagHandler_GetParser",kwnames
,&obj0
)) goto fail
; 
4233     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4234     if (SWIG_arg_fail(1)) SWIG_fail
; 
4236         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4237         result 
= (wxHtmlWinParser 
*)(arg1
)->GetParser(); 
4239         wxPyEndAllowThreads(__tstate
); 
4240         if (PyErr_Occurred()) SWIG_fail
; 
4242     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 0); 
4249 static PyObject 
*_wrap_HtmlWinTagHandler_ParseInner(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4250     PyObject 
*resultobj
; 
4251     wxPyHtmlWinTagHandler 
*arg1 
= (wxPyHtmlWinTagHandler 
*) 0 ; 
4252     wxHtmlTag 
*arg2 
= 0 ; 
4253     PyObject 
* obj0 
= 0 ; 
4254     PyObject 
* obj1 
= 0 ; 
4256         (char *) "self",(char *) "tag", NULL 
 
4259     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWinTagHandler_ParseInner",kwnames
,&obj0
,&obj1
)) goto fail
; 
4260     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWinTagHandler
, SWIG_POINTER_EXCEPTION 
| 0); 
4261     if (SWIG_arg_fail(1)) SWIG_fail
; 
4263         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
4264         if (SWIG_arg_fail(2)) SWIG_fail
; 
4266             SWIG_null_ref("wxHtmlTag"); 
4268         if (SWIG_arg_fail(2)) SWIG_fail
; 
4271         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4272         (arg1
)->ParseInner((wxHtmlTag 
const &)*arg2
); 
4274         wxPyEndAllowThreads(__tstate
); 
4275         if (PyErr_Occurred()) SWIG_fail
; 
4277     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4284 static PyObject 
* HtmlWinTagHandler_swigregister(PyObject 
*, PyObject 
*args
) { 
4286     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4287     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlWinTagHandler
, obj
); 
4289     return Py_BuildValue((char *)""); 
4291 static PyObject 
*_wrap_HtmlWinParser_AddTagHandler(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4292     PyObject 
*resultobj
; 
4293     PyObject 
*arg1 
= (PyObject 
*) 0 ; 
4294     PyObject 
* obj0 
= 0 ; 
4296         (char *) "tagHandlerClass", NULL 
 
4299     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWinParser_AddTagHandler",kwnames
,&obj0
)) goto fail
; 
4302         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4303         wxHtmlWinParser_AddTagHandler(arg1
); 
4305         wxPyEndAllowThreads(__tstate
); 
4306         if (PyErr_Occurred()) SWIG_fail
; 
4308     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4315 static PyObject 
*_wrap_new_HtmlSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4316     PyObject 
*resultobj
; 
4317     wxHtmlSelection 
*result
; 
4322     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlSelection",kwnames
)) goto fail
; 
4324         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4325         result 
= (wxHtmlSelection 
*)new wxHtmlSelection(); 
4327         wxPyEndAllowThreads(__tstate
); 
4328         if (PyErr_Occurred()) SWIG_fail
; 
4330     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlSelection
, 1); 
4337 static PyObject 
*_wrap_delete_HtmlSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4338     PyObject 
*resultobj
; 
4339     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4340     PyObject 
* obj0 
= 0 ; 
4342         (char *) "self", NULL 
 
4345     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlSelection",kwnames
,&obj0
)) goto fail
; 
4346     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4347     if (SWIG_arg_fail(1)) SWIG_fail
; 
4349         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4352         wxPyEndAllowThreads(__tstate
); 
4353         if (PyErr_Occurred()) SWIG_fail
; 
4355     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4362 static PyObject 
*_wrap_HtmlSelection_Set(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4363     PyObject 
*resultobj
; 
4364     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4366     wxHtmlCell 
*arg3 
= (wxHtmlCell 
*) 0 ; 
4368     wxHtmlCell 
*arg5 
= (wxHtmlCell 
*) 0 ; 
4371     PyObject 
* obj0 
= 0 ; 
4372     PyObject 
* obj1 
= 0 ; 
4373     PyObject 
* obj2 
= 0 ; 
4374     PyObject 
* obj3 
= 0 ; 
4375     PyObject 
* obj4 
= 0 ; 
4377         (char *) "self",(char *) "fromPos",(char *) "fromCell",(char *) "toPos",(char *) "toCell", NULL 
 
4380     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlSelection_Set",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
4381     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4382     if (SWIG_arg_fail(1)) SWIG_fail
; 
4385         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4387     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4388     if (SWIG_arg_fail(3)) SWIG_fail
; 
4391         if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
4393     SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4394     if (SWIG_arg_fail(5)) SWIG_fail
; 
4396         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4397         (arg1
)->Set((wxPoint 
const &)*arg2
,(wxHtmlCell 
const *)arg3
,(wxPoint 
const &)*arg4
,(wxHtmlCell 
const *)arg5
); 
4399         wxPyEndAllowThreads(__tstate
); 
4400         if (PyErr_Occurred()) SWIG_fail
; 
4402     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4409 static PyObject 
*_wrap_HtmlSelection_SetCells(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4410     PyObject 
*resultobj
; 
4411     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4412     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
4413     wxHtmlCell 
*arg3 
= (wxHtmlCell 
*) 0 ; 
4414     PyObject 
* obj0 
= 0 ; 
4415     PyObject 
* obj1 
= 0 ; 
4416     PyObject 
* obj2 
= 0 ; 
4418         (char *) "self",(char *) "fromCell",(char *) "toCell", NULL 
 
4421     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlSelection_SetCells",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
4422     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4423     if (SWIG_arg_fail(1)) SWIG_fail
; 
4424     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4425     if (SWIG_arg_fail(2)) SWIG_fail
; 
4426     SWIG_Python_ConvertPtr(obj2
, (void **)&arg3
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
4427     if (SWIG_arg_fail(3)) SWIG_fail
; 
4429         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4430         (arg1
)->Set((wxHtmlCell 
const *)arg2
,(wxHtmlCell 
const *)arg3
); 
4432         wxPyEndAllowThreads(__tstate
); 
4433         if (PyErr_Occurred()) SWIG_fail
; 
4435     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4442 static PyObject 
*_wrap_HtmlSelection_GetFromCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4443     PyObject 
*resultobj
; 
4444     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4446     PyObject 
* obj0 
= 0 ; 
4448         (char *) "self", NULL 
 
4451     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromCell",kwnames
,&obj0
)) goto fail
; 
4452     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4453     if (SWIG_arg_fail(1)) SWIG_fail
; 
4455         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4456         result 
= (wxHtmlCell 
*)((wxHtmlSelection 
const *)arg1
)->GetFromCell(); 
4458         wxPyEndAllowThreads(__tstate
); 
4459         if (PyErr_Occurred()) SWIG_fail
; 
4461     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
4468 static PyObject 
*_wrap_HtmlSelection_GetToCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4469     PyObject 
*resultobj
; 
4470     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4472     PyObject 
* obj0 
= 0 ; 
4474         (char *) "self", NULL 
 
4477     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToCell",kwnames
,&obj0
)) goto fail
; 
4478     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4479     if (SWIG_arg_fail(1)) SWIG_fail
; 
4481         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4482         result 
= (wxHtmlCell 
*)((wxHtmlSelection 
const *)arg1
)->GetToCell(); 
4484         wxPyEndAllowThreads(__tstate
); 
4485         if (PyErr_Occurred()) SWIG_fail
; 
4487     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
4494 static PyObject 
*_wrap_HtmlSelection_GetFromPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4495     PyObject 
*resultobj
; 
4496     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4498     PyObject 
* obj0 
= 0 ; 
4500         (char *) "self", NULL 
 
4503     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromPos",kwnames
,&obj0
)) goto fail
; 
4504     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4505     if (SWIG_arg_fail(1)) SWIG_fail
; 
4507         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4509             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetFromPos(); 
4510             result 
= (wxPoint 
*) &_result_ref
; 
4513         wxPyEndAllowThreads(__tstate
); 
4514         if (PyErr_Occurred()) SWIG_fail
; 
4516     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4523 static PyObject 
*_wrap_HtmlSelection_GetToPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4524     PyObject 
*resultobj
; 
4525     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4527     PyObject 
* obj0 
= 0 ; 
4529         (char *) "self", NULL 
 
4532     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToPos",kwnames
,&obj0
)) goto fail
; 
4533     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4534     if (SWIG_arg_fail(1)) SWIG_fail
; 
4536         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4538             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetToPos(); 
4539             result 
= (wxPoint 
*) &_result_ref
; 
4542         wxPyEndAllowThreads(__tstate
); 
4543         if (PyErr_Occurred()) SWIG_fail
; 
4545     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4552 static PyObject 
*_wrap_HtmlSelection_GetFromPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4553     PyObject 
*resultobj
; 
4554     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4556     PyObject 
* obj0 
= 0 ; 
4558         (char *) "self", NULL 
 
4561     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetFromPrivPos",kwnames
,&obj0
)) goto fail
; 
4562     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4563     if (SWIG_arg_fail(1)) SWIG_fail
; 
4565         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4567             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetFromPrivPos(); 
4568             result 
= (wxPoint 
*) &_result_ref
; 
4571         wxPyEndAllowThreads(__tstate
); 
4572         if (PyErr_Occurred()) SWIG_fail
; 
4574     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4581 static PyObject 
*_wrap_HtmlSelection_GetToPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4582     PyObject 
*resultobj
; 
4583     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4585     PyObject 
* obj0 
= 0 ; 
4587         (char *) "self", NULL 
 
4590     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_GetToPrivPos",kwnames
,&obj0
)) goto fail
; 
4591     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4592     if (SWIG_arg_fail(1)) SWIG_fail
; 
4594         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4596             wxPoint 
const &_result_ref 
= ((wxHtmlSelection 
const *)arg1
)->GetToPrivPos(); 
4597             result 
= (wxPoint 
*) &_result_ref
; 
4600         wxPyEndAllowThreads(__tstate
); 
4601         if (PyErr_Occurred()) SWIG_fail
; 
4603     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPoint
, 0); 
4610 static PyObject 
*_wrap_HtmlSelection_SetFromPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4611     PyObject 
*resultobj
; 
4612     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4615     PyObject 
* obj0 
= 0 ; 
4616     PyObject 
* obj1 
= 0 ; 
4618         (char *) "self",(char *) "pos", NULL 
 
4621     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlSelection_SetFromPrivPos",kwnames
,&obj0
,&obj1
)) goto fail
; 
4622     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4623     if (SWIG_arg_fail(1)) SWIG_fail
; 
4626         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4629         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4630         (arg1
)->SetFromPrivPos((wxPoint 
const &)*arg2
); 
4632         wxPyEndAllowThreads(__tstate
); 
4633         if (PyErr_Occurred()) SWIG_fail
; 
4635     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4642 static PyObject 
*_wrap_HtmlSelection_SetToPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4643     PyObject 
*resultobj
; 
4644     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4647     PyObject 
* obj0 
= 0 ; 
4648     PyObject 
* obj1 
= 0 ; 
4650         (char *) "self",(char *) "pos", NULL 
 
4653     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlSelection_SetToPrivPos",kwnames
,&obj0
,&obj1
)) goto fail
; 
4654     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4655     if (SWIG_arg_fail(1)) SWIG_fail
; 
4658         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
4661         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4662         (arg1
)->SetToPrivPos((wxPoint 
const &)*arg2
); 
4664         wxPyEndAllowThreads(__tstate
); 
4665         if (PyErr_Occurred()) SWIG_fail
; 
4667     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4674 static PyObject 
*_wrap_HtmlSelection_ClearPrivPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4675     PyObject 
*resultobj
; 
4676     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4677     PyObject 
* obj0 
= 0 ; 
4679         (char *) "self", NULL 
 
4682     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_ClearPrivPos",kwnames
,&obj0
)) goto fail
; 
4683     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4684     if (SWIG_arg_fail(1)) SWIG_fail
; 
4686         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4687         (arg1
)->ClearPrivPos(); 
4689         wxPyEndAllowThreads(__tstate
); 
4690         if (PyErr_Occurred()) SWIG_fail
; 
4692     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4699 static PyObject 
*_wrap_HtmlSelection_IsEmpty(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4700     PyObject 
*resultobj
; 
4701     wxHtmlSelection 
*arg1 
= (wxHtmlSelection 
*) 0 ; 
4703     PyObject 
* obj0 
= 0 ; 
4705         (char *) "self", NULL 
 
4708     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSelection_IsEmpty",kwnames
,&obj0
)) goto fail
; 
4709     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
4710     if (SWIG_arg_fail(1)) SWIG_fail
; 
4712         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4713         result 
= (bool)((wxHtmlSelection 
const *)arg1
)->IsEmpty(); 
4715         wxPyEndAllowThreads(__tstate
); 
4716         if (PyErr_Occurred()) SWIG_fail
; 
4719         resultobj 
= SWIG_From_bool((bool)(result
));  
4727 static PyObject 
* HtmlSelection_swigregister(PyObject 
*, PyObject 
*args
) { 
4729     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4730     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlSelection
, obj
); 
4732     return Py_BuildValue((char *)""); 
4734 static PyObject 
*_wrap_new_HtmlRenderingState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4735     PyObject 
*resultobj
; 
4736     wxHtmlRenderingState 
*result
; 
4741     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlRenderingState",kwnames
)) goto fail
; 
4743         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4744         result 
= (wxHtmlRenderingState 
*)new wxHtmlRenderingState(); 
4746         wxPyEndAllowThreads(__tstate
); 
4747         if (PyErr_Occurred()) SWIG_fail
; 
4749     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingState
, 1); 
4756 static PyObject 
*_wrap_delete_HtmlRenderingState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4757     PyObject 
*resultobj
; 
4758     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4759     PyObject 
* obj0 
= 0 ; 
4761         (char *) "self", NULL 
 
4764     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlRenderingState",kwnames
,&obj0
)) goto fail
; 
4765     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4766     if (SWIG_arg_fail(1)) SWIG_fail
; 
4768         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4771         wxPyEndAllowThreads(__tstate
); 
4772         if (PyErr_Occurred()) SWIG_fail
; 
4774     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4781 static PyObject 
*_wrap_HtmlRenderingState_SetSelectionState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4782     PyObject 
*resultobj
; 
4783     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4784     wxHtmlSelectionState arg2 
; 
4785     PyObject 
* obj0 
= 0 ; 
4786     PyObject 
* obj1 
= 0 ; 
4788         (char *) "self",(char *) "s", NULL 
 
4791     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetSelectionState",kwnames
,&obj0
,&obj1
)) goto fail
; 
4792     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4793     if (SWIG_arg_fail(1)) SWIG_fail
; 
4795         arg2 
= (wxHtmlSelectionState
)(SWIG_As_int(obj1
));  
4796         if (SWIG_arg_fail(2)) SWIG_fail
; 
4799         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4800         (arg1
)->SetSelectionState((wxHtmlSelectionState 
)arg2
); 
4802         wxPyEndAllowThreads(__tstate
); 
4803         if (PyErr_Occurred()) SWIG_fail
; 
4805     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4812 static PyObject 
*_wrap_HtmlRenderingState_GetSelectionState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4813     PyObject 
*resultobj
; 
4814     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4815     wxHtmlSelectionState result
; 
4816     PyObject 
* obj0 
= 0 ; 
4818         (char *) "self", NULL 
 
4821     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetSelectionState",kwnames
,&obj0
)) goto fail
; 
4822     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4823     if (SWIG_arg_fail(1)) SWIG_fail
; 
4825         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4826         result 
= (wxHtmlSelectionState
)((wxHtmlRenderingState 
const *)arg1
)->GetSelectionState(); 
4828         wxPyEndAllowThreads(__tstate
); 
4829         if (PyErr_Occurred()) SWIG_fail
; 
4831     resultobj 
= SWIG_From_int((result
)); 
4838 static PyObject 
*_wrap_HtmlRenderingState_SetFgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4839     PyObject 
*resultobj
; 
4840     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4841     wxColour 
*arg2 
= 0 ; 
4843     PyObject 
* obj0 
= 0 ; 
4844     PyObject 
* obj1 
= 0 ; 
4846         (char *) "self",(char *) "c", NULL 
 
4849     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetFgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
4850     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4851     if (SWIG_arg_fail(1)) SWIG_fail
; 
4854         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
4857         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4858         (arg1
)->SetFgColour((wxColour 
const &)*arg2
); 
4860         wxPyEndAllowThreads(__tstate
); 
4861         if (PyErr_Occurred()) SWIG_fail
; 
4863     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4870 static PyObject 
*_wrap_HtmlRenderingState_GetFgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4871     PyObject 
*resultobj
; 
4872     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4874     PyObject 
* obj0 
= 0 ; 
4876         (char *) "self", NULL 
 
4879     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetFgColour",kwnames
,&obj0
)) goto fail
; 
4880     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4881     if (SWIG_arg_fail(1)) SWIG_fail
; 
4883         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4885             wxColour 
const &_result_ref 
= ((wxHtmlRenderingState 
const *)arg1
)->GetFgColour(); 
4886             result 
= (wxColour 
*) &_result_ref
; 
4889         wxPyEndAllowThreads(__tstate
); 
4890         if (PyErr_Occurred()) SWIG_fail
; 
4892     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0); 
4899 static PyObject 
*_wrap_HtmlRenderingState_SetBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4900     PyObject 
*resultobj
; 
4901     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4902     wxColour 
*arg2 
= 0 ; 
4904     PyObject 
* obj0 
= 0 ; 
4905     PyObject 
* obj1 
= 0 ; 
4907         (char *) "self",(char *) "c", NULL 
 
4910     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingState_SetBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
4911     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4912     if (SWIG_arg_fail(1)) SWIG_fail
; 
4915         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
4918         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4919         (arg1
)->SetBgColour((wxColour 
const &)*arg2
); 
4921         wxPyEndAllowThreads(__tstate
); 
4922         if (PyErr_Occurred()) SWIG_fail
; 
4924     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
4931 static PyObject 
*_wrap_HtmlRenderingState_GetBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4932     PyObject 
*resultobj
; 
4933     wxHtmlRenderingState 
*arg1 
= (wxHtmlRenderingState 
*) 0 ; 
4935     PyObject 
* obj0 
= 0 ; 
4937         (char *) "self", NULL 
 
4940     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingState_GetBgColour",kwnames
,&obj0
)) goto fail
; 
4941     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingState
, SWIG_POINTER_EXCEPTION 
| 0); 
4942     if (SWIG_arg_fail(1)) SWIG_fail
; 
4944         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4946             wxColour 
const &_result_ref 
= ((wxHtmlRenderingState 
const *)arg1
)->GetBgColour(); 
4947             result 
= (wxColour 
*) &_result_ref
; 
4950         wxPyEndAllowThreads(__tstate
); 
4951         if (PyErr_Occurred()) SWIG_fail
; 
4953     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxColour
, 0); 
4960 static PyObject 
* HtmlRenderingState_swigregister(PyObject 
*, PyObject 
*args
) { 
4962     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
4963     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingState
, obj
); 
4965     return Py_BuildValue((char *)""); 
4967 static PyObject 
*_wrap_HtmlRenderingStyle_GetSelectedTextColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
4968     PyObject 
*resultobj
; 
4969     wxHtmlRenderingStyle 
*arg1 
= (wxHtmlRenderingStyle 
*) 0 ; 
4970     wxColour 
*arg2 
= 0 ; 
4973     PyObject 
* obj0 
= 0 ; 
4974     PyObject 
* obj1 
= 0 ; 
4976         (char *) "self",(char *) "clr", NULL 
 
4979     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingStyle_GetSelectedTextColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
4980     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
4981     if (SWIG_arg_fail(1)) SWIG_fail
; 
4984         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
4987         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4988         result 
= (arg1
)->GetSelectedTextColour((wxColour 
const &)*arg2
); 
4990         wxPyEndAllowThreads(__tstate
); 
4991         if (PyErr_Occurred()) SWIG_fail
; 
4994         wxColour 
* resultptr
; 
4995         resultptr 
= new wxColour((wxColour 
&)(result
)); 
4996         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5004 static PyObject 
*_wrap_HtmlRenderingStyle_GetSelectedTextBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5005     PyObject 
*resultobj
; 
5006     wxHtmlRenderingStyle 
*arg1 
= (wxHtmlRenderingStyle 
*) 0 ; 
5007     wxColour 
*arg2 
= 0 ; 
5010     PyObject 
* obj0 
= 0 ; 
5011     PyObject 
* obj1 
= 0 ; 
5013         (char *) "self",(char *) "clr", NULL 
 
5016     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingStyle_GetSelectedTextBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5017     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5018     if (SWIG_arg_fail(1)) SWIG_fail
; 
5021         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5024         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5025         result 
= (arg1
)->GetSelectedTextBgColour((wxColour 
const &)*arg2
); 
5027         wxPyEndAllowThreads(__tstate
); 
5028         if (PyErr_Occurred()) SWIG_fail
; 
5031         wxColour 
* resultptr
; 
5032         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5033         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5041 static PyObject 
* HtmlRenderingStyle_swigregister(PyObject 
*, PyObject 
*args
) { 
5043     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5044     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingStyle
, obj
); 
5046     return Py_BuildValue((char *)""); 
5048 static PyObject 
*_wrap_DefaultHtmlRenderingStyle_GetSelectedTextColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5049     PyObject 
*resultobj
; 
5050     wxDefaultHtmlRenderingStyle 
*arg1 
= (wxDefaultHtmlRenderingStyle 
*) 0 ; 
5051     wxColour 
*arg2 
= 0 ; 
5054     PyObject 
* obj0 
= 0 ; 
5055     PyObject 
* obj1 
= 0 ; 
5057         (char *) "self",(char *) "clr", NULL 
 
5060     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DefaultHtmlRenderingStyle_GetSelectedTextColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5061     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5062     if (SWIG_arg_fail(1)) SWIG_fail
; 
5065         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5068         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5069         result 
= (arg1
)->GetSelectedTextColour((wxColour 
const &)*arg2
); 
5071         wxPyEndAllowThreads(__tstate
); 
5072         if (PyErr_Occurred()) SWIG_fail
; 
5075         wxColour 
* resultptr
; 
5076         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5077         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5085 static PyObject 
*_wrap_DefaultHtmlRenderingStyle_GetSelectedTextBgColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5086     PyObject 
*resultobj
; 
5087     wxDefaultHtmlRenderingStyle 
*arg1 
= (wxDefaultHtmlRenderingStyle 
*) 0 ; 
5088     wxColour 
*arg2 
= 0 ; 
5091     PyObject 
* obj0 
= 0 ; 
5092     PyObject 
* obj1 
= 0 ; 
5094         (char *) "self",(char *) "clr", NULL 
 
5097     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:DefaultHtmlRenderingStyle_GetSelectedTextBgColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
5098     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5099     if (SWIG_arg_fail(1)) SWIG_fail
; 
5102         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
5105         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5106         result 
= (arg1
)->GetSelectedTextBgColour((wxColour 
const &)*arg2
); 
5108         wxPyEndAllowThreads(__tstate
); 
5109         if (PyErr_Occurred()) SWIG_fail
; 
5112         wxColour 
* resultptr
; 
5113         resultptr 
= new wxColour((wxColour 
&)(result
)); 
5114         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
5122 static PyObject 
* DefaultHtmlRenderingStyle_swigregister(PyObject 
*, PyObject 
*args
) { 
5124     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5125     SWIG_TypeClientData(SWIGTYPE_p_wxDefaultHtmlRenderingStyle
, obj
); 
5127     return Py_BuildValue((char *)""); 
5129 static PyObject 
*_wrap_new_HtmlRenderingInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5130     PyObject 
*resultobj
; 
5131     wxHtmlRenderingInfo 
*result
; 
5136     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlRenderingInfo",kwnames
)) goto fail
; 
5138         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5139         result 
= (wxHtmlRenderingInfo 
*)new wxHtmlRenderingInfo(); 
5141         wxPyEndAllowThreads(__tstate
); 
5142         if (PyErr_Occurred()) SWIG_fail
; 
5144     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingInfo
, 1); 
5151 static PyObject 
*_wrap_delete_HtmlRenderingInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5152     PyObject 
*resultobj
; 
5153     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5154     PyObject 
* obj0 
= 0 ; 
5156         (char *) "self", NULL 
 
5159     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlRenderingInfo",kwnames
,&obj0
)) goto fail
; 
5160     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5161     if (SWIG_arg_fail(1)) SWIG_fail
; 
5163         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5166         wxPyEndAllowThreads(__tstate
); 
5167         if (PyErr_Occurred()) SWIG_fail
; 
5169     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5176 static PyObject 
*_wrap_HtmlRenderingInfo_SetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5177     PyObject 
*resultobj
; 
5178     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5179     wxHtmlSelection 
*arg2 
= (wxHtmlSelection 
*) 0 ; 
5180     PyObject 
* obj0 
= 0 ; 
5181     PyObject 
* obj1 
= 0 ; 
5183         (char *) "self",(char *) "s", NULL 
 
5186     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingInfo_SetSelection",kwnames
,&obj0
,&obj1
)) goto fail
; 
5187     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5188     if (SWIG_arg_fail(1)) SWIG_fail
; 
5189     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
5190     if (SWIG_arg_fail(2)) SWIG_fail
; 
5192         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5193         (arg1
)->SetSelection(arg2
); 
5195         wxPyEndAllowThreads(__tstate
); 
5196         if (PyErr_Occurred()) SWIG_fail
; 
5198     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5205 static PyObject 
*_wrap_HtmlRenderingInfo_GetSelection(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5206     PyObject 
*resultobj
; 
5207     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5208     wxHtmlSelection 
*result
; 
5209     PyObject 
* obj0 
= 0 ; 
5211         (char *) "self", NULL 
 
5214     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetSelection",kwnames
,&obj0
)) goto fail
; 
5215     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5216     if (SWIG_arg_fail(1)) SWIG_fail
; 
5218         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5219         result 
= (wxHtmlSelection 
*)((wxHtmlRenderingInfo 
const *)arg1
)->GetSelection(); 
5221         wxPyEndAllowThreads(__tstate
); 
5222         if (PyErr_Occurred()) SWIG_fail
; 
5224     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlSelection
, 0); 
5231 static PyObject 
*_wrap_HtmlRenderingInfo_SetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5232     PyObject 
*resultobj
; 
5233     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5234     wxHtmlRenderingStyle 
*arg2 
= (wxHtmlRenderingStyle 
*) 0 ; 
5235     PyObject 
* obj0 
= 0 ; 
5236     PyObject 
* obj1 
= 0 ; 
5238         (char *) "self",(char *) "style", NULL 
 
5241     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlRenderingInfo_SetStyle",kwnames
,&obj0
,&obj1
)) goto fail
; 
5242     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5243     if (SWIG_arg_fail(1)) SWIG_fail
; 
5244     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlRenderingStyle
, SWIG_POINTER_EXCEPTION 
| 0); 
5245     if (SWIG_arg_fail(2)) SWIG_fail
; 
5247         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5248         (arg1
)->SetStyle(arg2
); 
5250         wxPyEndAllowThreads(__tstate
); 
5251         if (PyErr_Occurred()) SWIG_fail
; 
5253     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5260 static PyObject 
*_wrap_HtmlRenderingInfo_GetStyle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5261     PyObject 
*resultobj
; 
5262     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5263     wxHtmlRenderingStyle 
*result
; 
5264     PyObject 
* obj0 
= 0 ; 
5266         (char *) "self", NULL 
 
5269     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetStyle",kwnames
,&obj0
)) goto fail
; 
5270     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5271     if (SWIG_arg_fail(1)) SWIG_fail
; 
5273         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5275             wxHtmlRenderingStyle 
&_result_ref 
= (arg1
)->GetStyle(); 
5276             result 
= (wxHtmlRenderingStyle 
*) &_result_ref
; 
5279         wxPyEndAllowThreads(__tstate
); 
5280         if (PyErr_Occurred()) SWIG_fail
; 
5282     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingStyle
, 0); 
5289 static PyObject 
*_wrap_HtmlRenderingInfo_GetState(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5290     PyObject 
*resultobj
; 
5291     wxHtmlRenderingInfo 
*arg1 
= (wxHtmlRenderingInfo 
*) 0 ; 
5292     wxHtmlRenderingState 
*result
; 
5293     PyObject 
* obj0 
= 0 ; 
5295         (char *) "self", NULL 
 
5298     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlRenderingInfo_GetState",kwnames
,&obj0
)) goto fail
; 
5299     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5300     if (SWIG_arg_fail(1)) SWIG_fail
; 
5302         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5304             wxHtmlRenderingState 
&_result_ref 
= (arg1
)->GetState(); 
5305             result 
= (wxHtmlRenderingState 
*) &_result_ref
; 
5308         wxPyEndAllowThreads(__tstate
); 
5309         if (PyErr_Occurred()) SWIG_fail
; 
5311     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlRenderingState
, 0); 
5318 static PyObject 
* HtmlRenderingInfo_swigregister(PyObject 
*, PyObject 
*args
) { 
5320     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
5321     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlRenderingInfo
, obj
); 
5323     return Py_BuildValue((char *)""); 
5325 static PyObject 
*_wrap_new_HtmlCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5326     PyObject 
*resultobj
; 
5332     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlCell",kwnames
)) goto fail
; 
5334         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5335         result 
= (wxHtmlCell 
*)new wxHtmlCell(); 
5337         wxPyEndAllowThreads(__tstate
); 
5338         if (PyErr_Occurred()) SWIG_fail
; 
5340     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 1); 
5347 static PyObject 
*_wrap_HtmlCell_GetPosX(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5348     PyObject 
*resultobj
; 
5349     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5351     PyObject 
* obj0 
= 0 ; 
5353         (char *) "self", NULL 
 
5356     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetPosX",kwnames
,&obj0
)) goto fail
; 
5357     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5358     if (SWIG_arg_fail(1)) SWIG_fail
; 
5360         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5361         result 
= (int)(arg1
)->GetPosX(); 
5363         wxPyEndAllowThreads(__tstate
); 
5364         if (PyErr_Occurred()) SWIG_fail
; 
5367         resultobj 
= SWIG_From_int((int)(result
));  
5375 static PyObject 
*_wrap_HtmlCell_GetPosY(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5376     PyObject 
*resultobj
; 
5377     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5379     PyObject 
* obj0 
= 0 ; 
5381         (char *) "self", NULL 
 
5384     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetPosY",kwnames
,&obj0
)) goto fail
; 
5385     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5386     if (SWIG_arg_fail(1)) SWIG_fail
; 
5388         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5389         result 
= (int)(arg1
)->GetPosY(); 
5391         wxPyEndAllowThreads(__tstate
); 
5392         if (PyErr_Occurred()) SWIG_fail
; 
5395         resultobj 
= SWIG_From_int((int)(result
));  
5403 static PyObject 
*_wrap_HtmlCell_GetWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5404     PyObject 
*resultobj
; 
5405     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5407     PyObject 
* obj0 
= 0 ; 
5409         (char *) "self", NULL 
 
5412     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetWidth",kwnames
,&obj0
)) goto fail
; 
5413     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5414     if (SWIG_arg_fail(1)) SWIG_fail
; 
5416         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5417         result 
= (int)(arg1
)->GetWidth(); 
5419         wxPyEndAllowThreads(__tstate
); 
5420         if (PyErr_Occurred()) SWIG_fail
; 
5423         resultobj 
= SWIG_From_int((int)(result
));  
5431 static PyObject 
*_wrap_HtmlCell_GetHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5432     PyObject 
*resultobj
; 
5433     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5435     PyObject 
* obj0 
= 0 ; 
5437         (char *) "self", NULL 
 
5440     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetHeight",kwnames
,&obj0
)) goto fail
; 
5441     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5442     if (SWIG_arg_fail(1)) SWIG_fail
; 
5444         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5445         result 
= (int)(arg1
)->GetHeight(); 
5447         wxPyEndAllowThreads(__tstate
); 
5448         if (PyErr_Occurred()) SWIG_fail
; 
5451         resultobj 
= SWIG_From_int((int)(result
));  
5459 static PyObject 
*_wrap_HtmlCell_GetDescent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5460     PyObject 
*resultobj
; 
5461     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5463     PyObject 
* obj0 
= 0 ; 
5465         (char *) "self", NULL 
 
5468     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetDescent",kwnames
,&obj0
)) goto fail
; 
5469     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5470     if (SWIG_arg_fail(1)) SWIG_fail
; 
5472         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5473         result 
= (int)(arg1
)->GetDescent(); 
5475         wxPyEndAllowThreads(__tstate
); 
5476         if (PyErr_Occurred()) SWIG_fail
; 
5479         resultobj 
= SWIG_From_int((int)(result
));  
5487 static PyObject 
*_wrap_HtmlCell_GetMaxTotalWidth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5488     PyObject 
*resultobj
; 
5489     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5491     PyObject 
* obj0 
= 0 ; 
5493         (char *) "self", NULL 
 
5496     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetMaxTotalWidth",kwnames
,&obj0
)) goto fail
; 
5497     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5498     if (SWIG_arg_fail(1)) SWIG_fail
; 
5500         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5501         result 
= (int)((wxHtmlCell 
const *)arg1
)->GetMaxTotalWidth(); 
5503         wxPyEndAllowThreads(__tstate
); 
5504         if (PyErr_Occurred()) SWIG_fail
; 
5507         resultobj 
= SWIG_From_int((int)(result
));  
5515 static PyObject 
*_wrap_HtmlCell_GetId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5516     PyObject 
*resultobj
; 
5517     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5519     PyObject 
* obj0 
= 0 ; 
5521         (char *) "self", NULL 
 
5524     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetId",kwnames
,&obj0
)) goto fail
; 
5525     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5526     if (SWIG_arg_fail(1)) SWIG_fail
; 
5528         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5530             wxString 
const &_result_ref 
= ((wxHtmlCell 
const *)arg1
)->GetId(); 
5531             result 
= (wxString 
*) &_result_ref
; 
5534         wxPyEndAllowThreads(__tstate
); 
5535         if (PyErr_Occurred()) SWIG_fail
; 
5539         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
5541         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
5550 static PyObject 
*_wrap_HtmlCell_SetId(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5551     PyObject 
*resultobj
; 
5552     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5553     wxString 
*arg2 
= 0 ; 
5554     bool temp2 
= false ; 
5555     PyObject 
* obj0 
= 0 ; 
5556     PyObject 
* obj1 
= 0 ; 
5558         (char *) "self",(char *) "id", NULL 
 
5561     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetId",kwnames
,&obj0
,&obj1
)) goto fail
; 
5562     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5563     if (SWIG_arg_fail(1)) SWIG_fail
; 
5565         arg2 
= wxString_in_helper(obj1
); 
5566         if (arg2 
== NULL
) SWIG_fail
; 
5570         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5571         (arg1
)->SetId((wxString 
const &)*arg2
); 
5573         wxPyEndAllowThreads(__tstate
); 
5574         if (PyErr_Occurred()) SWIG_fail
; 
5576     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5591 static PyObject 
*_wrap_HtmlCell_GetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5592     PyObject 
*resultobj
; 
5593     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5594     int arg2 
= (int) 0 ; 
5595     int arg3 
= (int) 0 ; 
5596     wxHtmlLinkInfo 
*result
; 
5597     PyObject 
* obj0 
= 0 ; 
5598     PyObject 
* obj1 
= 0 ; 
5599     PyObject 
* obj2 
= 0 ; 
5601         (char *) "self",(char *) "x",(char *) "y", NULL 
 
5604     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OO:HtmlCell_GetLink",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5605     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5606     if (SWIG_arg_fail(1)) SWIG_fail
; 
5609             arg2 
= (int)(SWIG_As_int(obj1
));  
5610             if (SWIG_arg_fail(2)) SWIG_fail
; 
5615             arg3 
= (int)(SWIG_As_int(obj2
));  
5616             if (SWIG_arg_fail(3)) SWIG_fail
; 
5620         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5621         result 
= (wxHtmlLinkInfo 
*)(arg1
)->GetLink(arg2
,arg3
); 
5623         wxPyEndAllowThreads(__tstate
); 
5624         if (PyErr_Occurred()) SWIG_fail
; 
5626     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlLinkInfo
, 0); 
5633 static PyObject 
*_wrap_HtmlCell_GetNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5634     PyObject 
*resultobj
; 
5635     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5637     PyObject 
* obj0 
= 0 ; 
5639         (char *) "self", NULL 
 
5642     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetNext",kwnames
,&obj0
)) goto fail
; 
5643     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5644     if (SWIG_arg_fail(1)) SWIG_fail
; 
5646         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5647         result 
= (wxHtmlCell 
*)(arg1
)->GetNext(); 
5649         wxPyEndAllowThreads(__tstate
); 
5650         if (PyErr_Occurred()) SWIG_fail
; 
5652     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
5659 static PyObject 
*_wrap_HtmlCell_GetParent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5660     PyObject 
*resultobj
; 
5661     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5662     wxHtmlContainerCell 
*result
; 
5663     PyObject 
* obj0 
= 0 ; 
5665         (char *) "self", NULL 
 
5668     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetParent",kwnames
,&obj0
)) goto fail
; 
5669     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5670     if (SWIG_arg_fail(1)) SWIG_fail
; 
5672         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5673         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetParent(); 
5675         wxPyEndAllowThreads(__tstate
); 
5676         if (PyErr_Occurred()) SWIG_fail
; 
5678     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
5685 static PyObject 
*_wrap_HtmlCell_GetFirstChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5686     PyObject 
*resultobj
; 
5687     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5689     PyObject 
* obj0 
= 0 ; 
5691         (char *) "self", NULL 
 
5694     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetFirstChild",kwnames
,&obj0
)) goto fail
; 
5695     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5696     if (SWIG_arg_fail(1)) SWIG_fail
; 
5698         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5699         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetFirstChild(); 
5701         wxPyEndAllowThreads(__tstate
); 
5702         if (PyErr_Occurred()) SWIG_fail
; 
5704     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
5711 static PyObject 
*_wrap_HtmlCell_GetCursor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5712     PyObject 
*resultobj
; 
5713     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5715     PyObject 
* obj0 
= 0 ; 
5717         (char *) "self", NULL 
 
5720     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetCursor",kwnames
,&obj0
)) goto fail
; 
5721     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5722     if (SWIG_arg_fail(1)) SWIG_fail
; 
5724         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5725         result 
= ((wxHtmlCell 
const *)arg1
)->GetCursor(); 
5727         wxPyEndAllowThreads(__tstate
); 
5728         if (PyErr_Occurred()) SWIG_fail
; 
5731         wxCursor 
* resultptr
; 
5732         resultptr 
= new wxCursor((wxCursor 
&)(result
)); 
5733         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxCursor
, 1); 
5741 static PyObject 
*_wrap_HtmlCell_IsFormattingCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5742     PyObject 
*resultobj
; 
5743     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5745     PyObject 
* obj0 
= 0 ; 
5747         (char *) "self", NULL 
 
5750     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsFormattingCell",kwnames
,&obj0
)) goto fail
; 
5751     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5752     if (SWIG_arg_fail(1)) SWIG_fail
; 
5754         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5755         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsFormattingCell(); 
5757         wxPyEndAllowThreads(__tstate
); 
5758         if (PyErr_Occurred()) SWIG_fail
; 
5761         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
5769 static PyObject 
*_wrap_HtmlCell_SetLink(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5770     PyObject 
*resultobj
; 
5771     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5772     wxHtmlLinkInfo 
*arg2 
= 0 ; 
5773     PyObject 
* obj0 
= 0 ; 
5774     PyObject 
* obj1 
= 0 ; 
5776         (char *) "self",(char *) "link", NULL 
 
5779     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetLink",kwnames
,&obj0
,&obj1
)) goto fail
; 
5780     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5781     if (SWIG_arg_fail(1)) SWIG_fail
; 
5783         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5784         if (SWIG_arg_fail(2)) SWIG_fail
; 
5786             SWIG_null_ref("wxHtmlLinkInfo"); 
5788         if (SWIG_arg_fail(2)) SWIG_fail
; 
5791         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5792         (arg1
)->SetLink((wxHtmlLinkInfo 
const &)*arg2
); 
5794         wxPyEndAllowThreads(__tstate
); 
5795         if (PyErr_Occurred()) SWIG_fail
; 
5797     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5804 static PyObject 
*_wrap_HtmlCell_SetNext(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5805     PyObject 
*resultobj
; 
5806     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5807     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
5808     PyObject 
* obj0 
= 0 ; 
5809     PyObject 
* obj1 
= 0 ; 
5811         (char *) "self",(char *) "cell", NULL 
 
5814     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetNext",kwnames
,&obj0
,&obj1
)) goto fail
; 
5815     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5816     if (SWIG_arg_fail(1)) SWIG_fail
; 
5817     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5818     if (SWIG_arg_fail(2)) SWIG_fail
; 
5820         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5821         (arg1
)->SetNext(arg2
); 
5823         wxPyEndAllowThreads(__tstate
); 
5824         if (PyErr_Occurred()) SWIG_fail
; 
5826     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5833 static PyObject 
*_wrap_HtmlCell_SetParent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5834     PyObject 
*resultobj
; 
5835     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5836     wxHtmlContainerCell 
*arg2 
= (wxHtmlContainerCell 
*) 0 ; 
5837     PyObject 
* obj0 
= 0 ; 
5838     PyObject 
* obj1 
= 0 ; 
5840         (char *) "self",(char *) "p", NULL 
 
5843     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetParent",kwnames
,&obj0
,&obj1
)) goto fail
; 
5844     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5845     if (SWIG_arg_fail(1)) SWIG_fail
; 
5846     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5847     if (SWIG_arg_fail(2)) SWIG_fail
; 
5849         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5850         (arg1
)->SetParent(arg2
); 
5852         wxPyEndAllowThreads(__tstate
); 
5853         if (PyErr_Occurred()) SWIG_fail
; 
5855     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5862 static PyObject 
*_wrap_HtmlCell_SetPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5863     PyObject 
*resultobj
; 
5864     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5867     PyObject 
* obj0 
= 0 ; 
5868     PyObject 
* obj1 
= 0 ; 
5869     PyObject 
* obj2 
= 0 ; 
5871         (char *) "self",(char *) "x",(char *) "y", NULL 
 
5874     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlCell_SetPos",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
5875     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5876     if (SWIG_arg_fail(1)) SWIG_fail
; 
5878         arg2 
= (int)(SWIG_As_int(obj1
));  
5879         if (SWIG_arg_fail(2)) SWIG_fail
; 
5882         arg3 
= (int)(SWIG_As_int(obj2
));  
5883         if (SWIG_arg_fail(3)) SWIG_fail
; 
5886         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5887         (arg1
)->SetPos(arg2
,arg3
); 
5889         wxPyEndAllowThreads(__tstate
); 
5890         if (PyErr_Occurred()) SWIG_fail
; 
5892     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5899 static PyObject 
*_wrap_HtmlCell_Layout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5900     PyObject 
*resultobj
; 
5901     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5903     PyObject 
* obj0 
= 0 ; 
5904     PyObject 
* obj1 
= 0 ; 
5906         (char *) "self",(char *) "w", NULL 
 
5909     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_Layout",kwnames
,&obj0
,&obj1
)) goto fail
; 
5910     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5911     if (SWIG_arg_fail(1)) SWIG_fail
; 
5913         arg2 
= (int)(SWIG_As_int(obj1
));  
5914         if (SWIG_arg_fail(2)) SWIG_fail
; 
5917         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5918         (arg1
)->Layout(arg2
); 
5920         wxPyEndAllowThreads(__tstate
); 
5921         if (PyErr_Occurred()) SWIG_fail
; 
5923     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5930 static PyObject 
*_wrap_HtmlCell_Draw(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
5931     PyObject 
*resultobj
; 
5932     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
5938     wxHtmlRenderingInfo 
*arg7 
= 0 ; 
5939     PyObject 
* obj0 
= 0 ; 
5940     PyObject 
* obj1 
= 0 ; 
5941     PyObject 
* obj2 
= 0 ; 
5942     PyObject 
* obj3 
= 0 ; 
5943     PyObject 
* obj4 
= 0 ; 
5944     PyObject 
* obj5 
= 0 ; 
5945     PyObject 
* obj6 
= 0 ; 
5947         (char *) "self",(char *) "dc",(char *) "x",(char *) "y",(char *) "view_y1",(char *) "view_y2",(char *) "info", NULL 
 
5950     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO:HtmlCell_Draw",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
5951     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
5952     if (SWIG_arg_fail(1)) SWIG_fail
; 
5954         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
5955         if (SWIG_arg_fail(2)) SWIG_fail
; 
5957             SWIG_null_ref("wxDC"); 
5959         if (SWIG_arg_fail(2)) SWIG_fail
; 
5962         arg3 
= (int)(SWIG_As_int(obj2
));  
5963         if (SWIG_arg_fail(3)) SWIG_fail
; 
5966         arg4 
= (int)(SWIG_As_int(obj3
));  
5967         if (SWIG_arg_fail(4)) SWIG_fail
; 
5970         arg5 
= (int)(SWIG_As_int(obj4
));  
5971         if (SWIG_arg_fail(5)) SWIG_fail
; 
5974         arg6 
= (int)(SWIG_As_int(obj5
));  
5975         if (SWIG_arg_fail(6)) SWIG_fail
; 
5978         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
5979         if (SWIG_arg_fail(7)) SWIG_fail
; 
5981             SWIG_null_ref("wxHtmlRenderingInfo"); 
5983         if (SWIG_arg_fail(7)) SWIG_fail
; 
5986         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5987         (arg1
)->Draw(*arg2
,arg3
,arg4
,arg5
,arg6
,*arg7
); 
5989         wxPyEndAllowThreads(__tstate
); 
5990         if (PyErr_Occurred()) SWIG_fail
; 
5992     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
5999 static PyObject 
*_wrap_HtmlCell_DrawInvisible(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6000     PyObject 
*resultobj
; 
6001     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6005     wxHtmlRenderingInfo 
*arg5 
= 0 ; 
6006     PyObject 
* obj0 
= 0 ; 
6007     PyObject 
* obj1 
= 0 ; 
6008     PyObject 
* obj2 
= 0 ; 
6009     PyObject 
* obj3 
= 0 ; 
6010     PyObject 
* obj4 
= 0 ; 
6012         (char *) "self",(char *) "dc",(char *) "x",(char *) "y",(char *) "info", NULL 
 
6015     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlCell_DrawInvisible",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
6016     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6017     if (SWIG_arg_fail(1)) SWIG_fail
; 
6019         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
6020         if (SWIG_arg_fail(2)) SWIG_fail
; 
6022             SWIG_null_ref("wxDC"); 
6024         if (SWIG_arg_fail(2)) SWIG_fail
; 
6027         arg3 
= (int)(SWIG_As_int(obj2
));  
6028         if (SWIG_arg_fail(3)) SWIG_fail
; 
6031         arg4 
= (int)(SWIG_As_int(obj3
));  
6032         if (SWIG_arg_fail(4)) SWIG_fail
; 
6035         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlRenderingInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
6036         if (SWIG_arg_fail(5)) SWIG_fail
; 
6038             SWIG_null_ref("wxHtmlRenderingInfo"); 
6040         if (SWIG_arg_fail(5)) SWIG_fail
; 
6043         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6044         (arg1
)->DrawInvisible(*arg2
,arg3
,arg4
,*arg5
); 
6046         wxPyEndAllowThreads(__tstate
); 
6047         if (PyErr_Occurred()) SWIG_fail
; 
6049     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6056 static PyObject 
*_wrap_HtmlCell_Find(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6057     PyObject 
*resultobj
; 
6058     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6060     void *arg3 
= (void *) 0 ; 
6062     PyObject 
* obj0 
= 0 ; 
6063     PyObject 
* obj1 
= 0 ; 
6064     PyObject 
* obj2 
= 0 ; 
6066         (char *) "self",(char *) "condition",(char *) "param", NULL 
 
6069     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlCell_Find",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6070     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6071     if (SWIG_arg_fail(1)) SWIG_fail
; 
6073         arg2 
= (int)(SWIG_As_int(obj1
));  
6074         if (SWIG_arg_fail(2)) SWIG_fail
; 
6077         if ((SWIG_ConvertPtr(obj2
,(void **)(&arg3
),0,SWIG_POINTER_EXCEPTION
|0))== -1) { 
6078             SWIG_arg_fail(3);SWIG_fail
; 
6082         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6083         result 
= (wxHtmlCell 
*)(arg1
)->Find(arg2
,(void const *)arg3
); 
6085         wxPyEndAllowThreads(__tstate
); 
6086         if (PyErr_Occurred()) SWIG_fail
; 
6088     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6095 static PyObject 
*_wrap_HtmlCell_AdjustPagebreak(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6096     PyObject 
*resultobj
; 
6097     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6098     int *arg2 
= (int *) 0 ; 
6102     PyObject 
* obj0 
= 0 ; 
6103     PyObject 
* obj1 
= 0 ; 
6105         (char *) "self",(char *) "INOUT", NULL 
 
6108     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_AdjustPagebreak",kwnames
,&obj0
,&obj1
)) goto fail
; 
6109     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6110     if (SWIG_arg_fail(1)) SWIG_fail
; 
6112         if (!(SWIG_ConvertPtr(obj1
,(void **)(&arg2
),SWIGTYPE_p_int
,0) != -1)) { 
6113             temp2 
= SWIG_As_int(obj1
); 
6114             if (SWIG_arg_fail(2)) SWIG_fail
; 
6120         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6121         result 
= (bool)(arg1
)->AdjustPagebreak(arg2
); 
6123         wxPyEndAllowThreads(__tstate
); 
6124         if (PyErr_Occurred()) SWIG_fail
; 
6127         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6129     resultobj 
= t_output_helper(resultobj
, ((res2 
== SWIG_NEWOBJ
) ? 
6130     SWIG_From_int((*arg2
)) : SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, 0))); 
6137 static PyObject 
*_wrap_HtmlCell_SetCanLiveOnPagebreak(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6138     PyObject 
*resultobj
; 
6139     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6141     PyObject 
* obj0 
= 0 ; 
6142     PyObject 
* obj1 
= 0 ; 
6144         (char *) "self",(char *) "can", NULL 
 
6147     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_SetCanLiveOnPagebreak",kwnames
,&obj0
,&obj1
)) goto fail
; 
6148     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6149     if (SWIG_arg_fail(1)) SWIG_fail
; 
6151         arg2 
= (bool)(SWIG_As_bool(obj1
));  
6152         if (SWIG_arg_fail(2)) SWIG_fail
; 
6155         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6156         (arg1
)->SetCanLiveOnPagebreak(arg2
); 
6158         wxPyEndAllowThreads(__tstate
); 
6159         if (PyErr_Occurred()) SWIG_fail
; 
6161     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6168 static PyObject 
*_wrap_HtmlCell_IsLinebreakAllowed(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6169     PyObject 
*resultobj
; 
6170     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6172     PyObject 
* obj0 
= 0 ; 
6174         (char *) "self", NULL 
 
6177     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsLinebreakAllowed",kwnames
,&obj0
)) goto fail
; 
6178     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6179     if (SWIG_arg_fail(1)) SWIG_fail
; 
6181         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6182         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsLinebreakAllowed(); 
6184         wxPyEndAllowThreads(__tstate
); 
6185         if (PyErr_Occurred()) SWIG_fail
; 
6188         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6196 static PyObject 
*_wrap_HtmlCell_IsTerminalCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6197     PyObject 
*resultobj
; 
6198     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6200     PyObject 
* obj0 
= 0 ; 
6202         (char *) "self", NULL 
 
6205     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_IsTerminalCell",kwnames
,&obj0
)) goto fail
; 
6206     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6207     if (SWIG_arg_fail(1)) SWIG_fail
; 
6209         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6210         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsTerminalCell(); 
6212         wxPyEndAllowThreads(__tstate
); 
6213         if (PyErr_Occurred()) SWIG_fail
; 
6216         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6224 static PyObject 
*_wrap_HtmlCell_FindCellByPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6225     PyObject 
*resultobj
; 
6226     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6229     unsigned int arg4 
= (unsigned int) wxHTML_FIND_EXACT 
; 
6231     PyObject 
* obj0 
= 0 ; 
6232     PyObject 
* obj1 
= 0 ; 
6233     PyObject 
* obj2 
= 0 ; 
6234     PyObject 
* obj3 
= 0 ; 
6236         (char *) "self",(char *) "x",(char *) "y",(char *) "flags", NULL 
 
6239     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlCell_FindCellByPos",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
6240     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6241     if (SWIG_arg_fail(1)) SWIG_fail
; 
6243         arg2 
= (int)(SWIG_As_int(obj1
));  
6244         if (SWIG_arg_fail(2)) SWIG_fail
; 
6247         arg3 
= (int)(SWIG_As_int(obj2
));  
6248         if (SWIG_arg_fail(3)) SWIG_fail
; 
6252             arg4 
= (unsigned int)(SWIG_As_unsigned_SS_int(obj3
));  
6253             if (SWIG_arg_fail(4)) SWIG_fail
; 
6257         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6258         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->FindCellByPos(arg2
,arg3
,arg4
); 
6260         wxPyEndAllowThreads(__tstate
); 
6261         if (PyErr_Occurred()) SWIG_fail
; 
6263     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6270 static PyObject 
*_wrap_HtmlCell_GetAbsPos(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6271     PyObject 
*resultobj
; 
6272     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6274     PyObject 
* obj0 
= 0 ; 
6276         (char *) "self", NULL 
 
6279     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetAbsPos",kwnames
,&obj0
)) goto fail
; 
6280     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6281     if (SWIG_arg_fail(1)) SWIG_fail
; 
6283         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6284         result 
= ((wxHtmlCell 
const *)arg1
)->GetAbsPos(); 
6286         wxPyEndAllowThreads(__tstate
); 
6287         if (PyErr_Occurred()) SWIG_fail
; 
6290         wxPoint 
* resultptr
; 
6291         resultptr 
= new wxPoint((wxPoint 
&)(result
)); 
6292         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxPoint
, 1); 
6300 static PyObject 
*_wrap_HtmlCell_GetFirstTerminal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6301     PyObject 
*resultobj
; 
6302     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6304     PyObject 
* obj0 
= 0 ; 
6306         (char *) "self", NULL 
 
6309     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetFirstTerminal",kwnames
,&obj0
)) goto fail
; 
6310     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6311     if (SWIG_arg_fail(1)) SWIG_fail
; 
6313         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6314         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetFirstTerminal(); 
6316         wxPyEndAllowThreads(__tstate
); 
6317         if (PyErr_Occurred()) SWIG_fail
; 
6319     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6326 static PyObject 
*_wrap_HtmlCell_GetLastTerminal(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6327     PyObject 
*resultobj
; 
6328     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6330     PyObject 
* obj0 
= 0 ; 
6332         (char *) "self", NULL 
 
6335     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetLastTerminal",kwnames
,&obj0
)) goto fail
; 
6336     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6337     if (SWIG_arg_fail(1)) SWIG_fail
; 
6339         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6340         result 
= (wxHtmlCell 
*)((wxHtmlCell 
const *)arg1
)->GetLastTerminal(); 
6342         wxPyEndAllowThreads(__tstate
); 
6343         if (PyErr_Occurred()) SWIG_fail
; 
6345     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
6352 static PyObject 
*_wrap_HtmlCell_GetDepth(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6353     PyObject 
*resultobj
; 
6354     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6355     unsigned int result
; 
6356     PyObject 
* obj0 
= 0 ; 
6358         (char *) "self", NULL 
 
6361     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlCell_GetDepth",kwnames
,&obj0
)) goto fail
; 
6362     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6363     if (SWIG_arg_fail(1)) SWIG_fail
; 
6365         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6366         result 
= (unsigned int)((wxHtmlCell 
const *)arg1
)->GetDepth(); 
6368         wxPyEndAllowThreads(__tstate
); 
6369         if (PyErr_Occurred()) SWIG_fail
; 
6372         resultobj 
= SWIG_From_unsigned_SS_int((unsigned int)(result
));  
6380 static PyObject 
*_wrap_HtmlCell_IsBefore(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6381     PyObject 
*resultobj
; 
6382     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6383     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
6385     PyObject 
* obj0 
= 0 ; 
6386     PyObject 
* obj1 
= 0 ; 
6388         (char *) "self",(char *) "cell", NULL 
 
6391     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_IsBefore",kwnames
,&obj0
,&obj1
)) goto fail
; 
6392     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6393     if (SWIG_arg_fail(1)) SWIG_fail
; 
6394     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6395     if (SWIG_arg_fail(2)) SWIG_fail
; 
6397         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6398         result 
= (bool)((wxHtmlCell 
const *)arg1
)->IsBefore(arg2
); 
6400         wxPyEndAllowThreads(__tstate
); 
6401         if (PyErr_Occurred()) SWIG_fail
; 
6404         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6412 static PyObject 
*_wrap_HtmlCell_ConvertToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6413     PyObject 
*resultobj
; 
6414     wxHtmlCell 
*arg1 
= (wxHtmlCell 
*) 0 ; 
6415     wxHtmlSelection 
*arg2 
= (wxHtmlSelection 
*) 0 ; 
6417     PyObject 
* obj0 
= 0 ; 
6418     PyObject 
* obj1 
= 0 ; 
6420         (char *) "self",(char *) "sel", NULL 
 
6423     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlCell_ConvertToText",kwnames
,&obj0
,&obj1
)) goto fail
; 
6424     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6425     if (SWIG_arg_fail(1)) SWIG_fail
; 
6426     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlSelection
, SWIG_POINTER_EXCEPTION 
| 0); 
6427     if (SWIG_arg_fail(2)) SWIG_fail
; 
6429         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6430         result 
= ((wxHtmlCell 
const *)arg1
)->ConvertToText(arg2
); 
6432         wxPyEndAllowThreads(__tstate
); 
6433         if (PyErr_Occurred()) SWIG_fail
; 
6437         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
6439         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
6448 static PyObject 
* HtmlCell_swigregister(PyObject 
*, PyObject 
*args
) { 
6450     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6451     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlCell
, obj
); 
6453     return Py_BuildValue((char *)""); 
6455 static PyObject 
*_wrap_new_HtmlWordCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6456     PyObject 
*resultobj
; 
6457     wxString 
*arg1 
= 0 ; 
6459     wxHtmlWordCell 
*result
; 
6460     bool temp1 
= false ; 
6461     PyObject 
* obj0 
= 0 ; 
6462     PyObject 
* obj1 
= 0 ; 
6464         (char *) "word",(char *) "dc", NULL 
 
6467     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:new_HtmlWordCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
6469         arg1 
= wxString_in_helper(obj0
); 
6470         if (arg1 
== NULL
) SWIG_fail
; 
6474         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
6475         if (SWIG_arg_fail(2)) SWIG_fail
; 
6477             SWIG_null_ref("wxDC"); 
6479         if (SWIG_arg_fail(2)) SWIG_fail
; 
6482         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6483         result 
= (wxHtmlWordCell 
*)new wxHtmlWordCell((wxString 
const &)*arg1
,*arg2
); 
6485         wxPyEndAllowThreads(__tstate
); 
6486         if (PyErr_Occurred()) SWIG_fail
; 
6488     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWordCell
, 1); 
6503 static PyObject 
* HtmlWordCell_swigregister(PyObject 
*, PyObject 
*args
) { 
6505     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
6506     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWordCell
, obj
); 
6508     return Py_BuildValue((char *)""); 
6510 static PyObject 
*_wrap_new_HtmlContainerCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6511     PyObject 
*resultobj
; 
6512     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6513     wxHtmlContainerCell 
*result
; 
6514     PyObject 
* obj0 
= 0 ; 
6516         (char *) "parent", NULL 
 
6519     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_HtmlContainerCell",kwnames
,&obj0
)) goto fail
; 
6520     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6521     if (SWIG_arg_fail(1)) SWIG_fail
; 
6523         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6524         result 
= (wxHtmlContainerCell 
*)new wxHtmlContainerCell(arg1
); 
6526         wxPyEndAllowThreads(__tstate
); 
6527         if (PyErr_Occurred()) SWIG_fail
; 
6529     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 1); 
6536 static PyObject 
*_wrap_HtmlContainerCell_InsertCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6537     PyObject 
*resultobj
; 
6538     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6539     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
6540     PyObject 
* obj0 
= 0 ; 
6541     PyObject 
* obj1 
= 0 ; 
6543         (char *) "self",(char *) "cell", NULL 
 
6546     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_InsertCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
6547     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6548     if (SWIG_arg_fail(1)) SWIG_fail
; 
6549     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6550     if (SWIG_arg_fail(2)) SWIG_fail
; 
6552         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6553         (arg1
)->InsertCell(arg2
); 
6555         wxPyEndAllowThreads(__tstate
); 
6556         if (PyErr_Occurred()) SWIG_fail
; 
6558     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6565 static PyObject 
*_wrap_HtmlContainerCell_SetAlignHor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6566     PyObject 
*resultobj
; 
6567     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6569     PyObject 
* obj0 
= 0 ; 
6570     PyObject 
* obj1 
= 0 ; 
6572         (char *) "self",(char *) "al", NULL 
 
6575     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlignHor",kwnames
,&obj0
,&obj1
)) goto fail
; 
6576     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6577     if (SWIG_arg_fail(1)) SWIG_fail
; 
6579         arg2 
= (int)(SWIG_As_int(obj1
));  
6580         if (SWIG_arg_fail(2)) SWIG_fail
; 
6583         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6584         (arg1
)->SetAlignHor(arg2
); 
6586         wxPyEndAllowThreads(__tstate
); 
6587         if (PyErr_Occurred()) SWIG_fail
; 
6589     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6596 static PyObject 
*_wrap_HtmlContainerCell_GetAlignHor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6597     PyObject 
*resultobj
; 
6598     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6600     PyObject 
* obj0 
= 0 ; 
6602         (char *) "self", NULL 
 
6605     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetAlignHor",kwnames
,&obj0
)) goto fail
; 
6606     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6607     if (SWIG_arg_fail(1)) SWIG_fail
; 
6609         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6610         result 
= (int)(arg1
)->GetAlignHor(); 
6612         wxPyEndAllowThreads(__tstate
); 
6613         if (PyErr_Occurred()) SWIG_fail
; 
6616         resultobj 
= SWIG_From_int((int)(result
));  
6624 static PyObject 
*_wrap_HtmlContainerCell_SetAlignVer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6625     PyObject 
*resultobj
; 
6626     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6628     PyObject 
* obj0 
= 0 ; 
6629     PyObject 
* obj1 
= 0 ; 
6631         (char *) "self",(char *) "al", NULL 
 
6634     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlignVer",kwnames
,&obj0
,&obj1
)) goto fail
; 
6635     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6636     if (SWIG_arg_fail(1)) SWIG_fail
; 
6638         arg2 
= (int)(SWIG_As_int(obj1
));  
6639         if (SWIG_arg_fail(2)) SWIG_fail
; 
6642         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6643         (arg1
)->SetAlignVer(arg2
); 
6645         wxPyEndAllowThreads(__tstate
); 
6646         if (PyErr_Occurred()) SWIG_fail
; 
6648     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6655 static PyObject 
*_wrap_HtmlContainerCell_GetAlignVer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6656     PyObject 
*resultobj
; 
6657     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6659     PyObject 
* obj0 
= 0 ; 
6661         (char *) "self", NULL 
 
6664     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetAlignVer",kwnames
,&obj0
)) goto fail
; 
6665     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6666     if (SWIG_arg_fail(1)) SWIG_fail
; 
6668         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6669         result 
= (int)(arg1
)->GetAlignVer(); 
6671         wxPyEndAllowThreads(__tstate
); 
6672         if (PyErr_Occurred()) SWIG_fail
; 
6675         resultobj 
= SWIG_From_int((int)(result
));  
6683 static PyObject 
*_wrap_HtmlContainerCell_SetIndent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6684     PyObject 
*resultobj
; 
6685     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6688     int arg4 
= (int) wxHTML_UNITS_PIXELS 
; 
6689     PyObject 
* obj0 
= 0 ; 
6690     PyObject 
* obj1 
= 0 ; 
6691     PyObject 
* obj2 
= 0 ; 
6692     PyObject 
* obj3 
= 0 ; 
6694         (char *) "self",(char *) "i",(char *) "what",(char *) "units", NULL 
 
6697     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlContainerCell_SetIndent",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
6698     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6699     if (SWIG_arg_fail(1)) SWIG_fail
; 
6701         arg2 
= (int)(SWIG_As_int(obj1
));  
6702         if (SWIG_arg_fail(2)) SWIG_fail
; 
6705         arg3 
= (int)(SWIG_As_int(obj2
));  
6706         if (SWIG_arg_fail(3)) SWIG_fail
; 
6710             arg4 
= (int)(SWIG_As_int(obj3
));  
6711             if (SWIG_arg_fail(4)) SWIG_fail
; 
6715         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6716         (arg1
)->SetIndent(arg2
,arg3
,arg4
); 
6718         wxPyEndAllowThreads(__tstate
); 
6719         if (PyErr_Occurred()) SWIG_fail
; 
6721     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6728 static PyObject 
*_wrap_HtmlContainerCell_GetIndent(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6729     PyObject 
*resultobj
; 
6730     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6733     PyObject 
* obj0 
= 0 ; 
6734     PyObject 
* obj1 
= 0 ; 
6736         (char *) "self",(char *) "ind", NULL 
 
6739     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_GetIndent",kwnames
,&obj0
,&obj1
)) goto fail
; 
6740     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6741     if (SWIG_arg_fail(1)) SWIG_fail
; 
6743         arg2 
= (int)(SWIG_As_int(obj1
));  
6744         if (SWIG_arg_fail(2)) SWIG_fail
; 
6747         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6748         result 
= (int)(arg1
)->GetIndent(arg2
); 
6750         wxPyEndAllowThreads(__tstate
); 
6751         if (PyErr_Occurred()) SWIG_fail
; 
6754         resultobj 
= SWIG_From_int((int)(result
));  
6762 static PyObject 
*_wrap_HtmlContainerCell_GetIndentUnits(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6763     PyObject 
*resultobj
; 
6764     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6767     PyObject 
* obj0 
= 0 ; 
6768     PyObject 
* obj1 
= 0 ; 
6770         (char *) "self",(char *) "ind", NULL 
 
6773     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_GetIndentUnits",kwnames
,&obj0
,&obj1
)) goto fail
; 
6774     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6775     if (SWIG_arg_fail(1)) SWIG_fail
; 
6777         arg2 
= (int)(SWIG_As_int(obj1
));  
6778         if (SWIG_arg_fail(2)) SWIG_fail
; 
6781         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6782         result 
= (int)(arg1
)->GetIndentUnits(arg2
); 
6784         wxPyEndAllowThreads(__tstate
); 
6785         if (PyErr_Occurred()) SWIG_fail
; 
6788         resultobj 
= SWIG_From_int((int)(result
));  
6796 static PyObject 
*_wrap_HtmlContainerCell_SetAlign(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6797     PyObject 
*resultobj
; 
6798     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6799     wxHtmlTag 
*arg2 
= 0 ; 
6800     PyObject 
* obj0 
= 0 ; 
6801     PyObject 
* obj1 
= 0 ; 
6803         (char *) "self",(char *) "tag", NULL 
 
6806     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetAlign",kwnames
,&obj0
,&obj1
)) goto fail
; 
6807     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6808     if (SWIG_arg_fail(1)) SWIG_fail
; 
6810         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
6811         if (SWIG_arg_fail(2)) SWIG_fail
; 
6813             SWIG_null_ref("wxHtmlTag"); 
6815         if (SWIG_arg_fail(2)) SWIG_fail
; 
6818         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6819         (arg1
)->SetAlign((wxHtmlTag 
const &)*arg2
); 
6821         wxPyEndAllowThreads(__tstate
); 
6822         if (PyErr_Occurred()) SWIG_fail
; 
6824     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6831 static PyObject 
*_wrap_HtmlContainerCell_SetWidthFloat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6832     PyObject 
*resultobj
; 
6833     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6836     PyObject 
* obj0 
= 0 ; 
6837     PyObject 
* obj1 
= 0 ; 
6838     PyObject 
* obj2 
= 0 ; 
6840         (char *) "self",(char *) "w",(char *) "units", NULL 
 
6843     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlContainerCell_SetWidthFloat",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6844     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6845     if (SWIG_arg_fail(1)) SWIG_fail
; 
6847         arg2 
= (int)(SWIG_As_int(obj1
));  
6848         if (SWIG_arg_fail(2)) SWIG_fail
; 
6851         arg3 
= (int)(SWIG_As_int(obj2
));  
6852         if (SWIG_arg_fail(3)) SWIG_fail
; 
6855         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6856         (arg1
)->SetWidthFloat(arg2
,arg3
); 
6858         wxPyEndAllowThreads(__tstate
); 
6859         if (PyErr_Occurred()) SWIG_fail
; 
6861     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6868 static PyObject 
*_wrap_HtmlContainerCell_SetWidthFloatFromTag(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6869     PyObject 
*resultobj
; 
6870     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6871     wxHtmlTag 
*arg2 
= 0 ; 
6872     PyObject 
* obj0 
= 0 ; 
6873     PyObject 
* obj1 
= 0 ; 
6875         (char *) "self",(char *) "tag", NULL 
 
6878     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetWidthFloatFromTag",kwnames
,&obj0
,&obj1
)) goto fail
; 
6879     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6880     if (SWIG_arg_fail(1)) SWIG_fail
; 
6882         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlTag
, SWIG_POINTER_EXCEPTION 
| 0); 
6883         if (SWIG_arg_fail(2)) SWIG_fail
; 
6885             SWIG_null_ref("wxHtmlTag"); 
6887         if (SWIG_arg_fail(2)) SWIG_fail
; 
6890         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6891         (arg1
)->SetWidthFloat((wxHtmlTag 
const &)*arg2
); 
6893         wxPyEndAllowThreads(__tstate
); 
6894         if (PyErr_Occurred()) SWIG_fail
; 
6896     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6903 static PyObject 
*_wrap_HtmlContainerCell_SetMinHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6904     PyObject 
*resultobj
; 
6905     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6907     int arg3 
= (int) wxHTML_ALIGN_TOP 
; 
6908     PyObject 
* obj0 
= 0 ; 
6909     PyObject 
* obj1 
= 0 ; 
6910     PyObject 
* obj2 
= 0 ; 
6912         (char *) "self",(char *) "h",(char *) "align", NULL 
 
6915     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlContainerCell_SetMinHeight",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
6916     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6917     if (SWIG_arg_fail(1)) SWIG_fail
; 
6919         arg2 
= (int)(SWIG_As_int(obj1
));  
6920         if (SWIG_arg_fail(2)) SWIG_fail
; 
6924             arg3 
= (int)(SWIG_As_int(obj2
));  
6925             if (SWIG_arg_fail(3)) SWIG_fail
; 
6929         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6930         (arg1
)->SetMinHeight(arg2
,arg3
); 
6932         wxPyEndAllowThreads(__tstate
); 
6933         if (PyErr_Occurred()) SWIG_fail
; 
6935     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6942 static PyObject 
*_wrap_HtmlContainerCell_SetBackgroundColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6943     PyObject 
*resultobj
; 
6944     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6945     wxColour 
*arg2 
= 0 ; 
6947     PyObject 
* obj0 
= 0 ; 
6948     PyObject 
* obj1 
= 0 ; 
6950         (char *) "self",(char *) "clr", NULL 
 
6953     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlContainerCell_SetBackgroundColour",kwnames
,&obj0
,&obj1
)) goto fail
; 
6954     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6955     if (SWIG_arg_fail(1)) SWIG_fail
; 
6958         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
6961         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6962         (arg1
)->SetBackgroundColour((wxColour 
const &)*arg2
); 
6964         wxPyEndAllowThreads(__tstate
); 
6965         if (PyErr_Occurred()) SWIG_fail
; 
6967     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
6974 static PyObject 
*_wrap_HtmlContainerCell_GetBackgroundColour(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
6975     PyObject 
*resultobj
; 
6976     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
6978     PyObject 
* obj0 
= 0 ; 
6980         (char *) "self", NULL 
 
6983     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetBackgroundColour",kwnames
,&obj0
)) goto fail
; 
6984     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
6985     if (SWIG_arg_fail(1)) SWIG_fail
; 
6987         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6988         result 
= (arg1
)->GetBackgroundColour(); 
6990         wxPyEndAllowThreads(__tstate
); 
6991         if (PyErr_Occurred()) SWIG_fail
; 
6994         wxColour 
* resultptr
; 
6995         resultptr 
= new wxColour((wxColour 
&)(result
)); 
6996         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxColour
, 1); 
7004 static PyObject 
*_wrap_HtmlContainerCell_SetBorder(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7005     PyObject 
*resultobj
; 
7006     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
7007     wxColour 
*arg2 
= 0 ; 
7008     wxColour 
*arg3 
= 0 ; 
7011     PyObject 
* obj0 
= 0 ; 
7012     PyObject 
* obj1 
= 0 ; 
7013     PyObject 
* obj2 
= 0 ; 
7015         (char *) "self",(char *) "clr1",(char *) "clr2", NULL 
 
7018     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlContainerCell_SetBorder",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7019     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
7020     if (SWIG_arg_fail(1)) SWIG_fail
; 
7023         if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
7027         if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
7030         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7031         (arg1
)->SetBorder((wxColour 
const &)*arg2
,(wxColour 
const &)*arg3
); 
7033         wxPyEndAllowThreads(__tstate
); 
7034         if (PyErr_Occurred()) SWIG_fail
; 
7036     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7043 static PyObject 
*_wrap_HtmlContainerCell_GetFirstChild(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7044     PyObject 
*resultobj
; 
7045     wxHtmlContainerCell 
*arg1 
= (wxHtmlContainerCell 
*) 0 ; 
7047     PyObject 
* obj0 
= 0 ; 
7049         (char *) "self", NULL 
 
7052     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContainerCell_GetFirstChild",kwnames
,&obj0
)) goto fail
; 
7053     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContainerCell
, SWIG_POINTER_EXCEPTION 
| 0); 
7054     if (SWIG_arg_fail(1)) SWIG_fail
; 
7056         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7057         result 
= (wxHtmlCell 
*)(arg1
)->GetFirstChild(); 
7059         wxPyEndAllowThreads(__tstate
); 
7060         if (PyErr_Occurred()) SWIG_fail
; 
7062     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlCell
, 0); 
7069 static PyObject 
* HtmlContainerCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7071     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7072     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlContainerCell
, obj
); 
7074     return Py_BuildValue((char *)""); 
7076 static PyObject 
*_wrap_new_HtmlColourCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7077     PyObject 
*resultobj
; 
7079     int arg2 
= (int) wxHTML_CLR_FOREGROUND 
; 
7080     wxHtmlColourCell 
*result
; 
7081     PyObject 
* obj0 
= 0 ; 
7082     PyObject 
* obj1 
= 0 ; 
7084         (char *) "clr",(char *) "flags", NULL 
 
7087     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlColourCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7090         SWIG_Python_ConvertPtr(obj0
, (void **)&argp
, SWIGTYPE_p_wxColour
, SWIG_POINTER_EXCEPTION
); 
7091         if (SWIG_arg_fail(1)) SWIG_fail
; 
7093             SWIG_null_ref("wxColour"); 
7095         if (SWIG_arg_fail(1)) SWIG_fail
; 
7100             arg2 
= (int)(SWIG_As_int(obj1
));  
7101             if (SWIG_arg_fail(2)) SWIG_fail
; 
7105         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7106         result 
= (wxHtmlColourCell 
*)new wxHtmlColourCell(arg1
,arg2
); 
7108         wxPyEndAllowThreads(__tstate
); 
7109         if (PyErr_Occurred()) SWIG_fail
; 
7111     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlColourCell
, 1); 
7118 static PyObject 
* HtmlColourCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7120     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7121     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlColourCell
, obj
); 
7123     return Py_BuildValue((char *)""); 
7125 static PyObject 
*_wrap_new_HtmlFontCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7126     PyObject 
*resultobj
; 
7127     wxFont 
*arg1 
= (wxFont 
*) 0 ; 
7128     wxHtmlFontCell 
*result
; 
7129     PyObject 
* obj0 
= 0 ; 
7131         (char *) "font", NULL 
 
7134     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_HtmlFontCell",kwnames
,&obj0
)) goto fail
; 
7135     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION 
| 0); 
7136     if (SWIG_arg_fail(1)) SWIG_fail
; 
7138         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7139         result 
= (wxHtmlFontCell 
*)new wxHtmlFontCell(arg1
); 
7141         wxPyEndAllowThreads(__tstate
); 
7142         if (PyErr_Occurred()) SWIG_fail
; 
7144     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlFontCell
, 1); 
7151 static PyObject 
* HtmlFontCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7153     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7154     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlFontCell
, obj
); 
7156     return Py_BuildValue((char *)""); 
7158 static PyObject 
*_wrap_new_HtmlWidgetCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7159     PyObject 
*resultobj
; 
7160     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7161     int arg2 
= (int) 0 ; 
7162     wxHtmlWidgetCell 
*result
; 
7163     PyObject 
* obj0 
= 0 ; 
7164     PyObject 
* obj1 
= 0 ; 
7166         (char *) "wnd",(char *) "w", NULL 
 
7169     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlWidgetCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7170     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7171     if (SWIG_arg_fail(1)) SWIG_fail
; 
7174             arg2 
= (int)(SWIG_As_int(obj1
));  
7175             if (SWIG_arg_fail(2)) SWIG_fail
; 
7179         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7180         result 
= (wxHtmlWidgetCell 
*)new wxHtmlWidgetCell(arg1
,arg2
); 
7182         wxPyEndAllowThreads(__tstate
); 
7183         if (PyErr_Occurred()) SWIG_fail
; 
7185     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWidgetCell
, 1); 
7192 static PyObject 
* HtmlWidgetCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7194     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7195     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWidgetCell
, obj
); 
7197     return Py_BuildValue((char *)""); 
7199 static PyObject 
*_wrap_new_HtmlFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7200     PyObject 
*resultobj
; 
7201     wxPyHtmlFilter 
*result
; 
7206     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlFilter",kwnames
)) goto fail
; 
7208         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7209         result 
= (wxPyHtmlFilter 
*)new wxPyHtmlFilter(); 
7211         wxPyEndAllowThreads(__tstate
); 
7212         if (PyErr_Occurred()) SWIG_fail
; 
7214     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlFilter
, 1); 
7221 static PyObject 
*_wrap_HtmlFilter__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7222     PyObject 
*resultobj
; 
7223     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
7224     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7225     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7226     PyObject 
* obj0 
= 0 ; 
7227     PyObject 
* obj1 
= 0 ; 
7228     PyObject 
* obj2 
= 0 ; 
7230         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7233     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlFilter__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7234     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
7235     if (SWIG_arg_fail(1)) SWIG_fail
; 
7239         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7240         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7242         wxPyEndAllowThreads(__tstate
); 
7243         if (PyErr_Occurred()) SWIG_fail
; 
7245     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7252 static PyObject 
* HtmlFilter_swigregister(PyObject 
*, PyObject 
*args
) { 
7254     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7255     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlFilter
, obj
); 
7257     return Py_BuildValue((char *)""); 
7259 static PyObject 
*_wrap_new_HtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7260     PyObject 
*resultobj
; 
7261     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7262     int arg2 
= (int) -1 ; 
7263     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
7264     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
7265     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
7266     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
7267     int arg5 
= (int) wxHW_DEFAULT_STYLE 
; 
7268     wxString 
const &arg6_defvalue 
= wxPyHtmlWindowNameStr 
; 
7269     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
7270     wxPyHtmlWindow 
*result
; 
7273     bool temp6 
= false ; 
7274     PyObject 
* obj0 
= 0 ; 
7275     PyObject 
* obj1 
= 0 ; 
7276     PyObject 
* obj2 
= 0 ; 
7277     PyObject 
* obj3 
= 0 ; 
7278     PyObject 
* obj4 
= 0 ; 
7279     PyObject 
* obj5 
= 0 ; 
7281         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7284     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
7285     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7286     if (SWIG_arg_fail(1)) SWIG_fail
; 
7289             arg2 
= (int)(SWIG_As_int(obj1
));  
7290             if (SWIG_arg_fail(2)) SWIG_fail
; 
7296             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
7302             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
7307             arg5 
= (int)(SWIG_As_int(obj4
));  
7308             if (SWIG_arg_fail(5)) SWIG_fail
; 
7313             arg6 
= wxString_in_helper(obj5
); 
7314             if (arg6 
== NULL
) SWIG_fail
; 
7319         if (!wxPyCheckForApp()) SWIG_fail
; 
7320         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7321         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
7323         wxPyEndAllowThreads(__tstate
); 
7324         if (PyErr_Occurred()) SWIG_fail
; 
7326     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7341 static PyObject 
*_wrap_new_PreHtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7342     PyObject 
*resultobj
; 
7343     wxPyHtmlWindow 
*result
; 
7348     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreHtmlWindow",kwnames
)) goto fail
; 
7350         if (!wxPyCheckForApp()) SWIG_fail
; 
7351         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7352         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(); 
7354         wxPyEndAllowThreads(__tstate
); 
7355         if (PyErr_Occurred()) SWIG_fail
; 
7357     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7364 static PyObject 
*_wrap_HtmlWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7365     PyObject 
*resultobj
; 
7366     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7367     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7368     int arg3 
= (int) -1 ; 
7369     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
7370     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
7371     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
7372     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
7373     int arg6 
= (int) wxHW_SCROLLBAR_AUTO 
; 
7374     wxString 
const &arg7_defvalue 
= wxPyHtmlWindowNameStr 
; 
7375     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
7379     bool temp7 
= false ; 
7380     PyObject 
* obj0 
= 0 ; 
7381     PyObject 
* obj1 
= 0 ; 
7382     PyObject 
* obj2 
= 0 ; 
7383     PyObject 
* obj3 
= 0 ; 
7384     PyObject 
* obj4 
= 0 ; 
7385     PyObject 
* obj5 
= 0 ; 
7386     PyObject 
* obj6 
= 0 ; 
7388         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7391     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
7392     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7393     if (SWIG_arg_fail(1)) SWIG_fail
; 
7394     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7395     if (SWIG_arg_fail(2)) SWIG_fail
; 
7398             arg3 
= (int)(SWIG_As_int(obj2
));  
7399             if (SWIG_arg_fail(3)) SWIG_fail
; 
7405             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
7411             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
7416             arg6 
= (int)(SWIG_As_int(obj5
));  
7417             if (SWIG_arg_fail(6)) SWIG_fail
; 
7422             arg7 
= wxString_in_helper(obj6
); 
7423             if (arg7 
== NULL
) SWIG_fail
; 
7428         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7429         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
7431         wxPyEndAllowThreads(__tstate
); 
7432         if (PyErr_Occurred()) SWIG_fail
; 
7435         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7451 static PyObject 
*_wrap_HtmlWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7452     PyObject 
*resultobj
; 
7453     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7454     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7455     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7456     PyObject 
* obj0 
= 0 ; 
7457     PyObject 
* obj1 
= 0 ; 
7458     PyObject 
* obj2 
= 0 ; 
7460         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7463     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7464     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7465     if (SWIG_arg_fail(1)) SWIG_fail
; 
7469         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7470         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7472         wxPyEndAllowThreads(__tstate
); 
7473         if (PyErr_Occurred()) SWIG_fail
; 
7475     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7482 static PyObject 
*_wrap_HtmlWindow_SetPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7483     PyObject 
*resultobj
; 
7484     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7485     wxString 
*arg2 
= 0 ; 
7487     bool temp2 
= false ; 
7488     PyObject 
* obj0 
= 0 ; 
7489     PyObject 
* obj1 
= 0 ; 
7491         (char *) "self",(char *) "source", NULL 
 
7494     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7495     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7496     if (SWIG_arg_fail(1)) SWIG_fail
; 
7498         arg2 
= wxString_in_helper(obj1
); 
7499         if (arg2 
== NULL
) SWIG_fail
; 
7503         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7504         result 
= (bool)(arg1
)->SetPage((wxString 
const &)*arg2
); 
7506         wxPyEndAllowThreads(__tstate
); 
7507         if (PyErr_Occurred()) SWIG_fail
; 
7510         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7526 static PyObject 
*_wrap_HtmlWindow_LoadPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7527     PyObject 
*resultobj
; 
7528     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7529     wxString 
*arg2 
= 0 ; 
7531     bool temp2 
= false ; 
7532     PyObject 
* obj0 
= 0 ; 
7533     PyObject 
* obj1 
= 0 ; 
7535         (char *) "self",(char *) "location", NULL 
 
7538     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7539     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7540     if (SWIG_arg_fail(1)) SWIG_fail
; 
7542         arg2 
= wxString_in_helper(obj1
); 
7543         if (arg2 
== NULL
) SWIG_fail
; 
7547         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7548         result 
= (bool)(arg1
)->LoadPage((wxString 
const &)*arg2
); 
7550         wxPyEndAllowThreads(__tstate
); 
7551         if (PyErr_Occurred()) SWIG_fail
; 
7554         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7570 static PyObject 
*_wrap_HtmlWindow_LoadFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7571     PyObject 
*resultobj
; 
7572     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7573     wxString 
*arg2 
= 0 ; 
7575     bool temp2 
= false ; 
7576     PyObject 
* obj0 
= 0 ; 
7577     PyObject 
* obj1 
= 0 ; 
7579         (char *) "self",(char *) "filename", NULL 
 
7582     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
7583     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7584     if (SWIG_arg_fail(1)) SWIG_fail
; 
7586         arg2 
= wxString_in_helper(obj1
); 
7587         if (arg2 
== NULL
) SWIG_fail
; 
7591         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7592         result 
= (bool)(arg1
)->LoadFile((wxString 
const &)*arg2
); 
7594         wxPyEndAllowThreads(__tstate
); 
7595         if (PyErr_Occurred()) SWIG_fail
; 
7598         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7614 static PyObject 
*_wrap_HtmlWindow_AppendToPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7615     PyObject 
*resultobj
; 
7616     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7617     wxString 
*arg2 
= 0 ; 
7619     bool temp2 
= false ; 
7620     PyObject 
* obj0 
= 0 ; 
7621     PyObject 
* obj1 
= 0 ; 
7623         (char *) "self",(char *) "source", NULL 
 
7626     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_AppendToPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7627     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7628     if (SWIG_arg_fail(1)) SWIG_fail
; 
7630         arg2 
= wxString_in_helper(obj1
); 
7631         if (arg2 
== NULL
) SWIG_fail
; 
7635         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7636         result 
= (bool)(arg1
)->AppendToPage((wxString 
const &)*arg2
); 
7638         wxPyEndAllowThreads(__tstate
); 
7639         if (PyErr_Occurred()) SWIG_fail
; 
7642         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7658 static PyObject 
*_wrap_HtmlWindow_GetOpenedPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7659     PyObject 
*resultobj
; 
7660     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7662     PyObject 
* obj0 
= 0 ; 
7664         (char *) "self", NULL 
 
7667     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPage",kwnames
,&obj0
)) goto fail
; 
7668     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7669     if (SWIG_arg_fail(1)) SWIG_fail
; 
7671         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7672         result 
= (arg1
)->GetOpenedPage(); 
7674         wxPyEndAllowThreads(__tstate
); 
7675         if (PyErr_Occurred()) SWIG_fail
; 
7679         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7681         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7690 static PyObject 
*_wrap_HtmlWindow_GetOpenedAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7691     PyObject 
*resultobj
; 
7692     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7694     PyObject 
* obj0 
= 0 ; 
7696         (char *) "self", NULL 
 
7699     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedAnchor",kwnames
,&obj0
)) goto fail
; 
7700     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7701     if (SWIG_arg_fail(1)) SWIG_fail
; 
7703         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7704         result 
= (arg1
)->GetOpenedAnchor(); 
7706         wxPyEndAllowThreads(__tstate
); 
7707         if (PyErr_Occurred()) SWIG_fail
; 
7711         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7713         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7722 static PyObject 
*_wrap_HtmlWindow_GetOpenedPageTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7723     PyObject 
*resultobj
; 
7724     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7726     PyObject 
* obj0 
= 0 ; 
7728         (char *) "self", NULL 
 
7731     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPageTitle",kwnames
,&obj0
)) goto fail
; 
7732     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7733     if (SWIG_arg_fail(1)) SWIG_fail
; 
7735         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7736         result 
= (arg1
)->GetOpenedPageTitle(); 
7738         wxPyEndAllowThreads(__tstate
); 
7739         if (PyErr_Occurred()) SWIG_fail
; 
7743         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7745         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7754 static PyObject 
*_wrap_HtmlWindow_SetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7755     PyObject 
*resultobj
; 
7756     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7757     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
7758     wxString 
*arg3 
= 0 ; 
7759     bool temp3 
= false ; 
7760     PyObject 
* obj0 
= 0 ; 
7761     PyObject 
* obj1 
= 0 ; 
7762     PyObject 
* obj2 
= 0 ; 
7764         (char *) "self",(char *) "frame",(char *) "format", NULL 
 
7767     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow_SetRelatedFrame",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7768     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7769     if (SWIG_arg_fail(1)) SWIG_fail
; 
7770     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
7771     if (SWIG_arg_fail(2)) SWIG_fail
; 
7773         arg3 
= wxString_in_helper(obj2
); 
7774         if (arg3 
== NULL
) SWIG_fail
; 
7778         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7779         (arg1
)->SetRelatedFrame(arg2
,(wxString 
const &)*arg3
); 
7781         wxPyEndAllowThreads(__tstate
); 
7782         if (PyErr_Occurred()) SWIG_fail
; 
7784     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7799 static PyObject 
*_wrap_HtmlWindow_GetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7800     PyObject 
*resultobj
; 
7801     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7803     PyObject 
* obj0 
= 0 ; 
7805         (char *) "self", NULL 
 
7808     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetRelatedFrame",kwnames
,&obj0
)) goto fail
; 
7809     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7810     if (SWIG_arg_fail(1)) SWIG_fail
; 
7812         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7813         result 
= (wxFrame 
*)(arg1
)->GetRelatedFrame(); 
7815         wxPyEndAllowThreads(__tstate
); 
7816         if (PyErr_Occurred()) SWIG_fail
; 
7819         resultobj 
= wxPyMake_wxObject(result
, 0);  
7827 static PyObject 
*_wrap_HtmlWindow_SetRelatedStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7828     PyObject 
*resultobj
; 
7829     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7831     PyObject 
* obj0 
= 0 ; 
7832     PyObject 
* obj1 
= 0 ; 
7834         (char *) "self",(char *) "bar", NULL 
 
7837     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetRelatedStatusBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
7838     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7839     if (SWIG_arg_fail(1)) SWIG_fail
; 
7841         arg2 
= (int)(SWIG_As_int(obj1
));  
7842         if (SWIG_arg_fail(2)) SWIG_fail
; 
7845         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7846         (arg1
)->SetRelatedStatusBar(arg2
); 
7848         wxPyEndAllowThreads(__tstate
); 
7849         if (PyErr_Occurred()) SWIG_fail
; 
7851     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7858 static PyObject 
*_wrap_HtmlWindow_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7859     PyObject 
*resultobj
; 
7860     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7863     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
7864     PyObject 
* obj0 
= 0 ; 
7865     PyObject 
* obj1 
= 0 ; 
7866     PyObject 
* obj2 
= 0 ; 
7867     PyObject 
* obj3 
= 0 ; 
7869         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
7872     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlWindow_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7873     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7874     if (SWIG_arg_fail(1)) SWIG_fail
; 
7876         wxString
* sptr 
= wxString_in_helper(obj1
); 
7877         if (sptr 
== NULL
) SWIG_fail
; 
7882         wxString
* sptr 
= wxString_in_helper(obj2
); 
7883         if (sptr 
== NULL
) SWIG_fail
; 
7891         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7892         wxPyHtmlWindow_SetFonts(arg1
,arg2
,arg3
,arg4
); 
7894         wxPyEndAllowThreads(__tstate
); 
7895         if (PyErr_Occurred()) SWIG_fail
; 
7897     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7904 static PyObject 
*_wrap_HtmlWindow_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7905     PyObject 
*resultobj
; 
7906     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7907     int arg2 
= (int) -1 ; 
7908     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
7909     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
7910     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
7911     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
7912     bool temp3 
= false ; 
7913     bool temp4 
= false ; 
7914     PyObject 
* obj0 
= 0 ; 
7915     PyObject 
* obj1 
= 0 ; 
7916     PyObject 
* obj2 
= 0 ; 
7917     PyObject 
* obj3 
= 0 ; 
7919         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
7922     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlWindow_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7923     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7924     if (SWIG_arg_fail(1)) SWIG_fail
; 
7927             arg2 
= (int)(SWIG_As_int(obj1
));  
7928             if (SWIG_arg_fail(2)) SWIG_fail
; 
7933             arg3 
= wxString_in_helper(obj2
); 
7934             if (arg3 
== NULL
) SWIG_fail
; 
7940             arg4 
= wxString_in_helper(obj3
); 
7941             if (arg4 
== NULL
) SWIG_fail
; 
7946         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7947         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
7949         wxPyEndAllowThreads(__tstate
); 
7950         if (PyErr_Occurred()) SWIG_fail
; 
7952     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7975 static PyObject 
*_wrap_HtmlWindow_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7976     PyObject 
*resultobj
; 
7977     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7978     wxString 
*arg2 
= 0 ; 
7979     bool temp2 
= false ; 
7980     PyObject 
* obj0 
= 0 ; 
7981     PyObject 
* obj1 
= 0 ; 
7983         (char *) "self",(char *) "title", NULL 
 
7986     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
7987     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7988     if (SWIG_arg_fail(1)) SWIG_fail
; 
7990         arg2 
= wxString_in_helper(obj1
); 
7991         if (arg2 
== NULL
) SWIG_fail
; 
7995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7996         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
7998         wxPyEndAllowThreads(__tstate
); 
7999         if (PyErr_Occurred()) SWIG_fail
; 
8001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8016 static PyObject 
*_wrap_HtmlWindow_SetBorders(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8017     PyObject 
*resultobj
; 
8018     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8020     PyObject 
* obj0 
= 0 ; 
8021     PyObject 
* obj1 
= 0 ; 
8023         (char *) "self",(char *) "b", NULL 
 
8026     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetBorders",kwnames
,&obj0
,&obj1
)) goto fail
; 
8027     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8028     if (SWIG_arg_fail(1)) SWIG_fail
; 
8030         arg2 
= (int)(SWIG_As_int(obj1
));  
8031         if (SWIG_arg_fail(2)) SWIG_fail
; 
8034         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8035         (arg1
)->SetBorders(arg2
); 
8037         wxPyEndAllowThreads(__tstate
); 
8038         if (PyErr_Occurred()) SWIG_fail
; 
8040     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8047 static PyObject 
*_wrap_HtmlWindow_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8048     PyObject 
*resultobj
; 
8049     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8050     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8051     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8052     PyObject 
* obj0 
= 0 ; 
8053     PyObject 
* obj1 
= 0 ; 
8054     PyObject 
* obj2 
= 0 ; 
8056         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8059     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8060     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8061     if (SWIG_arg_fail(1)) SWIG_fail
; 
8062     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8063     if (SWIG_arg_fail(2)) SWIG_fail
; 
8066             wxString
* sptr 
= wxString_in_helper(obj2
); 
8067             if (sptr 
== NULL
) SWIG_fail
; 
8073         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8074         (arg1
)->ReadCustomization(arg2
,arg3
); 
8076         wxPyEndAllowThreads(__tstate
); 
8077         if (PyErr_Occurred()) SWIG_fail
; 
8079     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8086 static PyObject 
*_wrap_HtmlWindow_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8087     PyObject 
*resultobj
; 
8088     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8089     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8090     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8091     PyObject 
* obj0 
= 0 ; 
8092     PyObject 
* obj1 
= 0 ; 
8093     PyObject 
* obj2 
= 0 ; 
8095         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8098     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8099     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8100     if (SWIG_arg_fail(1)) SWIG_fail
; 
8101     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8102     if (SWIG_arg_fail(2)) SWIG_fail
; 
8105             wxString
* sptr 
= wxString_in_helper(obj2
); 
8106             if (sptr 
== NULL
) SWIG_fail
; 
8112         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8113         (arg1
)->WriteCustomization(arg2
,arg3
); 
8115         wxPyEndAllowThreads(__tstate
); 
8116         if (PyErr_Occurred()) SWIG_fail
; 
8118     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8125 static PyObject 
*_wrap_HtmlWindow_HistoryBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8126     PyObject 
*resultobj
; 
8127     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8129     PyObject 
* obj0 
= 0 ; 
8131         (char *) "self", NULL 
 
8134     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryBack",kwnames
,&obj0
)) goto fail
; 
8135     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8136     if (SWIG_arg_fail(1)) SWIG_fail
; 
8138         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8139         result 
= (bool)(arg1
)->HistoryBack(); 
8141         wxPyEndAllowThreads(__tstate
); 
8142         if (PyErr_Occurred()) SWIG_fail
; 
8145         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8153 static PyObject 
*_wrap_HtmlWindow_HistoryForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8154     PyObject 
*resultobj
; 
8155     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8157     PyObject 
* obj0 
= 0 ; 
8159         (char *) "self", NULL 
 
8162     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryForward",kwnames
,&obj0
)) goto fail
; 
8163     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8164     if (SWIG_arg_fail(1)) SWIG_fail
; 
8166         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8167         result 
= (bool)(arg1
)->HistoryForward(); 
8169         wxPyEndAllowThreads(__tstate
); 
8170         if (PyErr_Occurred()) SWIG_fail
; 
8173         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8181 static PyObject 
*_wrap_HtmlWindow_HistoryCanBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8182     PyObject 
*resultobj
; 
8183     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8185     PyObject 
* obj0 
= 0 ; 
8187         (char *) "self", NULL 
 
8190     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanBack",kwnames
,&obj0
)) goto fail
; 
8191     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8192     if (SWIG_arg_fail(1)) SWIG_fail
; 
8194         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8195         result 
= (bool)(arg1
)->HistoryCanBack(); 
8197         wxPyEndAllowThreads(__tstate
); 
8198         if (PyErr_Occurred()) SWIG_fail
; 
8201         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8209 static PyObject 
*_wrap_HtmlWindow_HistoryCanForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8210     PyObject 
*resultobj
; 
8211     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8213     PyObject 
* obj0 
= 0 ; 
8215         (char *) "self", NULL 
 
8218     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanForward",kwnames
,&obj0
)) goto fail
; 
8219     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8220     if (SWIG_arg_fail(1)) SWIG_fail
; 
8222         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8223         result 
= (bool)(arg1
)->HistoryCanForward(); 
8225         wxPyEndAllowThreads(__tstate
); 
8226         if (PyErr_Occurred()) SWIG_fail
; 
8229         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8237 static PyObject 
*_wrap_HtmlWindow_HistoryClear(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8238     PyObject 
*resultobj
; 
8239     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8240     PyObject 
* obj0 
= 0 ; 
8242         (char *) "self", NULL 
 
8245     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryClear",kwnames
,&obj0
)) goto fail
; 
8246     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8247     if (SWIG_arg_fail(1)) SWIG_fail
; 
8249         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8250         (arg1
)->HistoryClear(); 
8252         wxPyEndAllowThreads(__tstate
); 
8253         if (PyErr_Occurred()) SWIG_fail
; 
8255     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8262 static PyObject 
*_wrap_HtmlWindow_GetInternalRepresentation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8263     PyObject 
*resultobj
; 
8264     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8265     wxHtmlContainerCell 
*result
; 
8266     PyObject 
* obj0 
= 0 ; 
8268         (char *) "self", NULL 
 
8271     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetInternalRepresentation",kwnames
,&obj0
)) goto fail
; 
8272     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8273     if (SWIG_arg_fail(1)) SWIG_fail
; 
8275         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8276         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetInternalRepresentation(); 
8278         wxPyEndAllowThreads(__tstate
); 
8279         if (PyErr_Occurred()) SWIG_fail
; 
8281     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
8288 static PyObject 
*_wrap_HtmlWindow_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8289     PyObject 
*resultobj
; 
8290     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8291     wxHtmlWinParser 
*result
; 
8292     PyObject 
* obj0 
= 0 ; 
8294         (char *) "self", NULL 
 
8297     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetParser",kwnames
,&obj0
)) goto fail
; 
8298     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8299     if (SWIG_arg_fail(1)) SWIG_fail
; 
8301         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8302         result 
= (wxHtmlWinParser 
*)(arg1
)->GetParser(); 
8304         wxPyEndAllowThreads(__tstate
); 
8305         if (PyErr_Occurred()) SWIG_fail
; 
8307     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 0); 
8314 static PyObject 
*_wrap_HtmlWindow_ScrollToAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8315     PyObject 
*resultobj
; 
8316     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8317     wxString 
*arg2 
= 0 ; 
8319     bool temp2 
= false ; 
8320     PyObject 
* obj0 
= 0 ; 
8321     PyObject 
* obj1 
= 0 ; 
8323         (char *) "self",(char *) "anchor", NULL 
 
8326     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_ScrollToAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8327     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8328     if (SWIG_arg_fail(1)) SWIG_fail
; 
8330         arg2 
= wxString_in_helper(obj1
); 
8331         if (arg2 
== NULL
) SWIG_fail
; 
8335         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8336         result 
= (bool)(arg1
)->ScrollToAnchor((wxString 
const &)*arg2
); 
8338         wxPyEndAllowThreads(__tstate
); 
8339         if (PyErr_Occurred()) SWIG_fail
; 
8342         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8358 static PyObject 
*_wrap_HtmlWindow_HasAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8359     PyObject 
*resultobj
; 
8360     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8361     wxString 
*arg2 
= 0 ; 
8363     bool temp2 
= false ; 
8364     PyObject 
* obj0 
= 0 ; 
8365     PyObject 
* obj1 
= 0 ; 
8367         (char *) "self",(char *) "anchor", NULL 
 
8370     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_HasAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8371     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8372     if (SWIG_arg_fail(1)) SWIG_fail
; 
8374         arg2 
= wxString_in_helper(obj1
); 
8375         if (arg2 
== NULL
) SWIG_fail
; 
8379         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8380         result 
= (bool)(arg1
)->HasAnchor((wxString 
const &)*arg2
); 
8382         wxPyEndAllowThreads(__tstate
); 
8383         if (PyErr_Occurred()) SWIG_fail
; 
8386         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8402 static PyObject 
*_wrap_HtmlWindow_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8403     PyObject 
*resultobj
; 
8404     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
8405     PyObject 
* obj0 
= 0 ; 
8407         (char *) "filter", NULL 
 
8410     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_AddFilter",kwnames
,&obj0
)) goto fail
; 
8411     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
8412     if (SWIG_arg_fail(1)) SWIG_fail
; 
8414         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8415         wxPyHtmlWindow::AddFilter(arg1
); 
8417         wxPyEndAllowThreads(__tstate
); 
8418         if (PyErr_Occurred()) SWIG_fail
; 
8420     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8427 static PyObject 
*_wrap_HtmlWindow_SelectWord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8428     PyObject 
*resultobj
; 
8429     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8432     PyObject 
* obj0 
= 0 ; 
8433     PyObject 
* obj1 
= 0 ; 
8435         (char *) "self",(char *) "pos", NULL 
 
8438     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectWord",kwnames
,&obj0
,&obj1
)) goto fail
; 
8439     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8440     if (SWIG_arg_fail(1)) SWIG_fail
; 
8443         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8446         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8447         (arg1
)->SelectWord((wxPoint 
const &)*arg2
); 
8449         wxPyEndAllowThreads(__tstate
); 
8450         if (PyErr_Occurred()) SWIG_fail
; 
8452     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8459 static PyObject 
*_wrap_HtmlWindow_SelectLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8460     PyObject 
*resultobj
; 
8461     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8464     PyObject 
* obj0 
= 0 ; 
8465     PyObject 
* obj1 
= 0 ; 
8467         (char *) "self",(char *) "pos", NULL 
 
8470     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectLine",kwnames
,&obj0
,&obj1
)) goto fail
; 
8471     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8472     if (SWIG_arg_fail(1)) SWIG_fail
; 
8475         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8478         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8479         (arg1
)->SelectLine((wxPoint 
const &)*arg2
); 
8481         wxPyEndAllowThreads(__tstate
); 
8482         if (PyErr_Occurred()) SWIG_fail
; 
8484     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8491 static PyObject 
*_wrap_HtmlWindow_SelectAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8492     PyObject 
*resultobj
; 
8493     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8494     PyObject 
* obj0 
= 0 ; 
8496         (char *) "self", NULL 
 
8499     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectAll",kwnames
,&obj0
)) goto fail
; 
8500     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8501     if (SWIG_arg_fail(1)) SWIG_fail
; 
8503         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8504         (arg1
)->SelectAll(); 
8506         wxPyEndAllowThreads(__tstate
); 
8507         if (PyErr_Occurred()) SWIG_fail
; 
8509     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8516 static PyObject 
*_wrap_HtmlWindow_SelectionToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8517     PyObject 
*resultobj
; 
8518     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8520     PyObject 
* obj0 
= 0 ; 
8522         (char *) "self", NULL 
 
8525     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectionToText",kwnames
,&obj0
)) goto fail
; 
8526     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8527     if (SWIG_arg_fail(1)) SWIG_fail
; 
8529         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8530         result 
= (arg1
)->SelectionToText(); 
8532         wxPyEndAllowThreads(__tstate
); 
8533         if (PyErr_Occurred()) SWIG_fail
; 
8537         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8539         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8548 static PyObject 
*_wrap_HtmlWindow_ToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8549     PyObject 
*resultobj
; 
8550     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8552     PyObject 
* obj0 
= 0 ; 
8554         (char *) "self", NULL 
 
8557     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_ToText",kwnames
,&obj0
)) goto fail
; 
8558     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8559     if (SWIG_arg_fail(1)) SWIG_fail
; 
8561         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8562         result 
= (arg1
)->ToText(); 
8564         wxPyEndAllowThreads(__tstate
); 
8565         if (PyErr_Occurred()) SWIG_fail
; 
8569         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8571         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8580 static PyObject 
*_wrap_HtmlWindow_base_OnLinkClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8581     PyObject 
*resultobj
; 
8582     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8583     wxHtmlLinkInfo 
*arg2 
= 0 ; 
8584     PyObject 
* obj0 
= 0 ; 
8585     PyObject 
* obj1 
= 0 ; 
8587         (char *) "self",(char *) "link", NULL 
 
8590     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnLinkClicked",kwnames
,&obj0
,&obj1
)) goto fail
; 
8591     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8592     if (SWIG_arg_fail(1)) SWIG_fail
; 
8594         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
8595         if (SWIG_arg_fail(2)) SWIG_fail
; 
8597             SWIG_null_ref("wxHtmlLinkInfo"); 
8599         if (SWIG_arg_fail(2)) SWIG_fail
; 
8602         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8603         (arg1
)->base_OnLinkClicked((wxHtmlLinkInfo 
const &)*arg2
); 
8605         wxPyEndAllowThreads(__tstate
); 
8606         if (PyErr_Occurred()) SWIG_fail
; 
8608     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8615 static PyObject 
*_wrap_HtmlWindow_base_OnSetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8616     PyObject 
*resultobj
; 
8617     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8618     wxString 
*arg2 
= 0 ; 
8619     bool temp2 
= false ; 
8620     PyObject 
* obj0 
= 0 ; 
8621     PyObject 
* obj1 
= 0 ; 
8623         (char *) "self",(char *) "title", NULL 
 
8626     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnSetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
8627     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8628     if (SWIG_arg_fail(1)) SWIG_fail
; 
8630         arg2 
= wxString_in_helper(obj1
); 
8631         if (arg2 
== NULL
) SWIG_fail
; 
8635         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8636         (arg1
)->base_OnSetTitle((wxString 
const &)*arg2
); 
8638         wxPyEndAllowThreads(__tstate
); 
8639         if (PyErr_Occurred()) SWIG_fail
; 
8641     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8656 static PyObject 
*_wrap_HtmlWindow_base_OnCellMouseHover(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8657     PyObject 
*resultobj
; 
8658     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8659     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8662     PyObject 
* obj0 
= 0 ; 
8663     PyObject 
* obj1 
= 0 ; 
8664     PyObject 
* obj2 
= 0 ; 
8665     PyObject 
* obj3 
= 0 ; 
8667         (char *) "self",(char *) "cell",(char *) "x",(char *) "y", NULL 
 
8670     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:HtmlWindow_base_OnCellMouseHover",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8671     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8672     if (SWIG_arg_fail(1)) SWIG_fail
; 
8673     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8674     if (SWIG_arg_fail(2)) SWIG_fail
; 
8676         arg3 
= (int)(SWIG_As_int(obj2
));  
8677         if (SWIG_arg_fail(3)) SWIG_fail
; 
8680         arg4 
= (int)(SWIG_As_int(obj3
));  
8681         if (SWIG_arg_fail(4)) SWIG_fail
; 
8684         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8685         (arg1
)->base_OnCellMouseHover(arg2
,arg3
,arg4
); 
8687         wxPyEndAllowThreads(__tstate
); 
8688         if (PyErr_Occurred()) SWIG_fail
; 
8690     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8697 static PyObject 
*_wrap_HtmlWindow_base_OnCellClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8698     PyObject 
*resultobj
; 
8699     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8700     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8703     wxMouseEvent 
*arg5 
= 0 ; 
8704     PyObject 
* obj0 
= 0 ; 
8705     PyObject 
* obj1 
= 0 ; 
8706     PyObject 
* obj2 
= 0 ; 
8707     PyObject 
* obj3 
= 0 ; 
8708     PyObject 
* obj4 
= 0 ; 
8710         (char *) "self",(char *) "cell",(char *) "x",(char *) "y",(char *) "event", NULL 
 
8713     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlWindow_base_OnCellClicked",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
8714     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8715     if (SWIG_arg_fail(1)) SWIG_fail
; 
8716     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8717     if (SWIG_arg_fail(2)) SWIG_fail
; 
8719         arg3 
= (int)(SWIG_As_int(obj2
));  
8720         if (SWIG_arg_fail(3)) SWIG_fail
; 
8723         arg4 
= (int)(SWIG_As_int(obj3
));  
8724         if (SWIG_arg_fail(4)) SWIG_fail
; 
8727         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8728         if (SWIG_arg_fail(5)) SWIG_fail
; 
8730             SWIG_null_ref("wxMouseEvent"); 
8732         if (SWIG_arg_fail(5)) SWIG_fail
; 
8735         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8736         (arg1
)->base_OnCellClicked(arg2
,arg3
,arg4
,(wxMouseEvent 
const &)*arg5
); 
8738         wxPyEndAllowThreads(__tstate
); 
8739         if (PyErr_Occurred()) SWIG_fail
; 
8741     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8748 static PyObject 
*_wrap_HtmlWindow_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8749     PyObject 
*resultobj
; 
8750     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
8751     wxVisualAttributes result
; 
8752     PyObject 
* obj0 
= 0 ; 
8754         (char *) "variant", NULL 
 
8757     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:HtmlWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
8760             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
8761             if (SWIG_arg_fail(1)) SWIG_fail
; 
8765         if (!wxPyCheckForApp()) SWIG_fail
; 
8766         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8767         result 
= wxPyHtmlWindow::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
8769         wxPyEndAllowThreads(__tstate
); 
8770         if (PyErr_Occurred()) SWIG_fail
; 
8773         wxVisualAttributes 
* resultptr
; 
8774         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
8775         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
8783 static PyObject 
* HtmlWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
8785     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
8786     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlWindow
, obj
); 
8788     return Py_BuildValue((char *)""); 
8790 static PyObject 
*_wrap_new_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8791     PyObject 
*resultobj
; 
8792     wxHtmlDCRenderer 
*result
; 
8797     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlDCRenderer",kwnames
)) goto fail
; 
8799         if (!wxPyCheckForApp()) SWIG_fail
; 
8800         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8801         result 
= (wxHtmlDCRenderer 
*)new wxHtmlDCRenderer(); 
8803         wxPyEndAllowThreads(__tstate
); 
8804         if (PyErr_Occurred()) SWIG_fail
; 
8806     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlDCRenderer
, 1); 
8813 static PyObject 
*_wrap_delete_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8814     PyObject 
*resultobj
; 
8815     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8816     PyObject 
* obj0 
= 0 ; 
8818         (char *) "self", NULL 
 
8821     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlDCRenderer",kwnames
,&obj0
)) goto fail
; 
8822     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8823     if (SWIG_arg_fail(1)) SWIG_fail
; 
8825         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8828         wxPyEndAllowThreads(__tstate
); 
8829         if (PyErr_Occurred()) SWIG_fail
; 
8831     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8838 static PyObject 
*_wrap_HtmlDCRenderer_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8839     PyObject 
*resultobj
; 
8840     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8841     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
8843     PyObject 
* obj0 
= 0 ; 
8844     PyObject 
* obj1 
= 0 ; 
8845     PyObject 
* obj2 
= 0 ; 
8847         (char *) "self",(char *) "dc",(char *) "maxwidth", NULL 
 
8850     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetDC",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8851     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8852     if (SWIG_arg_fail(1)) SWIG_fail
; 
8853     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
8854     if (SWIG_arg_fail(2)) SWIG_fail
; 
8856         arg3 
= (int)(SWIG_As_int(obj2
));  
8857         if (SWIG_arg_fail(3)) SWIG_fail
; 
8860         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8861         (arg1
)->SetDC(arg2
,arg3
); 
8863         wxPyEndAllowThreads(__tstate
); 
8864         if (PyErr_Occurred()) SWIG_fail
; 
8866     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8873 static PyObject 
*_wrap_HtmlDCRenderer_SetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8874     PyObject 
*resultobj
; 
8875     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8878     PyObject 
* obj0 
= 0 ; 
8879     PyObject 
* obj1 
= 0 ; 
8880     PyObject 
* obj2 
= 0 ; 
8882         (char *) "self",(char *) "width",(char *) "height", NULL 
 
8885     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8886     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8887     if (SWIG_arg_fail(1)) SWIG_fail
; 
8889         arg2 
= (int)(SWIG_As_int(obj1
));  
8890         if (SWIG_arg_fail(2)) SWIG_fail
; 
8893         arg3 
= (int)(SWIG_As_int(obj2
));  
8894         if (SWIG_arg_fail(3)) SWIG_fail
; 
8897         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8898         (arg1
)->SetSize(arg2
,arg3
); 
8900         wxPyEndAllowThreads(__tstate
); 
8901         if (PyErr_Occurred()) SWIG_fail
; 
8903     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8910 static PyObject 
*_wrap_HtmlDCRenderer_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8911     PyObject 
*resultobj
; 
8912     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8913     wxString 
*arg2 
= 0 ; 
8914     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
8915     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
8916     bool arg4 
= (bool) true ; 
8917     bool temp2 
= false ; 
8918     bool temp3 
= false ; 
8919     PyObject 
* obj0 
= 0 ; 
8920     PyObject 
* obj1 
= 0 ; 
8921     PyObject 
* obj2 
= 0 ; 
8922     PyObject 
* obj3 
= 0 ; 
8924         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
8927     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlDCRenderer_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8928     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8929     if (SWIG_arg_fail(1)) SWIG_fail
; 
8931         arg2 
= wxString_in_helper(obj1
); 
8932         if (arg2 
== NULL
) SWIG_fail
; 
8937             arg3 
= wxString_in_helper(obj2
); 
8938             if (arg3 
== NULL
) SWIG_fail
; 
8944             arg4 
= (bool)(SWIG_As_bool(obj3
));  
8945             if (SWIG_arg_fail(4)) SWIG_fail
; 
8949         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8950         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
8952         wxPyEndAllowThreads(__tstate
); 
8953         if (PyErr_Occurred()) SWIG_fail
; 
8955     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8978 static PyObject 
*_wrap_HtmlDCRenderer_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8979     PyObject 
*resultobj
; 
8980     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8983     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
8984     PyObject 
* obj0 
= 0 ; 
8985     PyObject 
* obj1 
= 0 ; 
8986     PyObject 
* obj2 
= 0 ; 
8987     PyObject 
* obj3 
= 0 ; 
8989         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
8992     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlDCRenderer_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8993     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8994     if (SWIG_arg_fail(1)) SWIG_fail
; 
8996         wxString
* sptr 
= wxString_in_helper(obj1
); 
8997         if (sptr 
== NULL
) SWIG_fail
; 
9002         wxString
* sptr 
= wxString_in_helper(obj2
); 
9003         if (sptr 
== NULL
) SWIG_fail
; 
9011         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9012         wxHtmlDCRenderer_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9014         wxPyEndAllowThreads(__tstate
); 
9015         if (PyErr_Occurred()) SWIG_fail
; 
9017     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9024 static PyObject 
*_wrap_HtmlDCRenderer_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9025     PyObject 
*resultobj
; 
9026     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9027     int arg2 
= (int) -1 ; 
9028     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9029     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9030     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9031     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9032     bool temp3 
= false ; 
9033     bool temp4 
= false ; 
9034     PyObject 
* obj0 
= 0 ; 
9035     PyObject 
* obj1 
= 0 ; 
9036     PyObject 
* obj2 
= 0 ; 
9037     PyObject 
* obj3 
= 0 ; 
9039         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9042     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlDCRenderer_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9043     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9044     if (SWIG_arg_fail(1)) SWIG_fail
; 
9047             arg2 
= (int)(SWIG_As_int(obj1
));  
9048             if (SWIG_arg_fail(2)) SWIG_fail
; 
9053             arg3 
= wxString_in_helper(obj2
); 
9054             if (arg3 
== NULL
) SWIG_fail
; 
9060             arg4 
= wxString_in_helper(obj3
); 
9061             if (arg4 
== NULL
) SWIG_fail
; 
9066         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9067         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9069         wxPyEndAllowThreads(__tstate
); 
9070         if (PyErr_Occurred()) SWIG_fail
; 
9072     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9095 static PyObject 
*_wrap_HtmlDCRenderer_Render(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9096     PyObject 
*resultobj
; 
9097     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9100     int arg4 
= (int) 0 ; 
9101     int arg5 
= (int) false ; 
9102     int arg6 
= (int) INT_MAX 
; 
9103     int *arg7 
= (int *) NULL 
; 
9104     int arg8 
= (int) 0 ; 
9106     PyObject 
* obj0 
= 0 ; 
9107     PyObject 
* obj1 
= 0 ; 
9108     PyObject 
* obj2 
= 0 ; 
9109     PyObject 
* obj3 
= 0 ; 
9110     PyObject 
* obj4 
= 0 ; 
9111     PyObject 
* obj5 
= 0 ; 
9112     PyObject 
* obj6 
= 0 ; 
9113     PyObject 
* obj7 
= 0 ; 
9115         (char *) "self",(char *) "x",(char *) "y",(char *) "from",(char *) "dont_render",(char *) "maxHeight",(char *) "choices",(char *) "LCOUNT", NULL 
 
9118     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOOO:HtmlDCRenderer_Render",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
9119     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9120     if (SWIG_arg_fail(1)) SWIG_fail
; 
9122         arg2 
= (int)(SWIG_As_int(obj1
));  
9123         if (SWIG_arg_fail(2)) SWIG_fail
; 
9126         arg3 
= (int)(SWIG_As_int(obj2
));  
9127         if (SWIG_arg_fail(3)) SWIG_fail
; 
9131             arg4 
= (int)(SWIG_As_int(obj3
));  
9132             if (SWIG_arg_fail(4)) SWIG_fail
; 
9137             arg5 
= (int)(SWIG_As_int(obj4
));  
9138             if (SWIG_arg_fail(5)) SWIG_fail
; 
9143             arg6 
= (int)(SWIG_As_int(obj5
));  
9144             if (SWIG_arg_fail(6)) SWIG_fail
; 
9148         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_int
, SWIG_POINTER_EXCEPTION 
| 0); 
9149         if (SWIG_arg_fail(7)) SWIG_fail
; 
9153             arg8 
= (int)(SWIG_As_int(obj7
));  
9154             if (SWIG_arg_fail(8)) SWIG_fail
; 
9158         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9159         result 
= (int)(arg1
)->Render(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
); 
9161         wxPyEndAllowThreads(__tstate
); 
9162         if (PyErr_Occurred()) SWIG_fail
; 
9165         resultobj 
= SWIG_From_int((int)(result
));  
9173 static PyObject 
*_wrap_HtmlDCRenderer_GetTotalHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9174     PyObject 
*resultobj
; 
9175     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9177     PyObject 
* obj0 
= 0 ; 
9179         (char *) "self", NULL 
 
9182     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlDCRenderer_GetTotalHeight",kwnames
,&obj0
)) goto fail
; 
9183     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9184     if (SWIG_arg_fail(1)) SWIG_fail
; 
9186         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9187         result 
= (int)(arg1
)->GetTotalHeight(); 
9189         wxPyEndAllowThreads(__tstate
); 
9190         if (PyErr_Occurred()) SWIG_fail
; 
9193         resultobj 
= SWIG_From_int((int)(result
));  
9201 static PyObject 
* HtmlDCRenderer_swigregister(PyObject 
*, PyObject 
*args
) { 
9203     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9204     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlDCRenderer
, obj
); 
9206     return Py_BuildValue((char *)""); 
9208 static PyObject 
*_wrap_new_HtmlPrintout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9209     PyObject 
*resultobj
; 
9210     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintoutTitleStr 
; 
9211     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9212     wxHtmlPrintout 
*result
; 
9213     bool temp1 
= false ; 
9214     PyObject 
* obj0 
= 0 ; 
9216         (char *) "title", NULL 
 
9219     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlPrintout",kwnames
,&obj0
)) goto fail
; 
9222             arg1 
= wxString_in_helper(obj0
); 
9223             if (arg1 
== NULL
) SWIG_fail
; 
9228         if (!wxPyCheckForApp()) SWIG_fail
; 
9229         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9230         result 
= (wxHtmlPrintout 
*)new wxHtmlPrintout((wxString 
const &)*arg1
); 
9232         wxPyEndAllowThreads(__tstate
); 
9233         if (PyErr_Occurred()) SWIG_fail
; 
9235     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlPrintout
, 1); 
9250 static PyObject 
*_wrap_HtmlPrintout_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9251     PyObject 
*resultobj
; 
9252     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9253     wxString 
*arg2 
= 0 ; 
9254     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9255     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9256     bool arg4 
= (bool) true ; 
9257     bool temp2 
= false ; 
9258     bool temp3 
= false ; 
9259     PyObject 
* obj0 
= 0 ; 
9260     PyObject 
* obj1 
= 0 ; 
9261     PyObject 
* obj2 
= 0 ; 
9262     PyObject 
* obj3 
= 0 ; 
9264         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
9267     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlPrintout_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9268     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9269     if (SWIG_arg_fail(1)) SWIG_fail
; 
9271         arg2 
= wxString_in_helper(obj1
); 
9272         if (arg2 
== NULL
) SWIG_fail
; 
9277             arg3 
= wxString_in_helper(obj2
); 
9278             if (arg3 
== NULL
) SWIG_fail
; 
9284             arg4 
= (bool)(SWIG_As_bool(obj3
));  
9285             if (SWIG_arg_fail(4)) SWIG_fail
; 
9289         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9290         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
9292         wxPyEndAllowThreads(__tstate
); 
9293         if (PyErr_Occurred()) SWIG_fail
; 
9295     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9318 static PyObject 
*_wrap_HtmlPrintout_SetHtmlFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9319     PyObject 
*resultobj
; 
9320     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9321     wxString 
*arg2 
= 0 ; 
9322     bool temp2 
= false ; 
9323     PyObject 
* obj0 
= 0 ; 
9324     PyObject 
* obj1 
= 0 ; 
9326         (char *) "self",(char *) "htmlfile", NULL 
 
9329     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlPrintout_SetHtmlFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9330     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9331     if (SWIG_arg_fail(1)) SWIG_fail
; 
9333         arg2 
= wxString_in_helper(obj1
); 
9334         if (arg2 
== NULL
) SWIG_fail
; 
9338         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9339         (arg1
)->SetHtmlFile((wxString 
const &)*arg2
); 
9341         wxPyEndAllowThreads(__tstate
); 
9342         if (PyErr_Occurred()) SWIG_fail
; 
9344     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9359 static PyObject 
*_wrap_HtmlPrintout_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9360     PyObject 
*resultobj
; 
9361     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9362     wxString 
*arg2 
= 0 ; 
9363     int arg3 
= (int) wxPAGE_ALL 
; 
9364     bool temp2 
= false ; 
9365     PyObject 
* obj0 
= 0 ; 
9366     PyObject 
* obj1 
= 0 ; 
9367     PyObject 
* obj2 
= 0 ; 
9369         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
9372     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9373     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9374     if (SWIG_arg_fail(1)) SWIG_fail
; 
9376         arg2 
= wxString_in_helper(obj1
); 
9377         if (arg2 
== NULL
) SWIG_fail
; 
9382             arg3 
= (int)(SWIG_As_int(obj2
));  
9383             if (SWIG_arg_fail(3)) SWIG_fail
; 
9387         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9388         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
9390         wxPyEndAllowThreads(__tstate
); 
9391         if (PyErr_Occurred()) SWIG_fail
; 
9393     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9408 static PyObject 
*_wrap_HtmlPrintout_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9409     PyObject 
*resultobj
; 
9410     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9411     wxString 
*arg2 
= 0 ; 
9412     int arg3 
= (int) wxPAGE_ALL 
; 
9413     bool temp2 
= false ; 
9414     PyObject 
* obj0 
= 0 ; 
9415     PyObject 
* obj1 
= 0 ; 
9416     PyObject 
* obj2 
= 0 ; 
9418         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
9421     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9422     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9423     if (SWIG_arg_fail(1)) SWIG_fail
; 
9425         arg2 
= wxString_in_helper(obj1
); 
9426         if (arg2 
== NULL
) SWIG_fail
; 
9431             arg3 
= (int)(SWIG_As_int(obj2
));  
9432             if (SWIG_arg_fail(3)) SWIG_fail
; 
9436         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9437         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
9439         wxPyEndAllowThreads(__tstate
); 
9440         if (PyErr_Occurred()) SWIG_fail
; 
9442     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9457 static PyObject 
*_wrap_HtmlPrintout_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9458     PyObject 
*resultobj
; 
9459     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9462     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
9463     PyObject 
* obj0 
= 0 ; 
9464     PyObject 
* obj1 
= 0 ; 
9465     PyObject 
* obj2 
= 0 ; 
9466     PyObject 
* obj3 
= 0 ; 
9468         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
9471     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlPrintout_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9472     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9473     if (SWIG_arg_fail(1)) SWIG_fail
; 
9475         wxString
* sptr 
= wxString_in_helper(obj1
); 
9476         if (sptr 
== NULL
) SWIG_fail
; 
9481         wxString
* sptr 
= wxString_in_helper(obj2
); 
9482         if (sptr 
== NULL
) SWIG_fail
; 
9490         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9491         wxHtmlPrintout_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9493         wxPyEndAllowThreads(__tstate
); 
9494         if (PyErr_Occurred()) SWIG_fail
; 
9496     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9503 static PyObject 
*_wrap_HtmlPrintout_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9504     PyObject 
*resultobj
; 
9505     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9506     int arg2 
= (int) -1 ; 
9507     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9508     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9509     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9510     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9511     bool temp3 
= false ; 
9512     bool temp4 
= false ; 
9513     PyObject 
* obj0 
= 0 ; 
9514     PyObject 
* obj1 
= 0 ; 
9515     PyObject 
* obj2 
= 0 ; 
9516     PyObject 
* obj3 
= 0 ; 
9518         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9521     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlPrintout_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9522     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9523     if (SWIG_arg_fail(1)) SWIG_fail
; 
9526             arg2 
= (int)(SWIG_As_int(obj1
));  
9527             if (SWIG_arg_fail(2)) SWIG_fail
; 
9532             arg3 
= wxString_in_helper(obj2
); 
9533             if (arg3 
== NULL
) SWIG_fail
; 
9539             arg4 
= wxString_in_helper(obj3
); 
9540             if (arg4 
== NULL
) SWIG_fail
; 
9545         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9546         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9548         wxPyEndAllowThreads(__tstate
); 
9549         if (PyErr_Occurred()) SWIG_fail
; 
9551     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9574 static PyObject 
*_wrap_HtmlPrintout_SetMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9575     PyObject 
*resultobj
; 
9576     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9577     float arg2 
= (float) 25.2 ; 
9578     float arg3 
= (float) 25.2 ; 
9579     float arg4 
= (float) 25.2 ; 
9580     float arg5 
= (float) 25.2 ; 
9581     float arg6 
= (float) 5 ; 
9582     PyObject 
* obj0 
= 0 ; 
9583     PyObject 
* obj1 
= 0 ; 
9584     PyObject 
* obj2 
= 0 ; 
9585     PyObject 
* obj3 
= 0 ; 
9586     PyObject 
* obj4 
= 0 ; 
9587     PyObject 
* obj5 
= 0 ; 
9589         (char *) "self",(char *) "top",(char *) "bottom",(char *) "left",(char *) "right",(char *) "spaces", NULL 
 
9592     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:HtmlPrintout_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
9593     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9594     if (SWIG_arg_fail(1)) SWIG_fail
; 
9597             arg2 
= (float)(SWIG_As_float(obj1
));  
9598             if (SWIG_arg_fail(2)) SWIG_fail
; 
9603             arg3 
= (float)(SWIG_As_float(obj2
));  
9604             if (SWIG_arg_fail(3)) SWIG_fail
; 
9609             arg4 
= (float)(SWIG_As_float(obj3
));  
9610             if (SWIG_arg_fail(4)) SWIG_fail
; 
9615             arg5 
= (float)(SWIG_As_float(obj4
));  
9616             if (SWIG_arg_fail(5)) SWIG_fail
; 
9621             arg6 
= (float)(SWIG_As_float(obj5
));  
9622             if (SWIG_arg_fail(6)) SWIG_fail
; 
9626         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9627         (arg1
)->SetMargins(arg2
,arg3
,arg4
,arg5
,arg6
); 
9629         wxPyEndAllowThreads(__tstate
); 
9630         if (PyErr_Occurred()) SWIG_fail
; 
9632     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9639 static PyObject 
*_wrap_HtmlPrintout_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9640     PyObject 
*resultobj
; 
9641     wxHtmlFilter 
*arg1 
= (wxHtmlFilter 
*) 0 ; 
9642     PyObject 
* obj0 
= 0 ; 
9644         (char *) "filter", NULL 
 
9647     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlPrintout_AddFilter",kwnames
,&obj0
)) goto fail
; 
9648     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
9649     if (SWIG_arg_fail(1)) SWIG_fail
; 
9651         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9652         wxHtmlPrintout::AddFilter(arg1
); 
9654         wxPyEndAllowThreads(__tstate
); 
9655         if (PyErr_Occurred()) SWIG_fail
; 
9657     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9664 static PyObject 
*_wrap_HtmlPrintout_CleanUpStatics(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9665     PyObject 
*resultobj
; 
9670     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":HtmlPrintout_CleanUpStatics",kwnames
)) goto fail
; 
9672         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9673         wxHtmlPrintout::CleanUpStatics(); 
9675         wxPyEndAllowThreads(__tstate
); 
9676         if (PyErr_Occurred()) SWIG_fail
; 
9678     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9685 static PyObject 
* HtmlPrintout_swigregister(PyObject 
*, PyObject 
*args
) { 
9687     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9688     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlPrintout
, obj
); 
9690     return Py_BuildValue((char *)""); 
9692 static PyObject 
*_wrap_new_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9693     PyObject 
*resultobj
; 
9694     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintingTitleStr 
; 
9695     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9696     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
9697     wxHtmlEasyPrinting 
*result
; 
9698     bool temp1 
= false ; 
9699     PyObject 
* obj0 
= 0 ; 
9700     PyObject 
* obj1 
= 0 ; 
9702         (char *) "name",(char *) "parentWindow", NULL 
 
9705     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_HtmlEasyPrinting",kwnames
,&obj0
,&obj1
)) goto fail
; 
9708             arg1 
= wxString_in_helper(obj0
); 
9709             if (arg1 
== NULL
) SWIG_fail
; 
9714         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9715         if (SWIG_arg_fail(2)) SWIG_fail
; 
9718         if (!wxPyCheckForApp()) SWIG_fail
; 
9719         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9720         result 
= (wxHtmlEasyPrinting 
*)new wxHtmlEasyPrinting((wxString 
const &)*arg1
,arg2
); 
9722         wxPyEndAllowThreads(__tstate
); 
9723         if (PyErr_Occurred()) SWIG_fail
; 
9725     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlEasyPrinting
, 1); 
9740 static PyObject 
*_wrap_delete_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9741     PyObject 
*resultobj
; 
9742     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9743     PyObject 
* obj0 
= 0 ; 
9745         (char *) "self", NULL 
 
9748     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlEasyPrinting",kwnames
,&obj0
)) goto fail
; 
9749     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9750     if (SWIG_arg_fail(1)) SWIG_fail
; 
9752         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9755         wxPyEndAllowThreads(__tstate
); 
9756         if (PyErr_Occurred()) SWIG_fail
; 
9758     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9765 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9766     PyObject 
*resultobj
; 
9767     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9768     wxString 
*arg2 
= 0 ; 
9769     bool temp2 
= false ; 
9770     PyObject 
* obj0 
= 0 ; 
9771     PyObject 
* obj1 
= 0 ; 
9773         (char *) "self",(char *) "htmlfile", NULL 
 
9776     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PreviewFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9777     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9778     if (SWIG_arg_fail(1)) SWIG_fail
; 
9780         arg2 
= wxString_in_helper(obj1
); 
9781         if (arg2 
== NULL
) SWIG_fail
; 
9785         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9786         (arg1
)->PreviewFile((wxString 
const &)*arg2
); 
9788         wxPyEndAllowThreads(__tstate
); 
9789         if (PyErr_Occurred()) SWIG_fail
; 
9791     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9806 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9807     PyObject 
*resultobj
; 
9808     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9809     wxString 
*arg2 
= 0 ; 
9810     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9811     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9812     bool temp2 
= false ; 
9813     bool temp3 
= false ; 
9814     PyObject 
* obj0 
= 0 ; 
9815     PyObject 
* obj1 
= 0 ; 
9816     PyObject 
* obj2 
= 0 ; 
9818         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9821     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PreviewText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9822     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9823     if (SWIG_arg_fail(1)) SWIG_fail
; 
9825         arg2 
= wxString_in_helper(obj1
); 
9826         if (arg2 
== NULL
) SWIG_fail
; 
9831             arg3 
= wxString_in_helper(obj2
); 
9832             if (arg3 
== NULL
) SWIG_fail
; 
9837         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9838         (arg1
)->PreviewText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
9840         wxPyEndAllowThreads(__tstate
); 
9841         if (PyErr_Occurred()) SWIG_fail
; 
9843     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9866 static PyObject 
*_wrap_HtmlEasyPrinting_PrintFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9867     PyObject 
*resultobj
; 
9868     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9869     wxString 
*arg2 
= 0 ; 
9870     bool temp2 
= false ; 
9871     PyObject 
* obj0 
= 0 ; 
9872     PyObject 
* obj1 
= 0 ; 
9874         (char *) "self",(char *) "htmlfile", NULL 
 
9877     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PrintFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9878     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9879     if (SWIG_arg_fail(1)) SWIG_fail
; 
9881         arg2 
= wxString_in_helper(obj1
); 
9882         if (arg2 
== NULL
) SWIG_fail
; 
9886         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9887         (arg1
)->PrintFile((wxString 
const &)*arg2
); 
9889         wxPyEndAllowThreads(__tstate
); 
9890         if (PyErr_Occurred()) SWIG_fail
; 
9892     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9907 static PyObject 
*_wrap_HtmlEasyPrinting_PrintText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9908     PyObject 
*resultobj
; 
9909     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9910     wxString 
*arg2 
= 0 ; 
9911     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9912     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9913     bool temp2 
= false ; 
9914     bool temp3 
= false ; 
9915     PyObject 
* obj0 
= 0 ; 
9916     PyObject 
* obj1 
= 0 ; 
9917     PyObject 
* obj2 
= 0 ; 
9919         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9922     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PrintText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9923     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9924     if (SWIG_arg_fail(1)) SWIG_fail
; 
9926         arg2 
= wxString_in_helper(obj1
); 
9927         if (arg2 
== NULL
) SWIG_fail
; 
9932             arg3 
= wxString_in_helper(obj2
); 
9933             if (arg3 
== NULL
) SWIG_fail
; 
9938         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9939         (arg1
)->PrintText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
9941         wxPyEndAllowThreads(__tstate
); 
9942         if (PyErr_Occurred()) SWIG_fail
; 
9944     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9967 static PyObject 
*_wrap_HtmlEasyPrinting_PageSetup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9968     PyObject 
*resultobj
; 
9969     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9970     PyObject 
* obj0 
= 0 ; 
9972         (char *) "self", NULL 
 
9975     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_PageSetup",kwnames
,&obj0
)) goto fail
; 
9976     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9977     if (SWIG_arg_fail(1)) SWIG_fail
; 
9979         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9980         (arg1
)->PageSetup(); 
9982         wxPyEndAllowThreads(__tstate
); 
9983         if (PyErr_Occurred()) SWIG_fail
; 
9985     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9992 static PyObject 
*_wrap_HtmlEasyPrinting_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9993     PyObject 
*resultobj
; 
9994     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9995     wxString 
*arg2 
= 0 ; 
9996     int arg3 
= (int) wxPAGE_ALL 
; 
9997     bool temp2 
= false ; 
9998     PyObject 
* obj0 
= 0 ; 
9999     PyObject 
* obj1 
= 0 ; 
10000     PyObject 
* obj2 
= 0 ; 
10001     char *kwnames
[] = { 
10002         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
10005     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10006     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10007     if (SWIG_arg_fail(1)) SWIG_fail
; 
10009         arg2 
= wxString_in_helper(obj1
); 
10010         if (arg2 
== NULL
) SWIG_fail
; 
10015             arg3 
= (int)(SWIG_As_int(obj2
));  
10016             if (SWIG_arg_fail(3)) SWIG_fail
; 
10020         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10021         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
10023         wxPyEndAllowThreads(__tstate
); 
10024         if (PyErr_Occurred()) SWIG_fail
; 
10026     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10041 static PyObject 
*_wrap_HtmlEasyPrinting_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10042     PyObject 
*resultobj
; 
10043     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10044     wxString 
*arg2 
= 0 ; 
10045     int arg3 
= (int) wxPAGE_ALL 
; 
10046     bool temp2 
= false ; 
10047     PyObject 
* obj0 
= 0 ; 
10048     PyObject 
* obj1 
= 0 ; 
10049     PyObject 
* obj2 
= 0 ; 
10050     char *kwnames
[] = { 
10051         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
10054     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10055     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10056     if (SWIG_arg_fail(1)) SWIG_fail
; 
10058         arg2 
= wxString_in_helper(obj1
); 
10059         if (arg2 
== NULL
) SWIG_fail
; 
10064             arg3 
= (int)(SWIG_As_int(obj2
));  
10065             if (SWIG_arg_fail(3)) SWIG_fail
; 
10069         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10070         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
10072         wxPyEndAllowThreads(__tstate
); 
10073         if (PyErr_Occurred()) SWIG_fail
; 
10075     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10090 static PyObject 
*_wrap_HtmlEasyPrinting_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10091     PyObject 
*resultobj
; 
10092     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10095     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
10096     PyObject 
* obj0 
= 0 ; 
10097     PyObject 
* obj1 
= 0 ; 
10098     PyObject 
* obj2 
= 0 ; 
10099     PyObject 
* obj3 
= 0 ; 
10100     char *kwnames
[] = { 
10101         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
10104     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlEasyPrinting_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10105     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10106     if (SWIG_arg_fail(1)) SWIG_fail
; 
10108         wxString
* sptr 
= wxString_in_helper(obj1
); 
10109         if (sptr 
== NULL
) SWIG_fail
; 
10114         wxString
* sptr 
= wxString_in_helper(obj2
); 
10115         if (sptr 
== NULL
) SWIG_fail
; 
10123         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10124         wxHtmlEasyPrinting_SetFonts(arg1
,arg2
,arg3
,arg4
); 
10126         wxPyEndAllowThreads(__tstate
); 
10127         if (PyErr_Occurred()) SWIG_fail
; 
10129     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10136 static PyObject 
*_wrap_HtmlEasyPrinting_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10137     PyObject 
*resultobj
; 
10138     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10139     int arg2 
= (int) -1 ; 
10140     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
10141     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
10142     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
10143     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
10144     bool temp3 
= false ; 
10145     bool temp4 
= false ; 
10146     PyObject 
* obj0 
= 0 ; 
10147     PyObject 
* obj1 
= 0 ; 
10148     PyObject 
* obj2 
= 0 ; 
10149     PyObject 
* obj3 
= 0 ; 
10150     char *kwnames
[] = { 
10151         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
10154     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlEasyPrinting_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10155     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10156     if (SWIG_arg_fail(1)) SWIG_fail
; 
10159             arg2 
= (int)(SWIG_As_int(obj1
));  
10160             if (SWIG_arg_fail(2)) SWIG_fail
; 
10165             arg3 
= wxString_in_helper(obj2
); 
10166             if (arg3 
== NULL
) SWIG_fail
; 
10172             arg4 
= wxString_in_helper(obj3
); 
10173             if (arg4 
== NULL
) SWIG_fail
; 
10178         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10179         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10181         wxPyEndAllowThreads(__tstate
); 
10182         if (PyErr_Occurred()) SWIG_fail
; 
10184     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10207 static PyObject 
*_wrap_HtmlEasyPrinting_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10208     PyObject 
*resultobj
; 
10209     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10210     wxPrintData 
*result
; 
10211     PyObject 
* obj0 
= 0 ; 
10212     char *kwnames
[] = { 
10213         (char *) "self", NULL 
 
10216     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPrintData",kwnames
,&obj0
)) goto fail
; 
10217     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10218     if (SWIG_arg_fail(1)) SWIG_fail
; 
10220         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10221         result 
= (wxPrintData 
*)(arg1
)->GetPrintData(); 
10223         wxPyEndAllowThreads(__tstate
); 
10224         if (PyErr_Occurred()) SWIG_fail
; 
10226     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
10233 static PyObject 
*_wrap_HtmlEasyPrinting_GetPageSetupData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10234     PyObject 
*resultobj
; 
10235     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10236     wxPageSetupDialogData 
*result
; 
10237     PyObject 
* obj0 
= 0 ; 
10238     char *kwnames
[] = { 
10239         (char *) "self", NULL 
 
10242     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPageSetupData",kwnames
,&obj0
)) goto fail
; 
10243     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10244     if (SWIG_arg_fail(1)) SWIG_fail
; 
10246         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10247         result 
= (wxPageSetupDialogData 
*)(arg1
)->GetPageSetupData(); 
10249         wxPyEndAllowThreads(__tstate
); 
10250         if (PyErr_Occurred()) SWIG_fail
; 
10252     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0); 
10259 static PyObject 
* HtmlEasyPrinting_swigregister(PyObject 
*, PyObject 
*args
) { 
10261     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10262     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlEasyPrinting
, obj
); 
10264     return Py_BuildValue((char *)""); 
10266 static PyObject 
*_wrap_new_HtmlBookRecord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10267     PyObject 
*resultobj
; 
10268     wxString 
*arg1 
= 0 ; 
10269     wxString 
*arg2 
= 0 ; 
10270     wxString 
*arg3 
= 0 ; 
10271     wxString 
*arg4 
= 0 ; 
10272     wxHtmlBookRecord 
*result
; 
10273     bool temp1 
= false ; 
10274     bool temp2 
= false ; 
10275     bool temp3 
= false ; 
10276     bool temp4 
= false ; 
10277     PyObject 
* obj0 
= 0 ; 
10278     PyObject 
* obj1 
= 0 ; 
10279     PyObject 
* obj2 
= 0 ; 
10280     PyObject 
* obj3 
= 0 ; 
10281     char *kwnames
[] = { 
10282         (char *) "bookfile",(char *) "basepath",(char *) "title",(char *) "start", NULL 
 
10285     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_HtmlBookRecord",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10287         arg1 
= wxString_in_helper(obj0
); 
10288         if (arg1 
== NULL
) SWIG_fail
; 
10292         arg2 
= wxString_in_helper(obj1
); 
10293         if (arg2 
== NULL
) SWIG_fail
; 
10297         arg3 
= wxString_in_helper(obj2
); 
10298         if (arg3 
== NULL
) SWIG_fail
; 
10302         arg4 
= wxString_in_helper(obj3
); 
10303         if (arg4 
== NULL
) SWIG_fail
; 
10307         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10308         result 
= (wxHtmlBookRecord 
*)new wxHtmlBookRecord((wxString 
const &)*arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10310         wxPyEndAllowThreads(__tstate
); 
10311         if (PyErr_Occurred()) SWIG_fail
; 
10313     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecord
, 1); 
10352 static PyObject 
*_wrap_HtmlBookRecord_GetBookFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10353     PyObject 
*resultobj
; 
10354     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10356     PyObject 
* obj0 
= 0 ; 
10357     char *kwnames
[] = { 
10358         (char *) "self", NULL 
 
10361     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBookFile",kwnames
,&obj0
)) goto fail
; 
10362     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10363     if (SWIG_arg_fail(1)) SWIG_fail
; 
10365         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10366         result 
= (arg1
)->GetBookFile(); 
10368         wxPyEndAllowThreads(__tstate
); 
10369         if (PyErr_Occurred()) SWIG_fail
; 
10373         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10375         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10384 static PyObject 
*_wrap_HtmlBookRecord_GetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10385     PyObject 
*resultobj
; 
10386     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10388     PyObject 
* obj0 
= 0 ; 
10389     char *kwnames
[] = { 
10390         (char *) "self", NULL 
 
10393     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetTitle",kwnames
,&obj0
)) goto fail
; 
10394     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10395     if (SWIG_arg_fail(1)) SWIG_fail
; 
10397         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10398         result 
= (arg1
)->GetTitle(); 
10400         wxPyEndAllowThreads(__tstate
); 
10401         if (PyErr_Occurred()) SWIG_fail
; 
10405         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10407         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10416 static PyObject 
*_wrap_HtmlBookRecord_GetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10417     PyObject 
*resultobj
; 
10418     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10420     PyObject 
* obj0 
= 0 ; 
10421     char *kwnames
[] = { 
10422         (char *) "self", NULL 
 
10425     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetStart",kwnames
,&obj0
)) goto fail
; 
10426     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10427     if (SWIG_arg_fail(1)) SWIG_fail
; 
10429         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10430         result 
= (arg1
)->GetStart(); 
10432         wxPyEndAllowThreads(__tstate
); 
10433         if (PyErr_Occurred()) SWIG_fail
; 
10437         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10439         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10448 static PyObject 
*_wrap_HtmlBookRecord_GetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10449     PyObject 
*resultobj
; 
10450     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10452     PyObject 
* obj0 
= 0 ; 
10453     char *kwnames
[] = { 
10454         (char *) "self", NULL 
 
10457     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBasePath",kwnames
,&obj0
)) goto fail
; 
10458     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10459     if (SWIG_arg_fail(1)) SWIG_fail
; 
10461         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10462         result 
= (arg1
)->GetBasePath(); 
10464         wxPyEndAllowThreads(__tstate
); 
10465         if (PyErr_Occurred()) SWIG_fail
; 
10469         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10471         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10480 static PyObject 
*_wrap_HtmlBookRecord_SetContentsRange(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10481     PyObject 
*resultobj
; 
10482     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10485     PyObject 
* obj0 
= 0 ; 
10486     PyObject 
* obj1 
= 0 ; 
10487     PyObject 
* obj2 
= 0 ; 
10488     char *kwnames
[] = { 
10489         (char *) "self",(char *) "start",(char *) "end", NULL 
 
10492     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlBookRecord_SetContentsRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10493     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10494     if (SWIG_arg_fail(1)) SWIG_fail
; 
10496         arg2 
= (int)(SWIG_As_int(obj1
));  
10497         if (SWIG_arg_fail(2)) SWIG_fail
; 
10500         arg3 
= (int)(SWIG_As_int(obj2
));  
10501         if (SWIG_arg_fail(3)) SWIG_fail
; 
10504         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10505         (arg1
)->SetContentsRange(arg2
,arg3
); 
10507         wxPyEndAllowThreads(__tstate
); 
10508         if (PyErr_Occurred()) SWIG_fail
; 
10510     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10517 static PyObject 
*_wrap_HtmlBookRecord_GetContentsStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10518     PyObject 
*resultobj
; 
10519     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10521     PyObject 
* obj0 
= 0 ; 
10522     char *kwnames
[] = { 
10523         (char *) "self", NULL 
 
10526     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsStart",kwnames
,&obj0
)) goto fail
; 
10527     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10528     if (SWIG_arg_fail(1)) SWIG_fail
; 
10530         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10531         result 
= (int)(arg1
)->GetContentsStart(); 
10533         wxPyEndAllowThreads(__tstate
); 
10534         if (PyErr_Occurred()) SWIG_fail
; 
10537         resultobj 
= SWIG_From_int((int)(result
));  
10545 static PyObject 
*_wrap_HtmlBookRecord_GetContentsEnd(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10546     PyObject 
*resultobj
; 
10547     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10549     PyObject 
* obj0 
= 0 ; 
10550     char *kwnames
[] = { 
10551         (char *) "self", NULL 
 
10554     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsEnd",kwnames
,&obj0
)) goto fail
; 
10555     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10556     if (SWIG_arg_fail(1)) SWIG_fail
; 
10558         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10559         result 
= (int)(arg1
)->GetContentsEnd(); 
10561         wxPyEndAllowThreads(__tstate
); 
10562         if (PyErr_Occurred()) SWIG_fail
; 
10565         resultobj 
= SWIG_From_int((int)(result
));  
10573 static PyObject 
*_wrap_HtmlBookRecord_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10574     PyObject 
*resultobj
; 
10575     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10576     wxString 
*arg2 
= 0 ; 
10577     bool temp2 
= false ; 
10578     PyObject 
* obj0 
= 0 ; 
10579     PyObject 
* obj1 
= 0 ; 
10580     char *kwnames
[] = { 
10581         (char *) "self",(char *) "title", NULL 
 
10584     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
10585     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10586     if (SWIG_arg_fail(1)) SWIG_fail
; 
10588         arg2 
= wxString_in_helper(obj1
); 
10589         if (arg2 
== NULL
) SWIG_fail
; 
10593         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10594         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
10596         wxPyEndAllowThreads(__tstate
); 
10597         if (PyErr_Occurred()) SWIG_fail
; 
10599     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10614 static PyObject 
*_wrap_HtmlBookRecord_SetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10615     PyObject 
*resultobj
; 
10616     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10617     wxString 
*arg2 
= 0 ; 
10618     bool temp2 
= false ; 
10619     PyObject 
* obj0 
= 0 ; 
10620     PyObject 
* obj1 
= 0 ; 
10621     char *kwnames
[] = { 
10622         (char *) "self",(char *) "path", NULL 
 
10625     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetBasePath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10626     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10627     if (SWIG_arg_fail(1)) SWIG_fail
; 
10629         arg2 
= wxString_in_helper(obj1
); 
10630         if (arg2 
== NULL
) SWIG_fail
; 
10634         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10635         (arg1
)->SetBasePath((wxString 
const &)*arg2
); 
10637         wxPyEndAllowThreads(__tstate
); 
10638         if (PyErr_Occurred()) SWIG_fail
; 
10640     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10655 static PyObject 
*_wrap_HtmlBookRecord_SetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10656     PyObject 
*resultobj
; 
10657     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10658     wxString 
*arg2 
= 0 ; 
10659     bool temp2 
= false ; 
10660     PyObject 
* obj0 
= 0 ; 
10661     PyObject 
* obj1 
= 0 ; 
10662     char *kwnames
[] = { 
10663         (char *) "self",(char *) "start", NULL 
 
10666     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetStart",kwnames
,&obj0
,&obj1
)) goto fail
; 
10667     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10668     if (SWIG_arg_fail(1)) SWIG_fail
; 
10670         arg2 
= wxString_in_helper(obj1
); 
10671         if (arg2 
== NULL
) SWIG_fail
; 
10675         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10676         (arg1
)->SetStart((wxString 
const &)*arg2
); 
10678         wxPyEndAllowThreads(__tstate
); 
10679         if (PyErr_Occurred()) SWIG_fail
; 
10681     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10696 static PyObject 
*_wrap_HtmlBookRecord_GetFullPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10697     PyObject 
*resultobj
; 
10698     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10699     wxString 
*arg2 
= 0 ; 
10701     bool temp2 
= false ; 
10702     PyObject 
* obj0 
= 0 ; 
10703     PyObject 
* obj1 
= 0 ; 
10704     char *kwnames
[] = { 
10705         (char *) "self",(char *) "page", NULL 
 
10708     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_GetFullPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10709     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10710     if (SWIG_arg_fail(1)) SWIG_fail
; 
10712         arg2 
= wxString_in_helper(obj1
); 
10713         if (arg2 
== NULL
) SWIG_fail
; 
10717         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10718         result 
= ((wxHtmlBookRecord 
const *)arg1
)->GetFullPath((wxString 
const &)*arg2
); 
10720         wxPyEndAllowThreads(__tstate
); 
10721         if (PyErr_Occurred()) SWIG_fail
; 
10725         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10727         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10744 static PyObject 
* HtmlBookRecord_swigregister(PyObject 
*, PyObject 
*args
) { 
10746     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10747     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlBookRecord
, obj
); 
10749     return Py_BuildValue((char *)""); 
10751 static PyObject 
*_wrap_HtmlContentsItem_GetLevel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10752     PyObject 
*resultobj
; 
10753     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10755     PyObject 
* obj0 
= 0 ; 
10756     char *kwnames
[] = { 
10757         (char *) "self", NULL 
 
10760     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetLevel",kwnames
,&obj0
)) goto fail
; 
10761     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10762     if (SWIG_arg_fail(1)) SWIG_fail
; 
10764         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10765         result 
= (int)wxHtmlContentsItem_GetLevel(arg1
); 
10767         wxPyEndAllowThreads(__tstate
); 
10768         if (PyErr_Occurred()) SWIG_fail
; 
10771         resultobj 
= SWIG_From_int((int)(result
));  
10779 static PyObject 
*_wrap_HtmlContentsItem_GetID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10780     PyObject 
*resultobj
; 
10781     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10783     PyObject 
* obj0 
= 0 ; 
10784     char *kwnames
[] = { 
10785         (char *) "self", NULL 
 
10788     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetID",kwnames
,&obj0
)) goto fail
; 
10789     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10790     if (SWIG_arg_fail(1)) SWIG_fail
; 
10792         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10793         result 
= (int)wxHtmlContentsItem_GetID(arg1
); 
10795         wxPyEndAllowThreads(__tstate
); 
10796         if (PyErr_Occurred()) SWIG_fail
; 
10799         resultobj 
= SWIG_From_int((int)(result
));  
10807 static PyObject 
*_wrap_HtmlContentsItem_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10808     PyObject 
*resultobj
; 
10809     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10811     PyObject 
* obj0 
= 0 ; 
10812     char *kwnames
[] = { 
10813         (char *) "self", NULL 
 
10816     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetName",kwnames
,&obj0
)) goto fail
; 
10817     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10818     if (SWIG_arg_fail(1)) SWIG_fail
; 
10820         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10821         result 
= wxHtmlContentsItem_GetName(arg1
); 
10823         wxPyEndAllowThreads(__tstate
); 
10824         if (PyErr_Occurred()) SWIG_fail
; 
10828         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10830         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10839 static PyObject 
*_wrap_HtmlContentsItem_GetPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10840     PyObject 
*resultobj
; 
10841     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10843     PyObject 
* obj0 
= 0 ; 
10844     char *kwnames
[] = { 
10845         (char *) "self", NULL 
 
10848     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetPage",kwnames
,&obj0
)) goto fail
; 
10849     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10850     if (SWIG_arg_fail(1)) SWIG_fail
; 
10852         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10853         result 
= wxHtmlContentsItem_GetPage(arg1
); 
10855         wxPyEndAllowThreads(__tstate
); 
10856         if (PyErr_Occurred()) SWIG_fail
; 
10860         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10862         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10871 static PyObject 
*_wrap_HtmlContentsItem_GetBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10872     PyObject 
*resultobj
; 
10873     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10874     wxHtmlBookRecord 
*result
; 
10875     PyObject 
* obj0 
= 0 ; 
10876     char *kwnames
[] = { 
10877         (char *) "self", NULL 
 
10880     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetBook",kwnames
,&obj0
)) goto fail
; 
10881     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10882     if (SWIG_arg_fail(1)) SWIG_fail
; 
10884         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10885         result 
= (wxHtmlBookRecord 
*)wxHtmlContentsItem_GetBook(arg1
); 
10887         wxPyEndAllowThreads(__tstate
); 
10888         if (PyErr_Occurred()) SWIG_fail
; 
10890     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecord
, 0); 
10897 static PyObject 
* HtmlContentsItem_swigregister(PyObject 
*, PyObject 
*args
) { 
10899     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10900     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlContentsItem
, obj
); 
10902     return Py_BuildValue((char *)""); 
10904 static PyObject 
*_wrap_HtmlSearchStatus_Search(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10905     PyObject 
*resultobj
; 
10906     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10908     PyObject 
* obj0 
= 0 ; 
10909     char *kwnames
[] = { 
10910         (char *) "self", NULL 
 
10913     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_Search",kwnames
,&obj0
)) goto fail
; 
10914     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10915     if (SWIG_arg_fail(1)) SWIG_fail
; 
10917         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10918         result 
= (bool)(arg1
)->Search(); 
10920         wxPyEndAllowThreads(__tstate
); 
10921         if (PyErr_Occurred()) SWIG_fail
; 
10924         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10932 static PyObject 
*_wrap_HtmlSearchStatus_IsActive(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10933     PyObject 
*resultobj
; 
10934     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10936     PyObject 
* obj0 
= 0 ; 
10937     char *kwnames
[] = { 
10938         (char *) "self", NULL 
 
10941     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_IsActive",kwnames
,&obj0
)) goto fail
; 
10942     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10943     if (SWIG_arg_fail(1)) SWIG_fail
; 
10945         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10946         result 
= (bool)(arg1
)->IsActive(); 
10948         wxPyEndAllowThreads(__tstate
); 
10949         if (PyErr_Occurred()) SWIG_fail
; 
10952         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10960 static PyObject 
*_wrap_HtmlSearchStatus_GetCurIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10961     PyObject 
*resultobj
; 
10962     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10964     PyObject 
* obj0 
= 0 ; 
10965     char *kwnames
[] = { 
10966         (char *) "self", NULL 
 
10969     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetCurIndex",kwnames
,&obj0
)) goto fail
; 
10970     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10971     if (SWIG_arg_fail(1)) SWIG_fail
; 
10973         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10974         result 
= (int)(arg1
)->GetCurIndex(); 
10976         wxPyEndAllowThreads(__tstate
); 
10977         if (PyErr_Occurred()) SWIG_fail
; 
10980         resultobj 
= SWIG_From_int((int)(result
));  
10988 static PyObject 
*_wrap_HtmlSearchStatus_GetMaxIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10989     PyObject 
*resultobj
; 
10990     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10992     PyObject 
* obj0 
= 0 ; 
10993     char *kwnames
[] = { 
10994         (char *) "self", NULL 
 
10997     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetMaxIndex",kwnames
,&obj0
)) goto fail
; 
10998     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10999     if (SWIG_arg_fail(1)) SWIG_fail
; 
11001         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11002         result 
= (int)(arg1
)->GetMaxIndex(); 
11004         wxPyEndAllowThreads(__tstate
); 
11005         if (PyErr_Occurred()) SWIG_fail
; 
11008         resultobj 
= SWIG_From_int((int)(result
));  
11016 static PyObject 
*_wrap_HtmlSearchStatus_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11017     PyObject 
*resultobj
; 
11018     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
11020     PyObject 
* obj0 
= 0 ; 
11021     char *kwnames
[] = { 
11022         (char *) "self", NULL 
 
11025     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetName",kwnames
,&obj0
)) goto fail
; 
11026     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
11027     if (SWIG_arg_fail(1)) SWIG_fail
; 
11029         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11031             wxString 
const &_result_ref 
= (arg1
)->GetName(); 
11032             result 
= (wxString 
*) &_result_ref
; 
11035         wxPyEndAllowThreads(__tstate
); 
11036         if (PyErr_Occurred()) SWIG_fail
; 
11040         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
11042         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
11051 static PyObject 
*_wrap_HtmlSearchStatus_GetContentsItem(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11052     PyObject 
*resultobj
; 
11053     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
11054     wxHtmlContentsItem 
*result
; 
11055     PyObject 
* obj0 
= 0 ; 
11056     char *kwnames
[] = { 
11057         (char *) "self", NULL 
 
11060     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetContentsItem",kwnames
,&obj0
)) goto fail
; 
11061     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
11062     if (SWIG_arg_fail(1)) SWIG_fail
; 
11064         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11065         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetContentsItem(); 
11067         wxPyEndAllowThreads(__tstate
); 
11068         if (PyErr_Occurred()) SWIG_fail
; 
11070     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11077 static PyObject 
* HtmlSearchStatus_swigregister(PyObject 
*, PyObject 
*args
) { 
11079     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11080     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlSearchStatus
, obj
); 
11082     return Py_BuildValue((char *)""); 
11084 static PyObject 
*_wrap_new_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11085     PyObject 
*resultobj
; 
11086     wxHtmlHelpData 
*result
; 
11087     char *kwnames
[] = { 
11091     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlHelpData",kwnames
)) goto fail
; 
11093         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11094         result 
= (wxHtmlHelpData 
*)new wxHtmlHelpData(); 
11096         wxPyEndAllowThreads(__tstate
); 
11097         if (PyErr_Occurred()) SWIG_fail
; 
11099     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 1); 
11106 static PyObject 
*_wrap_delete_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11107     PyObject 
*resultobj
; 
11108     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11109     PyObject 
* obj0 
= 0 ; 
11110     char *kwnames
[] = { 
11111         (char *) "self", NULL 
 
11114     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpData",kwnames
,&obj0
)) goto fail
; 
11115     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11116     if (SWIG_arg_fail(1)) SWIG_fail
; 
11118         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11121         wxPyEndAllowThreads(__tstate
); 
11122         if (PyErr_Occurred()) SWIG_fail
; 
11124     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11131 static PyObject 
*_wrap_HtmlHelpData_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11132     PyObject 
*resultobj
; 
11133     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11134     wxString 
*arg2 
= 0 ; 
11135     bool temp2 
= false ; 
11136     PyObject 
* obj0 
= 0 ; 
11137     PyObject 
* obj1 
= 0 ; 
11138     char *kwnames
[] = { 
11139         (char *) "self",(char *) "path", NULL 
 
11142     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
11143     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11144     if (SWIG_arg_fail(1)) SWIG_fail
; 
11146         arg2 
= wxString_in_helper(obj1
); 
11147         if (arg2 
== NULL
) SWIG_fail
; 
11151         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11152         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
11154         wxPyEndAllowThreads(__tstate
); 
11155         if (PyErr_Occurred()) SWIG_fail
; 
11157     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11172 static PyObject 
*_wrap_HtmlHelpData_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11173     PyObject 
*resultobj
; 
11174     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11175     wxString 
*arg2 
= 0 ; 
11177     bool temp2 
= false ; 
11178     PyObject 
* obj0 
= 0 ; 
11179     PyObject 
* obj1 
= 0 ; 
11180     char *kwnames
[] = { 
11181         (char *) "self",(char *) "book", NULL 
 
11184     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_AddBook",kwnames
,&obj0
,&obj1
)) goto fail
; 
11185     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11186     if (SWIG_arg_fail(1)) SWIG_fail
; 
11188         arg2 
= wxString_in_helper(obj1
); 
11189         if (arg2 
== NULL
) SWIG_fail
; 
11193         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11194         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
); 
11196         wxPyEndAllowThreads(__tstate
); 
11197         if (PyErr_Occurred()) SWIG_fail
; 
11200         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11216 static PyObject 
*_wrap_HtmlHelpData_FindPageByName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11217     PyObject 
*resultobj
; 
11218     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11219     wxString 
*arg2 
= 0 ; 
11221     bool temp2 
= false ; 
11222     PyObject 
* obj0 
= 0 ; 
11223     PyObject 
* obj1 
= 0 ; 
11224     char *kwnames
[] = { 
11225         (char *) "self",(char *) "page", NULL 
 
11228     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageByName",kwnames
,&obj0
,&obj1
)) goto fail
; 
11229     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11230     if (SWIG_arg_fail(1)) SWIG_fail
; 
11232         arg2 
= wxString_in_helper(obj1
); 
11233         if (arg2 
== NULL
) SWIG_fail
; 
11237         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11238         result 
= (arg1
)->FindPageByName((wxString 
const &)*arg2
); 
11240         wxPyEndAllowThreads(__tstate
); 
11241         if (PyErr_Occurred()) SWIG_fail
; 
11245         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11247         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11264 static PyObject 
*_wrap_HtmlHelpData_FindPageById(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11265     PyObject 
*resultobj
; 
11266     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11269     PyObject 
* obj0 
= 0 ; 
11270     PyObject 
* obj1 
= 0 ; 
11271     char *kwnames
[] = { 
11272         (char *) "self",(char *) "id", NULL 
 
11275     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageById",kwnames
,&obj0
,&obj1
)) goto fail
; 
11276     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11277     if (SWIG_arg_fail(1)) SWIG_fail
; 
11279         arg2 
= (int)(SWIG_As_int(obj1
));  
11280         if (SWIG_arg_fail(2)) SWIG_fail
; 
11283         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11284         result 
= (arg1
)->FindPageById(arg2
); 
11286         wxPyEndAllowThreads(__tstate
); 
11287         if (PyErr_Occurred()) SWIG_fail
; 
11291         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11293         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11302 static PyObject 
*_wrap_HtmlHelpData_GetBookRecArray(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11303     PyObject 
*resultobj
; 
11304     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11305     wxHtmlBookRecArray 
*result
; 
11306     PyObject 
* obj0 
= 0 ; 
11307     char *kwnames
[] = { 
11308         (char *) "self", NULL 
 
11311     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetBookRecArray",kwnames
,&obj0
)) goto fail
; 
11312     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11313     if (SWIG_arg_fail(1)) SWIG_fail
; 
11315         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11317             wxHtmlBookRecArray 
const &_result_ref 
= (arg1
)->GetBookRecArray(); 
11318             result 
= (wxHtmlBookRecArray 
*) &_result_ref
; 
11321         wxPyEndAllowThreads(__tstate
); 
11322         if (PyErr_Occurred()) SWIG_fail
; 
11324     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecArray
, 0); 
11331 static PyObject 
*_wrap_HtmlHelpData_GetContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11332     PyObject 
*resultobj
; 
11333     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11334     wxHtmlContentsItem 
*result
; 
11335     PyObject 
* obj0 
= 0 ; 
11336     char *kwnames
[] = { 
11337         (char *) "self", NULL 
 
11340     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetContents",kwnames
,&obj0
)) goto fail
; 
11341     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11342     if (SWIG_arg_fail(1)) SWIG_fail
; 
11344         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11345         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetContents(); 
11347         wxPyEndAllowThreads(__tstate
); 
11348         if (PyErr_Occurred()) SWIG_fail
; 
11350     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11357 static PyObject 
*_wrap_HtmlHelpData_GetContentsCnt(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11358     PyObject 
*resultobj
; 
11359     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11361     PyObject 
* obj0 
= 0 ; 
11362     char *kwnames
[] = { 
11363         (char *) "self", NULL 
 
11366     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetContentsCnt",kwnames
,&obj0
)) goto fail
; 
11367     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11368     if (SWIG_arg_fail(1)) SWIG_fail
; 
11370         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11371         result 
= (int)(arg1
)->GetContentsCnt(); 
11373         wxPyEndAllowThreads(__tstate
); 
11374         if (PyErr_Occurred()) SWIG_fail
; 
11377         resultobj 
= SWIG_From_int((int)(result
));  
11385 static PyObject 
*_wrap_HtmlHelpData_GetIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11386     PyObject 
*resultobj
; 
11387     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11388     wxHtmlContentsItem 
*result
; 
11389     PyObject 
* obj0 
= 0 ; 
11390     char *kwnames
[] = { 
11391         (char *) "self", NULL 
 
11394     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetIndex",kwnames
,&obj0
)) goto fail
; 
11395     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11396     if (SWIG_arg_fail(1)) SWIG_fail
; 
11398         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11399         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetIndex(); 
11401         wxPyEndAllowThreads(__tstate
); 
11402         if (PyErr_Occurred()) SWIG_fail
; 
11404     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11411 static PyObject 
*_wrap_HtmlHelpData_GetIndexCnt(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11412     PyObject 
*resultobj
; 
11413     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11415     PyObject 
* obj0 
= 0 ; 
11416     char *kwnames
[] = { 
11417         (char *) "self", NULL 
 
11420     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetIndexCnt",kwnames
,&obj0
)) goto fail
; 
11421     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11422     if (SWIG_arg_fail(1)) SWIG_fail
; 
11424         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11425         result 
= (int)(arg1
)->GetIndexCnt(); 
11427         wxPyEndAllowThreads(__tstate
); 
11428         if (PyErr_Occurred()) SWIG_fail
; 
11431         resultobj 
= SWIG_From_int((int)(result
));  
11439 static PyObject 
* HtmlHelpData_swigregister(PyObject 
*, PyObject 
*args
) { 
11441     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11442     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpData
, obj
); 
11444     return Py_BuildValue((char *)""); 
11446 static PyObject 
*_wrap_new_HtmlHelpFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11447     PyObject 
*resultobj
; 
11448     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11450     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
11451     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11452     int arg4 
= (int) wxHF_DEFAULTSTYLE 
; 
11453     wxHtmlHelpData 
*arg5 
= (wxHtmlHelpData 
*) NULL 
; 
11454     wxHtmlHelpFrame 
*result
; 
11455     bool temp3 
= false ; 
11456     PyObject 
* obj0 
= 0 ; 
11457     PyObject 
* obj1 
= 0 ; 
11458     PyObject 
* obj2 
= 0 ; 
11459     PyObject 
* obj3 
= 0 ; 
11460     PyObject 
* obj4 
= 0 ; 
11461     char *kwnames
[] = { 
11462         (char *) "parent","arg2",(char *) "title",(char *) "style",(char *) "data", NULL 
 
11465     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_HtmlHelpFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
11466     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11467     if (SWIG_arg_fail(1)) SWIG_fail
; 
11469         arg2 
= (int)(SWIG_As_int(obj1
));  
11470         if (SWIG_arg_fail(2)) SWIG_fail
; 
11474             arg3 
= wxString_in_helper(obj2
); 
11475             if (arg3 
== NULL
) SWIG_fail
; 
11481             arg4 
= (int)(SWIG_As_int(obj3
));  
11482             if (SWIG_arg_fail(4)) SWIG_fail
; 
11486         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11487         if (SWIG_arg_fail(5)) SWIG_fail
; 
11490         if (!wxPyCheckForApp()) SWIG_fail
; 
11491         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11492         result 
= (wxHtmlHelpFrame 
*)new wxHtmlHelpFrame(arg1
,arg2
,(wxString 
const &)*arg3
,arg4
,arg5
); 
11494         wxPyEndAllowThreads(__tstate
); 
11495         if (PyErr_Occurred()) SWIG_fail
; 
11497     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 1); 
11512 static PyObject 
*_wrap_HtmlHelpFrame_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11513     PyObject 
*resultobj
; 
11514     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11515     wxHtmlHelpData 
*result
; 
11516     PyObject 
* obj0 
= 0 ; 
11517     char *kwnames
[] = { 
11518         (char *) "self", NULL 
 
11521     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_GetData",kwnames
,&obj0
)) goto fail
; 
11522     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11523     if (SWIG_arg_fail(1)) SWIG_fail
; 
11525         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11526         result 
= (wxHtmlHelpData 
*)(arg1
)->GetData(); 
11528         wxPyEndAllowThreads(__tstate
); 
11529         if (PyErr_Occurred()) SWIG_fail
; 
11531     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 0); 
11538 static PyObject 
*_wrap_HtmlHelpFrame_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11539     PyObject 
*resultobj
; 
11540     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11541     wxString 
*arg2 
= 0 ; 
11542     bool temp2 
= false ; 
11543     PyObject 
* obj0 
= 0 ; 
11544     PyObject 
* obj1 
= 0 ; 
11545     char *kwnames
[] = { 
11546         (char *) "self",(char *) "format", NULL 
 
11549     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
11550     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11551     if (SWIG_arg_fail(1)) SWIG_fail
; 
11553         arg2 
= wxString_in_helper(obj1
); 
11554         if (arg2 
== NULL
) SWIG_fail
; 
11558         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11559         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
11561         wxPyEndAllowThreads(__tstate
); 
11562         if (PyErr_Occurred()) SWIG_fail
; 
11564     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11579 static PyObject 
*_wrap_HtmlHelpFrame_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11580     PyObject 
*resultobj
; 
11581     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11582     wxString 
*arg2 
= 0 ; 
11583     bool temp2 
= false ; 
11584     PyObject 
* obj0 
= 0 ; 
11585     PyObject 
* obj1 
= 0 ; 
11586     char *kwnames
[] = { 
11587         (char *) "self",(char *) "x", NULL 
 
11590     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
11591     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11592     if (SWIG_arg_fail(1)) SWIG_fail
; 
11594         arg2 
= wxString_in_helper(obj1
); 
11595         if (arg2 
== NULL
) SWIG_fail
; 
11599         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11600         (arg1
)->Display((wxString 
const &)*arg2
); 
11602         wxPyEndAllowThreads(__tstate
); 
11603         if (PyErr_Occurred()) SWIG_fail
; 
11605     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11620 static PyObject 
*_wrap_HtmlHelpFrame_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11621     PyObject 
*resultobj
; 
11622     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11624     PyObject 
* obj0 
= 0 ; 
11625     PyObject 
* obj1 
= 0 ; 
11626     char *kwnames
[] = { 
11627         (char *) "self",(char *) "id", NULL 
 
11630     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
11631     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11632     if (SWIG_arg_fail(1)) SWIG_fail
; 
11634         arg2 
= (int)(SWIG_As_int(obj1
));  
11635         if (SWIG_arg_fail(2)) SWIG_fail
; 
11638         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11639         (arg1
)->Display(arg2
); 
11641         wxPyEndAllowThreads(__tstate
); 
11642         if (PyErr_Occurred()) SWIG_fail
; 
11644     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11651 static PyObject 
*_wrap_HtmlHelpFrame_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11652     PyObject 
*resultobj
; 
11653     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11654     PyObject 
* obj0 
= 0 ; 
11655     char *kwnames
[] = { 
11656         (char *) "self", NULL 
 
11659     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_DisplayContents",kwnames
,&obj0
)) goto fail
; 
11660     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11661     if (SWIG_arg_fail(1)) SWIG_fail
; 
11663         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11664         (arg1
)->DisplayContents(); 
11666         wxPyEndAllowThreads(__tstate
); 
11667         if (PyErr_Occurred()) SWIG_fail
; 
11669     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11676 static PyObject 
*_wrap_HtmlHelpFrame_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11677     PyObject 
*resultobj
; 
11678     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11679     PyObject 
* obj0 
= 0 ; 
11680     char *kwnames
[] = { 
11681         (char *) "self", NULL 
 
11684     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
11685     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11686     if (SWIG_arg_fail(1)) SWIG_fail
; 
11688         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11689         (arg1
)->DisplayIndex(); 
11691         wxPyEndAllowThreads(__tstate
); 
11692         if (PyErr_Occurred()) SWIG_fail
; 
11694     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11701 static PyObject 
*_wrap_HtmlHelpFrame_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11702     PyObject 
*resultobj
; 
11703     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11704     wxString 
*arg2 
= 0 ; 
11706     bool temp2 
= false ; 
11707     PyObject 
* obj0 
= 0 ; 
11708     PyObject 
* obj1 
= 0 ; 
11709     char *kwnames
[] = { 
11710         (char *) "self",(char *) "keyword", NULL 
 
11713     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_KeywordSearch",kwnames
,&obj0
,&obj1
)) goto fail
; 
11714     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11715     if (SWIG_arg_fail(1)) SWIG_fail
; 
11717         arg2 
= wxString_in_helper(obj1
); 
11718         if (arg2 
== NULL
) SWIG_fail
; 
11722         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11723         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
); 
11725         wxPyEndAllowThreads(__tstate
); 
11726         if (PyErr_Occurred()) SWIG_fail
; 
11729         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11745 static PyObject 
*_wrap_HtmlHelpFrame_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11746     PyObject 
*resultobj
; 
11747     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11748     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11749     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
11750     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11751     bool temp3 
= false ; 
11752     PyObject 
* obj0 
= 0 ; 
11753     PyObject 
* obj1 
= 0 ; 
11754     PyObject 
* obj2 
= 0 ; 
11755     char *kwnames
[] = { 
11756         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
11759     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11760     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11761     if (SWIG_arg_fail(1)) SWIG_fail
; 
11762     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11763     if (SWIG_arg_fail(2)) SWIG_fail
; 
11766             arg3 
= wxString_in_helper(obj2
); 
11767             if (arg3 
== NULL
) SWIG_fail
; 
11772         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11773         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
11775         wxPyEndAllowThreads(__tstate
); 
11776         if (PyErr_Occurred()) SWIG_fail
; 
11778     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11793 static PyObject 
*_wrap_HtmlHelpFrame_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11794     PyObject 
*resultobj
; 
11795     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11796     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11797     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
11798     PyObject 
* obj0 
= 0 ; 
11799     PyObject 
* obj1 
= 0 ; 
11800     PyObject 
* obj2 
= 0 ; 
11801     char *kwnames
[] = { 
11802         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11805     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11806     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11807     if (SWIG_arg_fail(1)) SWIG_fail
; 
11808     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11809     if (SWIG_arg_fail(2)) SWIG_fail
; 
11812             wxString
* sptr 
= wxString_in_helper(obj2
); 
11813             if (sptr 
== NULL
) SWIG_fail
; 
11819         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11820         (arg1
)->ReadCustomization(arg2
,arg3
); 
11822         wxPyEndAllowThreads(__tstate
); 
11823         if (PyErr_Occurred()) SWIG_fail
; 
11825     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11832 static PyObject 
*_wrap_HtmlHelpFrame_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11833     PyObject 
*resultobj
; 
11834     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11835     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11836     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
11837     PyObject 
* obj0 
= 0 ; 
11838     PyObject 
* obj1 
= 0 ; 
11839     PyObject 
* obj2 
= 0 ; 
11840     char *kwnames
[] = { 
11841         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11844     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11845     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11846     if (SWIG_arg_fail(1)) SWIG_fail
; 
11847     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11848     if (SWIG_arg_fail(2)) SWIG_fail
; 
11851             wxString
* sptr 
= wxString_in_helper(obj2
); 
11852             if (sptr 
== NULL
) SWIG_fail
; 
11858         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11859         (arg1
)->WriteCustomization(arg2
,arg3
); 
11861         wxPyEndAllowThreads(__tstate
); 
11862         if (PyErr_Occurred()) SWIG_fail
; 
11864     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11871 static PyObject 
* HtmlHelpFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
11873     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11874     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpFrame
, obj
); 
11876     return Py_BuildValue((char *)""); 
11878 static PyObject 
*_wrap_new_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11879     PyObject 
*resultobj
; 
11880     int arg1 
= (int) wxHF_DEFAULTSTYLE 
; 
11881     wxHtmlHelpController 
*result
; 
11882     PyObject 
* obj0 
= 0 ; 
11883     char *kwnames
[] = { 
11884         (char *) "style", NULL 
 
11887     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlHelpController",kwnames
,&obj0
)) goto fail
; 
11890             arg1 
= (int)(SWIG_As_int(obj0
));  
11891             if (SWIG_arg_fail(1)) SWIG_fail
; 
11895         if (!wxPyCheckForApp()) SWIG_fail
; 
11896         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11897         result 
= (wxHtmlHelpController 
*)new wxHtmlHelpController(arg1
); 
11899         wxPyEndAllowThreads(__tstate
); 
11900         if (PyErr_Occurred()) SWIG_fail
; 
11902     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 1); 
11909 static PyObject 
*_wrap_delete_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11910     PyObject 
*resultobj
; 
11911     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11912     PyObject 
* obj0 
= 0 ; 
11913     char *kwnames
[] = { 
11914         (char *) "self", NULL 
 
11917     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpController",kwnames
,&obj0
)) goto fail
; 
11918     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11919     if (SWIG_arg_fail(1)) SWIG_fail
; 
11921         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11924         wxPyEndAllowThreads(__tstate
); 
11925         if (PyErr_Occurred()) SWIG_fail
; 
11927     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11934 static PyObject 
*_wrap_HtmlHelpController_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11935     PyObject 
*resultobj
; 
11936     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11937     wxString 
*arg2 
= 0 ; 
11938     bool temp2 
= false ; 
11939     PyObject 
* obj0 
= 0 ; 
11940     PyObject 
* obj1 
= 0 ; 
11941     char *kwnames
[] = { 
11942         (char *) "self",(char *) "format", NULL 
 
11945     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
11946     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11947     if (SWIG_arg_fail(1)) SWIG_fail
; 
11949         arg2 
= wxString_in_helper(obj1
); 
11950         if (arg2 
== NULL
) SWIG_fail
; 
11954         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11955         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
11957         wxPyEndAllowThreads(__tstate
); 
11958         if (PyErr_Occurred()) SWIG_fail
; 
11960     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11975 static PyObject 
*_wrap_HtmlHelpController_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11976     PyObject 
*resultobj
; 
11977     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11978     wxString 
*arg2 
= 0 ; 
11979     bool temp2 
= false ; 
11980     PyObject 
* obj0 
= 0 ; 
11981     PyObject 
* obj1 
= 0 ; 
11982     char *kwnames
[] = { 
11983         (char *) "self",(char *) "path", NULL 
 
11986     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
11987     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11988     if (SWIG_arg_fail(1)) SWIG_fail
; 
11990         arg2 
= wxString_in_helper(obj1
); 
11991         if (arg2 
== NULL
) SWIG_fail
; 
11995         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11996         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
11998         wxPyEndAllowThreads(__tstate
); 
11999         if (PyErr_Occurred()) SWIG_fail
; 
12001     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12016 static PyObject 
*_wrap_HtmlHelpController_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12017     PyObject 
*resultobj
; 
12018     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12019     wxString 
*arg2 
= 0 ; 
12020     int arg3 
= (int) false ; 
12022     bool temp2 
= false ; 
12023     PyObject 
* obj0 
= 0 ; 
12024     PyObject 
* obj1 
= 0 ; 
12025     PyObject 
* obj2 
= 0 ; 
12026     char *kwnames
[] = { 
12027         (char *) "self",(char *) "book",(char *) "show_wait_msg", NULL 
 
12030     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_AddBook",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12031     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12032     if (SWIG_arg_fail(1)) SWIG_fail
; 
12034         arg2 
= wxString_in_helper(obj1
); 
12035         if (arg2 
== NULL
) SWIG_fail
; 
12040             arg3 
= (int)(SWIG_As_int(obj2
));  
12041             if (SWIG_arg_fail(3)) SWIG_fail
; 
12045         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12046         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
,arg3
); 
12048         wxPyEndAllowThreads(__tstate
); 
12049         if (PyErr_Occurred()) SWIG_fail
; 
12052         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12068 static PyObject 
*_wrap_HtmlHelpController_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12069     PyObject 
*resultobj
; 
12070     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12071     wxString 
*arg2 
= 0 ; 
12072     bool temp2 
= false ; 
12073     PyObject 
* obj0 
= 0 ; 
12074     PyObject 
* obj1 
= 0 ; 
12075     char *kwnames
[] = { 
12076         (char *) "self",(char *) "x", NULL 
 
12079     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
12080     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12081     if (SWIG_arg_fail(1)) SWIG_fail
; 
12083         arg2 
= wxString_in_helper(obj1
); 
12084         if (arg2 
== NULL
) SWIG_fail
; 
12088         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12089         (arg1
)->Display((wxString 
const &)*arg2
); 
12091         wxPyEndAllowThreads(__tstate
); 
12092         if (PyErr_Occurred()) SWIG_fail
; 
12094     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12109 static PyObject 
*_wrap_HtmlHelpController_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12110     PyObject 
*resultobj
; 
12111     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12113     PyObject 
* obj0 
= 0 ; 
12114     PyObject 
* obj1 
= 0 ; 
12115     char *kwnames
[] = { 
12116         (char *) "self",(char *) "id", NULL 
 
12119     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
12120     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12121     if (SWIG_arg_fail(1)) SWIG_fail
; 
12123         arg2 
= (int)(SWIG_As_int(obj1
));  
12124         if (SWIG_arg_fail(2)) SWIG_fail
; 
12127         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12128         (arg1
)->Display(arg2
); 
12130         wxPyEndAllowThreads(__tstate
); 
12131         if (PyErr_Occurred()) SWIG_fail
; 
12133     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12140 static PyObject 
*_wrap_HtmlHelpController_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12141     PyObject 
*resultobj
; 
12142     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12143     PyObject 
* obj0 
= 0 ; 
12144     char *kwnames
[] = { 
12145         (char *) "self", NULL 
 
12148     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayContents",kwnames
,&obj0
)) goto fail
; 
12149     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12150     if (SWIG_arg_fail(1)) SWIG_fail
; 
12152         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12153         (arg1
)->DisplayContents(); 
12155         wxPyEndAllowThreads(__tstate
); 
12156         if (PyErr_Occurred()) SWIG_fail
; 
12158     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12165 static PyObject 
*_wrap_HtmlHelpController_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12166     PyObject 
*resultobj
; 
12167     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12168     PyObject 
* obj0 
= 0 ; 
12169     char *kwnames
[] = { 
12170         (char *) "self", NULL 
 
12173     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
12174     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12175     if (SWIG_arg_fail(1)) SWIG_fail
; 
12177         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12178         (arg1
)->DisplayIndex(); 
12180         wxPyEndAllowThreads(__tstate
); 
12181         if (PyErr_Occurred()) SWIG_fail
; 
12183     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12190 static PyObject 
*_wrap_HtmlHelpController_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12191     PyObject 
*resultobj
; 
12192     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12193     wxString 
*arg2 
= 0 ; 
12195     bool temp2 
= false ; 
12196     PyObject 
* obj0 
= 0 ; 
12197     PyObject 
* obj1 
= 0 ; 
12198     char *kwnames
[] = { 
12199         (char *) "self",(char *) "keyword", NULL 
 
12202     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_KeywordSearch",kwnames
,&obj0
,&obj1
)) goto fail
; 
12203     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12204     if (SWIG_arg_fail(1)) SWIG_fail
; 
12206         arg2 
= wxString_in_helper(obj1
); 
12207         if (arg2 
== NULL
) SWIG_fail
; 
12211         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12212         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
); 
12214         wxPyEndAllowThreads(__tstate
); 
12215         if (PyErr_Occurred()) SWIG_fail
; 
12218         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12234 static PyObject 
*_wrap_HtmlHelpController_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12235     PyObject 
*resultobj
; 
12236     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12237     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12238     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
12239     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
12240     bool temp3 
= false ; 
12241     PyObject 
* obj0 
= 0 ; 
12242     PyObject 
* obj1 
= 0 ; 
12243     PyObject 
* obj2 
= 0 ; 
12244     char *kwnames
[] = { 
12245         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
12248     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12249     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12250     if (SWIG_arg_fail(1)) SWIG_fail
; 
12251     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12252     if (SWIG_arg_fail(2)) SWIG_fail
; 
12255             arg3 
= wxString_in_helper(obj2
); 
12256             if (arg3 
== NULL
) SWIG_fail
; 
12261         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12262         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
12264         wxPyEndAllowThreads(__tstate
); 
12265         if (PyErr_Occurred()) SWIG_fail
; 
12267     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12282 static PyObject 
*_wrap_HtmlHelpController_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12283     PyObject 
*resultobj
; 
12284     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12285     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12286     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
12287     PyObject 
* obj0 
= 0 ; 
12288     PyObject 
* obj1 
= 0 ; 
12289     PyObject 
* obj2 
= 0 ; 
12290     char *kwnames
[] = { 
12291         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
12294     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12295     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12296     if (SWIG_arg_fail(1)) SWIG_fail
; 
12297     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12298     if (SWIG_arg_fail(2)) SWIG_fail
; 
12301             wxString
* sptr 
= wxString_in_helper(obj2
); 
12302             if (sptr 
== NULL
) SWIG_fail
; 
12308         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12309         (arg1
)->ReadCustomization(arg2
,arg3
); 
12311         wxPyEndAllowThreads(__tstate
); 
12312         if (PyErr_Occurred()) SWIG_fail
; 
12314     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12321 static PyObject 
*_wrap_HtmlHelpController_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12322     PyObject 
*resultobj
; 
12323     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12324     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12325     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
12326     PyObject 
* obj0 
= 0 ; 
12327     PyObject 
* obj1 
= 0 ; 
12328     PyObject 
* obj2 
= 0 ; 
12329     char *kwnames
[] = { 
12330         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
12333     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12334     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12335     if (SWIG_arg_fail(1)) SWIG_fail
; 
12336     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12337     if (SWIG_arg_fail(2)) SWIG_fail
; 
12340             wxString
* sptr 
= wxString_in_helper(obj2
); 
12341             if (sptr 
== NULL
) SWIG_fail
; 
12347         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12348         (arg1
)->WriteCustomization(arg2
,arg3
); 
12350         wxPyEndAllowThreads(__tstate
); 
12351         if (PyErr_Occurred()) SWIG_fail
; 
12353     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12360 static PyObject 
*_wrap_HtmlHelpController_GetFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12361     PyObject 
*resultobj
; 
12362     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12363     wxHtmlHelpFrame 
*result
; 
12364     PyObject 
* obj0 
= 0 ; 
12365     char *kwnames
[] = { 
12366         (char *) "self", NULL 
 
12369     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_GetFrame",kwnames
,&obj0
)) goto fail
; 
12370     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12371     if (SWIG_arg_fail(1)) SWIG_fail
; 
12373         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12374         result 
= (wxHtmlHelpFrame 
*)(arg1
)->GetFrame(); 
12376         wxPyEndAllowThreads(__tstate
); 
12377         if (PyErr_Occurred()) SWIG_fail
; 
12379     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 0); 
12386 static PyObject 
* HtmlHelpController_swigregister(PyObject 
*, PyObject 
*args
) { 
12388     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12389     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpController
, obj
); 
12391     return Py_BuildValue((char *)""); 
12393 static PyMethodDef SwigMethods
[] = { 
12394          { (char *)"new_HtmlLinkInfo", (PyCFunction
) _wrap_new_HtmlLinkInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12395          { (char *)"HtmlLinkInfo_GetHref", (PyCFunction
) _wrap_HtmlLinkInfo_GetHref
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12396          { (char *)"HtmlLinkInfo_GetTarget", (PyCFunction
) _wrap_HtmlLinkInfo_GetTarget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12397          { (char *)"HtmlLinkInfo_GetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_GetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12398          { (char *)"HtmlLinkInfo_GetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_GetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12399          { (char *)"HtmlLinkInfo_SetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_SetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12400          { (char *)"HtmlLinkInfo_SetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_SetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12401          { (char *)"HtmlLinkInfo_swigregister", HtmlLinkInfo_swigregister
, METH_VARARGS
, NULL
}, 
12402          { (char *)"HtmlTag_GetName", (PyCFunction
) _wrap_HtmlTag_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12403          { (char *)"HtmlTag_HasParam", (PyCFunction
) _wrap_HtmlTag_HasParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12404          { (char *)"HtmlTag_GetParam", (PyCFunction
) _wrap_HtmlTag_GetParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12405          { (char *)"HtmlTag_GetAllParams", (PyCFunction
) _wrap_HtmlTag_GetAllParams
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12406          { (char *)"HtmlTag_HasEnding", (PyCFunction
) _wrap_HtmlTag_HasEnding
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12407          { (char *)"HtmlTag_GetBeginPos", (PyCFunction
) _wrap_HtmlTag_GetBeginPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12408          { (char *)"HtmlTag_GetEndPos1", (PyCFunction
) _wrap_HtmlTag_GetEndPos1
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12409          { (char *)"HtmlTag_GetEndPos2", (PyCFunction
) _wrap_HtmlTag_GetEndPos2
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12410          { (char *)"HtmlTag_swigregister", HtmlTag_swigregister
, METH_VARARGS
, NULL
}, 
12411          { (char *)"HtmlParser_SetFS", (PyCFunction
) _wrap_HtmlParser_SetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12412          { (char *)"HtmlParser_GetFS", (PyCFunction
) _wrap_HtmlParser_GetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12413          { (char *)"HtmlParser_Parse", (PyCFunction
) _wrap_HtmlParser_Parse
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12414          { (char *)"HtmlParser_InitParser", (PyCFunction
) _wrap_HtmlParser_InitParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12415          { (char *)"HtmlParser_DoneParser", (PyCFunction
) _wrap_HtmlParser_DoneParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12416          { (char *)"HtmlParser_DoParsing", (PyCFunction
) _wrap_HtmlParser_DoParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12417          { (char *)"HtmlParser_StopParsing", (PyCFunction
) _wrap_HtmlParser_StopParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12418          { (char *)"HtmlParser_AddTagHandler", (PyCFunction
) _wrap_HtmlParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12419          { (char *)"HtmlParser_GetSource", (PyCFunction
) _wrap_HtmlParser_GetSource
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12420          { (char *)"HtmlParser_PushTagHandler", (PyCFunction
) _wrap_HtmlParser_PushTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12421          { (char *)"HtmlParser_PopTagHandler", (PyCFunction
) _wrap_HtmlParser_PopTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12422          { (char *)"HtmlParser_swigregister", HtmlParser_swigregister
, METH_VARARGS
, NULL
}, 
12423          { (char *)"new_HtmlWinParser", (PyCFunction
) _wrap_new_HtmlWinParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12424          { (char *)"HtmlWinParser_SetDC", (PyCFunction
) _wrap_HtmlWinParser_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12425          { (char *)"HtmlWinParser_GetDC", (PyCFunction
) _wrap_HtmlWinParser_GetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12426          { (char *)"HtmlWinParser_GetCharHeight", (PyCFunction
) _wrap_HtmlWinParser_GetCharHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12427          { (char *)"HtmlWinParser_GetCharWidth", (PyCFunction
) _wrap_HtmlWinParser_GetCharWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12428          { (char *)"HtmlWinParser_GetWindow", (PyCFunction
) _wrap_HtmlWinParser_GetWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12429          { (char *)"HtmlWinParser_SetFonts", (PyCFunction
) _wrap_HtmlWinParser_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12430          { (char *)"HtmlWinParser_SetStandardFonts", (PyCFunction
) _wrap_HtmlWinParser_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12431          { (char *)"HtmlWinParser_GetContainer", (PyCFunction
) _wrap_HtmlWinParser_GetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12432          { (char *)"HtmlWinParser_OpenContainer", (PyCFunction
) _wrap_HtmlWinParser_OpenContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12433          { (char *)"HtmlWinParser_SetContainer", (PyCFunction
) _wrap_HtmlWinParser_SetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12434          { (char *)"HtmlWinParser_CloseContainer", (PyCFunction
) _wrap_HtmlWinParser_CloseContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12435          { (char *)"HtmlWinParser_GetFontSize", (PyCFunction
) _wrap_HtmlWinParser_GetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12436          { (char *)"HtmlWinParser_SetFontSize", (PyCFunction
) _wrap_HtmlWinParser_SetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12437          { (char *)"HtmlWinParser_GetFontBold", (PyCFunction
) _wrap_HtmlWinParser_GetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12438          { (char *)"HtmlWinParser_SetFontBold", (PyCFunction
) _wrap_HtmlWinParser_SetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12439          { (char *)"HtmlWinParser_GetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_GetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12440          { (char *)"HtmlWinParser_SetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_SetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12441          { (char *)"HtmlWinParser_GetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_GetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12442          { (char *)"HtmlWinParser_SetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_SetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12443          { (char *)"HtmlWinParser_GetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_GetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12444          { (char *)"HtmlWinParser_SetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_SetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12445          { (char *)"HtmlWinParser_GetAlign", (PyCFunction
) _wrap_HtmlWinParser_GetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12446          { (char *)"HtmlWinParser_SetAlign", (PyCFunction
) _wrap_HtmlWinParser_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12447          { (char *)"HtmlWinParser_GetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_GetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12448          { (char *)"HtmlWinParser_SetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_SetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12449          { (char *)"HtmlWinParser_GetActualColor", (PyCFunction
) _wrap_HtmlWinParser_GetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12450          { (char *)"HtmlWinParser_SetActualColor", (PyCFunction
) _wrap_HtmlWinParser_SetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12451          { (char *)"HtmlWinParser_SetLink", (PyCFunction
) _wrap_HtmlWinParser_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12452          { (char *)"HtmlWinParser_CreateCurrentFont", (PyCFunction
) _wrap_HtmlWinParser_CreateCurrentFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12453          { (char *)"HtmlWinParser_GetLink", (PyCFunction
) _wrap_HtmlWinParser_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12454          { (char *)"HtmlWinParser_swigregister", HtmlWinParser_swigregister
, METH_VARARGS
, NULL
}, 
12455          { (char *)"new_HtmlTagHandler", (PyCFunction
) _wrap_new_HtmlTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12456          { (char *)"HtmlTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12457          { (char *)"HtmlTagHandler_SetParser", (PyCFunction
) _wrap_HtmlTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12458          { (char *)"HtmlTagHandler_GetParser", (PyCFunction
) _wrap_HtmlTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12459          { (char *)"HtmlTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12460          { (char *)"HtmlTagHandler_swigregister", HtmlTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
12461          { (char *)"new_HtmlWinTagHandler", (PyCFunction
) _wrap_new_HtmlWinTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12462          { (char *)"HtmlWinTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlWinTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12463          { (char *)"HtmlWinTagHandler_SetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12464          { (char *)"HtmlWinTagHandler_GetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12465          { (char *)"HtmlWinTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlWinTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12466          { (char *)"HtmlWinTagHandler_swigregister", HtmlWinTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
12467          { (char *)"HtmlWinParser_AddTagHandler", (PyCFunction
) _wrap_HtmlWinParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12468          { (char *)"new_HtmlSelection", (PyCFunction
) _wrap_new_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12469          { (char *)"delete_HtmlSelection", (PyCFunction
) _wrap_delete_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12470          { (char *)"HtmlSelection_Set", (PyCFunction
) _wrap_HtmlSelection_Set
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12471          { (char *)"HtmlSelection_SetCells", (PyCFunction
) _wrap_HtmlSelection_SetCells
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12472          { (char *)"HtmlSelection_GetFromCell", (PyCFunction
) _wrap_HtmlSelection_GetFromCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12473          { (char *)"HtmlSelection_GetToCell", (PyCFunction
) _wrap_HtmlSelection_GetToCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12474          { (char *)"HtmlSelection_GetFromPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12475          { (char *)"HtmlSelection_GetToPos", (PyCFunction
) _wrap_HtmlSelection_GetToPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12476          { (char *)"HtmlSelection_GetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12477          { (char *)"HtmlSelection_GetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12478          { (char *)"HtmlSelection_SetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12479          { (char *)"HtmlSelection_SetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12480          { (char *)"HtmlSelection_ClearPrivPos", (PyCFunction
) _wrap_HtmlSelection_ClearPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12481          { (char *)"HtmlSelection_IsEmpty", (PyCFunction
) _wrap_HtmlSelection_IsEmpty
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12482          { (char *)"HtmlSelection_swigregister", HtmlSelection_swigregister
, METH_VARARGS
, NULL
}, 
12483          { (char *)"new_HtmlRenderingState", (PyCFunction
) _wrap_new_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12484          { (char *)"delete_HtmlRenderingState", (PyCFunction
) _wrap_delete_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12485          { (char *)"HtmlRenderingState_SetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_SetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12486          { (char *)"HtmlRenderingState_GetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_GetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12487          { (char *)"HtmlRenderingState_SetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12488          { (char *)"HtmlRenderingState_GetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12489          { (char *)"HtmlRenderingState_SetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12490          { (char *)"HtmlRenderingState_GetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12491          { (char *)"HtmlRenderingState_swigregister", HtmlRenderingState_swigregister
, METH_VARARGS
, NULL
}, 
12492          { (char *)"HtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12493          { (char *)"HtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12494          { (char *)"HtmlRenderingStyle_swigregister", HtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
12495          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12496          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12497          { (char *)"DefaultHtmlRenderingStyle_swigregister", DefaultHtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
12498          { (char *)"new_HtmlRenderingInfo", (PyCFunction
) _wrap_new_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12499          { (char *)"delete_HtmlRenderingInfo", (PyCFunction
) _wrap_delete_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12500          { (char *)"HtmlRenderingInfo_SetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12501          { (char *)"HtmlRenderingInfo_GetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12502          { (char *)"HtmlRenderingInfo_SetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_SetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12503          { (char *)"HtmlRenderingInfo_GetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_GetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12504          { (char *)"HtmlRenderingInfo_GetState", (PyCFunction
) _wrap_HtmlRenderingInfo_GetState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12505          { (char *)"HtmlRenderingInfo_swigregister", HtmlRenderingInfo_swigregister
, METH_VARARGS
, NULL
}, 
12506          { (char *)"new_HtmlCell", (PyCFunction
) _wrap_new_HtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12507          { (char *)"HtmlCell_GetPosX", (PyCFunction
) _wrap_HtmlCell_GetPosX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12508          { (char *)"HtmlCell_GetPosY", (PyCFunction
) _wrap_HtmlCell_GetPosY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12509          { (char *)"HtmlCell_GetWidth", (PyCFunction
) _wrap_HtmlCell_GetWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12510          { (char *)"HtmlCell_GetHeight", (PyCFunction
) _wrap_HtmlCell_GetHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12511          { (char *)"HtmlCell_GetDescent", (PyCFunction
) _wrap_HtmlCell_GetDescent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12512          { (char *)"HtmlCell_GetMaxTotalWidth", (PyCFunction
) _wrap_HtmlCell_GetMaxTotalWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12513          { (char *)"HtmlCell_GetId", (PyCFunction
) _wrap_HtmlCell_GetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12514          { (char *)"HtmlCell_SetId", (PyCFunction
) _wrap_HtmlCell_SetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12515          { (char *)"HtmlCell_GetLink", (PyCFunction
) _wrap_HtmlCell_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12516          { (char *)"HtmlCell_GetNext", (PyCFunction
) _wrap_HtmlCell_GetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12517          { (char *)"HtmlCell_GetParent", (PyCFunction
) _wrap_HtmlCell_GetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12518          { (char *)"HtmlCell_GetFirstChild", (PyCFunction
) _wrap_HtmlCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12519          { (char *)"HtmlCell_GetCursor", (PyCFunction
) _wrap_HtmlCell_GetCursor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12520          { (char *)"HtmlCell_IsFormattingCell", (PyCFunction
) _wrap_HtmlCell_IsFormattingCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12521          { (char *)"HtmlCell_SetLink", (PyCFunction
) _wrap_HtmlCell_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12522          { (char *)"HtmlCell_SetNext", (PyCFunction
) _wrap_HtmlCell_SetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12523          { (char *)"HtmlCell_SetParent", (PyCFunction
) _wrap_HtmlCell_SetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12524          { (char *)"HtmlCell_SetPos", (PyCFunction
) _wrap_HtmlCell_SetPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12525          { (char *)"HtmlCell_Layout", (PyCFunction
) _wrap_HtmlCell_Layout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12526          { (char *)"HtmlCell_Draw", (PyCFunction
) _wrap_HtmlCell_Draw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12527          { (char *)"HtmlCell_DrawInvisible", (PyCFunction
) _wrap_HtmlCell_DrawInvisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12528          { (char *)"HtmlCell_Find", (PyCFunction
) _wrap_HtmlCell_Find
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12529          { (char *)"HtmlCell_AdjustPagebreak", (PyCFunction
) _wrap_HtmlCell_AdjustPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12530          { (char *)"HtmlCell_SetCanLiveOnPagebreak", (PyCFunction
) _wrap_HtmlCell_SetCanLiveOnPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12531          { (char *)"HtmlCell_IsLinebreakAllowed", (PyCFunction
) _wrap_HtmlCell_IsLinebreakAllowed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12532          { (char *)"HtmlCell_IsTerminalCell", (PyCFunction
) _wrap_HtmlCell_IsTerminalCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12533          { (char *)"HtmlCell_FindCellByPos", (PyCFunction
) _wrap_HtmlCell_FindCellByPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12534          { (char *)"HtmlCell_GetAbsPos", (PyCFunction
) _wrap_HtmlCell_GetAbsPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12535          { (char *)"HtmlCell_GetFirstTerminal", (PyCFunction
) _wrap_HtmlCell_GetFirstTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12536          { (char *)"HtmlCell_GetLastTerminal", (PyCFunction
) _wrap_HtmlCell_GetLastTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12537          { (char *)"HtmlCell_GetDepth", (PyCFunction
) _wrap_HtmlCell_GetDepth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12538          { (char *)"HtmlCell_IsBefore", (PyCFunction
) _wrap_HtmlCell_IsBefore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12539          { (char *)"HtmlCell_ConvertToText", (PyCFunction
) _wrap_HtmlCell_ConvertToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12540          { (char *)"HtmlCell_swigregister", HtmlCell_swigregister
, METH_VARARGS
, NULL
}, 
12541          { (char *)"new_HtmlWordCell", (PyCFunction
) _wrap_new_HtmlWordCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12542          { (char *)"HtmlWordCell_swigregister", HtmlWordCell_swigregister
, METH_VARARGS
, NULL
}, 
12543          { (char *)"new_HtmlContainerCell", (PyCFunction
) _wrap_new_HtmlContainerCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12544          { (char *)"HtmlContainerCell_InsertCell", (PyCFunction
) _wrap_HtmlContainerCell_InsertCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12545          { (char *)"HtmlContainerCell_SetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12546          { (char *)"HtmlContainerCell_GetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12547          { (char *)"HtmlContainerCell_SetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12548          { (char *)"HtmlContainerCell_GetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12549          { (char *)"HtmlContainerCell_SetIndent", (PyCFunction
) _wrap_HtmlContainerCell_SetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12550          { (char *)"HtmlContainerCell_GetIndent", (PyCFunction
) _wrap_HtmlContainerCell_GetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12551          { (char *)"HtmlContainerCell_GetIndentUnits", (PyCFunction
) _wrap_HtmlContainerCell_GetIndentUnits
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12552          { (char *)"HtmlContainerCell_SetAlign", (PyCFunction
) _wrap_HtmlContainerCell_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12553          { (char *)"HtmlContainerCell_SetWidthFloat", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12554          { (char *)"HtmlContainerCell_SetWidthFloatFromTag", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloatFromTag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12555          { (char *)"HtmlContainerCell_SetMinHeight", (PyCFunction
) _wrap_HtmlContainerCell_SetMinHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12556          { (char *)"HtmlContainerCell_SetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_SetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12557          { (char *)"HtmlContainerCell_GetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_GetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12558          { (char *)"HtmlContainerCell_SetBorder", (PyCFunction
) _wrap_HtmlContainerCell_SetBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12559          { (char *)"HtmlContainerCell_GetFirstChild", (PyCFunction
) _wrap_HtmlContainerCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12560          { (char *)"HtmlContainerCell_swigregister", HtmlContainerCell_swigregister
, METH_VARARGS
, NULL
}, 
12561          { (char *)"new_HtmlColourCell", (PyCFunction
) _wrap_new_HtmlColourCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12562          { (char *)"HtmlColourCell_swigregister", HtmlColourCell_swigregister
, METH_VARARGS
, NULL
}, 
12563          { (char *)"new_HtmlFontCell", (PyCFunction
) _wrap_new_HtmlFontCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12564          { (char *)"HtmlFontCell_swigregister", HtmlFontCell_swigregister
, METH_VARARGS
, NULL
}, 
12565          { (char *)"new_HtmlWidgetCell", (PyCFunction
) _wrap_new_HtmlWidgetCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12566          { (char *)"HtmlWidgetCell_swigregister", HtmlWidgetCell_swigregister
, METH_VARARGS
, NULL
}, 
12567          { (char *)"new_HtmlFilter", (PyCFunction
) _wrap_new_HtmlFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12568          { (char *)"HtmlFilter__setCallbackInfo", (PyCFunction
) _wrap_HtmlFilter__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12569          { (char *)"HtmlFilter_swigregister", HtmlFilter_swigregister
, METH_VARARGS
, NULL
}, 
12570          { (char *)"new_HtmlWindow", (PyCFunction
) _wrap_new_HtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12571          { (char *)"new_PreHtmlWindow", (PyCFunction
) _wrap_new_PreHtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12572          { (char *)"HtmlWindow_Create", (PyCFunction
) _wrap_HtmlWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12573          { (char *)"HtmlWindow__setCallbackInfo", (PyCFunction
) _wrap_HtmlWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12574          { (char *)"HtmlWindow_SetPage", (PyCFunction
) _wrap_HtmlWindow_SetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12575          { (char *)"HtmlWindow_LoadPage", (PyCFunction
) _wrap_HtmlWindow_LoadPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12576          { (char *)"HtmlWindow_LoadFile", (PyCFunction
) _wrap_HtmlWindow_LoadFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12577          { (char *)"HtmlWindow_AppendToPage", (PyCFunction
) _wrap_HtmlWindow_AppendToPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12578          { (char *)"HtmlWindow_GetOpenedPage", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12579          { (char *)"HtmlWindow_GetOpenedAnchor", (PyCFunction
) _wrap_HtmlWindow_GetOpenedAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12580          { (char *)"HtmlWindow_GetOpenedPageTitle", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPageTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12581          { (char *)"HtmlWindow_SetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_SetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12582          { (char *)"HtmlWindow_GetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_GetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12583          { (char *)"HtmlWindow_SetRelatedStatusBar", (PyCFunction
) _wrap_HtmlWindow_SetRelatedStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12584          { (char *)"HtmlWindow_SetFonts", (PyCFunction
) _wrap_HtmlWindow_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12585          { (char *)"HtmlWindow_SetStandardFonts", (PyCFunction
) _wrap_HtmlWindow_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12586          { (char *)"HtmlWindow_SetTitle", (PyCFunction
) _wrap_HtmlWindow_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12587          { (char *)"HtmlWindow_SetBorders", (PyCFunction
) _wrap_HtmlWindow_SetBorders
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12588          { (char *)"HtmlWindow_ReadCustomization", (PyCFunction
) _wrap_HtmlWindow_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12589          { (char *)"HtmlWindow_WriteCustomization", (PyCFunction
) _wrap_HtmlWindow_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12590          { (char *)"HtmlWindow_HistoryBack", (PyCFunction
) _wrap_HtmlWindow_HistoryBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12591          { (char *)"HtmlWindow_HistoryForward", (PyCFunction
) _wrap_HtmlWindow_HistoryForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12592          { (char *)"HtmlWindow_HistoryCanBack", (PyCFunction
) _wrap_HtmlWindow_HistoryCanBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12593          { (char *)"HtmlWindow_HistoryCanForward", (PyCFunction
) _wrap_HtmlWindow_HistoryCanForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12594          { (char *)"HtmlWindow_HistoryClear", (PyCFunction
) _wrap_HtmlWindow_HistoryClear
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12595          { (char *)"HtmlWindow_GetInternalRepresentation", (PyCFunction
) _wrap_HtmlWindow_GetInternalRepresentation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12596          { (char *)"HtmlWindow_GetParser", (PyCFunction
) _wrap_HtmlWindow_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12597          { (char *)"HtmlWindow_ScrollToAnchor", (PyCFunction
) _wrap_HtmlWindow_ScrollToAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12598          { (char *)"HtmlWindow_HasAnchor", (PyCFunction
) _wrap_HtmlWindow_HasAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12599          { (char *)"HtmlWindow_AddFilter", (PyCFunction
) _wrap_HtmlWindow_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12600          { (char *)"HtmlWindow_SelectWord", (PyCFunction
) _wrap_HtmlWindow_SelectWord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12601          { (char *)"HtmlWindow_SelectLine", (PyCFunction
) _wrap_HtmlWindow_SelectLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12602          { (char *)"HtmlWindow_SelectAll", (PyCFunction
) _wrap_HtmlWindow_SelectAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12603          { (char *)"HtmlWindow_SelectionToText", (PyCFunction
) _wrap_HtmlWindow_SelectionToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12604          { (char *)"HtmlWindow_ToText", (PyCFunction
) _wrap_HtmlWindow_ToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12605          { (char *)"HtmlWindow_base_OnLinkClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnLinkClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12606          { (char *)"HtmlWindow_base_OnSetTitle", (PyCFunction
) _wrap_HtmlWindow_base_OnSetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12607          { (char *)"HtmlWindow_base_OnCellMouseHover", (PyCFunction
) _wrap_HtmlWindow_base_OnCellMouseHover
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12608          { (char *)"HtmlWindow_base_OnCellClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnCellClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12609          { (char *)"HtmlWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_HtmlWindow_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12610          { (char *)"HtmlWindow_swigregister", HtmlWindow_swigregister
, METH_VARARGS
, NULL
}, 
12611          { (char *)"new_HtmlDCRenderer", (PyCFunction
) _wrap_new_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12612          { (char *)"delete_HtmlDCRenderer", (PyCFunction
) _wrap_delete_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12613          { (char *)"HtmlDCRenderer_SetDC", (PyCFunction
) _wrap_HtmlDCRenderer_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12614          { (char *)"HtmlDCRenderer_SetSize", (PyCFunction
) _wrap_HtmlDCRenderer_SetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12615          { (char *)"HtmlDCRenderer_SetHtmlText", (PyCFunction
) _wrap_HtmlDCRenderer_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12616          { (char *)"HtmlDCRenderer_SetFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12617          { (char *)"HtmlDCRenderer_SetStandardFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12618          { (char *)"HtmlDCRenderer_Render", (PyCFunction
) _wrap_HtmlDCRenderer_Render
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12619          { (char *)"HtmlDCRenderer_GetTotalHeight", (PyCFunction
) _wrap_HtmlDCRenderer_GetTotalHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12620          { (char *)"HtmlDCRenderer_swigregister", HtmlDCRenderer_swigregister
, METH_VARARGS
, NULL
}, 
12621          { (char *)"new_HtmlPrintout", (PyCFunction
) _wrap_new_HtmlPrintout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12622          { (char *)"HtmlPrintout_SetHtmlText", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12623          { (char *)"HtmlPrintout_SetHtmlFile", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12624          { (char *)"HtmlPrintout_SetHeader", (PyCFunction
) _wrap_HtmlPrintout_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12625          { (char *)"HtmlPrintout_SetFooter", (PyCFunction
) _wrap_HtmlPrintout_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12626          { (char *)"HtmlPrintout_SetFonts", (PyCFunction
) _wrap_HtmlPrintout_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12627          { (char *)"HtmlPrintout_SetStandardFonts", (PyCFunction
) _wrap_HtmlPrintout_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12628          { (char *)"HtmlPrintout_SetMargins", (PyCFunction
) _wrap_HtmlPrintout_SetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12629          { (char *)"HtmlPrintout_AddFilter", (PyCFunction
) _wrap_HtmlPrintout_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12630          { (char *)"HtmlPrintout_CleanUpStatics", (PyCFunction
) _wrap_HtmlPrintout_CleanUpStatics
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12631          { (char *)"HtmlPrintout_swigregister", HtmlPrintout_swigregister
, METH_VARARGS
, NULL
}, 
12632          { (char *)"new_HtmlEasyPrinting", (PyCFunction
) _wrap_new_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12633          { (char *)"delete_HtmlEasyPrinting", (PyCFunction
) _wrap_delete_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12634          { (char *)"HtmlEasyPrinting_PreviewFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12635          { (char *)"HtmlEasyPrinting_PreviewText", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12636          { (char *)"HtmlEasyPrinting_PrintFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12637          { (char *)"HtmlEasyPrinting_PrintText", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12638          { (char *)"HtmlEasyPrinting_PageSetup", (PyCFunction
) _wrap_HtmlEasyPrinting_PageSetup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12639          { (char *)"HtmlEasyPrinting_SetHeader", (PyCFunction
) _wrap_HtmlEasyPrinting_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12640          { (char *)"HtmlEasyPrinting_SetFooter", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12641          { (char *)"HtmlEasyPrinting_SetFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12642          { (char *)"HtmlEasyPrinting_SetStandardFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12643          { (char *)"HtmlEasyPrinting_GetPrintData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12644          { (char *)"HtmlEasyPrinting_GetPageSetupData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPageSetupData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12645          { (char *)"HtmlEasyPrinting_swigregister", HtmlEasyPrinting_swigregister
, METH_VARARGS
, NULL
}, 
12646          { (char *)"new_HtmlBookRecord", (PyCFunction
) _wrap_new_HtmlBookRecord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12647          { (char *)"HtmlBookRecord_GetBookFile", (PyCFunction
) _wrap_HtmlBookRecord_GetBookFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12648          { (char *)"HtmlBookRecord_GetTitle", (PyCFunction
) _wrap_HtmlBookRecord_GetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12649          { (char *)"HtmlBookRecord_GetStart", (PyCFunction
) _wrap_HtmlBookRecord_GetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12650          { (char *)"HtmlBookRecord_GetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_GetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12651          { (char *)"HtmlBookRecord_SetContentsRange", (PyCFunction
) _wrap_HtmlBookRecord_SetContentsRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12652          { (char *)"HtmlBookRecord_GetContentsStart", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12653          { (char *)"HtmlBookRecord_GetContentsEnd", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12654          { (char *)"HtmlBookRecord_SetTitle", (PyCFunction
) _wrap_HtmlBookRecord_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12655          { (char *)"HtmlBookRecord_SetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_SetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12656          { (char *)"HtmlBookRecord_SetStart", (PyCFunction
) _wrap_HtmlBookRecord_SetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12657          { (char *)"HtmlBookRecord_GetFullPath", (PyCFunction
) _wrap_HtmlBookRecord_GetFullPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12658          { (char *)"HtmlBookRecord_swigregister", HtmlBookRecord_swigregister
, METH_VARARGS
, NULL
}, 
12659          { (char *)"HtmlContentsItem_GetLevel", (PyCFunction
) _wrap_HtmlContentsItem_GetLevel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12660          { (char *)"HtmlContentsItem_GetID", (PyCFunction
) _wrap_HtmlContentsItem_GetID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12661          { (char *)"HtmlContentsItem_GetName", (PyCFunction
) _wrap_HtmlContentsItem_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12662          { (char *)"HtmlContentsItem_GetPage", (PyCFunction
) _wrap_HtmlContentsItem_GetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12663          { (char *)"HtmlContentsItem_GetBook", (PyCFunction
) _wrap_HtmlContentsItem_GetBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12664          { (char *)"HtmlContentsItem_swigregister", HtmlContentsItem_swigregister
, METH_VARARGS
, NULL
}, 
12665          { (char *)"HtmlSearchStatus_Search", (PyCFunction
) _wrap_HtmlSearchStatus_Search
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12666          { (char *)"HtmlSearchStatus_IsActive", (PyCFunction
) _wrap_HtmlSearchStatus_IsActive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12667          { (char *)"HtmlSearchStatus_GetCurIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetCurIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12668          { (char *)"HtmlSearchStatus_GetMaxIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetMaxIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12669          { (char *)"HtmlSearchStatus_GetName", (PyCFunction
) _wrap_HtmlSearchStatus_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12670          { (char *)"HtmlSearchStatus_GetContentsItem", (PyCFunction
) _wrap_HtmlSearchStatus_GetContentsItem
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12671          { (char *)"HtmlSearchStatus_swigregister", HtmlSearchStatus_swigregister
, METH_VARARGS
, NULL
}, 
12672          { (char *)"new_HtmlHelpData", (PyCFunction
) _wrap_new_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12673          { (char *)"delete_HtmlHelpData", (PyCFunction
) _wrap_delete_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12674          { (char *)"HtmlHelpData_SetTempDir", (PyCFunction
) _wrap_HtmlHelpData_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12675          { (char *)"HtmlHelpData_AddBook", (PyCFunction
) _wrap_HtmlHelpData_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12676          { (char *)"HtmlHelpData_FindPageByName", (PyCFunction
) _wrap_HtmlHelpData_FindPageByName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12677          { (char *)"HtmlHelpData_FindPageById", (PyCFunction
) _wrap_HtmlHelpData_FindPageById
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12678          { (char *)"HtmlHelpData_GetBookRecArray", (PyCFunction
) _wrap_HtmlHelpData_GetBookRecArray
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12679          { (char *)"HtmlHelpData_GetContents", (PyCFunction
) _wrap_HtmlHelpData_GetContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12680          { (char *)"HtmlHelpData_GetContentsCnt", (PyCFunction
) _wrap_HtmlHelpData_GetContentsCnt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12681          { (char *)"HtmlHelpData_GetIndex", (PyCFunction
) _wrap_HtmlHelpData_GetIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12682          { (char *)"HtmlHelpData_GetIndexCnt", (PyCFunction
) _wrap_HtmlHelpData_GetIndexCnt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12683          { (char *)"HtmlHelpData_swigregister", HtmlHelpData_swigregister
, METH_VARARGS
, NULL
}, 
12684          { (char *)"new_HtmlHelpFrame", (PyCFunction
) _wrap_new_HtmlHelpFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12685          { (char *)"HtmlHelpFrame_GetData", (PyCFunction
) _wrap_HtmlHelpFrame_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12686          { (char *)"HtmlHelpFrame_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpFrame_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12687          { (char *)"HtmlHelpFrame_Display", (PyCFunction
) _wrap_HtmlHelpFrame_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12688          { (char *)"HtmlHelpFrame_DisplayID", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12689          { (char *)"HtmlHelpFrame_DisplayContents", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12690          { (char *)"HtmlHelpFrame_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12691          { (char *)"HtmlHelpFrame_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpFrame_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12692          { (char *)"HtmlHelpFrame_UseConfig", (PyCFunction
) _wrap_HtmlHelpFrame_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12693          { (char *)"HtmlHelpFrame_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpFrame_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12694          { (char *)"HtmlHelpFrame_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpFrame_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12695          { (char *)"HtmlHelpFrame_swigregister", HtmlHelpFrame_swigregister
, METH_VARARGS
, NULL
}, 
12696          { (char *)"new_HtmlHelpController", (PyCFunction
) _wrap_new_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12697          { (char *)"delete_HtmlHelpController", (PyCFunction
) _wrap_delete_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12698          { (char *)"HtmlHelpController_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpController_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12699          { (char *)"HtmlHelpController_SetTempDir", (PyCFunction
) _wrap_HtmlHelpController_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12700          { (char *)"HtmlHelpController_AddBook", (PyCFunction
) _wrap_HtmlHelpController_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12701          { (char *)"HtmlHelpController_Display", (PyCFunction
) _wrap_HtmlHelpController_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12702          { (char *)"HtmlHelpController_DisplayID", (PyCFunction
) _wrap_HtmlHelpController_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12703          { (char *)"HtmlHelpController_DisplayContents", (PyCFunction
) _wrap_HtmlHelpController_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12704          { (char *)"HtmlHelpController_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpController_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12705          { (char *)"HtmlHelpController_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpController_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12706          { (char *)"HtmlHelpController_UseConfig", (PyCFunction
) _wrap_HtmlHelpController_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12707          { (char *)"HtmlHelpController_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpController_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12708          { (char *)"HtmlHelpController_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpController_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12709          { (char *)"HtmlHelpController_GetFrame", (PyCFunction
) _wrap_HtmlHelpController_GetFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12710          { (char *)"HtmlHelpController_swigregister", HtmlHelpController_swigregister
, METH_VARARGS
, NULL
}, 
12711          { NULL
, NULL
, 0, NULL 
} 
12715 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
12717 static void *_p_wxDefaultHtmlRenderingStyleTo_p_wxHtmlRenderingStyle(void *x
) { 
12718     return (void *)((wxHtmlRenderingStyle 
*)  ((wxDefaultHtmlRenderingStyle 
*) x
)); 
12720 static void *_p_wxHtmlWinParserTo_p_wxHtmlParser(void *x
) { 
12721     return (void *)((wxHtmlParser 
*)  ((wxHtmlWinParser 
*) x
)); 
12723 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) { 
12724     return (void *)((wxPanel 
*)  ((wxScrolledWindow 
*) x
)); 
12726 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) { 
12727     return (void *)((wxPanel 
*)  ((wxPyVScrolledWindow 
*) x
)); 
12729 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) { 
12730     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
12732 static void *_p_wxPyHtmlWindowTo_p_wxPanel(void *x
) { 
12733     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
12735 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) { 
12736     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
12738 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) { 
12739     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
12741 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) { 
12742     return (void *)((wxPanel 
*)  ((wxPyPanel 
*) x
)); 
12744 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) { 
12745     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
12747 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) { 
12748     return (void *)((wxPanel 
*)  ((wxPreviewControlBar 
*) x
)); 
12750 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) { 
12751     return (void *)((wxPanel 
*) (wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
12753 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) { 
12754     return (void *)((wxScrolledWindow 
*)  ((wxPyScrolledWindow 
*) x
)); 
12756 static void *_p_wxPyHtmlWindowTo_p_wxScrolledWindow(void *x
) { 
12757     return (void *)((wxScrolledWindow 
*)  ((wxPyHtmlWindow 
*) x
)); 
12759 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) { 
12760     return (void *)((wxScrolledWindow 
*)  ((wxPreviewCanvas 
*) x
)); 
12762 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) { 
12763     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
12765 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) { 
12766     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
12768 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) { 
12769     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyPanel 
*) x
)); 
12771 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
12772     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
12774 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) { 
12775     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
12777 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) { 
12778     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
12780 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) { 
12781     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
12783 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) { 
12784     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
12786 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) { 
12787     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
12789 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) { 
12790     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
12792 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) { 
12793     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
12795 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) { 
12796     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
12798 static void *_p_wxPanelTo_p_wxWindow(void *x
) { 
12799     return (void *)((wxWindow 
*)  ((wxPanel 
*) x
)); 
12801 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) { 
12802     return (void *)((wxWindow 
*)  ((wxStatusBar 
*) x
)); 
12804 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) { 
12805     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
12807 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) { 
12808     return (void *)((wxWindow 
*) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
12810 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) { 
12811     return (void *)((wxWindow 
*) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
12813 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) { 
12814     return (void *)((wxWindow 
*)  ((wxPopupWindow 
*) x
)); 
12816 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) { 
12817     return (void *)((wxWindow 
*) (wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
12819 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) { 
12820     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
12822 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) { 
12823     return (void *)((wxWindow 
*)  ((wxTopLevelWindow 
*) x
)); 
12825 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) { 
12826     return (void *)((wxWindow 
*)  ((wxSplashScreenWindow 
*) x
)); 
12828 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) { 
12829     return (void *)((wxWindow 
*)  ((wxSplitterWindow 
*) x
)); 
12831 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) { 
12832     return (void *)((wxWindow 
*)  ((wxSashWindow 
*) x
)); 
12834 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) { 
12835     return (void *)((wxWindow 
*)  ((wxMDIClientWindow 
*) x
)); 
12837 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) { 
12838     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
12840 static void *_p_wxPyHtmlWindowTo_p_wxWindow(void *x
) { 
12841     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
12843 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
12844     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
12846 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) { 
12847     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12849 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) { 
12850     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12852 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) { 
12853     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
12855 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
12856     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
12858 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) { 
12859     return (void *)((wxWindow 
*)  ((wxPyWindow 
*) x
)); 
12861 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) { 
12862     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
12864 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) { 
12865     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
12867 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) { 
12868     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
12870 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) { 
12871     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
12873 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) { 
12874     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
12876 static void *_p_wxHtmlHelpFrameTo_p_wxWindow(void *x
) { 
12877     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
12879 static void *_p_wxFrameTo_p_wxWindow(void *x
) { 
12880     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
12882 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) { 
12883     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
12885 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) { 
12886     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
12888 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) { 
12889     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
12891 static void *_p_wxDialogTo_p_wxWindow(void *x
) { 
12892     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
12894 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) { 
12895     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
12897 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) { 
12898     return (void *)((wxTopLevelWindow 
*)  ((wxFrame 
*) x
)); 
12900 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) { 
12901     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMiniFrame 
*) x
)); 
12903 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) { 
12904     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFontDialog 
*) x
)); 
12906 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) { 
12907     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxDirDialog 
*) x
)); 
12909 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) { 
12910     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxColourDialog 
*) x
)); 
12912 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) { 
12913     return (void *)((wxTopLevelWindow 
*)  ((wxDialog 
*) x
)); 
12915 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) { 
12916     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxSplashScreen 
*) x
)); 
12918 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
12919     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
12921 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) { 
12922     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
12924 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) { 
12925     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxProgressDialog 
*) x
)); 
12927 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) { 
12928     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMessageDialog 
*) x
)); 
12930 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
12931     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
12933 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
12934     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
12936 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
12937     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
12939 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
12940     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
12942 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) { 
12943     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFileDialog 
*) x
)); 
12945 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) { 
12946     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
12948 static void *_p_wxHtmlHelpFrameTo_p_wxTopLevelWindow(void *x
) { 
12949     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
12951 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
12952     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12954 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
12955     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12957 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
12958     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
12960 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) { 
12961     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryLayoutInfoEvent 
*) x
)); 
12963 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) { 
12964     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12966 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) { 
12967     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12969 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
12970     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
12972 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
12973     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
12975 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
12976     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
12978 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
12979     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
12981 static void *_p_wxHtmlLinkInfoTo_p_wxObject(void *x
) { 
12982     return (void *)((wxObject 
*)  ((wxHtmlLinkInfo 
*) x
)); 
12984 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
12985     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
12987 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
12988     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
12990 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
12991     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
12993 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
12994     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
12996 static void *_p_wxHtmlFontCellTo_p_wxObject(void *x
) { 
12997     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlFontCell 
*) x
)); 
12999 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
13000     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
13002 static void *_p_wxPyPanelTo_p_wxObject(void *x
) { 
13003     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
13005 static void *_p_wxEventTo_p_wxObject(void *x
) { 
13006     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
13008 static void *_p_wxFontDataTo_p_wxObject(void *x
) { 
13009     return (void *)((wxObject 
*)  ((wxFontData 
*) x
)); 
13011 static void *_p_wxPrintDataTo_p_wxObject(void *x
) { 
13012     return (void *)((wxObject 
*)  ((wxPrintData 
*) x
)); 
13014 static void *_p_wxHtmlTagTo_p_wxObject(void *x
) { 
13015     return (void *)((wxObject 
*)  ((wxHtmlTag 
*) x
)); 
13017 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
13018     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
13020 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
13021     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
13023 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
13024     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
13026 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) { 
13027     return (void *)((wxObject 
*)  ((wxLayoutAlgorithm 
*) x
)); 
13029 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) { 
13030     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTaskBarIcon 
*) x
)); 
13032 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) { 
13033     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
13035 static void *_p_wxHtmlHelpFrameTo_p_wxObject(void *x
) { 
13036     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
13038 static void *_p_wxHtmlCellTo_p_wxObject(void *x
) { 
13039     return (void *)((wxObject 
*)  ((wxHtmlCell 
*) x
)); 
13041 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
13042     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
13044 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
13045     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
13047 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
13048     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
13050 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
13051     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
13053 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
13054     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
13056 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
13057     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
13059 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) { 
13060     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
13062 static void *_p_wxControlTo_p_wxObject(void *x
) { 
13063     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
13065 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
13066     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
13068 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) { 
13069     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
13071 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
13072     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
13074 static void *_p_wxHtmlWidgetCellTo_p_wxObject(void *x
) { 
13075     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWidgetCell 
*) x
)); 
13077 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) { 
13078     return (void *)((wxObject 
*)  ((wxFindReplaceData 
*) x
)); 
13080 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
13081     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
13083 static void *_p_wxHtmlColourCellTo_p_wxObject(void *x
) { 
13084     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlColourCell 
*) x
)); 
13086 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) { 
13087     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
13089 static void *_p_wxColourDataTo_p_wxObject(void *x
) { 
13090     return (void *)((wxObject 
*)  ((wxColourData 
*) x
)); 
13092 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
13093     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
13095 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
13096     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
13098 static void *_p_wxPyWindowTo_p_wxObject(void *x
) { 
13099     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPyWindow 
*) x
)); 
13101 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) { 
13102     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
13104 static void *_p_wxFileDialogTo_p_wxObject(void *x
) { 
13105     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
13107 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) { 
13108     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
13110 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) { 
13111     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
13113 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) { 
13114     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
13116 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) { 
13117     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
13119 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) { 
13120     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
13122 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) { 
13123     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
13125 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) { 
13126     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
13128 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
13129     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
13131 static void *_p_wxPrinterTo_p_wxObject(void *x
) { 
13132     return (void *)((wxObject 
*)  ((wxPrinter 
*) x
)); 
13134 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
13135     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
13137 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
13138     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
13140 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
13141     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
13143 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
13144     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
13146 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
13147     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
13149 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
13150     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
13152 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
13153     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
13155 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
13156     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
13158 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
13159     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
13161 static void *_p_wxPyHtmlFilterTo_p_wxObject(void *x
) { 
13162     return (void *)((wxObject 
*)  ((wxPyHtmlFilter 
*) x
)); 
13164 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
13165     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
13167 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
13168     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
13170 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
13171     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
13173 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
13174     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
13176 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
13177     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
13179 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
13180     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
13182 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
13183     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
13185 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
13186     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
13188 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
13189     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
13191 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
13192     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
13194 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
13195     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
13197 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
13198     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
13200 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
13201     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
13203 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) { 
13204     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCalculateLayoutEvent 
*) x
)); 
13206 static void *_p_wxPyHtmlTagHandlerTo_p_wxObject(void *x
) { 
13207     return (void *)((wxObject 
*)  ((wxPyHtmlTagHandler 
*) x
)); 
13209 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxObject(void *x
) { 
13210     return (void *)((wxObject 
*) (wxPyHtmlTagHandler 
*) ((wxPyHtmlWinTagHandler 
*) x
)); 
13212 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) { 
13213     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
13215 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) { 
13216     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
13218 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
13219     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
13221 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) { 
13222     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
13224 static void *_p_wxImageTo_p_wxObject(void *x
) { 
13225     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
13227 static void *_p_wxFrameTo_p_wxObject(void *x
) { 
13228     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
13230 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) { 
13231     return (void *)((wxObject 
*)  ((wxPyPrintout 
*) x
)); 
13233 static void *_p_wxHtmlPrintoutTo_p_wxObject(void *x
) { 
13234     return (void *)((wxObject 
*) (wxPyPrintout 
*) ((wxHtmlPrintout 
*) x
)); 
13236 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
13237     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
13239 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) { 
13240     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTaskBarIconEvent 
*) x
)); 
13242 static void *_p_wxStatusBarTo_p_wxObject(void *x
) { 
13243     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxStatusBar 
*) x
)); 
13245 static void *_p_wxHtmlDCRendererTo_p_wxObject(void *x
) { 
13246     return (void *)((wxObject 
*)  ((wxHtmlDCRenderer 
*) x
)); 
13248 static void *_p_wxHtmlContainerCellTo_p_wxObject(void *x
) { 
13249     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlContainerCell 
*) x
)); 
13251 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) { 
13252     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
13254 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
13255     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
13257 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
13258     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
13260 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
13261     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
13263 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
13264     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
13266 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
13267     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
13269 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
13270     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
13272 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) { 
13273     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
13275 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) { 
13276     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
13278 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) { 
13279     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
13281 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) { 
13282     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
13284 static void *_p_wxSashWindowTo_p_wxObject(void *x
) { 
13285     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSashWindow 
*) x
)); 
13287 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) { 
13288     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
13290 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) { 
13291     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPopupWindow 
*) x
)); 
13293 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) { 
13294     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
13296 static void *_p_wxTipWindowTo_p_wxObject(void *x
) { 
13297     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
13299 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) { 
13300     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
13302 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) { 
13303     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
13305 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) { 
13306     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
13308 static void *_p_wxPyHtmlWindowTo_p_wxObject(void *x
) { 
13309     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
13311 static void *_p_wxSashEventTo_p_wxObject(void *x
) { 
13312     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
13314 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) { 
13315     return (void *)((wxObject 
*)  ((wxPrintPreview 
*) x
)); 
13317 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) { 
13318     return (void *)((wxObject 
*) (wxPrintPreview 
*) ((wxPyPrintPreview 
*) x
)); 
13320 static void *_p_wxPanelTo_p_wxObject(void *x
) { 
13321     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPanel 
*) x
)); 
13323 static void *_p_wxDialogTo_p_wxObject(void *x
) { 
13324     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
13326 static void *_p_wxColourDialogTo_p_wxObject(void *x
) { 
13327     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
13329 static void *_p_wxDirDialogTo_p_wxObject(void *x
) { 
13330     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
13332 static void *_p_wxFontDialogTo_p_wxObject(void *x
) { 
13333     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
13335 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) { 
13336     return (void *)((wxObject 
*)  ((wxPageSetupDialog 
*) x
)); 
13338 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) { 
13339     return (void *)((wxObject 
*)  ((wxPrintDialog 
*) x
)); 
13341 static void *_p_wxHtmlParserTo_p_wxObject(void *x
) { 
13342     return (void *)((wxObject 
*)  ((wxHtmlParser 
*) x
)); 
13344 static void *_p_wxHtmlWinParserTo_p_wxObject(void *x
) { 
13345     return (void *)((wxObject 
*) (wxHtmlParser 
*) ((wxHtmlWinParser 
*) x
)); 
13347 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
13348     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
13350 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
13351     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
13353 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
13354     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
13356 static void *_p_wxHtmlWordCellTo_p_wxObject(void *x
) { 
13357     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWordCell 
*) x
)); 
13359 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
13360     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
13362 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
13363     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
13365 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
13366     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
13368 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
13369     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
13371 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
13372     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
13374 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
13375     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
13377 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) { 
13378     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
13380 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) { 
13381     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
13383 static void *_p_wxHtmlEasyPrintingTo_p_wxObject(void *x
) { 
13384     return (void *)((wxObject 
*)  ((wxHtmlEasyPrinting 
*) x
)); 
13386 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
13387     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
13389 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
13390     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
13392 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
13393     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
13395 static void *_p_wxHtmlHelpControllerTo_p_wxObject(void *x
) { 
13396     return (void *)((wxObject 
*)  ((wxHtmlHelpController 
*) x
)); 
13398 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
13399     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
13401 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) { 
13402     return (void *)((wxObject 
*)  ((wxPageSetupDialogData 
*) x
)); 
13404 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) { 
13405     return (void *)((wxObject 
*)  ((wxPrintDialogData 
*) x
)); 
13407 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
13408     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
13410 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
13411     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
13413 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxPyHtmlTagHandler(void *x
) { 
13414     return (void *)((wxPyHtmlTagHandler 
*)  ((wxPyHtmlWinTagHandler 
*) x
)); 
13416 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) { 
13417     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
13419 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) { 
13420     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
13422 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) { 
13423     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
13425 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
13426     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
13428 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
13429     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
13431 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
13432     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
13434 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
13435     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
13437 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) { 
13438     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
13440 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) { 
13441     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
13443 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) { 
13444     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
13446 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) { 
13447     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
13449 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) { 
13450     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
13452 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) { 
13453     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
13455 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) { 
13456     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
13458 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) { 
13459     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
13461 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) { 
13462     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPanel 
*) x
)); 
13464 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) { 
13465     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxStatusBar 
*) x
)); 
13467 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13468     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
13470 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) { 
13471     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
13473 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) { 
13474     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
13476 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) { 
13477     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPopupWindow 
*) x
)); 
13479 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) { 
13480     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
13482 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) { 
13483     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSashWindow 
*) x
)); 
13485 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) { 
13486     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
13488 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) { 
13489     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
13491 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
13492     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
13494 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13495     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
13497 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) { 
13498     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
13500 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
13501     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
13503 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13504     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
13506 static void *_p_wxPyHtmlWindowTo_p_wxEvtHandler(void *x
) { 
13507     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
13509 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
13510     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
13512 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) { 
13513     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
13515 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) { 
13516     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
13518 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
13519     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
13521 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
13522     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
13524 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
13525     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
13527 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) { 
13528     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPyWindow 
*) x
)); 
13530 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) { 
13531     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
13533 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
13534     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
13536 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) { 
13537     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
13539 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
13540     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
13542 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
13543     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
13545 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) { 
13546     return (void *)((wxEvtHandler 
*)  ((wxPyTaskBarIcon 
*) x
)); 
13548 static void *_p_wxHtmlHelpFrameTo_p_wxEvtHandler(void *x
) { 
13549     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
13551 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) { 
13552     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
13554 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) { 
13555     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
13557 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) { 
13558     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
13560 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) { 
13561     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
13563 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) { 
13564     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
13566 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
13567     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
13569 static void *_p_wxHtmlPrintoutTo_p_wxPyPrintout(void *x
) { 
13570     return (void *)((wxPyPrintout 
*)  ((wxHtmlPrintout 
*) x
)); 
13572 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) { 
13573     return (void *)((wxFrame 
*)  ((wxMDIChildFrame 
*) x
)); 
13575 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) { 
13576     return (void *)((wxFrame 
*)  ((wxProgressDialog 
*) x
)); 
13578 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) { 
13579     return (void *)((wxFrame 
*)  ((wxPreviewFrame 
*) x
)); 
13581 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) { 
13582     return (void *)((wxFrame 
*) (wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
13584 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) { 
13585     return (void *)((wxFrame 
*)  ((wxMiniFrame 
*) x
)); 
13587 static void *_p_wxHtmlHelpFrameTo_p_wxFrame(void *x
) { 
13588     return (void *)((wxFrame 
*)  ((wxHtmlHelpFrame 
*) x
)); 
13590 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) { 
13591     return (void *)((wxFrame 
*)  ((wxSplashScreen 
*) x
)); 
13593 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) { 
13594     return (void *)((wxFrame 
*)  ((wxMDIParentFrame 
*) x
)); 
13596 static void *_p_wxHtmlContainerCellTo_p_wxHtmlCell(void *x
) { 
13597     return (void *)((wxHtmlCell 
*)  ((wxHtmlContainerCell 
*) x
)); 
13599 static void *_p_wxHtmlWidgetCellTo_p_wxHtmlCell(void *x
) { 
13600     return (void *)((wxHtmlCell 
*)  ((wxHtmlWidgetCell 
*) x
)); 
13602 static void *_p_wxHtmlColourCellTo_p_wxHtmlCell(void *x
) { 
13603     return (void *)((wxHtmlCell 
*)  ((wxHtmlColourCell 
*) x
)); 
13605 static void *_p_wxHtmlWordCellTo_p_wxHtmlCell(void *x
) { 
13606     return (void *)((wxHtmlCell 
*)  ((wxHtmlWordCell 
*) x
)); 
13608 static void *_p_wxHtmlFontCellTo_p_wxHtmlCell(void *x
) { 
13609     return (void *)((wxHtmlCell 
*)  ((wxHtmlFontCell 
*) x
)); 
13611 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}}; 
13612 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}}; 
13613 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}}; 
13614 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}}; 
13615 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}}; 
13616 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}}; 
13617 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}}; 
13618 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}}; 
13619 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}}; 
13620 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}}; 
13621 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}}; 
13622 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}}; 
13623 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}}; 
13624 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}}; 
13625 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}}; 
13626 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}}; 
13627 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}}; 
13628 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}}; 
13629 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_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_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}}; 
13630 static swig_type_info _swigt__p_wxTopLevelWindow
[] = {{"_p_wxTopLevelWindow", 0, "wxTopLevelWindow *", 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", 0, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_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_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxTopLevelWindow
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_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}}; 
13631 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}}; 
13632 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}}; 
13633 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}}; 
13634 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}}; 
13635 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}}; 
13636 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}}; 
13637 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}}; 
13638 static swig_type_info _swigt__p_wxObject
[] = {{"_p_wxObject", 0, "wxObject *", 0, 0, 0, 0},{"_p_wxQueryLayoutInfoEvent", _p_wxQueryLayoutInfoEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxLayoutConstraints", _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewFrame", _p_wxPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewFrame", _p_wxPyPreviewFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGBSizerItem", _p_wxGBSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizerItem", _p_wxSizerItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlLinkInfo", _p_wxHtmlLinkInfoTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrollEvent", _p_wxScrollEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxIndividualLayoutConstraint", _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxStaticBoxSizer", _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBoxSizer", _p_wxBoxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSizer", _p_wxSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridBagSizer", _p_wxGridBagSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlFontCell", _p_wxHtmlFontCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxUpdateUIEvent", _p_wxUpdateUIEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlTag", _p_wxHtmlTagTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenu", _p_wxMenuTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFontData", _p_wxFontDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintData", _p_wxPrintDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvent", _p_wxEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFlexGridSizer", _p_wxFlexGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGridSizer", _p_wxGridSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpFrame", _p_wxHtmlHelpFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyTaskBarIcon", _p_wxPyTaskBarIconTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxLayoutAlgorithm", _p_wxLayoutAlgorithmTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxInitDialogEvent", _p_wxInitDialogEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindDialogEvent", _p_wxFindDialogEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlCell", _p_wxHtmlCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNcPaintEvent", _p_wxNcPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaintEvent", _p_wxPaintEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMouseCaptureChangedEvent", _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDisplayChangedEvent", _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPaletteChangedEvent", _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSysColourChangedEvent", _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewCanvas", _p_wxPreviewCanvasTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControl", _p_wxControlTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSetCursorEvent", _p_wxSetCursorEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplitterEvent", _p_wxSplitterEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFSFile", _p_wxFSFileTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWidgetCell", _p_wxHtmlWidgetCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceData", _p_wxFindReplaceDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPySizer", _p_wxPySizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlColourCell", _p_wxHtmlColourCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIChildFrame", _p_wxMDIChildFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourData", _p_wxColourDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyEvent", _p_wxPyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxNotifyEvent", _p_wxNotifyEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyWindow", _p_wxPyWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxShowEvent", _p_wxShowEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrinter", _p_wxPrinterTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMenuItem", _p_wxMenuItemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlFilter", _p_wxPyHtmlFilterTo_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_wxSizeEvent", _p_wxSizeEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMoveEvent", _p_wxMoveEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxActivateEvent", _p_wxActivateEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPCXHandler", _p_wxPCXHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxJPEGHandler", _p_wxJPEGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNMHandler", _p_wxPNMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxXPMHandler", _p_wxXPMHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxGIFHandler", _p_wxGIFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPNGHandler", _p_wxPNGHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxANIHandler", _p_wxANIHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCURHandler", _p_wxCURHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxICOHandler", _p_wxICOHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxBMPHandler", _p_wxBMPHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImageHandler", _p_wxImageHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTIFFHandler", _p_wxTIFFHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxEvtHandler", _p_wxEvtHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCalculateLayoutEvent", _p_wxCalculateLayoutEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlTagHandler", _p_wxPyHtmlTagHandlerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWinTagHandler", _p_wxPyHtmlWinTagHandlerTo_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_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintout", _p_wxPyPrintoutTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlPrintout", _p_wxHtmlPrintoutTo_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_wxStatusBar", _p_wxStatusBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlDCRenderer", _p_wxHtmlDCRendererTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlContainerCell", _p_wxHtmlContainerCellTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIParentFrame", _p_wxMDIParentFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxObject", 0, 0, 0, 0, 0, 0},{"_p_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_wxMenuBar", _p_wxMenuBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxScrolledWindow", _p_wxScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyScrolledWindow", _p_wxPyScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyHtmlWindow", _p_wxPyHtmlWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxWindow", _p_wxWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashWindow", _p_wxSashWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplitterWindow", _p_wxSplitterWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSplashScreenWindow", _p_wxSplashScreenWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashLayoutWindow", _p_wxSashLayoutWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPopupWindow", _p_wxPopupWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPopupTransientWindow", _p_wxPyPopupTransientWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxTipWindow", _p_wxTipWindowTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxSashEvent", _p_wxSashEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintPreview", _p_wxPrintPreviewTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintPreview", _p_wxPyPrintPreviewTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDialog", _p_wxDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxColourDialog", _p_wxColourDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDirDialog", _p_wxDirDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFontDialog", _p_wxFontDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialog", _p_wxPageSetupDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintDialog", _p_wxPrintDialogTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlParser", _p_wxHtmlParserTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWinParser", _p_wxHtmlWinParserTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFileSystem", _p_wxFileSystemTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlWordCell", _p_wxHtmlWordCellTo_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_wxPyApp", _p_wxPyAppTo_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_wxPyCommandEvent", _p_wxPyCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxCommandEvent", _p_wxCommandEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPreviewControlBar", _p_wxPreviewControlBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPreviewControlBar", _p_wxPyPreviewControlBarTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlEasyPrinting", _p_wxHtmlEasyPrintingTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxDropFilesEvent", _p_wxDropFilesEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFocusEvent", _p_wxFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxChildFocusEvent", _p_wxChildFocusEventTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxHtmlHelpController", _p_wxHtmlHelpControllerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxControlWithItems", _p_wxControlWithItemsTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPageSetupDialogData", _p_wxPageSetupDialogDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPrintDialogData", _p_wxPrintDialogDataTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxObject
, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
13639 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}}; 
13640 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}}; 
13641 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}}; 
13642 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}}; 
13643 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}}; 
13644 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}}; 
13645 static swig_type_info _swigt__p_wxEvtHandler
[] = {{"_p_wxEvtHandler", 0, "wxEvtHandler *", 0, 0, 0, 0},{"_p_wxSplashScreen", _p_wxSplashScreenTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyPanel", _p_wxPyPanelTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMenuBar", _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxValidator", _p_wxValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyValidator", _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMessageDialog", _p_wxMessageDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFindReplaceDialog", _p_wxFindReplaceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxProgressDialog", _p_wxProgressDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPasswordEntryDialog", _p_wxPasswordEntryDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxTextEntryDialog", _p_wxTextEntryDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxSingleChoiceDialog", _p_wxSingleChoiceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMultiChoiceDialog", _p_wxMultiChoiceDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxFileDialog", _p_wxFileDialogTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPanel", _p_wxPanelTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxStatusBar", _p_wxStatusBarTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxTopLevelWindow", _p_wxTopLevelWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxMDIClientWindow", _p_wxMDIClientWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_wxPyVScrolledWindow", _p_wxPyVScrolledWindowTo_p_wxEvtHandler
, 0, 0, 0, 0, 0},{"_p_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_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}}; 
13646 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}}; 
13647 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}}; 
13648 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}}; 
13649 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}}; 
13650 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}}; 
13651 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}}; 
13652 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}}; 
13653 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}}; 
13654 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}}; 
13655 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}}; 
13656 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}}; 
13657 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}}; 
13658 static swig_type_info _swigt__p_wxHtmlContentsItem
[] = {{"_p_wxHtmlContentsItem", 0, "wxHtmlContentsItem *", 0, 0, 0, 0},{"_p_wxHtmlContentsItem", 0, 0, 0, 0, 0, 0},{0, 0, 0, 0, 0, 0, 0}}; 
13659 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}}; 
13660 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}}; 
13661 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}}; 
13662 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}}; 
13663 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}}; 
13664 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}}; 
13665 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}}; 
13666 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}}; 
13667 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}}; 
13668 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}}; 
13669 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}}; 
13670 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}}; 
13671 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}}; 
13672 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}}; 
13674 static swig_type_info 
*swig_types_initial
[] = { 
13675 _swigt__p_wxHtmlDCRenderer
,  
13676 _swigt__p_wxColour
,  
13677 _swigt__p_wxPageSetupDialogData
,  
13679 _swigt__p_form_ops_t
,  
13680 _swigt__p_wxHtmlRenderingStyle
,  
13681 _swigt__p_wxMouseEvent
,  
13682 _swigt__p_wxDuplexMode
,  
13683 _swigt__p_wxDefaultHtmlRenderingStyle
,  
13684 _swigt__p_wxHtmlWordCell
,  
13685 _swigt__p_wxVisualAttributes
,  
13686 _swigt__p_wxHtmlHelpData
,  
13688 _swigt__p_wxHtmlWinParser
,  
13689 _swigt__p_wxHtmlParser
,  
13691 _swigt__p_wxPyHtmlWindow
,  
13692 _swigt__p_wxScrolledWindow
,  
13693 _swigt__p_wxWindow
,  
13694 _swigt__p_wxTopLevelWindow
,  
13696 _swigt__p_wxHtmlColourCell
,  
13697 _swigt__p_wxHtmlFontCell
,  
13698 _swigt__p_wxHtmlEasyPrinting
,  
13699 _swigt__p_wxHtmlSelection
,  
13700 _swigt__p_wxHtmlRenderingInfo
,  
13701 _swigt__p_wxHtmlWidgetCell
,  
13702 _swigt__p_wxObject
,  
13703 _swigt__p_wxPaperSize
,  
13704 _swigt__p_wxString
,  
13705 _swigt__p_unsigned_int
,  
13706 _swigt__unsigned_int
,  
13707 _swigt__p_wxHtmlTagHandler
,  
13708 _swigt__p_wxPyHtmlTagHandler
,  
13709 _swigt__p_wxEvtHandler
,  
13710 _swigt__p_wxPyHtmlWinTagHandler
,  
13712 _swigt__p_wxHtmlHelpController
,  
13713 _swigt__p_wxCursor
,  
13714 _swigt__p_wxFileSystem
,  
13715 _swigt__p_wxHtmlBookRecArray
,  
13716 _swigt__p_unsigned_char
,  
13717 _swigt__p_wxPyPrintout
,  
13718 _swigt__p_wxHtmlPrintout
,  
13719 _swigt__p_wxHtmlSearchStatus
,  
13720 _swigt__std__ptrdiff_t
,  
13722 _swigt__p_wxHtmlContentsItem
,  
13723 _swigt__p_wxConfigBase
,  
13724 _swigt__p_wxPrintData
,  
13725 _swigt__p_wxHtmlHelpFrame
,  
13727 _swigt__p_wxHtmlRenderingState
,  
13728 _swigt__p_wxPyHtmlFilter
,  
13729 _swigt__p_wxHtmlFilter
,  
13730 _swigt__p_wxHtmlCell
,  
13731 _swigt__p_wxHtmlContainerCell
,  
13732 _swigt__p_wxHtmlTag
,  
13734 _swigt__p_wxHtmlLinkInfo
,  
13735 _swigt__p_unsigned_long
,  
13736 _swigt__p_wxHtmlBookRecord
,  
13741 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
13743 static swig_const_info swig_const_table
[] = { 
13744 {0, 0, 0, 0.0, 0, 0}}; 
13755     /* Python-specific SWIG API */ 
13756 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
13757 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
13758 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
13760     /* ----------------------------------------------------------------------------- 
13761      * global variable support code. 
13762      * ----------------------------------------------------------------------------- */ 
13764     typedef struct swig_globalvar 
{ 
13765         char       *name
;                  /* Name of global variable */ 
13766         PyObject 
*(*get_attr
)();           /* Return the current value */ 
13767         int       (*set_attr
)(PyObject 
*); /* Set the value */ 
13768         struct swig_globalvar 
*next
; 
13771     typedef struct swig_varlinkobject 
{ 
13773         swig_globalvar 
*vars
; 
13774     } swig_varlinkobject
; 
13777     swig_varlink_repr(swig_varlinkobject 
*v
) { 
13779         return PyString_FromString("<Swig global variables>"); 
13783     swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int flags
) { 
13784         swig_globalvar  
*var
; 
13786         fprintf(fp
,"Swig global variables { "); 
13787         for (var 
= v
->vars
; var
; var
=var
->next
) { 
13788             fprintf(fp
,"%s", var
->name
); 
13789             if (var
->next
) fprintf(fp
,", "); 
13791         fprintf(fp
," }\n"); 
13796     swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
13797         swig_globalvar 
*var 
= v
->vars
; 
13799             if (strcmp(var
->name
,n
) == 0) { 
13800                 return (*var
->get_attr
)(); 
13804         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
13809     swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
13810         swig_globalvar 
*var 
= v
->vars
; 
13812             if (strcmp(var
->name
,n
) == 0) { 
13813                 return (*var
->set_attr
)(p
); 
13817         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
13821     static PyTypeObject varlinktype 
= { 
13822         PyObject_HEAD_INIT(0)               
13823         0,                                  /* Number of items in variable part (ob_size) */ 
13824         (char *)"swigvarlink",              /* Type name (tp_name) */ 
13825         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
13826         0,                                  /* Itemsize (tp_itemsize) */ 
13827         0,                                  /* Deallocator (tp_dealloc) */  
13828         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
13829         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
13830         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
13831         0,                                  /* tp_compare */ 
13832         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
13833         0,                                  /* tp_as_number */ 
13834         0,                                  /* tp_as_sequence */ 
13835         0,                                  /* tp_as_mapping */ 
13839         0,                                  /* tp_getattro */ 
13840         0,                                  /* tp_setattro */ 
13841         0,                                  /* tp_as_buffer */ 
13844 #if PY_VERSION_HEX >= 0x02000000 
13845         0,                                  /* tp_traverse */ 
13848 #if PY_VERSION_HEX >= 0x02010000 
13849         0,                                  /* tp_richcompare */ 
13850         0,                                  /* tp_weaklistoffset */ 
13852 #if PY_VERSION_HEX >= 0x02020000 
13853         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
13855 #if PY_VERSION_HEX >= 0x02030000 
13858 #ifdef COUNT_ALLOCS 
13859         0,0,0,0                             /* tp_alloc -> tp_next */ 
13863     /* Create a variable linking object for use later */ 
13865     SWIG_Python_newvarlink(void) { 
13866         swig_varlinkobject 
*result 
= 0; 
13867         result 
= PyMem_NEW(swig_varlinkobject
,1); 
13868         varlinktype
.ob_type 
= &PyType_Type
;    /* Patch varlinktype into a PyType */ 
13869         result
->ob_type 
= &varlinktype
; 
13871         result
->ob_refcnt 
= 0; 
13872         Py_XINCREF((PyObject 
*) result
); 
13873         return ((PyObject
*) result
); 
13877     SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
13878         swig_varlinkobject 
*v
; 
13879         swig_globalvar 
*gv
; 
13880         v
= (swig_varlinkobject 
*) p
; 
13881         gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
13882         gv
->name 
= (char *) malloc(strlen(name
)+1); 
13883         strcpy(gv
->name
,name
); 
13884         gv
->get_attr 
= get_attr
; 
13885         gv
->set_attr 
= set_attr
; 
13886         gv
->next 
= v
->vars
; 
13890     /* ----------------------------------------------------------------------------- 
13891      * constants/methods manipulation 
13892      * ----------------------------------------------------------------------------- */ 
13894     /* Install Constants */ 
13896     SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
13899         for (i 
= 0; constants
[i
].type
; i
++) { 
13900             switch(constants
[i
].type
) { 
13902                 obj 
= PyInt_FromLong(constants
[i
].lvalue
); 
13904                 case SWIG_PY_FLOAT
: 
13905                 obj 
= PyFloat_FromDouble(constants
[i
].dvalue
); 
13907                 case SWIG_PY_STRING
: 
13908                 if (constants
[i
].pvalue
) { 
13909                     obj 
= PyString_FromString((char *) constants
[i
].pvalue
); 
13911                     Py_INCREF(Py_None
); 
13915                 case SWIG_PY_POINTER
: 
13916                 obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
13918                 case SWIG_PY_BINARY
: 
13919                 obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
13926                 PyDict_SetItemString(d
,constants
[i
].name
,obj
); 
13932     /* -----------------------------------------------------------------------------*/ 
13933     /* Fix SwigMethods to carry the callback ptrs when needed */ 
13934     /* -----------------------------------------------------------------------------*/ 
13937     SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
13938     swig_const_info 
*const_table
, 
13939     swig_type_info 
**types
, 
13940     swig_type_info 
**types_initial
) { 
13942         for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
13943             char *c 
= methods
[i
].ml_doc
; 
13944             if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
13946                 swig_const_info 
*ci 
= 0; 
13947                 char *name 
= c 
+ 10; 
13948                 for (j 
= 0; const_table
[j
].type
; j
++) { 
13949                     if (strncmp(const_table
[j
].name
, name
,  
13950                     strlen(const_table
[j
].name
)) == 0) { 
13951                         ci 
= &(const_table
[j
]); 
13956                     size_t shift 
= (ci
->ptype
) - types
; 
13957                     swig_type_info 
*ty 
= types_initial
[shift
]; 
13958                     size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
13959                     size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
13960                     char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
13962                     void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue
: (void *)(ci
->lvalue
); 
13963                     strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
13965                     strncpy(buff
, "swig_ptr: ", 10); 
13967                     SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
13968                     methods
[i
].ml_doc 
= ndoc
; 
13974     /* -----------------------------------------------------------------------------* 
13975      *  Initialize type list 
13976      * -----------------------------------------------------------------------------*/ 
13978 #if PY_MAJOR_VERSION < 2 
13979     /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
13980     is copied out of Python/modsupport.c in python version 2.3.4 */ 
13982     PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
13985         if (!PyModule_Check(m
)) { 
13986             PyErr_SetString(PyExc_TypeError
, 
13987             "PyModule_AddObject() needs module as first arg"); 
13991             PyErr_SetString(PyExc_TypeError
, 
13992             "PyModule_AddObject() needs non-NULL value"); 
13996         dict 
= PyModule_GetDict(m
); 
13997         if (dict 
== NULL
) { 
13998             /* Internal error -- modules must have a dict! */ 
13999             PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
14000             PyModule_GetName(m
)); 
14003         if (PyDict_SetItemString(dict
, name
, o
)) 
14010     static swig_type_info 
** 
14011     SWIG_Python_SetTypeListHandle(swig_type_info 
**type_list_handle
) { 
14012         static PyMethodDef swig_empty_runtime_method_table
[] = { 
14014                 NULL
, NULL
, 0, NULL
 
14018         PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
14019         swig_empty_runtime_method_table
); 
14020         PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) type_list_handle
, NULL
); 
14021         if (pointer 
&& module) { 
14022             PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
14024         return type_list_handle
; 
14027     static swig_type_info 
** 
14028     SWIG_Python_LookupTypePointer(swig_type_info 
**type_list_handle
) { 
14029         swig_type_info 
**type_pointer
; 
14031         /* first check if module already created */ 
14032         type_pointer 
= SWIG_Python_GetTypeListHandle(); 
14033         if (type_pointer
) { 
14034             return type_pointer
; 
14036             /* create a new module and variable */ 
14037             return SWIG_Python_SetTypeListHandle(type_list_handle
); 
14045 /* -----------------------------------------------------------------------------* 
14046  *  Partial Init method 
14047  * -----------------------------------------------------------------------------*/ 
14049 #ifdef SWIG_LINK_RUNTIME 
14053 SWIGEXPORT(void *) SWIG_ReturnGlobalTypeList(void *); 
14059 SWIGEXPORT(void) SWIG_init(void) { 
14060     static PyObject 
*SWIG_globals 
= 0;  
14061     static int       typeinit 
= 0; 
14064     if (!SWIG_globals
) SWIG_globals 
= SWIG_newvarlink(); 
14066     /* Fix SwigMethods to carry the callback ptrs when needed */ 
14067     SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_types_initial
); 
14069     m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
14070     d 
= PyModule_GetDict(m
); 
14073 #ifdef SWIG_LINK_RUNTIME 
14074         swig_type_list_handle 
= (swig_type_info 
**) SWIG_ReturnGlobalTypeList(swig_type_list_handle
); 
14076 #  ifndef SWIG_STATIC_RUNTIME 
14077         swig_type_list_handle 
= SWIG_Python_LookupTypePointer(swig_type_list_handle
); 
14080         for (i 
= 0; swig_types_initial
[i
]; i
++) { 
14081             swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]); 
14085     SWIG_InstallConstants(d
,swig_const_table
); 
14087     PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
); 
14088     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlWindowNameStr",_wrap_HtmlWindowNameStr_get
, _wrap_HtmlWindowNameStr_set
); 
14089     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintoutTitleStr",_wrap_HtmlPrintoutTitleStr_get
, _wrap_HtmlPrintoutTitleStr_set
); 
14090     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintingTitleStr",_wrap_HtmlPrintingTitleStr_get
, _wrap_HtmlPrintingTitleStr_set
); 
14092         PyDict_SetItemString(d
,"HTML_ALIGN_LEFT", SWIG_From_int((int)(wxHTML_ALIGN_LEFT
)));  
14095         PyDict_SetItemString(d
,"HTML_ALIGN_CENTER", SWIG_From_int((int)(wxHTML_ALIGN_CENTER
)));  
14098         PyDict_SetItemString(d
,"HTML_ALIGN_RIGHT", SWIG_From_int((int)(wxHTML_ALIGN_RIGHT
)));  
14101         PyDict_SetItemString(d
,"HTML_ALIGN_BOTTOM", SWIG_From_int((int)(wxHTML_ALIGN_BOTTOM
)));  
14104         PyDict_SetItemString(d
,"HTML_ALIGN_TOP", SWIG_From_int((int)(wxHTML_ALIGN_TOP
)));  
14107         PyDict_SetItemString(d
,"HTML_CLR_FOREGROUND", SWIG_From_int((int)(wxHTML_CLR_FOREGROUND
)));  
14110         PyDict_SetItemString(d
,"HTML_CLR_BACKGROUND", SWIG_From_int((int)(wxHTML_CLR_BACKGROUND
)));  
14113         PyDict_SetItemString(d
,"HTML_UNITS_PIXELS", SWIG_From_int((int)(wxHTML_UNITS_PIXELS
)));  
14116         PyDict_SetItemString(d
,"HTML_UNITS_PERCENT", SWIG_From_int((int)(wxHTML_UNITS_PERCENT
)));  
14119         PyDict_SetItemString(d
,"HTML_INDENT_LEFT", SWIG_From_int((int)(wxHTML_INDENT_LEFT
)));  
14122         PyDict_SetItemString(d
,"HTML_INDENT_RIGHT", SWIG_From_int((int)(wxHTML_INDENT_RIGHT
)));  
14125         PyDict_SetItemString(d
,"HTML_INDENT_TOP", SWIG_From_int((int)(wxHTML_INDENT_TOP
)));  
14128         PyDict_SetItemString(d
,"HTML_INDENT_BOTTOM", SWIG_From_int((int)(wxHTML_INDENT_BOTTOM
)));  
14131         PyDict_SetItemString(d
,"HTML_INDENT_HORIZONTAL", SWIG_From_int((int)(wxHTML_INDENT_HORIZONTAL
)));  
14134         PyDict_SetItemString(d
,"HTML_INDENT_VERTICAL", SWIG_From_int((int)(wxHTML_INDENT_VERTICAL
)));  
14137         PyDict_SetItemString(d
,"HTML_INDENT_ALL", SWIG_From_int((int)(wxHTML_INDENT_ALL
)));  
14140         PyDict_SetItemString(d
,"HTML_COND_ISANCHOR", SWIG_From_int((int)(wxHTML_COND_ISANCHOR
)));  
14143         PyDict_SetItemString(d
,"HTML_COND_ISIMAGEMAP", SWIG_From_int((int)(wxHTML_COND_ISIMAGEMAP
)));  
14146         PyDict_SetItemString(d
,"HTML_COND_USER", SWIG_From_int((int)(wxHTML_COND_USER
)));  
14149         PyDict_SetItemString(d
,"HTML_FONT_SIZE_1", SWIG_From_int((int)(wxHTML_FONT_SIZE_1
)));  
14152         PyDict_SetItemString(d
,"HTML_FONT_SIZE_2", SWIG_From_int((int)(wxHTML_FONT_SIZE_2
)));  
14155         PyDict_SetItemString(d
,"HTML_FONT_SIZE_3", SWIG_From_int((int)(wxHTML_FONT_SIZE_3
)));  
14158         PyDict_SetItemString(d
,"HTML_FONT_SIZE_4", SWIG_From_int((int)(wxHTML_FONT_SIZE_4
)));  
14161         PyDict_SetItemString(d
,"HTML_FONT_SIZE_5", SWIG_From_int((int)(wxHTML_FONT_SIZE_5
)));  
14164         PyDict_SetItemString(d
,"HTML_FONT_SIZE_6", SWIG_From_int((int)(wxHTML_FONT_SIZE_6
)));  
14167         PyDict_SetItemString(d
,"HTML_FONT_SIZE_7", SWIG_From_int((int)(wxHTML_FONT_SIZE_7
)));  
14170         PyDict_SetItemString(d
,"HW_SCROLLBAR_NEVER", SWIG_From_int((int)(wxHW_SCROLLBAR_NEVER
)));  
14173         PyDict_SetItemString(d
,"HW_SCROLLBAR_AUTO", SWIG_From_int((int)(wxHW_SCROLLBAR_AUTO
)));  
14176         PyDict_SetItemString(d
,"HW_NO_SELECTION", SWIG_From_int((int)(wxHW_NO_SELECTION
)));  
14179         PyDict_SetItemString(d
,"HW_DEFAULT_STYLE", SWIG_From_int((int)(wxHW_DEFAULT_STYLE
)));  
14182         PyDict_SetItemString(d
,"HTML_OPEN", SWIG_From_int((int)(wxHTML_OPEN
)));  
14185         PyDict_SetItemString(d
,"HTML_BLOCK", SWIG_From_int((int)(wxHTML_BLOCK
)));  
14188         PyDict_SetItemString(d
,"HTML_REDIRECT", SWIG_From_int((int)(wxHTML_REDIRECT
)));  
14191         PyDict_SetItemString(d
,"HTML_URL_PAGE", SWIG_From_int((int)(wxHTML_URL_PAGE
)));  
14194         PyDict_SetItemString(d
,"HTML_URL_IMAGE", SWIG_From_int((int)(wxHTML_URL_IMAGE
)));  
14197         PyDict_SetItemString(d
,"HTML_URL_OTHER", SWIG_From_int((int)(wxHTML_URL_OTHER
)));  
14200         PyDict_SetItemString(d
,"HTML_SEL_OUT", SWIG_From_int((int)(wxHTML_SEL_OUT
)));  
14203         PyDict_SetItemString(d
,"HTML_SEL_IN", SWIG_From_int((int)(wxHTML_SEL_IN
)));  
14206         PyDict_SetItemString(d
,"HTML_SEL_CHANGING", SWIG_From_int((int)(wxHTML_SEL_CHANGING
)));  
14209         PyDict_SetItemString(d
,"HTML_FIND_EXACT", SWIG_From_int((int)(wxHTML_FIND_EXACT
)));  
14212         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_BEFORE", SWIG_From_int((int)(wxHTML_FIND_NEAREST_BEFORE
)));  
14215         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_AFTER", SWIG_From_int((int)(wxHTML_FIND_NEAREST_AFTER
)));  
14218         PyDict_SetItemString(d
,"PAGE_ODD", SWIG_From_int((int)(wxPAGE_ODD
)));  
14221         PyDict_SetItemString(d
,"PAGE_EVEN", SWIG_From_int((int)(wxPAGE_EVEN
)));  
14224         PyDict_SetItemString(d
,"PAGE_ALL", SWIG_From_int((int)(wxPAGE_ALL
)));  
14227         PyDict_SetItemString(d
,"HF_TOOLBAR", SWIG_From_int((int)(wxHF_TOOLBAR
)));  
14230         PyDict_SetItemString(d
,"HF_FLATTOOLBAR", SWIG_From_int((int)(wxHF_FLATTOOLBAR
)));  
14233         PyDict_SetItemString(d
,"HF_CONTENTS", SWIG_From_int((int)(wxHF_CONTENTS
)));  
14236         PyDict_SetItemString(d
,"HF_INDEX", SWIG_From_int((int)(wxHF_INDEX
)));  
14239         PyDict_SetItemString(d
,"HF_SEARCH", SWIG_From_int((int)(wxHF_SEARCH
)));  
14242         PyDict_SetItemString(d
,"HF_BOOKMARKS", SWIG_From_int((int)(wxHF_BOOKMARKS
)));  
14245         PyDict_SetItemString(d
,"HF_OPENFILES", SWIG_From_int((int)(wxHF_OPENFILES
)));  
14248         PyDict_SetItemString(d
,"HF_PRINT", SWIG_From_int((int)(wxHF_PRINT
)));  
14251         PyDict_SetItemString(d
,"HF_DEFAULTSTYLE", SWIG_From_int((int)(wxHF_DEFAULTSTYLE
)));  
14254     wxPyPtrTypeMap_Add("wxHtmlTagHandler",    "wxPyHtmlTagHandler"); 
14255     wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler"); 
14256     wxPyPtrTypeMap_Add("wxHtmlWindow",        "wxPyHtmlWindow"); 
14257     wxPyPtrTypeMap_Add("wxHtmlFilter",        "wxPyHtmlFilter");