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
; 
7078     wxColour 
*arg1 
= 0 ; 
7079     int arg2 
= (int) wxHTML_CLR_FOREGROUND 
; 
7080     wxHtmlColourCell 
*result
; 
7082     PyObject 
* obj0 
= 0 ; 
7083     PyObject 
* obj1 
= 0 ; 
7085         (char *) "clr",(char *) "flags", NULL 
 
7088     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlColourCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7091         if ( ! wxColour_helper(obj0
, &arg1
)) SWIG_fail
; 
7095             arg2 
= (int)(SWIG_As_int(obj1
));  
7096             if (SWIG_arg_fail(2)) SWIG_fail
; 
7100         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7101         result 
= (wxHtmlColourCell 
*)new wxHtmlColourCell((wxColour 
const &)*arg1
,arg2
); 
7103         wxPyEndAllowThreads(__tstate
); 
7104         if (PyErr_Occurred()) SWIG_fail
; 
7106     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlColourCell
, 1); 
7113 static PyObject 
* HtmlColourCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7115     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7116     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlColourCell
, obj
); 
7118     return Py_BuildValue((char *)""); 
7120 static PyObject 
*_wrap_new_HtmlFontCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7121     PyObject 
*resultobj
; 
7122     wxFont 
*arg1 
= (wxFont 
*) 0 ; 
7123     wxHtmlFontCell 
*result
; 
7124     PyObject 
* obj0 
= 0 ; 
7126         (char *) "font", NULL 
 
7129     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:new_HtmlFontCell",kwnames
,&obj0
)) goto fail
; 
7130     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxFont
, SWIG_POINTER_EXCEPTION 
| 0); 
7131     if (SWIG_arg_fail(1)) SWIG_fail
; 
7133         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7134         result 
= (wxHtmlFontCell 
*)new wxHtmlFontCell(arg1
); 
7136         wxPyEndAllowThreads(__tstate
); 
7137         if (PyErr_Occurred()) SWIG_fail
; 
7139     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlFontCell
, 1); 
7146 static PyObject 
* HtmlFontCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7148     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7149     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlFontCell
, obj
); 
7151     return Py_BuildValue((char *)""); 
7153 static PyObject 
*_wrap_new_HtmlWidgetCell(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7154     PyObject 
*resultobj
; 
7155     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7156     int arg2 
= (int) 0 ; 
7157     wxHtmlWidgetCell 
*result
; 
7158     PyObject 
* obj0 
= 0 ; 
7159     PyObject 
* obj1 
= 0 ; 
7161         (char *) "wnd",(char *) "w", NULL 
 
7164     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|O:new_HtmlWidgetCell",kwnames
,&obj0
,&obj1
)) goto fail
; 
7165     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7166     if (SWIG_arg_fail(1)) SWIG_fail
; 
7169             arg2 
= (int)(SWIG_As_int(obj1
));  
7170             if (SWIG_arg_fail(2)) SWIG_fail
; 
7174         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7175         result 
= (wxHtmlWidgetCell 
*)new wxHtmlWidgetCell(arg1
,arg2
); 
7177         wxPyEndAllowThreads(__tstate
); 
7178         if (PyErr_Occurred()) SWIG_fail
; 
7180     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWidgetCell
, 1); 
7187 static PyObject 
* HtmlWidgetCell_swigregister(PyObject 
*, PyObject 
*args
) { 
7189     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7190     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlWidgetCell
, obj
); 
7192     return Py_BuildValue((char *)""); 
7194 static PyObject 
*_wrap_new_HtmlFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7195     PyObject 
*resultobj
; 
7196     wxPyHtmlFilter 
*result
; 
7201     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlFilter",kwnames
)) goto fail
; 
7203         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7204         result 
= (wxPyHtmlFilter 
*)new wxPyHtmlFilter(); 
7206         wxPyEndAllowThreads(__tstate
); 
7207         if (PyErr_Occurred()) SWIG_fail
; 
7209     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlFilter
, 1); 
7216 static PyObject 
*_wrap_HtmlFilter__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7217     PyObject 
*resultobj
; 
7218     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
7219     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7220     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7221     PyObject 
* obj0 
= 0 ; 
7222     PyObject 
* obj1 
= 0 ; 
7223     PyObject 
* obj2 
= 0 ; 
7225         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7228     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlFilter__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7229     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
7230     if (SWIG_arg_fail(1)) SWIG_fail
; 
7234         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7235         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7237         wxPyEndAllowThreads(__tstate
); 
7238         if (PyErr_Occurred()) SWIG_fail
; 
7240     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7247 static PyObject 
* HtmlFilter_swigregister(PyObject 
*, PyObject 
*args
) { 
7249     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
7250     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlFilter
, obj
); 
7252     return Py_BuildValue((char *)""); 
7254 static PyObject 
*_wrap_new_HtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7255     PyObject 
*resultobj
; 
7256     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
7257     int arg2 
= (int) -1 ; 
7258     wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
7259     wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
7260     wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
7261     wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
7262     int arg5 
= (int) wxHW_DEFAULT_STYLE 
; 
7263     wxString 
const &arg6_defvalue 
= wxPyHtmlWindowNameStr 
; 
7264     wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
7265     wxPyHtmlWindow 
*result
; 
7268     bool temp6 
= false ; 
7269     PyObject 
* obj0 
= 0 ; 
7270     PyObject 
* obj1 
= 0 ; 
7271     PyObject 
* obj2 
= 0 ; 
7272     PyObject 
* obj3 
= 0 ; 
7273     PyObject 
* obj4 
= 0 ; 
7274     PyObject 
* obj5 
= 0 ; 
7276         (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7279     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_HtmlWindow",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
7280     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7281     if (SWIG_arg_fail(1)) SWIG_fail
; 
7284             arg2 
= (int)(SWIG_As_int(obj1
));  
7285             if (SWIG_arg_fail(2)) SWIG_fail
; 
7291             if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
7297             if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
7302             arg5 
= (int)(SWIG_As_int(obj4
));  
7303             if (SWIG_arg_fail(5)) SWIG_fail
; 
7308             arg6 
= wxString_in_helper(obj5
); 
7309             if (arg6 
== NULL
) SWIG_fail
; 
7314         if (!wxPyCheckForApp()) SWIG_fail
; 
7315         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7316         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
7318         wxPyEndAllowThreads(__tstate
); 
7319         if (PyErr_Occurred()) SWIG_fail
; 
7321     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7336 static PyObject 
*_wrap_new_PreHtmlWindow(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7337     PyObject 
*resultobj
; 
7338     wxPyHtmlWindow 
*result
; 
7343     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_PreHtmlWindow",kwnames
)) goto fail
; 
7345         if (!wxPyCheckForApp()) SWIG_fail
; 
7346         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7347         result 
= (wxPyHtmlWindow 
*)new wxPyHtmlWindow(); 
7349         wxPyEndAllowThreads(__tstate
); 
7350         if (PyErr_Occurred()) SWIG_fail
; 
7352     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPyHtmlWindow
, 1); 
7359 static PyObject 
*_wrap_HtmlWindow_Create(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7360     PyObject 
*resultobj
; 
7361     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7362     wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
7363     int arg3 
= (int) -1 ; 
7364     wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
7365     wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
7366     wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
7367     wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
7368     int arg6 
= (int) wxHW_SCROLLBAR_AUTO 
; 
7369     wxString 
const &arg7_defvalue 
= wxPyHtmlWindowNameStr 
; 
7370     wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
7374     bool temp7 
= false ; 
7375     PyObject 
* obj0 
= 0 ; 
7376     PyObject 
* obj1 
= 0 ; 
7377     PyObject 
* obj2 
= 0 ; 
7378     PyObject 
* obj3 
= 0 ; 
7379     PyObject 
* obj4 
= 0 ; 
7380     PyObject 
* obj5 
= 0 ; 
7381     PyObject 
* obj6 
= 0 ; 
7383         (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
7386     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:HtmlWindow_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) goto fail
; 
7387     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7388     if (SWIG_arg_fail(1)) SWIG_fail
; 
7389     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7390     if (SWIG_arg_fail(2)) SWIG_fail
; 
7393             arg3 
= (int)(SWIG_As_int(obj2
));  
7394             if (SWIG_arg_fail(3)) SWIG_fail
; 
7400             if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
7406             if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
7411             arg6 
= (int)(SWIG_As_int(obj5
));  
7412             if (SWIG_arg_fail(6)) SWIG_fail
; 
7417             arg7 
= wxString_in_helper(obj6
); 
7418             if (arg7 
== NULL
) SWIG_fail
; 
7423         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7424         result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
7426         wxPyEndAllowThreads(__tstate
); 
7427         if (PyErr_Occurred()) SWIG_fail
; 
7430         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7446 static PyObject 
*_wrap_HtmlWindow__setCallbackInfo(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7447     PyObject 
*resultobj
; 
7448     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7449     PyObject 
*arg2 
= (PyObject 
*) 0 ; 
7450     PyObject 
*arg3 
= (PyObject 
*) 0 ; 
7451     PyObject 
* obj0 
= 0 ; 
7452     PyObject 
* obj1 
= 0 ; 
7453     PyObject 
* obj2 
= 0 ; 
7455         (char *) "self",(char *) "self",(char *) "_class", NULL 
 
7458     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow__setCallbackInfo",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7459     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7460     if (SWIG_arg_fail(1)) SWIG_fail
; 
7464         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7465         (arg1
)->_setCallbackInfo(arg2
,arg3
); 
7467         wxPyEndAllowThreads(__tstate
); 
7468         if (PyErr_Occurred()) SWIG_fail
; 
7470     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7477 static PyObject 
*_wrap_HtmlWindow_SetPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7478     PyObject 
*resultobj
; 
7479     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7480     wxString 
*arg2 
= 0 ; 
7482     bool temp2 
= false ; 
7483     PyObject 
* obj0 
= 0 ; 
7484     PyObject 
* obj1 
= 0 ; 
7486         (char *) "self",(char *) "source", NULL 
 
7489     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7490     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7491     if (SWIG_arg_fail(1)) SWIG_fail
; 
7493         arg2 
= wxString_in_helper(obj1
); 
7494         if (arg2 
== NULL
) SWIG_fail
; 
7498         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7499         result 
= (bool)(arg1
)->SetPage((wxString 
const &)*arg2
); 
7501         wxPyEndAllowThreads(__tstate
); 
7502         if (PyErr_Occurred()) SWIG_fail
; 
7505         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7521 static PyObject 
*_wrap_HtmlWindow_LoadPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7522     PyObject 
*resultobj
; 
7523     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7524     wxString 
*arg2 
= 0 ; 
7526     bool temp2 
= false ; 
7527     PyObject 
* obj0 
= 0 ; 
7528     PyObject 
* obj1 
= 0 ; 
7530         (char *) "self",(char *) "location", NULL 
 
7533     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7534     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7535     if (SWIG_arg_fail(1)) SWIG_fail
; 
7537         arg2 
= wxString_in_helper(obj1
); 
7538         if (arg2 
== NULL
) SWIG_fail
; 
7542         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7543         result 
= (bool)(arg1
)->LoadPage((wxString 
const &)*arg2
); 
7545         wxPyEndAllowThreads(__tstate
); 
7546         if (PyErr_Occurred()) SWIG_fail
; 
7549         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7565 static PyObject 
*_wrap_HtmlWindow_LoadFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7566     PyObject 
*resultobj
; 
7567     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7568     wxString 
*arg2 
= 0 ; 
7570     bool temp2 
= false ; 
7571     PyObject 
* obj0 
= 0 ; 
7572     PyObject 
* obj1 
= 0 ; 
7574         (char *) "self",(char *) "filename", NULL 
 
7577     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_LoadFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
7578     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7579     if (SWIG_arg_fail(1)) SWIG_fail
; 
7581         arg2 
= wxString_in_helper(obj1
); 
7582         if (arg2 
== NULL
) SWIG_fail
; 
7586         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7587         result 
= (bool)(arg1
)->LoadFile((wxString 
const &)*arg2
); 
7589         wxPyEndAllowThreads(__tstate
); 
7590         if (PyErr_Occurred()) SWIG_fail
; 
7593         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7609 static PyObject 
*_wrap_HtmlWindow_AppendToPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7610     PyObject 
*resultobj
; 
7611     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7612     wxString 
*arg2 
= 0 ; 
7614     bool temp2 
= false ; 
7615     PyObject 
* obj0 
= 0 ; 
7616     PyObject 
* obj1 
= 0 ; 
7618         (char *) "self",(char *) "source", NULL 
 
7621     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_AppendToPage",kwnames
,&obj0
,&obj1
)) goto fail
; 
7622     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7623     if (SWIG_arg_fail(1)) SWIG_fail
; 
7625         arg2 
= wxString_in_helper(obj1
); 
7626         if (arg2 
== NULL
) SWIG_fail
; 
7630         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7631         result 
= (bool)(arg1
)->AppendToPage((wxString 
const &)*arg2
); 
7633         wxPyEndAllowThreads(__tstate
); 
7634         if (PyErr_Occurred()) SWIG_fail
; 
7637         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7653 static PyObject 
*_wrap_HtmlWindow_GetOpenedPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7654     PyObject 
*resultobj
; 
7655     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7657     PyObject 
* obj0 
= 0 ; 
7659         (char *) "self", NULL 
 
7662     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPage",kwnames
,&obj0
)) goto fail
; 
7663     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7664     if (SWIG_arg_fail(1)) SWIG_fail
; 
7666         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7667         result 
= (arg1
)->GetOpenedPage(); 
7669         wxPyEndAllowThreads(__tstate
); 
7670         if (PyErr_Occurred()) SWIG_fail
; 
7674         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7676         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7685 static PyObject 
*_wrap_HtmlWindow_GetOpenedAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7686     PyObject 
*resultobj
; 
7687     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7689     PyObject 
* obj0 
= 0 ; 
7691         (char *) "self", NULL 
 
7694     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedAnchor",kwnames
,&obj0
)) goto fail
; 
7695     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7696     if (SWIG_arg_fail(1)) SWIG_fail
; 
7698         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7699         result 
= (arg1
)->GetOpenedAnchor(); 
7701         wxPyEndAllowThreads(__tstate
); 
7702         if (PyErr_Occurred()) SWIG_fail
; 
7706         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7708         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7717 static PyObject 
*_wrap_HtmlWindow_GetOpenedPageTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7718     PyObject 
*resultobj
; 
7719     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7721     PyObject 
* obj0 
= 0 ; 
7723         (char *) "self", NULL 
 
7726     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetOpenedPageTitle",kwnames
,&obj0
)) goto fail
; 
7727     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7728     if (SWIG_arg_fail(1)) SWIG_fail
; 
7730         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7731         result 
= (arg1
)->GetOpenedPageTitle(); 
7733         wxPyEndAllowThreads(__tstate
); 
7734         if (PyErr_Occurred()) SWIG_fail
; 
7738         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
7740         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
7749 static PyObject 
*_wrap_HtmlWindow_SetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7750     PyObject 
*resultobj
; 
7751     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7752     wxFrame 
*arg2 
= (wxFrame 
*) 0 ; 
7753     wxString 
*arg3 
= 0 ; 
7754     bool temp3 
= false ; 
7755     PyObject 
* obj0 
= 0 ; 
7756     PyObject 
* obj1 
= 0 ; 
7757     PyObject 
* obj2 
= 0 ; 
7759         (char *) "self",(char *) "frame",(char *) "format", NULL 
 
7762     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlWindow_SetRelatedFrame",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
7763     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7764     if (SWIG_arg_fail(1)) SWIG_fail
; 
7765     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
7766     if (SWIG_arg_fail(2)) SWIG_fail
; 
7768         arg3 
= wxString_in_helper(obj2
); 
7769         if (arg3 
== NULL
) SWIG_fail
; 
7773         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7774         (arg1
)->SetRelatedFrame(arg2
,(wxString 
const &)*arg3
); 
7776         wxPyEndAllowThreads(__tstate
); 
7777         if (PyErr_Occurred()) SWIG_fail
; 
7779     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7794 static PyObject 
*_wrap_HtmlWindow_GetRelatedFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7795     PyObject 
*resultobj
; 
7796     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7798     PyObject 
* obj0 
= 0 ; 
7800         (char *) "self", NULL 
 
7803     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetRelatedFrame",kwnames
,&obj0
)) goto fail
; 
7804     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7805     if (SWIG_arg_fail(1)) SWIG_fail
; 
7807         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7808         result 
= (wxFrame 
*)(arg1
)->GetRelatedFrame(); 
7810         wxPyEndAllowThreads(__tstate
); 
7811         if (PyErr_Occurred()) SWIG_fail
; 
7814         resultobj 
= wxPyMake_wxObject(result
, 0);  
7822 static PyObject 
*_wrap_HtmlWindow_SetRelatedStatusBar(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7823     PyObject 
*resultobj
; 
7824     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7826     PyObject 
* obj0 
= 0 ; 
7827     PyObject 
* obj1 
= 0 ; 
7829         (char *) "self",(char *) "bar", NULL 
 
7832     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetRelatedStatusBar",kwnames
,&obj0
,&obj1
)) goto fail
; 
7833     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7834     if (SWIG_arg_fail(1)) SWIG_fail
; 
7836         arg2 
= (int)(SWIG_As_int(obj1
));  
7837         if (SWIG_arg_fail(2)) SWIG_fail
; 
7840         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7841         (arg1
)->SetRelatedStatusBar(arg2
); 
7843         wxPyEndAllowThreads(__tstate
); 
7844         if (PyErr_Occurred()) SWIG_fail
; 
7846     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7853 static PyObject 
*_wrap_HtmlWindow_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7854     PyObject 
*resultobj
; 
7855     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7858     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
7859     PyObject 
* obj0 
= 0 ; 
7860     PyObject 
* obj1 
= 0 ; 
7861     PyObject 
* obj2 
= 0 ; 
7862     PyObject 
* obj3 
= 0 ; 
7864         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
7867     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlWindow_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7868     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7869     if (SWIG_arg_fail(1)) SWIG_fail
; 
7871         wxString
* sptr 
= wxString_in_helper(obj1
); 
7872         if (sptr 
== NULL
) SWIG_fail
; 
7877         wxString
* sptr 
= wxString_in_helper(obj2
); 
7878         if (sptr 
== NULL
) SWIG_fail
; 
7886         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7887         wxPyHtmlWindow_SetFonts(arg1
,arg2
,arg3
,arg4
); 
7889         wxPyEndAllowThreads(__tstate
); 
7890         if (PyErr_Occurred()) SWIG_fail
; 
7892     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7899 static PyObject 
*_wrap_HtmlWindow_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7900     PyObject 
*resultobj
; 
7901     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7902     int arg2 
= (int) -1 ; 
7903     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
7904     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
7905     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
7906     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
7907     bool temp3 
= false ; 
7908     bool temp4 
= false ; 
7909     PyObject 
* obj0 
= 0 ; 
7910     PyObject 
* obj1 
= 0 ; 
7911     PyObject 
* obj2 
= 0 ; 
7912     PyObject 
* obj3 
= 0 ; 
7914         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
7917     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlWindow_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
7918     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7919     if (SWIG_arg_fail(1)) SWIG_fail
; 
7922             arg2 
= (int)(SWIG_As_int(obj1
));  
7923             if (SWIG_arg_fail(2)) SWIG_fail
; 
7928             arg3 
= wxString_in_helper(obj2
); 
7929             if (arg3 
== NULL
) SWIG_fail
; 
7935             arg4 
= wxString_in_helper(obj3
); 
7936             if (arg4 
== NULL
) SWIG_fail
; 
7941         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7942         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
7944         wxPyEndAllowThreads(__tstate
); 
7945         if (PyErr_Occurred()) SWIG_fail
; 
7947     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
7970 static PyObject 
*_wrap_HtmlWindow_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
7971     PyObject 
*resultobj
; 
7972     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
7973     wxString 
*arg2 
= 0 ; 
7974     bool temp2 
= false ; 
7975     PyObject 
* obj0 
= 0 ; 
7976     PyObject 
* obj1 
= 0 ; 
7978         (char *) "self",(char *) "title", NULL 
 
7981     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
7982     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
7983     if (SWIG_arg_fail(1)) SWIG_fail
; 
7985         arg2 
= wxString_in_helper(obj1
); 
7986         if (arg2 
== NULL
) SWIG_fail
; 
7990         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7991         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
7993         wxPyEndAllowThreads(__tstate
); 
7994         if (PyErr_Occurred()) SWIG_fail
; 
7996     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8011 static PyObject 
*_wrap_HtmlWindow_SetBorders(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8012     PyObject 
*resultobj
; 
8013     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8015     PyObject 
* obj0 
= 0 ; 
8016     PyObject 
* obj1 
= 0 ; 
8018         (char *) "self",(char *) "b", NULL 
 
8021     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SetBorders",kwnames
,&obj0
,&obj1
)) goto fail
; 
8022     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8023     if (SWIG_arg_fail(1)) SWIG_fail
; 
8025         arg2 
= (int)(SWIG_As_int(obj1
));  
8026         if (SWIG_arg_fail(2)) SWIG_fail
; 
8029         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8030         (arg1
)->SetBorders(arg2
); 
8032         wxPyEndAllowThreads(__tstate
); 
8033         if (PyErr_Occurred()) SWIG_fail
; 
8035     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8042 static PyObject 
*_wrap_HtmlWindow_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8043     PyObject 
*resultobj
; 
8044     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8045     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8046     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8047     PyObject 
* obj0 
= 0 ; 
8048     PyObject 
* obj1 
= 0 ; 
8049     PyObject 
* obj2 
= 0 ; 
8051         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8054     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8055     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8056     if (SWIG_arg_fail(1)) SWIG_fail
; 
8057     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8058     if (SWIG_arg_fail(2)) SWIG_fail
; 
8061             wxString
* sptr 
= wxString_in_helper(obj2
); 
8062             if (sptr 
== NULL
) SWIG_fail
; 
8068         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8069         (arg1
)->ReadCustomization(arg2
,arg3
); 
8071         wxPyEndAllowThreads(__tstate
); 
8072         if (PyErr_Occurred()) SWIG_fail
; 
8074     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8081 static PyObject 
*_wrap_HtmlWindow_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8082     PyObject 
*resultobj
; 
8083     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8084     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
8085     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
8086     PyObject 
* obj0 
= 0 ; 
8087     PyObject 
* obj1 
= 0 ; 
8088     PyObject 
* obj2 
= 0 ; 
8090         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
8093     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlWindow_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8094     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8095     if (SWIG_arg_fail(1)) SWIG_fail
; 
8096     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
8097     if (SWIG_arg_fail(2)) SWIG_fail
; 
8100             wxString
* sptr 
= wxString_in_helper(obj2
); 
8101             if (sptr 
== NULL
) SWIG_fail
; 
8107         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8108         (arg1
)->WriteCustomization(arg2
,arg3
); 
8110         wxPyEndAllowThreads(__tstate
); 
8111         if (PyErr_Occurred()) SWIG_fail
; 
8113     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8120 static PyObject 
*_wrap_HtmlWindow_HistoryBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8121     PyObject 
*resultobj
; 
8122     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8124     PyObject 
* obj0 
= 0 ; 
8126         (char *) "self", NULL 
 
8129     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryBack",kwnames
,&obj0
)) goto fail
; 
8130     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8131     if (SWIG_arg_fail(1)) SWIG_fail
; 
8133         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8134         result 
= (bool)(arg1
)->HistoryBack(); 
8136         wxPyEndAllowThreads(__tstate
); 
8137         if (PyErr_Occurred()) SWIG_fail
; 
8140         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8148 static PyObject 
*_wrap_HtmlWindow_HistoryForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8149     PyObject 
*resultobj
; 
8150     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8152     PyObject 
* obj0 
= 0 ; 
8154         (char *) "self", NULL 
 
8157     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryForward",kwnames
,&obj0
)) goto fail
; 
8158     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8159     if (SWIG_arg_fail(1)) SWIG_fail
; 
8161         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8162         result 
= (bool)(arg1
)->HistoryForward(); 
8164         wxPyEndAllowThreads(__tstate
); 
8165         if (PyErr_Occurred()) SWIG_fail
; 
8168         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8176 static PyObject 
*_wrap_HtmlWindow_HistoryCanBack(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8177     PyObject 
*resultobj
; 
8178     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8180     PyObject 
* obj0 
= 0 ; 
8182         (char *) "self", NULL 
 
8185     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanBack",kwnames
,&obj0
)) goto fail
; 
8186     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8187     if (SWIG_arg_fail(1)) SWIG_fail
; 
8189         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8190         result 
= (bool)(arg1
)->HistoryCanBack(); 
8192         wxPyEndAllowThreads(__tstate
); 
8193         if (PyErr_Occurred()) SWIG_fail
; 
8196         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8204 static PyObject 
*_wrap_HtmlWindow_HistoryCanForward(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8205     PyObject 
*resultobj
; 
8206     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8208     PyObject 
* obj0 
= 0 ; 
8210         (char *) "self", NULL 
 
8213     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryCanForward",kwnames
,&obj0
)) goto fail
; 
8214     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8215     if (SWIG_arg_fail(1)) SWIG_fail
; 
8217         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8218         result 
= (bool)(arg1
)->HistoryCanForward(); 
8220         wxPyEndAllowThreads(__tstate
); 
8221         if (PyErr_Occurred()) SWIG_fail
; 
8224         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8232 static PyObject 
*_wrap_HtmlWindow_HistoryClear(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8233     PyObject 
*resultobj
; 
8234     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8235     PyObject 
* obj0 
= 0 ; 
8237         (char *) "self", NULL 
 
8240     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_HistoryClear",kwnames
,&obj0
)) goto fail
; 
8241     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8242     if (SWIG_arg_fail(1)) SWIG_fail
; 
8244         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8245         (arg1
)->HistoryClear(); 
8247         wxPyEndAllowThreads(__tstate
); 
8248         if (PyErr_Occurred()) SWIG_fail
; 
8250     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8257 static PyObject 
*_wrap_HtmlWindow_GetInternalRepresentation(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8258     PyObject 
*resultobj
; 
8259     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8260     wxHtmlContainerCell 
*result
; 
8261     PyObject 
* obj0 
= 0 ; 
8263         (char *) "self", NULL 
 
8266     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetInternalRepresentation",kwnames
,&obj0
)) goto fail
; 
8267     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8268     if (SWIG_arg_fail(1)) SWIG_fail
; 
8270         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8271         result 
= (wxHtmlContainerCell 
*)(arg1
)->GetInternalRepresentation(); 
8273         wxPyEndAllowThreads(__tstate
); 
8274         if (PyErr_Occurred()) SWIG_fail
; 
8276     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContainerCell
, 0); 
8283 static PyObject 
*_wrap_HtmlWindow_GetParser(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8284     PyObject 
*resultobj
; 
8285     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8286     wxHtmlWinParser 
*result
; 
8287     PyObject 
* obj0 
= 0 ; 
8289         (char *) "self", NULL 
 
8292     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_GetParser",kwnames
,&obj0
)) goto fail
; 
8293     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8294     if (SWIG_arg_fail(1)) SWIG_fail
; 
8296         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8297         result 
= (wxHtmlWinParser 
*)(arg1
)->GetParser(); 
8299         wxPyEndAllowThreads(__tstate
); 
8300         if (PyErr_Occurred()) SWIG_fail
; 
8302     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlWinParser
, 0); 
8309 static PyObject 
*_wrap_HtmlWindow_ScrollToAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8310     PyObject 
*resultobj
; 
8311     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8312     wxString 
*arg2 
= 0 ; 
8314     bool temp2 
= false ; 
8315     PyObject 
* obj0 
= 0 ; 
8316     PyObject 
* obj1 
= 0 ; 
8318         (char *) "self",(char *) "anchor", NULL 
 
8321     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_ScrollToAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8322     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8323     if (SWIG_arg_fail(1)) SWIG_fail
; 
8325         arg2 
= wxString_in_helper(obj1
); 
8326         if (arg2 
== NULL
) SWIG_fail
; 
8330         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8331         result 
= (bool)(arg1
)->ScrollToAnchor((wxString 
const &)*arg2
); 
8333         wxPyEndAllowThreads(__tstate
); 
8334         if (PyErr_Occurred()) SWIG_fail
; 
8337         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8353 static PyObject 
*_wrap_HtmlWindow_HasAnchor(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8354     PyObject 
*resultobj
; 
8355     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8356     wxString 
*arg2 
= 0 ; 
8358     bool temp2 
= false ; 
8359     PyObject 
* obj0 
= 0 ; 
8360     PyObject 
* obj1 
= 0 ; 
8362         (char *) "self",(char *) "anchor", NULL 
 
8365     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_HasAnchor",kwnames
,&obj0
,&obj1
)) goto fail
; 
8366     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8367     if (SWIG_arg_fail(1)) SWIG_fail
; 
8369         arg2 
= wxString_in_helper(obj1
); 
8370         if (arg2 
== NULL
) SWIG_fail
; 
8374         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8375         result 
= (bool)(arg1
)->HasAnchor((wxString 
const &)*arg2
); 
8377         wxPyEndAllowThreads(__tstate
); 
8378         if (PyErr_Occurred()) SWIG_fail
; 
8381         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8397 static PyObject 
*_wrap_HtmlWindow_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8398     PyObject 
*resultobj
; 
8399     wxPyHtmlFilter 
*arg1 
= (wxPyHtmlFilter 
*) 0 ; 
8400     PyObject 
* obj0 
= 0 ; 
8402         (char *) "filter", NULL 
 
8405     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_AddFilter",kwnames
,&obj0
)) goto fail
; 
8406     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
8407     if (SWIG_arg_fail(1)) SWIG_fail
; 
8409         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8410         wxPyHtmlWindow::AddFilter(arg1
); 
8412         wxPyEndAllowThreads(__tstate
); 
8413         if (PyErr_Occurred()) SWIG_fail
; 
8415     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8422 static PyObject 
*_wrap_HtmlWindow_SelectWord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8423     PyObject 
*resultobj
; 
8424     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8427     PyObject 
* obj0 
= 0 ; 
8428     PyObject 
* obj1 
= 0 ; 
8430         (char *) "self",(char *) "pos", NULL 
 
8433     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectWord",kwnames
,&obj0
,&obj1
)) goto fail
; 
8434     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8435     if (SWIG_arg_fail(1)) SWIG_fail
; 
8438         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8441         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8442         (arg1
)->SelectWord((wxPoint 
const &)*arg2
); 
8444         wxPyEndAllowThreads(__tstate
); 
8445         if (PyErr_Occurred()) SWIG_fail
; 
8447     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8454 static PyObject 
*_wrap_HtmlWindow_SelectLine(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8455     PyObject 
*resultobj
; 
8456     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8459     PyObject 
* obj0 
= 0 ; 
8460     PyObject 
* obj1 
= 0 ; 
8462         (char *) "self",(char *) "pos", NULL 
 
8465     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_SelectLine",kwnames
,&obj0
,&obj1
)) goto fail
; 
8466     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8467     if (SWIG_arg_fail(1)) SWIG_fail
; 
8470         if ( ! wxPoint_helper(obj1
, &arg2
)) SWIG_fail
; 
8473         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8474         (arg1
)->SelectLine((wxPoint 
const &)*arg2
); 
8476         wxPyEndAllowThreads(__tstate
); 
8477         if (PyErr_Occurred()) SWIG_fail
; 
8479     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8486 static PyObject 
*_wrap_HtmlWindow_SelectAll(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8487     PyObject 
*resultobj
; 
8488     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8489     PyObject 
* obj0 
= 0 ; 
8491         (char *) "self", NULL 
 
8494     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectAll",kwnames
,&obj0
)) goto fail
; 
8495     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8496     if (SWIG_arg_fail(1)) SWIG_fail
; 
8498         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8499         (arg1
)->SelectAll(); 
8501         wxPyEndAllowThreads(__tstate
); 
8502         if (PyErr_Occurred()) SWIG_fail
; 
8504     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8511 static PyObject 
*_wrap_HtmlWindow_SelectionToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8512     PyObject 
*resultobj
; 
8513     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8515     PyObject 
* obj0 
= 0 ; 
8517         (char *) "self", NULL 
 
8520     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_SelectionToText",kwnames
,&obj0
)) goto fail
; 
8521     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8522     if (SWIG_arg_fail(1)) SWIG_fail
; 
8524         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8525         result 
= (arg1
)->SelectionToText(); 
8527         wxPyEndAllowThreads(__tstate
); 
8528         if (PyErr_Occurred()) SWIG_fail
; 
8532         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8534         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8543 static PyObject 
*_wrap_HtmlWindow_ToText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8544     PyObject 
*resultobj
; 
8545     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8547     PyObject 
* obj0 
= 0 ; 
8549         (char *) "self", NULL 
 
8552     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlWindow_ToText",kwnames
,&obj0
)) goto fail
; 
8553     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8554     if (SWIG_arg_fail(1)) SWIG_fail
; 
8556         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8557         result 
= (arg1
)->ToText(); 
8559         wxPyEndAllowThreads(__tstate
); 
8560         if (PyErr_Occurred()) SWIG_fail
; 
8564         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
8566         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
8575 static PyObject 
*_wrap_HtmlWindow_base_OnLinkClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8576     PyObject 
*resultobj
; 
8577     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8578     wxHtmlLinkInfo 
*arg2 
= 0 ; 
8579     PyObject 
* obj0 
= 0 ; 
8580     PyObject 
* obj1 
= 0 ; 
8582         (char *) "self",(char *) "link", NULL 
 
8585     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnLinkClicked",kwnames
,&obj0
,&obj1
)) goto fail
; 
8586     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8587     if (SWIG_arg_fail(1)) SWIG_fail
; 
8589         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlLinkInfo
, SWIG_POINTER_EXCEPTION 
| 0); 
8590         if (SWIG_arg_fail(2)) SWIG_fail
; 
8592             SWIG_null_ref("wxHtmlLinkInfo"); 
8594         if (SWIG_arg_fail(2)) SWIG_fail
; 
8597         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8598         (arg1
)->base_OnLinkClicked((wxHtmlLinkInfo 
const &)*arg2
); 
8600         wxPyEndAllowThreads(__tstate
); 
8601         if (PyErr_Occurred()) SWIG_fail
; 
8603     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8610 static PyObject 
*_wrap_HtmlWindow_base_OnSetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8611     PyObject 
*resultobj
; 
8612     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8613     wxString 
*arg2 
= 0 ; 
8614     bool temp2 
= false ; 
8615     PyObject 
* obj0 
= 0 ; 
8616     PyObject 
* obj1 
= 0 ; 
8618         (char *) "self",(char *) "title", NULL 
 
8621     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlWindow_base_OnSetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
8622     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8623     if (SWIG_arg_fail(1)) SWIG_fail
; 
8625         arg2 
= wxString_in_helper(obj1
); 
8626         if (arg2 
== NULL
) SWIG_fail
; 
8630         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8631         (arg1
)->base_OnSetTitle((wxString 
const &)*arg2
); 
8633         wxPyEndAllowThreads(__tstate
); 
8634         if (PyErr_Occurred()) SWIG_fail
; 
8636     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8651 static PyObject 
*_wrap_HtmlWindow_base_OnCellMouseHover(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8652     PyObject 
*resultobj
; 
8653     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8654     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8657     PyObject 
* obj0 
= 0 ; 
8658     PyObject 
* obj1 
= 0 ; 
8659     PyObject 
* obj2 
= 0 ; 
8660     PyObject 
* obj3 
= 0 ; 
8662         (char *) "self",(char *) "cell",(char *) "x",(char *) "y", NULL 
 
8665     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:HtmlWindow_base_OnCellMouseHover",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8666     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8667     if (SWIG_arg_fail(1)) SWIG_fail
; 
8668     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8669     if (SWIG_arg_fail(2)) SWIG_fail
; 
8671         arg3 
= (int)(SWIG_As_int(obj2
));  
8672         if (SWIG_arg_fail(3)) SWIG_fail
; 
8675         arg4 
= (int)(SWIG_As_int(obj3
));  
8676         if (SWIG_arg_fail(4)) SWIG_fail
; 
8679         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8680         (arg1
)->base_OnCellMouseHover(arg2
,arg3
,arg4
); 
8682         wxPyEndAllowThreads(__tstate
); 
8683         if (PyErr_Occurred()) SWIG_fail
; 
8685     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8692 static PyObject 
*_wrap_HtmlWindow_base_OnCellClicked(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8693     PyObject 
*resultobj
; 
8694     wxPyHtmlWindow 
*arg1 
= (wxPyHtmlWindow 
*) 0 ; 
8695     wxHtmlCell 
*arg2 
= (wxHtmlCell 
*) 0 ; 
8698     wxMouseEvent 
*arg5 
= 0 ; 
8699     PyObject 
* obj0 
= 0 ; 
8700     PyObject 
* obj1 
= 0 ; 
8701     PyObject 
* obj2 
= 0 ; 
8702     PyObject 
* obj3 
= 0 ; 
8703     PyObject 
* obj4 
= 0 ; 
8705         (char *) "self",(char *) "cell",(char *) "x",(char *) "y",(char *) "event", NULL 
 
8708     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOO:HtmlWindow_base_OnCellClicked",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
8709     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxPyHtmlWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
8710     if (SWIG_arg_fail(1)) SWIG_fail
; 
8711     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxHtmlCell
, SWIG_POINTER_EXCEPTION 
| 0); 
8712     if (SWIG_arg_fail(2)) SWIG_fail
; 
8714         arg3 
= (int)(SWIG_As_int(obj2
));  
8715         if (SWIG_arg_fail(3)) SWIG_fail
; 
8718         arg4 
= (int)(SWIG_As_int(obj3
));  
8719         if (SWIG_arg_fail(4)) SWIG_fail
; 
8722         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxMouseEvent
, SWIG_POINTER_EXCEPTION 
| 0); 
8723         if (SWIG_arg_fail(5)) SWIG_fail
; 
8725             SWIG_null_ref("wxMouseEvent"); 
8727         if (SWIG_arg_fail(5)) SWIG_fail
; 
8730         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8731         (arg1
)->base_OnCellClicked(arg2
,arg3
,arg4
,(wxMouseEvent 
const &)*arg5
); 
8733         wxPyEndAllowThreads(__tstate
); 
8734         if (PyErr_Occurred()) SWIG_fail
; 
8736     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8743 static PyObject 
*_wrap_HtmlWindow_GetClassDefaultAttributes(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8744     PyObject 
*resultobj
; 
8745     wxWindowVariant arg1 
= (wxWindowVariant
) wxWINDOW_VARIANT_NORMAL 
; 
8746     wxVisualAttributes result
; 
8747     PyObject 
* obj0 
= 0 ; 
8749         (char *) "variant", NULL 
 
8752     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:HtmlWindow_GetClassDefaultAttributes",kwnames
,&obj0
)) goto fail
; 
8755             arg1 
= (wxWindowVariant
)(SWIG_As_int(obj0
));  
8756             if (SWIG_arg_fail(1)) SWIG_fail
; 
8760         if (!wxPyCheckForApp()) SWIG_fail
; 
8761         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8762         result 
= wxPyHtmlWindow::GetClassDefaultAttributes((wxWindowVariant 
)arg1
); 
8764         wxPyEndAllowThreads(__tstate
); 
8765         if (PyErr_Occurred()) SWIG_fail
; 
8768         wxVisualAttributes 
* resultptr
; 
8769         resultptr 
= new wxVisualAttributes((wxVisualAttributes 
&)(result
)); 
8770         resultobj 
= SWIG_NewPointerObj((void *)(resultptr
), SWIGTYPE_p_wxVisualAttributes
, 1); 
8778 static PyObject 
* HtmlWindow_swigregister(PyObject 
*, PyObject 
*args
) { 
8780     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
8781     SWIG_TypeClientData(SWIGTYPE_p_wxPyHtmlWindow
, obj
); 
8783     return Py_BuildValue((char *)""); 
8785 static PyObject 
*_wrap_new_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8786     PyObject 
*resultobj
; 
8787     wxHtmlDCRenderer 
*result
; 
8792     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlDCRenderer",kwnames
)) goto fail
; 
8794         if (!wxPyCheckForApp()) SWIG_fail
; 
8795         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8796         result 
= (wxHtmlDCRenderer 
*)new wxHtmlDCRenderer(); 
8798         wxPyEndAllowThreads(__tstate
); 
8799         if (PyErr_Occurred()) SWIG_fail
; 
8801     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlDCRenderer
, 1); 
8808 static PyObject 
*_wrap_delete_HtmlDCRenderer(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8809     PyObject 
*resultobj
; 
8810     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8811     PyObject 
* obj0 
= 0 ; 
8813         (char *) "self", NULL 
 
8816     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlDCRenderer",kwnames
,&obj0
)) goto fail
; 
8817     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8818     if (SWIG_arg_fail(1)) SWIG_fail
; 
8820         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8823         wxPyEndAllowThreads(__tstate
); 
8824         if (PyErr_Occurred()) SWIG_fail
; 
8826     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8833 static PyObject 
*_wrap_HtmlDCRenderer_SetDC(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8834     PyObject 
*resultobj
; 
8835     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8836     wxDC 
*arg2 
= (wxDC 
*) 0 ; 
8838     PyObject 
* obj0 
= 0 ; 
8839     PyObject 
* obj1 
= 0 ; 
8840     PyObject 
* obj2 
= 0 ; 
8842         (char *) "self",(char *) "dc",(char *) "maxwidth", NULL 
 
8845     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetDC",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8846     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8847     if (SWIG_arg_fail(1)) SWIG_fail
; 
8848     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxDC
, SWIG_POINTER_EXCEPTION 
| 0); 
8849     if (SWIG_arg_fail(2)) SWIG_fail
; 
8851         arg3 
= (int)(SWIG_As_int(obj2
));  
8852         if (SWIG_arg_fail(3)) SWIG_fail
; 
8855         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8856         (arg1
)->SetDC(arg2
,arg3
); 
8858         wxPyEndAllowThreads(__tstate
); 
8859         if (PyErr_Occurred()) SWIG_fail
; 
8861     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8868 static PyObject 
*_wrap_HtmlDCRenderer_SetSize(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8869     PyObject 
*resultobj
; 
8870     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8873     PyObject 
* obj0 
= 0 ; 
8874     PyObject 
* obj1 
= 0 ; 
8875     PyObject 
* obj2 
= 0 ; 
8877         (char *) "self",(char *) "width",(char *) "height", NULL 
 
8880     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlDCRenderer_SetSize",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
8881     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8882     if (SWIG_arg_fail(1)) SWIG_fail
; 
8884         arg2 
= (int)(SWIG_As_int(obj1
));  
8885         if (SWIG_arg_fail(2)) SWIG_fail
; 
8888         arg3 
= (int)(SWIG_As_int(obj2
));  
8889         if (SWIG_arg_fail(3)) SWIG_fail
; 
8892         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8893         (arg1
)->SetSize(arg2
,arg3
); 
8895         wxPyEndAllowThreads(__tstate
); 
8896         if (PyErr_Occurred()) SWIG_fail
; 
8898     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8905 static PyObject 
*_wrap_HtmlDCRenderer_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8906     PyObject 
*resultobj
; 
8907     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8908     wxString 
*arg2 
= 0 ; 
8909     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
8910     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
8911     bool arg4 
= (bool) true ; 
8912     bool temp2 
= false ; 
8913     bool temp3 
= false ; 
8914     PyObject 
* obj0 
= 0 ; 
8915     PyObject 
* obj1 
= 0 ; 
8916     PyObject 
* obj2 
= 0 ; 
8917     PyObject 
* obj3 
= 0 ; 
8919         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
8922     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlDCRenderer_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8923     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8924     if (SWIG_arg_fail(1)) SWIG_fail
; 
8926         arg2 
= wxString_in_helper(obj1
); 
8927         if (arg2 
== NULL
) SWIG_fail
; 
8932             arg3 
= wxString_in_helper(obj2
); 
8933             if (arg3 
== NULL
) SWIG_fail
; 
8939             arg4 
= (bool)(SWIG_As_bool(obj3
));  
8940             if (SWIG_arg_fail(4)) SWIG_fail
; 
8944         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8945         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
8947         wxPyEndAllowThreads(__tstate
); 
8948         if (PyErr_Occurred()) SWIG_fail
; 
8950     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
8973 static PyObject 
*_wrap_HtmlDCRenderer_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
8974     PyObject 
*resultobj
; 
8975     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
8978     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
8979     PyObject 
* obj0 
= 0 ; 
8980     PyObject 
* obj1 
= 0 ; 
8981     PyObject 
* obj2 
= 0 ; 
8982     PyObject 
* obj3 
= 0 ; 
8984         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
8987     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlDCRenderer_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
8988     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
8989     if (SWIG_arg_fail(1)) SWIG_fail
; 
8991         wxString
* sptr 
= wxString_in_helper(obj1
); 
8992         if (sptr 
== NULL
) SWIG_fail
; 
8997         wxString
* sptr 
= wxString_in_helper(obj2
); 
8998         if (sptr 
== NULL
) SWIG_fail
; 
9006         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9007         wxHtmlDCRenderer_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9009         wxPyEndAllowThreads(__tstate
); 
9010         if (PyErr_Occurred()) SWIG_fail
; 
9012     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9019 static PyObject 
*_wrap_HtmlDCRenderer_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9020     PyObject 
*resultobj
; 
9021     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9022     int arg2 
= (int) -1 ; 
9023     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9024     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9025     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9026     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9027     bool temp3 
= false ; 
9028     bool temp4 
= false ; 
9029     PyObject 
* obj0 
= 0 ; 
9030     PyObject 
* obj1 
= 0 ; 
9031     PyObject 
* obj2 
= 0 ; 
9032     PyObject 
* obj3 
= 0 ; 
9034         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9037     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlDCRenderer_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9038     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9039     if (SWIG_arg_fail(1)) SWIG_fail
; 
9042             arg2 
= (int)(SWIG_As_int(obj1
));  
9043             if (SWIG_arg_fail(2)) SWIG_fail
; 
9048             arg3 
= wxString_in_helper(obj2
); 
9049             if (arg3 
== NULL
) SWIG_fail
; 
9055             arg4 
= wxString_in_helper(obj3
); 
9056             if (arg4 
== NULL
) SWIG_fail
; 
9061         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9062         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9064         wxPyEndAllowThreads(__tstate
); 
9065         if (PyErr_Occurred()) SWIG_fail
; 
9067     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9090 static PyObject 
*_wrap_HtmlDCRenderer_Render(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9091     PyObject 
*resultobj
; 
9092     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9095     int arg4 
= (int) 0 ; 
9096     int arg5 
= (int) false ; 
9097     int arg6 
= (int) INT_MAX 
; 
9098     int *arg7 
= (int *) NULL 
; 
9099     int arg8 
= (int) 0 ; 
9101     PyObject 
* obj0 
= 0 ; 
9102     PyObject 
* obj1 
= 0 ; 
9103     PyObject 
* obj2 
= 0 ; 
9104     PyObject 
* obj3 
= 0 ; 
9105     PyObject 
* obj4 
= 0 ; 
9106     PyObject 
* obj5 
= 0 ; 
9107     PyObject 
* obj6 
= 0 ; 
9108     PyObject 
* obj7 
= 0 ; 
9110         (char *) "self",(char *) "x",(char *) "y",(char *) "from",(char *) "dont_render",(char *) "maxHeight",(char *) "choices",(char *) "LCOUNT", NULL 
 
9113     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OOOOO:HtmlDCRenderer_Render",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) goto fail
; 
9114     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9115     if (SWIG_arg_fail(1)) SWIG_fail
; 
9117         arg2 
= (int)(SWIG_As_int(obj1
));  
9118         if (SWIG_arg_fail(2)) SWIG_fail
; 
9121         arg3 
= (int)(SWIG_As_int(obj2
));  
9122         if (SWIG_arg_fail(3)) SWIG_fail
; 
9126             arg4 
= (int)(SWIG_As_int(obj3
));  
9127             if (SWIG_arg_fail(4)) SWIG_fail
; 
9132             arg5 
= (int)(SWIG_As_int(obj4
));  
9133             if (SWIG_arg_fail(5)) SWIG_fail
; 
9138             arg6 
= (int)(SWIG_As_int(obj5
));  
9139             if (SWIG_arg_fail(6)) SWIG_fail
; 
9143         SWIG_Python_ConvertPtr(obj6
, (void **)&arg7
, SWIGTYPE_p_int
, SWIG_POINTER_EXCEPTION 
| 0); 
9144         if (SWIG_arg_fail(7)) SWIG_fail
; 
9148             arg8 
= (int)(SWIG_As_int(obj7
));  
9149             if (SWIG_arg_fail(8)) SWIG_fail
; 
9153         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9154         result 
= (int)(arg1
)->Render(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
); 
9156         wxPyEndAllowThreads(__tstate
); 
9157         if (PyErr_Occurred()) SWIG_fail
; 
9160         resultobj 
= SWIG_From_int((int)(result
));  
9168 static PyObject 
*_wrap_HtmlDCRenderer_GetTotalHeight(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9169     PyObject 
*resultobj
; 
9170     wxHtmlDCRenderer 
*arg1 
= (wxHtmlDCRenderer 
*) 0 ; 
9172     PyObject 
* obj0 
= 0 ; 
9174         (char *) "self", NULL 
 
9177     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlDCRenderer_GetTotalHeight",kwnames
,&obj0
)) goto fail
; 
9178     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlDCRenderer
, SWIG_POINTER_EXCEPTION 
| 0); 
9179     if (SWIG_arg_fail(1)) SWIG_fail
; 
9181         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9182         result 
= (int)(arg1
)->GetTotalHeight(); 
9184         wxPyEndAllowThreads(__tstate
); 
9185         if (PyErr_Occurred()) SWIG_fail
; 
9188         resultobj 
= SWIG_From_int((int)(result
));  
9196 static PyObject 
* HtmlDCRenderer_swigregister(PyObject 
*, PyObject 
*args
) { 
9198     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9199     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlDCRenderer
, obj
); 
9201     return Py_BuildValue((char *)""); 
9203 static PyObject 
*_wrap_new_HtmlPrintout(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9204     PyObject 
*resultobj
; 
9205     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintoutTitleStr 
; 
9206     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9207     wxHtmlPrintout 
*result
; 
9208     bool temp1 
= false ; 
9209     PyObject 
* obj0 
= 0 ; 
9211         (char *) "title", NULL 
 
9214     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlPrintout",kwnames
,&obj0
)) goto fail
; 
9217             arg1 
= wxString_in_helper(obj0
); 
9218             if (arg1 
== NULL
) SWIG_fail
; 
9223         if (!wxPyCheckForApp()) SWIG_fail
; 
9224         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9225         result 
= (wxHtmlPrintout 
*)new wxHtmlPrintout((wxString 
const &)*arg1
); 
9227         wxPyEndAllowThreads(__tstate
); 
9228         if (PyErr_Occurred()) SWIG_fail
; 
9230     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlPrintout
, 1); 
9245 static PyObject 
*_wrap_HtmlPrintout_SetHtmlText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9246     PyObject 
*resultobj
; 
9247     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9248     wxString 
*arg2 
= 0 ; 
9249     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9250     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9251     bool arg4 
= (bool) true ; 
9252     bool temp2 
= false ; 
9253     bool temp3 
= false ; 
9254     PyObject 
* obj0 
= 0 ; 
9255     PyObject 
* obj1 
= 0 ; 
9256     PyObject 
* obj2 
= 0 ; 
9257     PyObject 
* obj3 
= 0 ; 
9259         (char *) "self",(char *) "html",(char *) "basepath",(char *) "isdir", NULL 
 
9262     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:HtmlPrintout_SetHtmlText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9263     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9264     if (SWIG_arg_fail(1)) SWIG_fail
; 
9266         arg2 
= wxString_in_helper(obj1
); 
9267         if (arg2 
== NULL
) SWIG_fail
; 
9272             arg3 
= wxString_in_helper(obj2
); 
9273             if (arg3 
== NULL
) SWIG_fail
; 
9279             arg4 
= (bool)(SWIG_As_bool(obj3
));  
9280             if (SWIG_arg_fail(4)) SWIG_fail
; 
9284         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9285         (arg1
)->SetHtmlText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
,arg4
); 
9287         wxPyEndAllowThreads(__tstate
); 
9288         if (PyErr_Occurred()) SWIG_fail
; 
9290     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9313 static PyObject 
*_wrap_HtmlPrintout_SetHtmlFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9314     PyObject 
*resultobj
; 
9315     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9316     wxString 
*arg2 
= 0 ; 
9317     bool temp2 
= false ; 
9318     PyObject 
* obj0 
= 0 ; 
9319     PyObject 
* obj1 
= 0 ; 
9321         (char *) "self",(char *) "htmlfile", NULL 
 
9324     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlPrintout_SetHtmlFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9325     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9326     if (SWIG_arg_fail(1)) SWIG_fail
; 
9328         arg2 
= wxString_in_helper(obj1
); 
9329         if (arg2 
== NULL
) SWIG_fail
; 
9333         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9334         (arg1
)->SetHtmlFile((wxString 
const &)*arg2
); 
9336         wxPyEndAllowThreads(__tstate
); 
9337         if (PyErr_Occurred()) SWIG_fail
; 
9339     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9354 static PyObject 
*_wrap_HtmlPrintout_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9355     PyObject 
*resultobj
; 
9356     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9357     wxString 
*arg2 
= 0 ; 
9358     int arg3 
= (int) wxPAGE_ALL 
; 
9359     bool temp2 
= false ; 
9360     PyObject 
* obj0 
= 0 ; 
9361     PyObject 
* obj1 
= 0 ; 
9362     PyObject 
* obj2 
= 0 ; 
9364         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
9367     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9368     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9369     if (SWIG_arg_fail(1)) SWIG_fail
; 
9371         arg2 
= wxString_in_helper(obj1
); 
9372         if (arg2 
== NULL
) SWIG_fail
; 
9377             arg3 
= (int)(SWIG_As_int(obj2
));  
9378             if (SWIG_arg_fail(3)) SWIG_fail
; 
9382         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9383         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
9385         wxPyEndAllowThreads(__tstate
); 
9386         if (PyErr_Occurred()) SWIG_fail
; 
9388     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9403 static PyObject 
*_wrap_HtmlPrintout_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9404     PyObject 
*resultobj
; 
9405     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9406     wxString 
*arg2 
= 0 ; 
9407     int arg3 
= (int) wxPAGE_ALL 
; 
9408     bool temp2 
= false ; 
9409     PyObject 
* obj0 
= 0 ; 
9410     PyObject 
* obj1 
= 0 ; 
9411     PyObject 
* obj2 
= 0 ; 
9413         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
9416     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlPrintout_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9417     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9418     if (SWIG_arg_fail(1)) SWIG_fail
; 
9420         arg2 
= wxString_in_helper(obj1
); 
9421         if (arg2 
== NULL
) SWIG_fail
; 
9426             arg3 
= (int)(SWIG_As_int(obj2
));  
9427             if (SWIG_arg_fail(3)) SWIG_fail
; 
9431         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9432         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
9434         wxPyEndAllowThreads(__tstate
); 
9435         if (PyErr_Occurred()) SWIG_fail
; 
9437     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9452 static PyObject 
*_wrap_HtmlPrintout_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9453     PyObject 
*resultobj
; 
9454     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9457     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
9458     PyObject 
* obj0 
= 0 ; 
9459     PyObject 
* obj1 
= 0 ; 
9460     PyObject 
* obj2 
= 0 ; 
9461     PyObject 
* obj3 
= 0 ; 
9463         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
9466     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlPrintout_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9467     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9468     if (SWIG_arg_fail(1)) SWIG_fail
; 
9470         wxString
* sptr 
= wxString_in_helper(obj1
); 
9471         if (sptr 
== NULL
) SWIG_fail
; 
9476         wxString
* sptr 
= wxString_in_helper(obj2
); 
9477         if (sptr 
== NULL
) SWIG_fail
; 
9485         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9486         wxHtmlPrintout_SetFonts(arg1
,arg2
,arg3
,arg4
); 
9488         wxPyEndAllowThreads(__tstate
); 
9489         if (PyErr_Occurred()) SWIG_fail
; 
9491     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9498 static PyObject 
*_wrap_HtmlPrintout_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9499     PyObject 
*resultobj
; 
9500     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9501     int arg2 
= (int) -1 ; 
9502     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9503     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9504     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
9505     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
9506     bool temp3 
= false ; 
9507     bool temp4 
= false ; 
9508     PyObject 
* obj0 
= 0 ; 
9509     PyObject 
* obj1 
= 0 ; 
9510     PyObject 
* obj2 
= 0 ; 
9511     PyObject 
* obj3 
= 0 ; 
9513         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
9516     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlPrintout_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
9517     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9518     if (SWIG_arg_fail(1)) SWIG_fail
; 
9521             arg2 
= (int)(SWIG_As_int(obj1
));  
9522             if (SWIG_arg_fail(2)) SWIG_fail
; 
9527             arg3 
= wxString_in_helper(obj2
); 
9528             if (arg3 
== NULL
) SWIG_fail
; 
9534             arg4 
= wxString_in_helper(obj3
); 
9535             if (arg4 
== NULL
) SWIG_fail
; 
9540         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9541         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
9543         wxPyEndAllowThreads(__tstate
); 
9544         if (PyErr_Occurred()) SWIG_fail
; 
9546     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9569 static PyObject 
*_wrap_HtmlPrintout_SetMargins(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9570     PyObject 
*resultobj
; 
9571     wxHtmlPrintout 
*arg1 
= (wxHtmlPrintout 
*) 0 ; 
9572     float arg2 
= (float) 25.2 ; 
9573     float arg3 
= (float) 25.2 ; 
9574     float arg4 
= (float) 25.2 ; 
9575     float arg5 
= (float) 25.2 ; 
9576     float arg6 
= (float) 5 ; 
9577     PyObject 
* obj0 
= 0 ; 
9578     PyObject 
* obj1 
= 0 ; 
9579     PyObject 
* obj2 
= 0 ; 
9580     PyObject 
* obj3 
= 0 ; 
9581     PyObject 
* obj4 
= 0 ; 
9582     PyObject 
* obj5 
= 0 ; 
9584         (char *) "self",(char *) "top",(char *) "bottom",(char *) "left",(char *) "right",(char *) "spaces", NULL 
 
9587     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:HtmlPrintout_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) goto fail
; 
9588     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlPrintout
, SWIG_POINTER_EXCEPTION 
| 0); 
9589     if (SWIG_arg_fail(1)) SWIG_fail
; 
9592             arg2 
= (float)(SWIG_As_float(obj1
));  
9593             if (SWIG_arg_fail(2)) SWIG_fail
; 
9598             arg3 
= (float)(SWIG_As_float(obj2
));  
9599             if (SWIG_arg_fail(3)) SWIG_fail
; 
9604             arg4 
= (float)(SWIG_As_float(obj3
));  
9605             if (SWIG_arg_fail(4)) SWIG_fail
; 
9610             arg5 
= (float)(SWIG_As_float(obj4
));  
9611             if (SWIG_arg_fail(5)) SWIG_fail
; 
9616             arg6 
= (float)(SWIG_As_float(obj5
));  
9617             if (SWIG_arg_fail(6)) SWIG_fail
; 
9621         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9622         (arg1
)->SetMargins(arg2
,arg3
,arg4
,arg5
,arg6
); 
9624         wxPyEndAllowThreads(__tstate
); 
9625         if (PyErr_Occurred()) SWIG_fail
; 
9627     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9634 static PyObject 
*_wrap_HtmlPrintout_AddFilter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9635     PyObject 
*resultobj
; 
9636     wxHtmlFilter 
*arg1 
= (wxHtmlFilter 
*) 0 ; 
9637     PyObject 
* obj0 
= 0 ; 
9639         (char *) "filter", NULL 
 
9642     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlPrintout_AddFilter",kwnames
,&obj0
)) goto fail
; 
9643     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlFilter
, SWIG_POINTER_EXCEPTION 
| 0); 
9644     if (SWIG_arg_fail(1)) SWIG_fail
; 
9646         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9647         wxHtmlPrintout::AddFilter(arg1
); 
9649         wxPyEndAllowThreads(__tstate
); 
9650         if (PyErr_Occurred()) SWIG_fail
; 
9652     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9659 static PyObject 
*_wrap_HtmlPrintout_CleanUpStatics(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9660     PyObject 
*resultobj
; 
9665     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":HtmlPrintout_CleanUpStatics",kwnames
)) goto fail
; 
9667         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9668         wxHtmlPrintout::CleanUpStatics(); 
9670         wxPyEndAllowThreads(__tstate
); 
9671         if (PyErr_Occurred()) SWIG_fail
; 
9673     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9680 static PyObject 
* HtmlPrintout_swigregister(PyObject 
*, PyObject 
*args
) { 
9682     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
9683     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlPrintout
, obj
); 
9685     return Py_BuildValue((char *)""); 
9687 static PyObject 
*_wrap_new_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9688     PyObject 
*resultobj
; 
9689     wxString 
const &arg1_defvalue 
= wxPyHtmlPrintingTitleStr 
; 
9690     wxString 
*arg1 
= (wxString 
*) &arg1_defvalue 
; 
9691     wxWindow 
*arg2 
= (wxWindow 
*) NULL 
; 
9692     wxHtmlEasyPrinting 
*result
; 
9693     bool temp1 
= false ; 
9694     PyObject 
* obj0 
= 0 ; 
9695     PyObject 
* obj1 
= 0 ; 
9697         (char *) "name",(char *) "parentWindow", NULL 
 
9700     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_HtmlEasyPrinting",kwnames
,&obj0
,&obj1
)) goto fail
; 
9703             arg1 
= wxString_in_helper(obj0
); 
9704             if (arg1 
== NULL
) SWIG_fail
; 
9709         SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
9710         if (SWIG_arg_fail(2)) SWIG_fail
; 
9713         if (!wxPyCheckForApp()) SWIG_fail
; 
9714         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9715         result 
= (wxHtmlEasyPrinting 
*)new wxHtmlEasyPrinting((wxString 
const &)*arg1
,arg2
); 
9717         wxPyEndAllowThreads(__tstate
); 
9718         if (PyErr_Occurred()) SWIG_fail
; 
9720     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlEasyPrinting
, 1); 
9735 static PyObject 
*_wrap_delete_HtmlEasyPrinting(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9736     PyObject 
*resultobj
; 
9737     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9738     PyObject 
* obj0 
= 0 ; 
9740         (char *) "self", NULL 
 
9743     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlEasyPrinting",kwnames
,&obj0
)) goto fail
; 
9744     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9745     if (SWIG_arg_fail(1)) SWIG_fail
; 
9747         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9750         wxPyEndAllowThreads(__tstate
); 
9751         if (PyErr_Occurred()) SWIG_fail
; 
9753     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9760 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9761     PyObject 
*resultobj
; 
9762     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9763     wxString 
*arg2 
= 0 ; 
9764     bool temp2 
= false ; 
9765     PyObject 
* obj0 
= 0 ; 
9766     PyObject 
* obj1 
= 0 ; 
9768         (char *) "self",(char *) "htmlfile", NULL 
 
9771     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PreviewFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9772     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9773     if (SWIG_arg_fail(1)) SWIG_fail
; 
9775         arg2 
= wxString_in_helper(obj1
); 
9776         if (arg2 
== NULL
) SWIG_fail
; 
9780         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9781         (arg1
)->PreviewFile((wxString 
const &)*arg2
); 
9783         wxPyEndAllowThreads(__tstate
); 
9784         if (PyErr_Occurred()) SWIG_fail
; 
9786     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9801 static PyObject 
*_wrap_HtmlEasyPrinting_PreviewText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9802     PyObject 
*resultobj
; 
9803     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9804     wxString 
*arg2 
= 0 ; 
9805     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9806     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9807     bool temp2 
= false ; 
9808     bool temp3 
= false ; 
9809     PyObject 
* obj0 
= 0 ; 
9810     PyObject 
* obj1 
= 0 ; 
9811     PyObject 
* obj2 
= 0 ; 
9813         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9816     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PreviewText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9817     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9818     if (SWIG_arg_fail(1)) SWIG_fail
; 
9820         arg2 
= wxString_in_helper(obj1
); 
9821         if (arg2 
== NULL
) SWIG_fail
; 
9826             arg3 
= wxString_in_helper(obj2
); 
9827             if (arg3 
== NULL
) SWIG_fail
; 
9832         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9833         (arg1
)->PreviewText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
9835         wxPyEndAllowThreads(__tstate
); 
9836         if (PyErr_Occurred()) SWIG_fail
; 
9838     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9861 static PyObject 
*_wrap_HtmlEasyPrinting_PrintFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9862     PyObject 
*resultobj
; 
9863     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9864     wxString 
*arg2 
= 0 ; 
9865     bool temp2 
= false ; 
9866     PyObject 
* obj0 
= 0 ; 
9867     PyObject 
* obj1 
= 0 ; 
9869         (char *) "self",(char *) "htmlfile", NULL 
 
9872     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlEasyPrinting_PrintFile",kwnames
,&obj0
,&obj1
)) goto fail
; 
9873     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9874     if (SWIG_arg_fail(1)) SWIG_fail
; 
9876         arg2 
= wxString_in_helper(obj1
); 
9877         if (arg2 
== NULL
) SWIG_fail
; 
9881         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9882         (arg1
)->PrintFile((wxString 
const &)*arg2
); 
9884         wxPyEndAllowThreads(__tstate
); 
9885         if (PyErr_Occurred()) SWIG_fail
; 
9887     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9902 static PyObject 
*_wrap_HtmlEasyPrinting_PrintText(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9903     PyObject 
*resultobj
; 
9904     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9905     wxString 
*arg2 
= 0 ; 
9906     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
9907     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
9908     bool temp2 
= false ; 
9909     bool temp3 
= false ; 
9910     PyObject 
* obj0 
= 0 ; 
9911     PyObject 
* obj1 
= 0 ; 
9912     PyObject 
* obj2 
= 0 ; 
9914         (char *) "self",(char *) "htmltext",(char *) "basepath", NULL 
 
9917     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_PrintText",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
9918     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9919     if (SWIG_arg_fail(1)) SWIG_fail
; 
9921         arg2 
= wxString_in_helper(obj1
); 
9922         if (arg2 
== NULL
) SWIG_fail
; 
9927             arg3 
= wxString_in_helper(obj2
); 
9928             if (arg3 
== NULL
) SWIG_fail
; 
9933         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9934         (arg1
)->PrintText((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
9936         wxPyEndAllowThreads(__tstate
); 
9937         if (PyErr_Occurred()) SWIG_fail
; 
9939     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9962 static PyObject 
*_wrap_HtmlEasyPrinting_PageSetup(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9963     PyObject 
*resultobj
; 
9964     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9965     PyObject 
* obj0 
= 0 ; 
9967         (char *) "self", NULL 
 
9970     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_PageSetup",kwnames
,&obj0
)) goto fail
; 
9971     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
9972     if (SWIG_arg_fail(1)) SWIG_fail
; 
9974         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9975         (arg1
)->PageSetup(); 
9977         wxPyEndAllowThreads(__tstate
); 
9978         if (PyErr_Occurred()) SWIG_fail
; 
9980     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
9987 static PyObject 
*_wrap_HtmlEasyPrinting_SetHeader(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
9988     PyObject 
*resultobj
; 
9989     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
9990     wxString 
*arg2 
= 0 ; 
9991     int arg3 
= (int) wxPAGE_ALL 
; 
9992     bool temp2 
= false ; 
9993     PyObject 
* obj0 
= 0 ; 
9994     PyObject 
* obj1 
= 0 ; 
9995     PyObject 
* obj2 
= 0 ; 
9997         (char *) "self",(char *) "header",(char *) "pg", NULL 
 
10000     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetHeader",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10001     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10002     if (SWIG_arg_fail(1)) SWIG_fail
; 
10004         arg2 
= wxString_in_helper(obj1
); 
10005         if (arg2 
== NULL
) SWIG_fail
; 
10010             arg3 
= (int)(SWIG_As_int(obj2
));  
10011             if (SWIG_arg_fail(3)) SWIG_fail
; 
10015         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10016         (arg1
)->SetHeader((wxString 
const &)*arg2
,arg3
); 
10018         wxPyEndAllowThreads(__tstate
); 
10019         if (PyErr_Occurred()) SWIG_fail
; 
10021     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10036 static PyObject 
*_wrap_HtmlEasyPrinting_SetFooter(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10037     PyObject 
*resultobj
; 
10038     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10039     wxString 
*arg2 
= 0 ; 
10040     int arg3 
= (int) wxPAGE_ALL 
; 
10041     bool temp2 
= false ; 
10042     PyObject 
* obj0 
= 0 ; 
10043     PyObject 
* obj1 
= 0 ; 
10044     PyObject 
* obj2 
= 0 ; 
10045     char *kwnames
[] = { 
10046         (char *) "self",(char *) "footer",(char *) "pg", NULL 
 
10049     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlEasyPrinting_SetFooter",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10050     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10051     if (SWIG_arg_fail(1)) SWIG_fail
; 
10053         arg2 
= wxString_in_helper(obj1
); 
10054         if (arg2 
== NULL
) SWIG_fail
; 
10059             arg3 
= (int)(SWIG_As_int(obj2
));  
10060             if (SWIG_arg_fail(3)) SWIG_fail
; 
10064         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10065         (arg1
)->SetFooter((wxString 
const &)*arg2
,arg3
); 
10067         wxPyEndAllowThreads(__tstate
); 
10068         if (PyErr_Occurred()) SWIG_fail
; 
10070     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10085 static PyObject 
*_wrap_HtmlEasyPrinting_SetFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10086     PyObject 
*resultobj
; 
10087     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10090     PyObject 
*arg4 
= (PyObject 
*) NULL 
; 
10091     PyObject 
* obj0 
= 0 ; 
10092     PyObject 
* obj1 
= 0 ; 
10093     PyObject 
* obj2 
= 0 ; 
10094     PyObject 
* obj3 
= 0 ; 
10095     char *kwnames
[] = { 
10096         (char *) "self",(char *) "normal_face",(char *) "fixed_face",(char *) "sizes", NULL 
 
10099     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|O:HtmlEasyPrinting_SetFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10100     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10101     if (SWIG_arg_fail(1)) SWIG_fail
; 
10103         wxString
* sptr 
= wxString_in_helper(obj1
); 
10104         if (sptr 
== NULL
) SWIG_fail
; 
10109         wxString
* sptr 
= wxString_in_helper(obj2
); 
10110         if (sptr 
== NULL
) SWIG_fail
; 
10118         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10119         wxHtmlEasyPrinting_SetFonts(arg1
,arg2
,arg3
,arg4
); 
10121         wxPyEndAllowThreads(__tstate
); 
10122         if (PyErr_Occurred()) SWIG_fail
; 
10124     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10131 static PyObject 
*_wrap_HtmlEasyPrinting_SetStandardFonts(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10132     PyObject 
*resultobj
; 
10133     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10134     int arg2 
= (int) -1 ; 
10135     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
10136     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
10137     wxString 
const &arg4_defvalue 
= wxPyEmptyString 
; 
10138     wxString 
*arg4 
= (wxString 
*) &arg4_defvalue 
; 
10139     bool temp3 
= false ; 
10140     bool temp4 
= false ; 
10141     PyObject 
* obj0 
= 0 ; 
10142     PyObject 
* obj1 
= 0 ; 
10143     PyObject 
* obj2 
= 0 ; 
10144     PyObject 
* obj3 
= 0 ; 
10145     char *kwnames
[] = { 
10146         (char *) "self",(char *) "size",(char *) "normal_face",(char *) "fixed_face", NULL 
 
10149     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOO:HtmlEasyPrinting_SetStandardFonts",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10150     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10151     if (SWIG_arg_fail(1)) SWIG_fail
; 
10154             arg2 
= (int)(SWIG_As_int(obj1
));  
10155             if (SWIG_arg_fail(2)) SWIG_fail
; 
10160             arg3 
= wxString_in_helper(obj2
); 
10161             if (arg3 
== NULL
) SWIG_fail
; 
10167             arg4 
= wxString_in_helper(obj3
); 
10168             if (arg4 
== NULL
) SWIG_fail
; 
10173         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10174         (arg1
)->SetStandardFonts(arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10176         wxPyEndAllowThreads(__tstate
); 
10177         if (PyErr_Occurred()) SWIG_fail
; 
10179     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10202 static PyObject 
*_wrap_HtmlEasyPrinting_GetPrintData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10203     PyObject 
*resultobj
; 
10204     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10205     wxPrintData 
*result
; 
10206     PyObject 
* obj0 
= 0 ; 
10207     char *kwnames
[] = { 
10208         (char *) "self", NULL 
 
10211     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPrintData",kwnames
,&obj0
)) goto fail
; 
10212     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10213     if (SWIG_arg_fail(1)) SWIG_fail
; 
10215         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10216         result 
= (wxPrintData 
*)(arg1
)->GetPrintData(); 
10218         wxPyEndAllowThreads(__tstate
); 
10219         if (PyErr_Occurred()) SWIG_fail
; 
10221     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPrintData
, 0); 
10228 static PyObject 
*_wrap_HtmlEasyPrinting_GetPageSetupData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10229     PyObject 
*resultobj
; 
10230     wxHtmlEasyPrinting 
*arg1 
= (wxHtmlEasyPrinting 
*) 0 ; 
10231     wxPageSetupDialogData 
*result
; 
10232     PyObject 
* obj0 
= 0 ; 
10233     char *kwnames
[] = { 
10234         (char *) "self", NULL 
 
10237     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlEasyPrinting_GetPageSetupData",kwnames
,&obj0
)) goto fail
; 
10238     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlEasyPrinting
, SWIG_POINTER_EXCEPTION 
| 0); 
10239     if (SWIG_arg_fail(1)) SWIG_fail
; 
10241         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10242         result 
= (wxPageSetupDialogData 
*)(arg1
)->GetPageSetupData(); 
10244         wxPyEndAllowThreads(__tstate
); 
10245         if (PyErr_Occurred()) SWIG_fail
; 
10247     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxPageSetupDialogData
, 0); 
10254 static PyObject 
* HtmlEasyPrinting_swigregister(PyObject 
*, PyObject 
*args
) { 
10256     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10257     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlEasyPrinting
, obj
); 
10259     return Py_BuildValue((char *)""); 
10261 static PyObject 
*_wrap_new_HtmlBookRecord(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10262     PyObject 
*resultobj
; 
10263     wxString 
*arg1 
= 0 ; 
10264     wxString 
*arg2 
= 0 ; 
10265     wxString 
*arg3 
= 0 ; 
10266     wxString 
*arg4 
= 0 ; 
10267     wxHtmlBookRecord 
*result
; 
10268     bool temp1 
= false ; 
10269     bool temp2 
= false ; 
10270     bool temp3 
= false ; 
10271     bool temp4 
= false ; 
10272     PyObject 
* obj0 
= 0 ; 
10273     PyObject 
* obj1 
= 0 ; 
10274     PyObject 
* obj2 
= 0 ; 
10275     PyObject 
* obj3 
= 0 ; 
10276     char *kwnames
[] = { 
10277         (char *) "bookfile",(char *) "basepath",(char *) "title",(char *) "start", NULL 
 
10280     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:new_HtmlBookRecord",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) goto fail
; 
10282         arg1 
= wxString_in_helper(obj0
); 
10283         if (arg1 
== NULL
) SWIG_fail
; 
10287         arg2 
= wxString_in_helper(obj1
); 
10288         if (arg2 
== NULL
) SWIG_fail
; 
10292         arg3 
= wxString_in_helper(obj2
); 
10293         if (arg3 
== NULL
) SWIG_fail
; 
10297         arg4 
= wxString_in_helper(obj3
); 
10298         if (arg4 
== NULL
) SWIG_fail
; 
10302         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10303         result 
= (wxHtmlBookRecord 
*)new wxHtmlBookRecord((wxString 
const &)*arg1
,(wxString 
const &)*arg2
,(wxString 
const &)*arg3
,(wxString 
const &)*arg4
); 
10305         wxPyEndAllowThreads(__tstate
); 
10306         if (PyErr_Occurred()) SWIG_fail
; 
10308     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecord
, 1); 
10347 static PyObject 
*_wrap_HtmlBookRecord_GetBookFile(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10348     PyObject 
*resultobj
; 
10349     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10351     PyObject 
* obj0 
= 0 ; 
10352     char *kwnames
[] = { 
10353         (char *) "self", NULL 
 
10356     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBookFile",kwnames
,&obj0
)) goto fail
; 
10357     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10358     if (SWIG_arg_fail(1)) SWIG_fail
; 
10360         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10361         result 
= (arg1
)->GetBookFile(); 
10363         wxPyEndAllowThreads(__tstate
); 
10364         if (PyErr_Occurred()) SWIG_fail
; 
10368         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10370         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10379 static PyObject 
*_wrap_HtmlBookRecord_GetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10380     PyObject 
*resultobj
; 
10381     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10383     PyObject 
* obj0 
= 0 ; 
10384     char *kwnames
[] = { 
10385         (char *) "self", NULL 
 
10388     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetTitle",kwnames
,&obj0
)) goto fail
; 
10389     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10390     if (SWIG_arg_fail(1)) SWIG_fail
; 
10392         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10393         result 
= (arg1
)->GetTitle(); 
10395         wxPyEndAllowThreads(__tstate
); 
10396         if (PyErr_Occurred()) SWIG_fail
; 
10400         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10402         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10411 static PyObject 
*_wrap_HtmlBookRecord_GetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10412     PyObject 
*resultobj
; 
10413     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10415     PyObject 
* obj0 
= 0 ; 
10416     char *kwnames
[] = { 
10417         (char *) "self", NULL 
 
10420     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetStart",kwnames
,&obj0
)) goto fail
; 
10421     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10422     if (SWIG_arg_fail(1)) SWIG_fail
; 
10424         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10425         result 
= (arg1
)->GetStart(); 
10427         wxPyEndAllowThreads(__tstate
); 
10428         if (PyErr_Occurred()) SWIG_fail
; 
10432         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10434         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10443 static PyObject 
*_wrap_HtmlBookRecord_GetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10444     PyObject 
*resultobj
; 
10445     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10447     PyObject 
* obj0 
= 0 ; 
10448     char *kwnames
[] = { 
10449         (char *) "self", NULL 
 
10452     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetBasePath",kwnames
,&obj0
)) goto fail
; 
10453     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10454     if (SWIG_arg_fail(1)) SWIG_fail
; 
10456         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10457         result 
= (arg1
)->GetBasePath(); 
10459         wxPyEndAllowThreads(__tstate
); 
10460         if (PyErr_Occurred()) SWIG_fail
; 
10464         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10466         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10475 static PyObject 
*_wrap_HtmlBookRecord_SetContentsRange(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10476     PyObject 
*resultobj
; 
10477     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10480     PyObject 
* obj0 
= 0 ; 
10481     PyObject 
* obj1 
= 0 ; 
10482     PyObject 
* obj2 
= 0 ; 
10483     char *kwnames
[] = { 
10484         (char *) "self",(char *) "start",(char *) "end", NULL 
 
10487     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:HtmlBookRecord_SetContentsRange",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
10488     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10489     if (SWIG_arg_fail(1)) SWIG_fail
; 
10491         arg2 
= (int)(SWIG_As_int(obj1
));  
10492         if (SWIG_arg_fail(2)) SWIG_fail
; 
10495         arg3 
= (int)(SWIG_As_int(obj2
));  
10496         if (SWIG_arg_fail(3)) SWIG_fail
; 
10499         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10500         (arg1
)->SetContentsRange(arg2
,arg3
); 
10502         wxPyEndAllowThreads(__tstate
); 
10503         if (PyErr_Occurred()) SWIG_fail
; 
10505     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10512 static PyObject 
*_wrap_HtmlBookRecord_GetContentsStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10513     PyObject 
*resultobj
; 
10514     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10516     PyObject 
* obj0 
= 0 ; 
10517     char *kwnames
[] = { 
10518         (char *) "self", NULL 
 
10521     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsStart",kwnames
,&obj0
)) goto fail
; 
10522     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10523     if (SWIG_arg_fail(1)) SWIG_fail
; 
10525         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10526         result 
= (int)(arg1
)->GetContentsStart(); 
10528         wxPyEndAllowThreads(__tstate
); 
10529         if (PyErr_Occurred()) SWIG_fail
; 
10532         resultobj 
= SWIG_From_int((int)(result
));  
10540 static PyObject 
*_wrap_HtmlBookRecord_GetContentsEnd(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10541     PyObject 
*resultobj
; 
10542     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10544     PyObject 
* obj0 
= 0 ; 
10545     char *kwnames
[] = { 
10546         (char *) "self", NULL 
 
10549     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlBookRecord_GetContentsEnd",kwnames
,&obj0
)) goto fail
; 
10550     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10551     if (SWIG_arg_fail(1)) SWIG_fail
; 
10553         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10554         result 
= (int)(arg1
)->GetContentsEnd(); 
10556         wxPyEndAllowThreads(__tstate
); 
10557         if (PyErr_Occurred()) SWIG_fail
; 
10560         resultobj 
= SWIG_From_int((int)(result
));  
10568 static PyObject 
*_wrap_HtmlBookRecord_SetTitle(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10569     PyObject 
*resultobj
; 
10570     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10571     wxString 
*arg2 
= 0 ; 
10572     bool temp2 
= false ; 
10573     PyObject 
* obj0 
= 0 ; 
10574     PyObject 
* obj1 
= 0 ; 
10575     char *kwnames
[] = { 
10576         (char *) "self",(char *) "title", NULL 
 
10579     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetTitle",kwnames
,&obj0
,&obj1
)) goto fail
; 
10580     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10581     if (SWIG_arg_fail(1)) SWIG_fail
; 
10583         arg2 
= wxString_in_helper(obj1
); 
10584         if (arg2 
== NULL
) SWIG_fail
; 
10588         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10589         (arg1
)->SetTitle((wxString 
const &)*arg2
); 
10591         wxPyEndAllowThreads(__tstate
); 
10592         if (PyErr_Occurred()) SWIG_fail
; 
10594     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10609 static PyObject 
*_wrap_HtmlBookRecord_SetBasePath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10610     PyObject 
*resultobj
; 
10611     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10612     wxString 
*arg2 
= 0 ; 
10613     bool temp2 
= false ; 
10614     PyObject 
* obj0 
= 0 ; 
10615     PyObject 
* obj1 
= 0 ; 
10616     char *kwnames
[] = { 
10617         (char *) "self",(char *) "path", NULL 
 
10620     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetBasePath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10621     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10622     if (SWIG_arg_fail(1)) SWIG_fail
; 
10624         arg2 
= wxString_in_helper(obj1
); 
10625         if (arg2 
== NULL
) SWIG_fail
; 
10629         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10630         (arg1
)->SetBasePath((wxString 
const &)*arg2
); 
10632         wxPyEndAllowThreads(__tstate
); 
10633         if (PyErr_Occurred()) SWIG_fail
; 
10635     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10650 static PyObject 
*_wrap_HtmlBookRecord_SetStart(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10651     PyObject 
*resultobj
; 
10652     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10653     wxString 
*arg2 
= 0 ; 
10654     bool temp2 
= false ; 
10655     PyObject 
* obj0 
= 0 ; 
10656     PyObject 
* obj1 
= 0 ; 
10657     char *kwnames
[] = { 
10658         (char *) "self",(char *) "start", NULL 
 
10661     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_SetStart",kwnames
,&obj0
,&obj1
)) goto fail
; 
10662     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10663     if (SWIG_arg_fail(1)) SWIG_fail
; 
10665         arg2 
= wxString_in_helper(obj1
); 
10666         if (arg2 
== NULL
) SWIG_fail
; 
10670         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10671         (arg1
)->SetStart((wxString 
const &)*arg2
); 
10673         wxPyEndAllowThreads(__tstate
); 
10674         if (PyErr_Occurred()) SWIG_fail
; 
10676     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
10691 static PyObject 
*_wrap_HtmlBookRecord_GetFullPath(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10692     PyObject 
*resultobj
; 
10693     wxHtmlBookRecord 
*arg1 
= (wxHtmlBookRecord 
*) 0 ; 
10694     wxString 
*arg2 
= 0 ; 
10696     bool temp2 
= false ; 
10697     PyObject 
* obj0 
= 0 ; 
10698     PyObject 
* obj1 
= 0 ; 
10699     char *kwnames
[] = { 
10700         (char *) "self",(char *) "page", NULL 
 
10703     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlBookRecord_GetFullPath",kwnames
,&obj0
,&obj1
)) goto fail
; 
10704     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlBookRecord
, SWIG_POINTER_EXCEPTION 
| 0); 
10705     if (SWIG_arg_fail(1)) SWIG_fail
; 
10707         arg2 
= wxString_in_helper(obj1
); 
10708         if (arg2 
== NULL
) SWIG_fail
; 
10712         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10713         result 
= ((wxHtmlBookRecord 
const *)arg1
)->GetFullPath((wxString 
const &)*arg2
); 
10715         wxPyEndAllowThreads(__tstate
); 
10716         if (PyErr_Occurred()) SWIG_fail
; 
10720         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10722         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10739 static PyObject 
* HtmlBookRecord_swigregister(PyObject 
*, PyObject 
*args
) { 
10741     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10742     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlBookRecord
, obj
); 
10744     return Py_BuildValue((char *)""); 
10746 static PyObject 
*_wrap_HtmlContentsItem_GetLevel(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10747     PyObject 
*resultobj
; 
10748     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10750     PyObject 
* obj0 
= 0 ; 
10751     char *kwnames
[] = { 
10752         (char *) "self", NULL 
 
10755     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetLevel",kwnames
,&obj0
)) goto fail
; 
10756     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10757     if (SWIG_arg_fail(1)) SWIG_fail
; 
10759         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10760         result 
= (int)wxHtmlContentsItem_GetLevel(arg1
); 
10762         wxPyEndAllowThreads(__tstate
); 
10763         if (PyErr_Occurred()) SWIG_fail
; 
10766         resultobj 
= SWIG_From_int((int)(result
));  
10774 static PyObject 
*_wrap_HtmlContentsItem_GetID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10775     PyObject 
*resultobj
; 
10776     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10778     PyObject 
* obj0 
= 0 ; 
10779     char *kwnames
[] = { 
10780         (char *) "self", NULL 
 
10783     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetID",kwnames
,&obj0
)) goto fail
; 
10784     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10785     if (SWIG_arg_fail(1)) SWIG_fail
; 
10787         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10788         result 
= (int)wxHtmlContentsItem_GetID(arg1
); 
10790         wxPyEndAllowThreads(__tstate
); 
10791         if (PyErr_Occurred()) SWIG_fail
; 
10794         resultobj 
= SWIG_From_int((int)(result
));  
10802 static PyObject 
*_wrap_HtmlContentsItem_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10803     PyObject 
*resultobj
; 
10804     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10806     PyObject 
* obj0 
= 0 ; 
10807     char *kwnames
[] = { 
10808         (char *) "self", NULL 
 
10811     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetName",kwnames
,&obj0
)) goto fail
; 
10812     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10813     if (SWIG_arg_fail(1)) SWIG_fail
; 
10815         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10816         result 
= wxHtmlContentsItem_GetName(arg1
); 
10818         wxPyEndAllowThreads(__tstate
); 
10819         if (PyErr_Occurred()) SWIG_fail
; 
10823         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10825         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10834 static PyObject 
*_wrap_HtmlContentsItem_GetPage(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10835     PyObject 
*resultobj
; 
10836     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10838     PyObject 
* obj0 
= 0 ; 
10839     char *kwnames
[] = { 
10840         (char *) "self", NULL 
 
10843     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetPage",kwnames
,&obj0
)) goto fail
; 
10844     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10845     if (SWIG_arg_fail(1)) SWIG_fail
; 
10847         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10848         result 
= wxHtmlContentsItem_GetPage(arg1
); 
10850         wxPyEndAllowThreads(__tstate
); 
10851         if (PyErr_Occurred()) SWIG_fail
; 
10855         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10857         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10866 static PyObject 
*_wrap_HtmlContentsItem_GetBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10867     PyObject 
*resultobj
; 
10868     wxHtmlContentsItem 
*arg1 
= (wxHtmlContentsItem 
*) 0 ; 
10869     wxHtmlBookRecord 
*result
; 
10870     PyObject 
* obj0 
= 0 ; 
10871     char *kwnames
[] = { 
10872         (char *) "self", NULL 
 
10875     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlContentsItem_GetBook",kwnames
,&obj0
)) goto fail
; 
10876     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlContentsItem
, SWIG_POINTER_EXCEPTION 
| 0); 
10877     if (SWIG_arg_fail(1)) SWIG_fail
; 
10879         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10880         result 
= (wxHtmlBookRecord 
*)wxHtmlContentsItem_GetBook(arg1
); 
10882         wxPyEndAllowThreads(__tstate
); 
10883         if (PyErr_Occurred()) SWIG_fail
; 
10885     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecord
, 0); 
10892 static PyObject 
* HtmlContentsItem_swigregister(PyObject 
*, PyObject 
*args
) { 
10894     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
10895     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlContentsItem
, obj
); 
10897     return Py_BuildValue((char *)""); 
10899 static PyObject 
*_wrap_HtmlSearchStatus_Search(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10900     PyObject 
*resultobj
; 
10901     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10903     PyObject 
* obj0 
= 0 ; 
10904     char *kwnames
[] = { 
10905         (char *) "self", NULL 
 
10908     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_Search",kwnames
,&obj0
)) goto fail
; 
10909     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10910     if (SWIG_arg_fail(1)) SWIG_fail
; 
10912         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10913         result 
= (bool)(arg1
)->Search(); 
10915         wxPyEndAllowThreads(__tstate
); 
10916         if (PyErr_Occurred()) SWIG_fail
; 
10919         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10927 static PyObject 
*_wrap_HtmlSearchStatus_IsActive(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10928     PyObject 
*resultobj
; 
10929     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10931     PyObject 
* obj0 
= 0 ; 
10932     char *kwnames
[] = { 
10933         (char *) "self", NULL 
 
10936     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_IsActive",kwnames
,&obj0
)) goto fail
; 
10937     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10938     if (SWIG_arg_fail(1)) SWIG_fail
; 
10940         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10941         result 
= (bool)(arg1
)->IsActive(); 
10943         wxPyEndAllowThreads(__tstate
); 
10944         if (PyErr_Occurred()) SWIG_fail
; 
10947         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10955 static PyObject 
*_wrap_HtmlSearchStatus_GetCurIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10956     PyObject 
*resultobj
; 
10957     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10959     PyObject 
* obj0 
= 0 ; 
10960     char *kwnames
[] = { 
10961         (char *) "self", NULL 
 
10964     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetCurIndex",kwnames
,&obj0
)) goto fail
; 
10965     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10966     if (SWIG_arg_fail(1)) SWIG_fail
; 
10968         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10969         result 
= (int)(arg1
)->GetCurIndex(); 
10971         wxPyEndAllowThreads(__tstate
); 
10972         if (PyErr_Occurred()) SWIG_fail
; 
10975         resultobj 
= SWIG_From_int((int)(result
));  
10983 static PyObject 
*_wrap_HtmlSearchStatus_GetMaxIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
10984     PyObject 
*resultobj
; 
10985     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
10987     PyObject 
* obj0 
= 0 ; 
10988     char *kwnames
[] = { 
10989         (char *) "self", NULL 
 
10992     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetMaxIndex",kwnames
,&obj0
)) goto fail
; 
10993     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
10994     if (SWIG_arg_fail(1)) SWIG_fail
; 
10996         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10997         result 
= (int)(arg1
)->GetMaxIndex(); 
10999         wxPyEndAllowThreads(__tstate
); 
11000         if (PyErr_Occurred()) SWIG_fail
; 
11003         resultobj 
= SWIG_From_int((int)(result
));  
11011 static PyObject 
*_wrap_HtmlSearchStatus_GetName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11012     PyObject 
*resultobj
; 
11013     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
11015     PyObject 
* obj0 
= 0 ; 
11016     char *kwnames
[] = { 
11017         (char *) "self", NULL 
 
11020     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetName",kwnames
,&obj0
)) goto fail
; 
11021     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
11022     if (SWIG_arg_fail(1)) SWIG_fail
; 
11024         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11026             wxString 
const &_result_ref 
= (arg1
)->GetName(); 
11027             result 
= (wxString 
*) &_result_ref
; 
11030         wxPyEndAllowThreads(__tstate
); 
11031         if (PyErr_Occurred()) SWIG_fail
; 
11035         resultobj 
= PyUnicode_FromWideChar(result
->c_str(), result
->Len()); 
11037         resultobj 
= PyString_FromStringAndSize(result
->c_str(), result
->Len()); 
11046 static PyObject 
*_wrap_HtmlSearchStatus_GetContentsItem(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11047     PyObject 
*resultobj
; 
11048     wxHtmlSearchStatus 
*arg1 
= (wxHtmlSearchStatus 
*) 0 ; 
11049     wxHtmlContentsItem 
*result
; 
11050     PyObject 
* obj0 
= 0 ; 
11051     char *kwnames
[] = { 
11052         (char *) "self", NULL 
 
11055     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlSearchStatus_GetContentsItem",kwnames
,&obj0
)) goto fail
; 
11056     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlSearchStatus
, SWIG_POINTER_EXCEPTION 
| 0); 
11057     if (SWIG_arg_fail(1)) SWIG_fail
; 
11059         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11060         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetContentsItem(); 
11062         wxPyEndAllowThreads(__tstate
); 
11063         if (PyErr_Occurred()) SWIG_fail
; 
11065     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11072 static PyObject 
* HtmlSearchStatus_swigregister(PyObject 
*, PyObject 
*args
) { 
11074     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11075     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlSearchStatus
, obj
); 
11077     return Py_BuildValue((char *)""); 
11079 static PyObject 
*_wrap_new_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11080     PyObject 
*resultobj
; 
11081     wxHtmlHelpData 
*result
; 
11082     char *kwnames
[] = { 
11086     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)":new_HtmlHelpData",kwnames
)) goto fail
; 
11088         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11089         result 
= (wxHtmlHelpData 
*)new wxHtmlHelpData(); 
11091         wxPyEndAllowThreads(__tstate
); 
11092         if (PyErr_Occurred()) SWIG_fail
; 
11094     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 1); 
11101 static PyObject 
*_wrap_delete_HtmlHelpData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11102     PyObject 
*resultobj
; 
11103     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11104     PyObject 
* obj0 
= 0 ; 
11105     char *kwnames
[] = { 
11106         (char *) "self", NULL 
 
11109     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpData",kwnames
,&obj0
)) goto fail
; 
11110     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11111     if (SWIG_arg_fail(1)) SWIG_fail
; 
11113         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11116         wxPyEndAllowThreads(__tstate
); 
11117         if (PyErr_Occurred()) SWIG_fail
; 
11119     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11126 static PyObject 
*_wrap_HtmlHelpData_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11127     PyObject 
*resultobj
; 
11128     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11129     wxString 
*arg2 
= 0 ; 
11130     bool temp2 
= false ; 
11131     PyObject 
* obj0 
= 0 ; 
11132     PyObject 
* obj1 
= 0 ; 
11133     char *kwnames
[] = { 
11134         (char *) "self",(char *) "path", NULL 
 
11137     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
11138     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11139     if (SWIG_arg_fail(1)) SWIG_fail
; 
11141         arg2 
= wxString_in_helper(obj1
); 
11142         if (arg2 
== NULL
) SWIG_fail
; 
11146         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11147         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
11149         wxPyEndAllowThreads(__tstate
); 
11150         if (PyErr_Occurred()) SWIG_fail
; 
11152     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11167 static PyObject 
*_wrap_HtmlHelpData_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11168     PyObject 
*resultobj
; 
11169     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11170     wxString 
*arg2 
= 0 ; 
11172     bool temp2 
= false ; 
11173     PyObject 
* obj0 
= 0 ; 
11174     PyObject 
* obj1 
= 0 ; 
11175     char *kwnames
[] = { 
11176         (char *) "self",(char *) "book", NULL 
 
11179     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_AddBook",kwnames
,&obj0
,&obj1
)) goto fail
; 
11180     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11181     if (SWIG_arg_fail(1)) SWIG_fail
; 
11183         arg2 
= wxString_in_helper(obj1
); 
11184         if (arg2 
== NULL
) SWIG_fail
; 
11188         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11189         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
); 
11191         wxPyEndAllowThreads(__tstate
); 
11192         if (PyErr_Occurred()) SWIG_fail
; 
11195         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11211 static PyObject 
*_wrap_HtmlHelpData_FindPageByName(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11212     PyObject 
*resultobj
; 
11213     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11214     wxString 
*arg2 
= 0 ; 
11216     bool temp2 
= false ; 
11217     PyObject 
* obj0 
= 0 ; 
11218     PyObject 
* obj1 
= 0 ; 
11219     char *kwnames
[] = { 
11220         (char *) "self",(char *) "page", NULL 
 
11223     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageByName",kwnames
,&obj0
,&obj1
)) goto fail
; 
11224     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11225     if (SWIG_arg_fail(1)) SWIG_fail
; 
11227         arg2 
= wxString_in_helper(obj1
); 
11228         if (arg2 
== NULL
) SWIG_fail
; 
11232         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11233         result 
= (arg1
)->FindPageByName((wxString 
const &)*arg2
); 
11235         wxPyEndAllowThreads(__tstate
); 
11236         if (PyErr_Occurred()) SWIG_fail
; 
11240         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11242         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11259 static PyObject 
*_wrap_HtmlHelpData_FindPageById(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11260     PyObject 
*resultobj
; 
11261     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11264     PyObject 
* obj0 
= 0 ; 
11265     PyObject 
* obj1 
= 0 ; 
11266     char *kwnames
[] = { 
11267         (char *) "self",(char *) "id", NULL 
 
11270     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpData_FindPageById",kwnames
,&obj0
,&obj1
)) goto fail
; 
11271     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11272     if (SWIG_arg_fail(1)) SWIG_fail
; 
11274         arg2 
= (int)(SWIG_As_int(obj1
));  
11275         if (SWIG_arg_fail(2)) SWIG_fail
; 
11278         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11279         result 
= (arg1
)->FindPageById(arg2
); 
11281         wxPyEndAllowThreads(__tstate
); 
11282         if (PyErr_Occurred()) SWIG_fail
; 
11286         resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
11288         resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
11297 static PyObject 
*_wrap_HtmlHelpData_GetBookRecArray(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11298     PyObject 
*resultobj
; 
11299     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11300     wxHtmlBookRecArray 
*result
; 
11301     PyObject 
* obj0 
= 0 ; 
11302     char *kwnames
[] = { 
11303         (char *) "self", NULL 
 
11306     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetBookRecArray",kwnames
,&obj0
)) goto fail
; 
11307     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11308     if (SWIG_arg_fail(1)) SWIG_fail
; 
11310         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11312             wxHtmlBookRecArray 
const &_result_ref 
= (arg1
)->GetBookRecArray(); 
11313             result 
= (wxHtmlBookRecArray 
*) &_result_ref
; 
11316         wxPyEndAllowThreads(__tstate
); 
11317         if (PyErr_Occurred()) SWIG_fail
; 
11319     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlBookRecArray
, 0); 
11326 static PyObject 
*_wrap_HtmlHelpData_GetContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11327     PyObject 
*resultobj
; 
11328     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11329     wxHtmlContentsItem 
*result
; 
11330     PyObject 
* obj0 
= 0 ; 
11331     char *kwnames
[] = { 
11332         (char *) "self", NULL 
 
11335     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetContents",kwnames
,&obj0
)) goto fail
; 
11336     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11337     if (SWIG_arg_fail(1)) SWIG_fail
; 
11339         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11340         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetContents(); 
11342         wxPyEndAllowThreads(__tstate
); 
11343         if (PyErr_Occurred()) SWIG_fail
; 
11345     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11352 static PyObject 
*_wrap_HtmlHelpData_GetContentsCnt(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11353     PyObject 
*resultobj
; 
11354     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11356     PyObject 
* obj0 
= 0 ; 
11357     char *kwnames
[] = { 
11358         (char *) "self", NULL 
 
11361     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetContentsCnt",kwnames
,&obj0
)) goto fail
; 
11362     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11363     if (SWIG_arg_fail(1)) SWIG_fail
; 
11365         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11366         result 
= (int)(arg1
)->GetContentsCnt(); 
11368         wxPyEndAllowThreads(__tstate
); 
11369         if (PyErr_Occurred()) SWIG_fail
; 
11372         resultobj 
= SWIG_From_int((int)(result
));  
11380 static PyObject 
*_wrap_HtmlHelpData_GetIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11381     PyObject 
*resultobj
; 
11382     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11383     wxHtmlContentsItem 
*result
; 
11384     PyObject 
* obj0 
= 0 ; 
11385     char *kwnames
[] = { 
11386         (char *) "self", NULL 
 
11389     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetIndex",kwnames
,&obj0
)) goto fail
; 
11390     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11391     if (SWIG_arg_fail(1)) SWIG_fail
; 
11393         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11394         result 
= (wxHtmlContentsItem 
*)(arg1
)->GetIndex(); 
11396         wxPyEndAllowThreads(__tstate
); 
11397         if (PyErr_Occurred()) SWIG_fail
; 
11399     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlContentsItem
, 0); 
11406 static PyObject 
*_wrap_HtmlHelpData_GetIndexCnt(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11407     PyObject 
*resultobj
; 
11408     wxHtmlHelpData 
*arg1 
= (wxHtmlHelpData 
*) 0 ; 
11410     PyObject 
* obj0 
= 0 ; 
11411     char *kwnames
[] = { 
11412         (char *) "self", NULL 
 
11415     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpData_GetIndexCnt",kwnames
,&obj0
)) goto fail
; 
11416     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11417     if (SWIG_arg_fail(1)) SWIG_fail
; 
11419         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11420         result 
= (int)(arg1
)->GetIndexCnt(); 
11422         wxPyEndAllowThreads(__tstate
); 
11423         if (PyErr_Occurred()) SWIG_fail
; 
11426         resultobj 
= SWIG_From_int((int)(result
));  
11434 static PyObject 
* HtmlHelpData_swigregister(PyObject 
*, PyObject 
*args
) { 
11436     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11437     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpData
, obj
); 
11439     return Py_BuildValue((char *)""); 
11441 static PyObject 
*_wrap_new_HtmlHelpFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11442     PyObject 
*resultobj
; 
11443     wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
11445     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
11446     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11447     int arg4 
= (int) wxHF_DEFAULTSTYLE 
; 
11448     wxHtmlHelpData 
*arg5 
= (wxHtmlHelpData 
*) NULL 
; 
11449     wxHtmlHelpFrame 
*result
; 
11450     bool temp3 
= false ; 
11451     PyObject 
* obj0 
= 0 ; 
11452     PyObject 
* obj1 
= 0 ; 
11453     PyObject 
* obj2 
= 0 ; 
11454     PyObject 
* obj3 
= 0 ; 
11455     PyObject 
* obj4 
= 0 ; 
11456     char *kwnames
[] = { 
11457         (char *) "parent","arg2",(char *) "title",(char *) "style",(char *) "data", NULL 
 
11460     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOO:new_HtmlHelpFrame",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) goto fail
; 
11461     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxWindow
, SWIG_POINTER_EXCEPTION 
| 0); 
11462     if (SWIG_arg_fail(1)) SWIG_fail
; 
11464         arg2 
= (int)(SWIG_As_int(obj1
));  
11465         if (SWIG_arg_fail(2)) SWIG_fail
; 
11469             arg3 
= wxString_in_helper(obj2
); 
11470             if (arg3 
== NULL
) SWIG_fail
; 
11476             arg4 
= (int)(SWIG_As_int(obj3
));  
11477             if (SWIG_arg_fail(4)) SWIG_fail
; 
11481         SWIG_Python_ConvertPtr(obj4
, (void **)&arg5
, SWIGTYPE_p_wxHtmlHelpData
, SWIG_POINTER_EXCEPTION 
| 0); 
11482         if (SWIG_arg_fail(5)) SWIG_fail
; 
11485         if (!wxPyCheckForApp()) SWIG_fail
; 
11486         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11487         result 
= (wxHtmlHelpFrame 
*)new wxHtmlHelpFrame(arg1
,arg2
,(wxString 
const &)*arg3
,arg4
,arg5
); 
11489         wxPyEndAllowThreads(__tstate
); 
11490         if (PyErr_Occurred()) SWIG_fail
; 
11492     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 1); 
11507 static PyObject 
*_wrap_HtmlHelpFrame_GetData(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11508     PyObject 
*resultobj
; 
11509     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11510     wxHtmlHelpData 
*result
; 
11511     PyObject 
* obj0 
= 0 ; 
11512     char *kwnames
[] = { 
11513         (char *) "self", NULL 
 
11516     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_GetData",kwnames
,&obj0
)) goto fail
; 
11517     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11518     if (SWIG_arg_fail(1)) SWIG_fail
; 
11520         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11521         result 
= (wxHtmlHelpData 
*)(arg1
)->GetData(); 
11523         wxPyEndAllowThreads(__tstate
); 
11524         if (PyErr_Occurred()) SWIG_fail
; 
11526     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpData
, 0); 
11533 static PyObject 
*_wrap_HtmlHelpFrame_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11534     PyObject 
*resultobj
; 
11535     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11536     wxString 
*arg2 
= 0 ; 
11537     bool temp2 
= false ; 
11538     PyObject 
* obj0 
= 0 ; 
11539     PyObject 
* obj1 
= 0 ; 
11540     char *kwnames
[] = { 
11541         (char *) "self",(char *) "format", NULL 
 
11544     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
11545     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11546     if (SWIG_arg_fail(1)) SWIG_fail
; 
11548         arg2 
= wxString_in_helper(obj1
); 
11549         if (arg2 
== NULL
) SWIG_fail
; 
11553         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11554         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
11556         wxPyEndAllowThreads(__tstate
); 
11557         if (PyErr_Occurred()) SWIG_fail
; 
11559     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11574 static PyObject 
*_wrap_HtmlHelpFrame_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11575     PyObject 
*resultobj
; 
11576     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11577     wxString 
*arg2 
= 0 ; 
11578     bool temp2 
= false ; 
11579     PyObject 
* obj0 
= 0 ; 
11580     PyObject 
* obj1 
= 0 ; 
11581     char *kwnames
[] = { 
11582         (char *) "self",(char *) "x", NULL 
 
11585     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
11586     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11587     if (SWIG_arg_fail(1)) SWIG_fail
; 
11589         arg2 
= wxString_in_helper(obj1
); 
11590         if (arg2 
== NULL
) SWIG_fail
; 
11594         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11595         (arg1
)->Display((wxString 
const &)*arg2
); 
11597         wxPyEndAllowThreads(__tstate
); 
11598         if (PyErr_Occurred()) SWIG_fail
; 
11600     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11615 static PyObject 
*_wrap_HtmlHelpFrame_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11616     PyObject 
*resultobj
; 
11617     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11619     PyObject 
* obj0 
= 0 ; 
11620     PyObject 
* obj1 
= 0 ; 
11621     char *kwnames
[] = { 
11622         (char *) "self",(char *) "id", NULL 
 
11625     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
11626     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11627     if (SWIG_arg_fail(1)) SWIG_fail
; 
11629         arg2 
= (int)(SWIG_As_int(obj1
));  
11630         if (SWIG_arg_fail(2)) SWIG_fail
; 
11633         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11634         (arg1
)->Display(arg2
); 
11636         wxPyEndAllowThreads(__tstate
); 
11637         if (PyErr_Occurred()) SWIG_fail
; 
11639     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11646 static PyObject 
*_wrap_HtmlHelpFrame_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11647     PyObject 
*resultobj
; 
11648     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11649     PyObject 
* obj0 
= 0 ; 
11650     char *kwnames
[] = { 
11651         (char *) "self", NULL 
 
11654     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_DisplayContents",kwnames
,&obj0
)) goto fail
; 
11655     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11656     if (SWIG_arg_fail(1)) SWIG_fail
; 
11658         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11659         (arg1
)->DisplayContents(); 
11661         wxPyEndAllowThreads(__tstate
); 
11662         if (PyErr_Occurred()) SWIG_fail
; 
11664     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11671 static PyObject 
*_wrap_HtmlHelpFrame_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11672     PyObject 
*resultobj
; 
11673     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11674     PyObject 
* obj0 
= 0 ; 
11675     char *kwnames
[] = { 
11676         (char *) "self", NULL 
 
11679     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpFrame_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
11680     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11681     if (SWIG_arg_fail(1)) SWIG_fail
; 
11683         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11684         (arg1
)->DisplayIndex(); 
11686         wxPyEndAllowThreads(__tstate
); 
11687         if (PyErr_Occurred()) SWIG_fail
; 
11689     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11696 static PyObject 
*_wrap_HtmlHelpFrame_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11697     PyObject 
*resultobj
; 
11698     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11699     wxString 
*arg2 
= 0 ; 
11701     bool temp2 
= false ; 
11702     PyObject 
* obj0 
= 0 ; 
11703     PyObject 
* obj1 
= 0 ; 
11704     char *kwnames
[] = { 
11705         (char *) "self",(char *) "keyword", NULL 
 
11708     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpFrame_KeywordSearch",kwnames
,&obj0
,&obj1
)) goto fail
; 
11709     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11710     if (SWIG_arg_fail(1)) SWIG_fail
; 
11712         arg2 
= wxString_in_helper(obj1
); 
11713         if (arg2 
== NULL
) SWIG_fail
; 
11717         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11718         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
); 
11720         wxPyEndAllowThreads(__tstate
); 
11721         if (PyErr_Occurred()) SWIG_fail
; 
11724         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11740 static PyObject 
*_wrap_HtmlHelpFrame_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11741     PyObject 
*resultobj
; 
11742     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11743     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11744     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
11745     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
11746     bool temp3 
= false ; 
11747     PyObject 
* obj0 
= 0 ; 
11748     PyObject 
* obj1 
= 0 ; 
11749     PyObject 
* obj2 
= 0 ; 
11750     char *kwnames
[] = { 
11751         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
11754     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11755     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11756     if (SWIG_arg_fail(1)) SWIG_fail
; 
11757     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11758     if (SWIG_arg_fail(2)) SWIG_fail
; 
11761             arg3 
= wxString_in_helper(obj2
); 
11762             if (arg3 
== NULL
) SWIG_fail
; 
11767         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11768         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
11770         wxPyEndAllowThreads(__tstate
); 
11771         if (PyErr_Occurred()) SWIG_fail
; 
11773     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11788 static PyObject 
*_wrap_HtmlHelpFrame_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11789     PyObject 
*resultobj
; 
11790     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11791     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11792     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
11793     PyObject 
* obj0 
= 0 ; 
11794     PyObject 
* obj1 
= 0 ; 
11795     PyObject 
* obj2 
= 0 ; 
11796     char *kwnames
[] = { 
11797         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11800     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11801     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11802     if (SWIG_arg_fail(1)) SWIG_fail
; 
11803     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11804     if (SWIG_arg_fail(2)) SWIG_fail
; 
11807             wxString
* sptr 
= wxString_in_helper(obj2
); 
11808             if (sptr 
== NULL
) SWIG_fail
; 
11814         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11815         (arg1
)->ReadCustomization(arg2
,arg3
); 
11817         wxPyEndAllowThreads(__tstate
); 
11818         if (PyErr_Occurred()) SWIG_fail
; 
11820     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11827 static PyObject 
*_wrap_HtmlHelpFrame_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11828     PyObject 
*resultobj
; 
11829     wxHtmlHelpFrame 
*arg1 
= (wxHtmlHelpFrame 
*) 0 ; 
11830     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
11831     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
11832     PyObject 
* obj0 
= 0 ; 
11833     PyObject 
* obj1 
= 0 ; 
11834     PyObject 
* obj2 
= 0 ; 
11835     char *kwnames
[] = { 
11836         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
11839     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpFrame_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
11840     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpFrame
, SWIG_POINTER_EXCEPTION 
| 0); 
11841     if (SWIG_arg_fail(1)) SWIG_fail
; 
11842     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
11843     if (SWIG_arg_fail(2)) SWIG_fail
; 
11846             wxString
* sptr 
= wxString_in_helper(obj2
); 
11847             if (sptr 
== NULL
) SWIG_fail
; 
11853         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11854         (arg1
)->WriteCustomization(arg2
,arg3
); 
11856         wxPyEndAllowThreads(__tstate
); 
11857         if (PyErr_Occurred()) SWIG_fail
; 
11859     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11866 static PyObject 
* HtmlHelpFrame_swigregister(PyObject 
*, PyObject 
*args
) { 
11868     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
11869     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpFrame
, obj
); 
11871     return Py_BuildValue((char *)""); 
11873 static PyObject 
*_wrap_new_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11874     PyObject 
*resultobj
; 
11875     int arg1 
= (int) wxHF_DEFAULTSTYLE 
; 
11876     wxHtmlHelpController 
*result
; 
11877     PyObject 
* obj0 
= 0 ; 
11878     char *kwnames
[] = { 
11879         (char *) "style", NULL 
 
11882     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|O:new_HtmlHelpController",kwnames
,&obj0
)) goto fail
; 
11885             arg1 
= (int)(SWIG_As_int(obj0
));  
11886             if (SWIG_arg_fail(1)) SWIG_fail
; 
11890         if (!wxPyCheckForApp()) SWIG_fail
; 
11891         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11892         result 
= (wxHtmlHelpController 
*)new wxHtmlHelpController(arg1
); 
11894         wxPyEndAllowThreads(__tstate
); 
11895         if (PyErr_Occurred()) SWIG_fail
; 
11897     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpController
, 1); 
11904 static PyObject 
*_wrap_delete_HtmlHelpController(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11905     PyObject 
*resultobj
; 
11906     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11907     PyObject 
* obj0 
= 0 ; 
11908     char *kwnames
[] = { 
11909         (char *) "self", NULL 
 
11912     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:delete_HtmlHelpController",kwnames
,&obj0
)) goto fail
; 
11913     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11914     if (SWIG_arg_fail(1)) SWIG_fail
; 
11916         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11919         wxPyEndAllowThreads(__tstate
); 
11920         if (PyErr_Occurred()) SWIG_fail
; 
11922     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11929 static PyObject 
*_wrap_HtmlHelpController_SetTitleFormat(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11930     PyObject 
*resultobj
; 
11931     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11932     wxString 
*arg2 
= 0 ; 
11933     bool temp2 
= false ; 
11934     PyObject 
* obj0 
= 0 ; 
11935     PyObject 
* obj1 
= 0 ; 
11936     char *kwnames
[] = { 
11937         (char *) "self",(char *) "format", NULL 
 
11940     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTitleFormat",kwnames
,&obj0
,&obj1
)) goto fail
; 
11941     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11942     if (SWIG_arg_fail(1)) SWIG_fail
; 
11944         arg2 
= wxString_in_helper(obj1
); 
11945         if (arg2 
== NULL
) SWIG_fail
; 
11949         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11950         (arg1
)->SetTitleFormat((wxString 
const &)*arg2
); 
11952         wxPyEndAllowThreads(__tstate
); 
11953         if (PyErr_Occurred()) SWIG_fail
; 
11955     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
11970 static PyObject 
*_wrap_HtmlHelpController_SetTempDir(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
11971     PyObject 
*resultobj
; 
11972     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
11973     wxString 
*arg2 
= 0 ; 
11974     bool temp2 
= false ; 
11975     PyObject 
* obj0 
= 0 ; 
11976     PyObject 
* obj1 
= 0 ; 
11977     char *kwnames
[] = { 
11978         (char *) "self",(char *) "path", NULL 
 
11981     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_SetTempDir",kwnames
,&obj0
,&obj1
)) goto fail
; 
11982     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
11983     if (SWIG_arg_fail(1)) SWIG_fail
; 
11985         arg2 
= wxString_in_helper(obj1
); 
11986         if (arg2 
== NULL
) SWIG_fail
; 
11990         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11991         (arg1
)->SetTempDir((wxString 
const &)*arg2
); 
11993         wxPyEndAllowThreads(__tstate
); 
11994         if (PyErr_Occurred()) SWIG_fail
; 
11996     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12011 static PyObject 
*_wrap_HtmlHelpController_AddBook(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12012     PyObject 
*resultobj
; 
12013     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12014     wxString 
*arg2 
= 0 ; 
12015     int arg3 
= (int) false ; 
12017     bool temp2 
= false ; 
12018     PyObject 
* obj0 
= 0 ; 
12019     PyObject 
* obj1 
= 0 ; 
12020     PyObject 
* obj2 
= 0 ; 
12021     char *kwnames
[] = { 
12022         (char *) "self",(char *) "book",(char *) "show_wait_msg", NULL 
 
12025     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_AddBook",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12026     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12027     if (SWIG_arg_fail(1)) SWIG_fail
; 
12029         arg2 
= wxString_in_helper(obj1
); 
12030         if (arg2 
== NULL
) SWIG_fail
; 
12035             arg3 
= (int)(SWIG_As_int(obj2
));  
12036             if (SWIG_arg_fail(3)) SWIG_fail
; 
12040         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12041         result 
= (bool)(arg1
)->AddBook((wxString 
const &)*arg2
,arg3
); 
12043         wxPyEndAllowThreads(__tstate
); 
12044         if (PyErr_Occurred()) SWIG_fail
; 
12047         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12063 static PyObject 
*_wrap_HtmlHelpController_Display(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12064     PyObject 
*resultobj
; 
12065     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12066     wxString 
*arg2 
= 0 ; 
12067     bool temp2 
= false ; 
12068     PyObject 
* obj0 
= 0 ; 
12069     PyObject 
* obj1 
= 0 ; 
12070     char *kwnames
[] = { 
12071         (char *) "self",(char *) "x", NULL 
 
12074     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_Display",kwnames
,&obj0
,&obj1
)) goto fail
; 
12075     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12076     if (SWIG_arg_fail(1)) SWIG_fail
; 
12078         arg2 
= wxString_in_helper(obj1
); 
12079         if (arg2 
== NULL
) SWIG_fail
; 
12083         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12084         (arg1
)->Display((wxString 
const &)*arg2
); 
12086         wxPyEndAllowThreads(__tstate
); 
12087         if (PyErr_Occurred()) SWIG_fail
; 
12089     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12104 static PyObject 
*_wrap_HtmlHelpController_DisplayID(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12105     PyObject 
*resultobj
; 
12106     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12108     PyObject 
* obj0 
= 0 ; 
12109     PyObject 
* obj1 
= 0 ; 
12110     char *kwnames
[] = { 
12111         (char *) "self",(char *) "id", NULL 
 
12114     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_DisplayID",kwnames
,&obj0
,&obj1
)) goto fail
; 
12115     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12116     if (SWIG_arg_fail(1)) SWIG_fail
; 
12118         arg2 
= (int)(SWIG_As_int(obj1
));  
12119         if (SWIG_arg_fail(2)) SWIG_fail
; 
12122         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12123         (arg1
)->Display(arg2
); 
12125         wxPyEndAllowThreads(__tstate
); 
12126         if (PyErr_Occurred()) SWIG_fail
; 
12128     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12135 static PyObject 
*_wrap_HtmlHelpController_DisplayContents(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12136     PyObject 
*resultobj
; 
12137     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12138     PyObject 
* obj0 
= 0 ; 
12139     char *kwnames
[] = { 
12140         (char *) "self", NULL 
 
12143     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayContents",kwnames
,&obj0
)) goto fail
; 
12144     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12145     if (SWIG_arg_fail(1)) SWIG_fail
; 
12147         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12148         (arg1
)->DisplayContents(); 
12150         wxPyEndAllowThreads(__tstate
); 
12151         if (PyErr_Occurred()) SWIG_fail
; 
12153     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12160 static PyObject 
*_wrap_HtmlHelpController_DisplayIndex(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12161     PyObject 
*resultobj
; 
12162     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12163     PyObject 
* obj0 
= 0 ; 
12164     char *kwnames
[] = { 
12165         (char *) "self", NULL 
 
12168     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_DisplayIndex",kwnames
,&obj0
)) goto fail
; 
12169     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12170     if (SWIG_arg_fail(1)) SWIG_fail
; 
12172         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12173         (arg1
)->DisplayIndex(); 
12175         wxPyEndAllowThreads(__tstate
); 
12176         if (PyErr_Occurred()) SWIG_fail
; 
12178     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12185 static PyObject 
*_wrap_HtmlHelpController_KeywordSearch(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12186     PyObject 
*resultobj
; 
12187     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12188     wxString 
*arg2 
= 0 ; 
12190     bool temp2 
= false ; 
12191     PyObject 
* obj0 
= 0 ; 
12192     PyObject 
* obj1 
= 0 ; 
12193     char *kwnames
[] = { 
12194         (char *) "self",(char *) "keyword", NULL 
 
12197     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:HtmlHelpController_KeywordSearch",kwnames
,&obj0
,&obj1
)) goto fail
; 
12198     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12199     if (SWIG_arg_fail(1)) SWIG_fail
; 
12201         arg2 
= wxString_in_helper(obj1
); 
12202         if (arg2 
== NULL
) SWIG_fail
; 
12206         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12207         result 
= (bool)(arg1
)->KeywordSearch((wxString 
const &)*arg2
); 
12209         wxPyEndAllowThreads(__tstate
); 
12210         if (PyErr_Occurred()) SWIG_fail
; 
12213         resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12229 static PyObject 
*_wrap_HtmlHelpController_UseConfig(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12230     PyObject 
*resultobj
; 
12231     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12232     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12233     wxString 
const &arg3_defvalue 
= wxPyEmptyString 
; 
12234     wxString 
*arg3 
= (wxString 
*) &arg3_defvalue 
; 
12235     bool temp3 
= false ; 
12236     PyObject 
* obj0 
= 0 ; 
12237     PyObject 
* obj1 
= 0 ; 
12238     PyObject 
* obj2 
= 0 ; 
12239     char *kwnames
[] = { 
12240         (char *) "self",(char *) "config",(char *) "rootpath", NULL 
 
12243     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_UseConfig",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12244     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12245     if (SWIG_arg_fail(1)) SWIG_fail
; 
12246     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12247     if (SWIG_arg_fail(2)) SWIG_fail
; 
12250             arg3 
= wxString_in_helper(obj2
); 
12251             if (arg3 
== NULL
) SWIG_fail
; 
12256         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12257         (arg1
)->UseConfig(arg2
,(wxString 
const &)*arg3
); 
12259         wxPyEndAllowThreads(__tstate
); 
12260         if (PyErr_Occurred()) SWIG_fail
; 
12262     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12277 static PyObject 
*_wrap_HtmlHelpController_ReadCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12278     PyObject 
*resultobj
; 
12279     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12280     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12281     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
12282     PyObject 
* obj0 
= 0 ; 
12283     PyObject 
* obj1 
= 0 ; 
12284     PyObject 
* obj2 
= 0 ; 
12285     char *kwnames
[] = { 
12286         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
12289     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_ReadCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12290     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12291     if (SWIG_arg_fail(1)) SWIG_fail
; 
12292     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12293     if (SWIG_arg_fail(2)) SWIG_fail
; 
12296             wxString
* sptr 
= wxString_in_helper(obj2
); 
12297             if (sptr 
== NULL
) SWIG_fail
; 
12303         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12304         (arg1
)->ReadCustomization(arg2
,arg3
); 
12306         wxPyEndAllowThreads(__tstate
); 
12307         if (PyErr_Occurred()) SWIG_fail
; 
12309     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12316 static PyObject 
*_wrap_HtmlHelpController_WriteCustomization(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12317     PyObject 
*resultobj
; 
12318     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12319     wxConfigBase 
*arg2 
= (wxConfigBase 
*) 0 ; 
12320     wxString arg3 
= (wxString
) wxPyEmptyString 
; 
12321     PyObject 
* obj0 
= 0 ; 
12322     PyObject 
* obj1 
= 0 ; 
12323     PyObject 
* obj2 
= 0 ; 
12324     char *kwnames
[] = { 
12325         (char *) "self",(char *) "cfg",(char *) "path", NULL 
 
12328     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|O:HtmlHelpController_WriteCustomization",kwnames
,&obj0
,&obj1
,&obj2
)) goto fail
; 
12329     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12330     if (SWIG_arg_fail(1)) SWIG_fail
; 
12331     SWIG_Python_ConvertPtr(obj1
, (void **)&arg2
, SWIGTYPE_p_wxConfigBase
, SWIG_POINTER_EXCEPTION 
| 0); 
12332     if (SWIG_arg_fail(2)) SWIG_fail
; 
12335             wxString
* sptr 
= wxString_in_helper(obj2
); 
12336             if (sptr 
== NULL
) SWIG_fail
; 
12342         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12343         (arg1
)->WriteCustomization(arg2
,arg3
); 
12345         wxPyEndAllowThreads(__tstate
); 
12346         if (PyErr_Occurred()) SWIG_fail
; 
12348     Py_INCREF(Py_None
); resultobj 
= Py_None
; 
12355 static PyObject 
*_wrap_HtmlHelpController_GetFrame(PyObject 
*, PyObject 
*args
, PyObject 
*kwargs
) { 
12356     PyObject 
*resultobj
; 
12357     wxHtmlHelpController 
*arg1 
= (wxHtmlHelpController 
*) 0 ; 
12358     wxHtmlHelpFrame 
*result
; 
12359     PyObject 
* obj0 
= 0 ; 
12360     char *kwnames
[] = { 
12361         (char *) "self", NULL 
 
12364     if(!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O:HtmlHelpController_GetFrame",kwnames
,&obj0
)) goto fail
; 
12365     SWIG_Python_ConvertPtr(obj0
, (void **)&arg1
, SWIGTYPE_p_wxHtmlHelpController
, SWIG_POINTER_EXCEPTION 
| 0); 
12366     if (SWIG_arg_fail(1)) SWIG_fail
; 
12368         PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12369         result 
= (wxHtmlHelpFrame 
*)(arg1
)->GetFrame(); 
12371         wxPyEndAllowThreads(__tstate
); 
12372         if (PyErr_Occurred()) SWIG_fail
; 
12374     resultobj 
= SWIG_NewPointerObj((void*)(result
), SWIGTYPE_p_wxHtmlHelpFrame
, 0); 
12381 static PyObject 
* HtmlHelpController_swigregister(PyObject 
*, PyObject 
*args
) { 
12383     if (!PyArg_ParseTuple(args
,(char*)"O", &obj
)) return NULL
; 
12384     SWIG_TypeClientData(SWIGTYPE_p_wxHtmlHelpController
, obj
); 
12386     return Py_BuildValue((char *)""); 
12388 static PyMethodDef SwigMethods
[] = { 
12389          { (char *)"new_HtmlLinkInfo", (PyCFunction
) _wrap_new_HtmlLinkInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12390          { (char *)"HtmlLinkInfo_GetHref", (PyCFunction
) _wrap_HtmlLinkInfo_GetHref
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12391          { (char *)"HtmlLinkInfo_GetTarget", (PyCFunction
) _wrap_HtmlLinkInfo_GetTarget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12392          { (char *)"HtmlLinkInfo_GetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_GetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12393          { (char *)"HtmlLinkInfo_GetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_GetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12394          { (char *)"HtmlLinkInfo_SetEvent", (PyCFunction
) _wrap_HtmlLinkInfo_SetEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12395          { (char *)"HtmlLinkInfo_SetHtmlCell", (PyCFunction
) _wrap_HtmlLinkInfo_SetHtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12396          { (char *)"HtmlLinkInfo_swigregister", HtmlLinkInfo_swigregister
, METH_VARARGS
, NULL
}, 
12397          { (char *)"HtmlTag_GetName", (PyCFunction
) _wrap_HtmlTag_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12398          { (char *)"HtmlTag_HasParam", (PyCFunction
) _wrap_HtmlTag_HasParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12399          { (char *)"HtmlTag_GetParam", (PyCFunction
) _wrap_HtmlTag_GetParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12400          { (char *)"HtmlTag_GetAllParams", (PyCFunction
) _wrap_HtmlTag_GetAllParams
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12401          { (char *)"HtmlTag_HasEnding", (PyCFunction
) _wrap_HtmlTag_HasEnding
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12402          { (char *)"HtmlTag_GetBeginPos", (PyCFunction
) _wrap_HtmlTag_GetBeginPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12403          { (char *)"HtmlTag_GetEndPos1", (PyCFunction
) _wrap_HtmlTag_GetEndPos1
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12404          { (char *)"HtmlTag_GetEndPos2", (PyCFunction
) _wrap_HtmlTag_GetEndPos2
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12405          { (char *)"HtmlTag_swigregister", HtmlTag_swigregister
, METH_VARARGS
, NULL
}, 
12406          { (char *)"HtmlParser_SetFS", (PyCFunction
) _wrap_HtmlParser_SetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12407          { (char *)"HtmlParser_GetFS", (PyCFunction
) _wrap_HtmlParser_GetFS
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12408          { (char *)"HtmlParser_Parse", (PyCFunction
) _wrap_HtmlParser_Parse
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12409          { (char *)"HtmlParser_InitParser", (PyCFunction
) _wrap_HtmlParser_InitParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12410          { (char *)"HtmlParser_DoneParser", (PyCFunction
) _wrap_HtmlParser_DoneParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12411          { (char *)"HtmlParser_DoParsing", (PyCFunction
) _wrap_HtmlParser_DoParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12412          { (char *)"HtmlParser_StopParsing", (PyCFunction
) _wrap_HtmlParser_StopParsing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12413          { (char *)"HtmlParser_AddTagHandler", (PyCFunction
) _wrap_HtmlParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12414          { (char *)"HtmlParser_GetSource", (PyCFunction
) _wrap_HtmlParser_GetSource
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12415          { (char *)"HtmlParser_PushTagHandler", (PyCFunction
) _wrap_HtmlParser_PushTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12416          { (char *)"HtmlParser_PopTagHandler", (PyCFunction
) _wrap_HtmlParser_PopTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12417          { (char *)"HtmlParser_swigregister", HtmlParser_swigregister
, METH_VARARGS
, NULL
}, 
12418          { (char *)"new_HtmlWinParser", (PyCFunction
) _wrap_new_HtmlWinParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12419          { (char *)"HtmlWinParser_SetDC", (PyCFunction
) _wrap_HtmlWinParser_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12420          { (char *)"HtmlWinParser_GetDC", (PyCFunction
) _wrap_HtmlWinParser_GetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12421          { (char *)"HtmlWinParser_GetCharHeight", (PyCFunction
) _wrap_HtmlWinParser_GetCharHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12422          { (char *)"HtmlWinParser_GetCharWidth", (PyCFunction
) _wrap_HtmlWinParser_GetCharWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12423          { (char *)"HtmlWinParser_GetWindow", (PyCFunction
) _wrap_HtmlWinParser_GetWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12424          { (char *)"HtmlWinParser_SetFonts", (PyCFunction
) _wrap_HtmlWinParser_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12425          { (char *)"HtmlWinParser_SetStandardFonts", (PyCFunction
) _wrap_HtmlWinParser_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12426          { (char *)"HtmlWinParser_GetContainer", (PyCFunction
) _wrap_HtmlWinParser_GetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12427          { (char *)"HtmlWinParser_OpenContainer", (PyCFunction
) _wrap_HtmlWinParser_OpenContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12428          { (char *)"HtmlWinParser_SetContainer", (PyCFunction
) _wrap_HtmlWinParser_SetContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12429          { (char *)"HtmlWinParser_CloseContainer", (PyCFunction
) _wrap_HtmlWinParser_CloseContainer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12430          { (char *)"HtmlWinParser_GetFontSize", (PyCFunction
) _wrap_HtmlWinParser_GetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12431          { (char *)"HtmlWinParser_SetFontSize", (PyCFunction
) _wrap_HtmlWinParser_SetFontSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12432          { (char *)"HtmlWinParser_GetFontBold", (PyCFunction
) _wrap_HtmlWinParser_GetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12433          { (char *)"HtmlWinParser_SetFontBold", (PyCFunction
) _wrap_HtmlWinParser_SetFontBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12434          { (char *)"HtmlWinParser_GetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_GetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12435          { (char *)"HtmlWinParser_SetFontItalic", (PyCFunction
) _wrap_HtmlWinParser_SetFontItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12436          { (char *)"HtmlWinParser_GetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_GetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12437          { (char *)"HtmlWinParser_SetFontUnderlined", (PyCFunction
) _wrap_HtmlWinParser_SetFontUnderlined
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12438          { (char *)"HtmlWinParser_GetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_GetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12439          { (char *)"HtmlWinParser_SetFontFixed", (PyCFunction
) _wrap_HtmlWinParser_SetFontFixed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12440          { (char *)"HtmlWinParser_GetAlign", (PyCFunction
) _wrap_HtmlWinParser_GetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12441          { (char *)"HtmlWinParser_SetAlign", (PyCFunction
) _wrap_HtmlWinParser_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12442          { (char *)"HtmlWinParser_GetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_GetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12443          { (char *)"HtmlWinParser_SetLinkColor", (PyCFunction
) _wrap_HtmlWinParser_SetLinkColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12444          { (char *)"HtmlWinParser_GetActualColor", (PyCFunction
) _wrap_HtmlWinParser_GetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12445          { (char *)"HtmlWinParser_SetActualColor", (PyCFunction
) _wrap_HtmlWinParser_SetActualColor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12446          { (char *)"HtmlWinParser_SetLink", (PyCFunction
) _wrap_HtmlWinParser_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12447          { (char *)"HtmlWinParser_CreateCurrentFont", (PyCFunction
) _wrap_HtmlWinParser_CreateCurrentFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12448          { (char *)"HtmlWinParser_GetLink", (PyCFunction
) _wrap_HtmlWinParser_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12449          { (char *)"HtmlWinParser_swigregister", HtmlWinParser_swigregister
, METH_VARARGS
, NULL
}, 
12450          { (char *)"new_HtmlTagHandler", (PyCFunction
) _wrap_new_HtmlTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12451          { (char *)"HtmlTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12452          { (char *)"HtmlTagHandler_SetParser", (PyCFunction
) _wrap_HtmlTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12453          { (char *)"HtmlTagHandler_GetParser", (PyCFunction
) _wrap_HtmlTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12454          { (char *)"HtmlTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12455          { (char *)"HtmlTagHandler_swigregister", HtmlTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
12456          { (char *)"new_HtmlWinTagHandler", (PyCFunction
) _wrap_new_HtmlWinTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12457          { (char *)"HtmlWinTagHandler__setCallbackInfo", (PyCFunction
) _wrap_HtmlWinTagHandler__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12458          { (char *)"HtmlWinTagHandler_SetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_SetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12459          { (char *)"HtmlWinTagHandler_GetParser", (PyCFunction
) _wrap_HtmlWinTagHandler_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12460          { (char *)"HtmlWinTagHandler_ParseInner", (PyCFunction
) _wrap_HtmlWinTagHandler_ParseInner
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12461          { (char *)"HtmlWinTagHandler_swigregister", HtmlWinTagHandler_swigregister
, METH_VARARGS
, NULL
}, 
12462          { (char *)"HtmlWinParser_AddTagHandler", (PyCFunction
) _wrap_HtmlWinParser_AddTagHandler
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12463          { (char *)"new_HtmlSelection", (PyCFunction
) _wrap_new_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12464          { (char *)"delete_HtmlSelection", (PyCFunction
) _wrap_delete_HtmlSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12465          { (char *)"HtmlSelection_Set", (PyCFunction
) _wrap_HtmlSelection_Set
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12466          { (char *)"HtmlSelection_SetCells", (PyCFunction
) _wrap_HtmlSelection_SetCells
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12467          { (char *)"HtmlSelection_GetFromCell", (PyCFunction
) _wrap_HtmlSelection_GetFromCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12468          { (char *)"HtmlSelection_GetToCell", (PyCFunction
) _wrap_HtmlSelection_GetToCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12469          { (char *)"HtmlSelection_GetFromPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12470          { (char *)"HtmlSelection_GetToPos", (PyCFunction
) _wrap_HtmlSelection_GetToPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12471          { (char *)"HtmlSelection_GetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12472          { (char *)"HtmlSelection_GetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_GetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12473          { (char *)"HtmlSelection_SetFromPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetFromPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12474          { (char *)"HtmlSelection_SetToPrivPos", (PyCFunction
) _wrap_HtmlSelection_SetToPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12475          { (char *)"HtmlSelection_ClearPrivPos", (PyCFunction
) _wrap_HtmlSelection_ClearPrivPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12476          { (char *)"HtmlSelection_IsEmpty", (PyCFunction
) _wrap_HtmlSelection_IsEmpty
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12477          { (char *)"HtmlSelection_swigregister", HtmlSelection_swigregister
, METH_VARARGS
, NULL
}, 
12478          { (char *)"new_HtmlRenderingState", (PyCFunction
) _wrap_new_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12479          { (char *)"delete_HtmlRenderingState", (PyCFunction
) _wrap_delete_HtmlRenderingState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12480          { (char *)"HtmlRenderingState_SetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_SetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12481          { (char *)"HtmlRenderingState_GetSelectionState", (PyCFunction
) _wrap_HtmlRenderingState_GetSelectionState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12482          { (char *)"HtmlRenderingState_SetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12483          { (char *)"HtmlRenderingState_GetFgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetFgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12484          { (char *)"HtmlRenderingState_SetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_SetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12485          { (char *)"HtmlRenderingState_GetBgColour", (PyCFunction
) _wrap_HtmlRenderingState_GetBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12486          { (char *)"HtmlRenderingState_swigregister", HtmlRenderingState_swigregister
, METH_VARARGS
, NULL
}, 
12487          { (char *)"HtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12488          { (char *)"HtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_HtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12489          { (char *)"HtmlRenderingStyle_swigregister", HtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
12490          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12491          { (char *)"DefaultHtmlRenderingStyle_GetSelectedTextBgColour", (PyCFunction
) _wrap_DefaultHtmlRenderingStyle_GetSelectedTextBgColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12492          { (char *)"DefaultHtmlRenderingStyle_swigregister", DefaultHtmlRenderingStyle_swigregister
, METH_VARARGS
, NULL
}, 
12493          { (char *)"new_HtmlRenderingInfo", (PyCFunction
) _wrap_new_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12494          { (char *)"delete_HtmlRenderingInfo", (PyCFunction
) _wrap_delete_HtmlRenderingInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12495          { (char *)"HtmlRenderingInfo_SetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12496          { (char *)"HtmlRenderingInfo_GetSelection", (PyCFunction
) _wrap_HtmlRenderingInfo_GetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12497          { (char *)"HtmlRenderingInfo_SetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_SetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12498          { (char *)"HtmlRenderingInfo_GetStyle", (PyCFunction
) _wrap_HtmlRenderingInfo_GetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12499          { (char *)"HtmlRenderingInfo_GetState", (PyCFunction
) _wrap_HtmlRenderingInfo_GetState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12500          { (char *)"HtmlRenderingInfo_swigregister", HtmlRenderingInfo_swigregister
, METH_VARARGS
, NULL
}, 
12501          { (char *)"new_HtmlCell", (PyCFunction
) _wrap_new_HtmlCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12502          { (char *)"HtmlCell_GetPosX", (PyCFunction
) _wrap_HtmlCell_GetPosX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12503          { (char *)"HtmlCell_GetPosY", (PyCFunction
) _wrap_HtmlCell_GetPosY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12504          { (char *)"HtmlCell_GetWidth", (PyCFunction
) _wrap_HtmlCell_GetWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12505          { (char *)"HtmlCell_GetHeight", (PyCFunction
) _wrap_HtmlCell_GetHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12506          { (char *)"HtmlCell_GetDescent", (PyCFunction
) _wrap_HtmlCell_GetDescent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12507          { (char *)"HtmlCell_GetMaxTotalWidth", (PyCFunction
) _wrap_HtmlCell_GetMaxTotalWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12508          { (char *)"HtmlCell_GetId", (PyCFunction
) _wrap_HtmlCell_GetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12509          { (char *)"HtmlCell_SetId", (PyCFunction
) _wrap_HtmlCell_SetId
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12510          { (char *)"HtmlCell_GetLink", (PyCFunction
) _wrap_HtmlCell_GetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12511          { (char *)"HtmlCell_GetNext", (PyCFunction
) _wrap_HtmlCell_GetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12512          { (char *)"HtmlCell_GetParent", (PyCFunction
) _wrap_HtmlCell_GetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12513          { (char *)"HtmlCell_GetFirstChild", (PyCFunction
) _wrap_HtmlCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12514          { (char *)"HtmlCell_GetCursor", (PyCFunction
) _wrap_HtmlCell_GetCursor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12515          { (char *)"HtmlCell_IsFormattingCell", (PyCFunction
) _wrap_HtmlCell_IsFormattingCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12516          { (char *)"HtmlCell_SetLink", (PyCFunction
) _wrap_HtmlCell_SetLink
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12517          { (char *)"HtmlCell_SetNext", (PyCFunction
) _wrap_HtmlCell_SetNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12518          { (char *)"HtmlCell_SetParent", (PyCFunction
) _wrap_HtmlCell_SetParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12519          { (char *)"HtmlCell_SetPos", (PyCFunction
) _wrap_HtmlCell_SetPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12520          { (char *)"HtmlCell_Layout", (PyCFunction
) _wrap_HtmlCell_Layout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12521          { (char *)"HtmlCell_Draw", (PyCFunction
) _wrap_HtmlCell_Draw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12522          { (char *)"HtmlCell_DrawInvisible", (PyCFunction
) _wrap_HtmlCell_DrawInvisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12523          { (char *)"HtmlCell_Find", (PyCFunction
) _wrap_HtmlCell_Find
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12524          { (char *)"HtmlCell_AdjustPagebreak", (PyCFunction
) _wrap_HtmlCell_AdjustPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12525          { (char *)"HtmlCell_SetCanLiveOnPagebreak", (PyCFunction
) _wrap_HtmlCell_SetCanLiveOnPagebreak
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12526          { (char *)"HtmlCell_IsLinebreakAllowed", (PyCFunction
) _wrap_HtmlCell_IsLinebreakAllowed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12527          { (char *)"HtmlCell_IsTerminalCell", (PyCFunction
) _wrap_HtmlCell_IsTerminalCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12528          { (char *)"HtmlCell_FindCellByPos", (PyCFunction
) _wrap_HtmlCell_FindCellByPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12529          { (char *)"HtmlCell_GetAbsPos", (PyCFunction
) _wrap_HtmlCell_GetAbsPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12530          { (char *)"HtmlCell_GetFirstTerminal", (PyCFunction
) _wrap_HtmlCell_GetFirstTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12531          { (char *)"HtmlCell_GetLastTerminal", (PyCFunction
) _wrap_HtmlCell_GetLastTerminal
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12532          { (char *)"HtmlCell_GetDepth", (PyCFunction
) _wrap_HtmlCell_GetDepth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12533          { (char *)"HtmlCell_IsBefore", (PyCFunction
) _wrap_HtmlCell_IsBefore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12534          { (char *)"HtmlCell_ConvertToText", (PyCFunction
) _wrap_HtmlCell_ConvertToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12535          { (char *)"HtmlCell_swigregister", HtmlCell_swigregister
, METH_VARARGS
, NULL
}, 
12536          { (char *)"new_HtmlWordCell", (PyCFunction
) _wrap_new_HtmlWordCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12537          { (char *)"HtmlWordCell_swigregister", HtmlWordCell_swigregister
, METH_VARARGS
, NULL
}, 
12538          { (char *)"new_HtmlContainerCell", (PyCFunction
) _wrap_new_HtmlContainerCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12539          { (char *)"HtmlContainerCell_InsertCell", (PyCFunction
) _wrap_HtmlContainerCell_InsertCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12540          { (char *)"HtmlContainerCell_SetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12541          { (char *)"HtmlContainerCell_GetAlignHor", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignHor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12542          { (char *)"HtmlContainerCell_SetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_SetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12543          { (char *)"HtmlContainerCell_GetAlignVer", (PyCFunction
) _wrap_HtmlContainerCell_GetAlignVer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12544          { (char *)"HtmlContainerCell_SetIndent", (PyCFunction
) _wrap_HtmlContainerCell_SetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12545          { (char *)"HtmlContainerCell_GetIndent", (PyCFunction
) _wrap_HtmlContainerCell_GetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12546          { (char *)"HtmlContainerCell_GetIndentUnits", (PyCFunction
) _wrap_HtmlContainerCell_GetIndentUnits
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12547          { (char *)"HtmlContainerCell_SetAlign", (PyCFunction
) _wrap_HtmlContainerCell_SetAlign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12548          { (char *)"HtmlContainerCell_SetWidthFloat", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12549          { (char *)"HtmlContainerCell_SetWidthFloatFromTag", (PyCFunction
) _wrap_HtmlContainerCell_SetWidthFloatFromTag
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12550          { (char *)"HtmlContainerCell_SetMinHeight", (PyCFunction
) _wrap_HtmlContainerCell_SetMinHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12551          { (char *)"HtmlContainerCell_SetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_SetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12552          { (char *)"HtmlContainerCell_GetBackgroundColour", (PyCFunction
) _wrap_HtmlContainerCell_GetBackgroundColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12553          { (char *)"HtmlContainerCell_SetBorder", (PyCFunction
) _wrap_HtmlContainerCell_SetBorder
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12554          { (char *)"HtmlContainerCell_GetFirstChild", (PyCFunction
) _wrap_HtmlContainerCell_GetFirstChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12555          { (char *)"HtmlContainerCell_swigregister", HtmlContainerCell_swigregister
, METH_VARARGS
, NULL
}, 
12556          { (char *)"new_HtmlColourCell", (PyCFunction
) _wrap_new_HtmlColourCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12557          { (char *)"HtmlColourCell_swigregister", HtmlColourCell_swigregister
, METH_VARARGS
, NULL
}, 
12558          { (char *)"new_HtmlFontCell", (PyCFunction
) _wrap_new_HtmlFontCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12559          { (char *)"HtmlFontCell_swigregister", HtmlFontCell_swigregister
, METH_VARARGS
, NULL
}, 
12560          { (char *)"new_HtmlWidgetCell", (PyCFunction
) _wrap_new_HtmlWidgetCell
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12561          { (char *)"HtmlWidgetCell_swigregister", HtmlWidgetCell_swigregister
, METH_VARARGS
, NULL
}, 
12562          { (char *)"new_HtmlFilter", (PyCFunction
) _wrap_new_HtmlFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12563          { (char *)"HtmlFilter__setCallbackInfo", (PyCFunction
) _wrap_HtmlFilter__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12564          { (char *)"HtmlFilter_swigregister", HtmlFilter_swigregister
, METH_VARARGS
, NULL
}, 
12565          { (char *)"new_HtmlWindow", (PyCFunction
) _wrap_new_HtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12566          { (char *)"new_PreHtmlWindow", (PyCFunction
) _wrap_new_PreHtmlWindow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12567          { (char *)"HtmlWindow_Create", (PyCFunction
) _wrap_HtmlWindow_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12568          { (char *)"HtmlWindow__setCallbackInfo", (PyCFunction
) _wrap_HtmlWindow__setCallbackInfo
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12569          { (char *)"HtmlWindow_SetPage", (PyCFunction
) _wrap_HtmlWindow_SetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12570          { (char *)"HtmlWindow_LoadPage", (PyCFunction
) _wrap_HtmlWindow_LoadPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12571          { (char *)"HtmlWindow_LoadFile", (PyCFunction
) _wrap_HtmlWindow_LoadFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12572          { (char *)"HtmlWindow_AppendToPage", (PyCFunction
) _wrap_HtmlWindow_AppendToPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12573          { (char *)"HtmlWindow_GetOpenedPage", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12574          { (char *)"HtmlWindow_GetOpenedAnchor", (PyCFunction
) _wrap_HtmlWindow_GetOpenedAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12575          { (char *)"HtmlWindow_GetOpenedPageTitle", (PyCFunction
) _wrap_HtmlWindow_GetOpenedPageTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12576          { (char *)"HtmlWindow_SetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_SetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12577          { (char *)"HtmlWindow_GetRelatedFrame", (PyCFunction
) _wrap_HtmlWindow_GetRelatedFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12578          { (char *)"HtmlWindow_SetRelatedStatusBar", (PyCFunction
) _wrap_HtmlWindow_SetRelatedStatusBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12579          { (char *)"HtmlWindow_SetFonts", (PyCFunction
) _wrap_HtmlWindow_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12580          { (char *)"HtmlWindow_SetStandardFonts", (PyCFunction
) _wrap_HtmlWindow_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12581          { (char *)"HtmlWindow_SetTitle", (PyCFunction
) _wrap_HtmlWindow_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12582          { (char *)"HtmlWindow_SetBorders", (PyCFunction
) _wrap_HtmlWindow_SetBorders
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12583          { (char *)"HtmlWindow_ReadCustomization", (PyCFunction
) _wrap_HtmlWindow_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12584          { (char *)"HtmlWindow_WriteCustomization", (PyCFunction
) _wrap_HtmlWindow_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12585          { (char *)"HtmlWindow_HistoryBack", (PyCFunction
) _wrap_HtmlWindow_HistoryBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12586          { (char *)"HtmlWindow_HistoryForward", (PyCFunction
) _wrap_HtmlWindow_HistoryForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12587          { (char *)"HtmlWindow_HistoryCanBack", (PyCFunction
) _wrap_HtmlWindow_HistoryCanBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12588          { (char *)"HtmlWindow_HistoryCanForward", (PyCFunction
) _wrap_HtmlWindow_HistoryCanForward
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12589          { (char *)"HtmlWindow_HistoryClear", (PyCFunction
) _wrap_HtmlWindow_HistoryClear
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12590          { (char *)"HtmlWindow_GetInternalRepresentation", (PyCFunction
) _wrap_HtmlWindow_GetInternalRepresentation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12591          { (char *)"HtmlWindow_GetParser", (PyCFunction
) _wrap_HtmlWindow_GetParser
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12592          { (char *)"HtmlWindow_ScrollToAnchor", (PyCFunction
) _wrap_HtmlWindow_ScrollToAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12593          { (char *)"HtmlWindow_HasAnchor", (PyCFunction
) _wrap_HtmlWindow_HasAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12594          { (char *)"HtmlWindow_AddFilter", (PyCFunction
) _wrap_HtmlWindow_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12595          { (char *)"HtmlWindow_SelectWord", (PyCFunction
) _wrap_HtmlWindow_SelectWord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12596          { (char *)"HtmlWindow_SelectLine", (PyCFunction
) _wrap_HtmlWindow_SelectLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12597          { (char *)"HtmlWindow_SelectAll", (PyCFunction
) _wrap_HtmlWindow_SelectAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12598          { (char *)"HtmlWindow_SelectionToText", (PyCFunction
) _wrap_HtmlWindow_SelectionToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12599          { (char *)"HtmlWindow_ToText", (PyCFunction
) _wrap_HtmlWindow_ToText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12600          { (char *)"HtmlWindow_base_OnLinkClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnLinkClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12601          { (char *)"HtmlWindow_base_OnSetTitle", (PyCFunction
) _wrap_HtmlWindow_base_OnSetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12602          { (char *)"HtmlWindow_base_OnCellMouseHover", (PyCFunction
) _wrap_HtmlWindow_base_OnCellMouseHover
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12603          { (char *)"HtmlWindow_base_OnCellClicked", (PyCFunction
) _wrap_HtmlWindow_base_OnCellClicked
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12604          { (char *)"HtmlWindow_GetClassDefaultAttributes", (PyCFunction
) _wrap_HtmlWindow_GetClassDefaultAttributes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12605          { (char *)"HtmlWindow_swigregister", HtmlWindow_swigregister
, METH_VARARGS
, NULL
}, 
12606          { (char *)"new_HtmlDCRenderer", (PyCFunction
) _wrap_new_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12607          { (char *)"delete_HtmlDCRenderer", (PyCFunction
) _wrap_delete_HtmlDCRenderer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12608          { (char *)"HtmlDCRenderer_SetDC", (PyCFunction
) _wrap_HtmlDCRenderer_SetDC
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12609          { (char *)"HtmlDCRenderer_SetSize", (PyCFunction
) _wrap_HtmlDCRenderer_SetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12610          { (char *)"HtmlDCRenderer_SetHtmlText", (PyCFunction
) _wrap_HtmlDCRenderer_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12611          { (char *)"HtmlDCRenderer_SetFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12612          { (char *)"HtmlDCRenderer_SetStandardFonts", (PyCFunction
) _wrap_HtmlDCRenderer_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12613          { (char *)"HtmlDCRenderer_Render", (PyCFunction
) _wrap_HtmlDCRenderer_Render
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12614          { (char *)"HtmlDCRenderer_GetTotalHeight", (PyCFunction
) _wrap_HtmlDCRenderer_GetTotalHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12615          { (char *)"HtmlDCRenderer_swigregister", HtmlDCRenderer_swigregister
, METH_VARARGS
, NULL
}, 
12616          { (char *)"new_HtmlPrintout", (PyCFunction
) _wrap_new_HtmlPrintout
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12617          { (char *)"HtmlPrintout_SetHtmlText", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12618          { (char *)"HtmlPrintout_SetHtmlFile", (PyCFunction
) _wrap_HtmlPrintout_SetHtmlFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12619          { (char *)"HtmlPrintout_SetHeader", (PyCFunction
) _wrap_HtmlPrintout_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12620          { (char *)"HtmlPrintout_SetFooter", (PyCFunction
) _wrap_HtmlPrintout_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12621          { (char *)"HtmlPrintout_SetFonts", (PyCFunction
) _wrap_HtmlPrintout_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12622          { (char *)"HtmlPrintout_SetStandardFonts", (PyCFunction
) _wrap_HtmlPrintout_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12623          { (char *)"HtmlPrintout_SetMargins", (PyCFunction
) _wrap_HtmlPrintout_SetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12624          { (char *)"HtmlPrintout_AddFilter", (PyCFunction
) _wrap_HtmlPrintout_AddFilter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12625          { (char *)"HtmlPrintout_CleanUpStatics", (PyCFunction
) _wrap_HtmlPrintout_CleanUpStatics
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12626          { (char *)"HtmlPrintout_swigregister", HtmlPrintout_swigregister
, METH_VARARGS
, NULL
}, 
12627          { (char *)"new_HtmlEasyPrinting", (PyCFunction
) _wrap_new_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12628          { (char *)"delete_HtmlEasyPrinting", (PyCFunction
) _wrap_delete_HtmlEasyPrinting
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12629          { (char *)"HtmlEasyPrinting_PreviewFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12630          { (char *)"HtmlEasyPrinting_PreviewText", (PyCFunction
) _wrap_HtmlEasyPrinting_PreviewText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12631          { (char *)"HtmlEasyPrinting_PrintFile", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12632          { (char *)"HtmlEasyPrinting_PrintText", (PyCFunction
) _wrap_HtmlEasyPrinting_PrintText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12633          { (char *)"HtmlEasyPrinting_PageSetup", (PyCFunction
) _wrap_HtmlEasyPrinting_PageSetup
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12634          { (char *)"HtmlEasyPrinting_SetHeader", (PyCFunction
) _wrap_HtmlEasyPrinting_SetHeader
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12635          { (char *)"HtmlEasyPrinting_SetFooter", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFooter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12636          { (char *)"HtmlEasyPrinting_SetFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12637          { (char *)"HtmlEasyPrinting_SetStandardFonts", (PyCFunction
) _wrap_HtmlEasyPrinting_SetStandardFonts
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12638          { (char *)"HtmlEasyPrinting_GetPrintData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPrintData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12639          { (char *)"HtmlEasyPrinting_GetPageSetupData", (PyCFunction
) _wrap_HtmlEasyPrinting_GetPageSetupData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12640          { (char *)"HtmlEasyPrinting_swigregister", HtmlEasyPrinting_swigregister
, METH_VARARGS
, NULL
}, 
12641          { (char *)"new_HtmlBookRecord", (PyCFunction
) _wrap_new_HtmlBookRecord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12642          { (char *)"HtmlBookRecord_GetBookFile", (PyCFunction
) _wrap_HtmlBookRecord_GetBookFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12643          { (char *)"HtmlBookRecord_GetTitle", (PyCFunction
) _wrap_HtmlBookRecord_GetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12644          { (char *)"HtmlBookRecord_GetStart", (PyCFunction
) _wrap_HtmlBookRecord_GetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12645          { (char *)"HtmlBookRecord_GetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_GetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12646          { (char *)"HtmlBookRecord_SetContentsRange", (PyCFunction
) _wrap_HtmlBookRecord_SetContentsRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12647          { (char *)"HtmlBookRecord_GetContentsStart", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12648          { (char *)"HtmlBookRecord_GetContentsEnd", (PyCFunction
) _wrap_HtmlBookRecord_GetContentsEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12649          { (char *)"HtmlBookRecord_SetTitle", (PyCFunction
) _wrap_HtmlBookRecord_SetTitle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12650          { (char *)"HtmlBookRecord_SetBasePath", (PyCFunction
) _wrap_HtmlBookRecord_SetBasePath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12651          { (char *)"HtmlBookRecord_SetStart", (PyCFunction
) _wrap_HtmlBookRecord_SetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12652          { (char *)"HtmlBookRecord_GetFullPath", (PyCFunction
) _wrap_HtmlBookRecord_GetFullPath
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12653          { (char *)"HtmlBookRecord_swigregister", HtmlBookRecord_swigregister
, METH_VARARGS
, NULL
}, 
12654          { (char *)"HtmlContentsItem_GetLevel", (PyCFunction
) _wrap_HtmlContentsItem_GetLevel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12655          { (char *)"HtmlContentsItem_GetID", (PyCFunction
) _wrap_HtmlContentsItem_GetID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12656          { (char *)"HtmlContentsItem_GetName", (PyCFunction
) _wrap_HtmlContentsItem_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12657          { (char *)"HtmlContentsItem_GetPage", (PyCFunction
) _wrap_HtmlContentsItem_GetPage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12658          { (char *)"HtmlContentsItem_GetBook", (PyCFunction
) _wrap_HtmlContentsItem_GetBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12659          { (char *)"HtmlContentsItem_swigregister", HtmlContentsItem_swigregister
, METH_VARARGS
, NULL
}, 
12660          { (char *)"HtmlSearchStatus_Search", (PyCFunction
) _wrap_HtmlSearchStatus_Search
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12661          { (char *)"HtmlSearchStatus_IsActive", (PyCFunction
) _wrap_HtmlSearchStatus_IsActive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12662          { (char *)"HtmlSearchStatus_GetCurIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetCurIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12663          { (char *)"HtmlSearchStatus_GetMaxIndex", (PyCFunction
) _wrap_HtmlSearchStatus_GetMaxIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12664          { (char *)"HtmlSearchStatus_GetName", (PyCFunction
) _wrap_HtmlSearchStatus_GetName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12665          { (char *)"HtmlSearchStatus_GetContentsItem", (PyCFunction
) _wrap_HtmlSearchStatus_GetContentsItem
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12666          { (char *)"HtmlSearchStatus_swigregister", HtmlSearchStatus_swigregister
, METH_VARARGS
, NULL
}, 
12667          { (char *)"new_HtmlHelpData", (PyCFunction
) _wrap_new_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12668          { (char *)"delete_HtmlHelpData", (PyCFunction
) _wrap_delete_HtmlHelpData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12669          { (char *)"HtmlHelpData_SetTempDir", (PyCFunction
) _wrap_HtmlHelpData_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12670          { (char *)"HtmlHelpData_AddBook", (PyCFunction
) _wrap_HtmlHelpData_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12671          { (char *)"HtmlHelpData_FindPageByName", (PyCFunction
) _wrap_HtmlHelpData_FindPageByName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12672          { (char *)"HtmlHelpData_FindPageById", (PyCFunction
) _wrap_HtmlHelpData_FindPageById
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12673          { (char *)"HtmlHelpData_GetBookRecArray", (PyCFunction
) _wrap_HtmlHelpData_GetBookRecArray
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12674          { (char *)"HtmlHelpData_GetContents", (PyCFunction
) _wrap_HtmlHelpData_GetContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12675          { (char *)"HtmlHelpData_GetContentsCnt", (PyCFunction
) _wrap_HtmlHelpData_GetContentsCnt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12676          { (char *)"HtmlHelpData_GetIndex", (PyCFunction
) _wrap_HtmlHelpData_GetIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12677          { (char *)"HtmlHelpData_GetIndexCnt", (PyCFunction
) _wrap_HtmlHelpData_GetIndexCnt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12678          { (char *)"HtmlHelpData_swigregister", HtmlHelpData_swigregister
, METH_VARARGS
, NULL
}, 
12679          { (char *)"new_HtmlHelpFrame", (PyCFunction
) _wrap_new_HtmlHelpFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12680          { (char *)"HtmlHelpFrame_GetData", (PyCFunction
) _wrap_HtmlHelpFrame_GetData
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12681          { (char *)"HtmlHelpFrame_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpFrame_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12682          { (char *)"HtmlHelpFrame_Display", (PyCFunction
) _wrap_HtmlHelpFrame_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12683          { (char *)"HtmlHelpFrame_DisplayID", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12684          { (char *)"HtmlHelpFrame_DisplayContents", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12685          { (char *)"HtmlHelpFrame_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpFrame_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12686          { (char *)"HtmlHelpFrame_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpFrame_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12687          { (char *)"HtmlHelpFrame_UseConfig", (PyCFunction
) _wrap_HtmlHelpFrame_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12688          { (char *)"HtmlHelpFrame_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpFrame_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12689          { (char *)"HtmlHelpFrame_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpFrame_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12690          { (char *)"HtmlHelpFrame_swigregister", HtmlHelpFrame_swigregister
, METH_VARARGS
, NULL
}, 
12691          { (char *)"new_HtmlHelpController", (PyCFunction
) _wrap_new_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12692          { (char *)"delete_HtmlHelpController", (PyCFunction
) _wrap_delete_HtmlHelpController
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12693          { (char *)"HtmlHelpController_SetTitleFormat", (PyCFunction
) _wrap_HtmlHelpController_SetTitleFormat
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12694          { (char *)"HtmlHelpController_SetTempDir", (PyCFunction
) _wrap_HtmlHelpController_SetTempDir
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12695          { (char *)"HtmlHelpController_AddBook", (PyCFunction
) _wrap_HtmlHelpController_AddBook
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12696          { (char *)"HtmlHelpController_Display", (PyCFunction
) _wrap_HtmlHelpController_Display
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12697          { (char *)"HtmlHelpController_DisplayID", (PyCFunction
) _wrap_HtmlHelpController_DisplayID
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12698          { (char *)"HtmlHelpController_DisplayContents", (PyCFunction
) _wrap_HtmlHelpController_DisplayContents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12699          { (char *)"HtmlHelpController_DisplayIndex", (PyCFunction
) _wrap_HtmlHelpController_DisplayIndex
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12700          { (char *)"HtmlHelpController_KeywordSearch", (PyCFunction
) _wrap_HtmlHelpController_KeywordSearch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12701          { (char *)"HtmlHelpController_UseConfig", (PyCFunction
) _wrap_HtmlHelpController_UseConfig
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12702          { (char *)"HtmlHelpController_ReadCustomization", (PyCFunction
) _wrap_HtmlHelpController_ReadCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12703          { (char *)"HtmlHelpController_WriteCustomization", (PyCFunction
) _wrap_HtmlHelpController_WriteCustomization
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12704          { (char *)"HtmlHelpController_GetFrame", (PyCFunction
) _wrap_HtmlHelpController_GetFrame
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
12705          { (char *)"HtmlHelpController_swigregister", HtmlHelpController_swigregister
, METH_VARARGS
, NULL
}, 
12706          { NULL
, NULL
, 0, NULL 
} 
12710 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
12712 static void *_p_wxDefaultHtmlRenderingStyleTo_p_wxHtmlRenderingStyle(void *x
) { 
12713     return (void *)((wxHtmlRenderingStyle 
*)  ((wxDefaultHtmlRenderingStyle 
*) x
)); 
12715 static void *_p_wxHtmlWinParserTo_p_wxHtmlParser(void *x
) { 
12716     return (void *)((wxHtmlParser 
*)  ((wxHtmlWinParser 
*) x
)); 
12718 static void *_p_wxScrolledWindowTo_p_wxPanel(void *x
) { 
12719     return (void *)((wxPanel 
*)  ((wxScrolledWindow 
*) x
)); 
12721 static void *_p_wxPyVScrolledWindowTo_p_wxPanel(void *x
) { 
12722     return (void *)((wxPanel 
*)  ((wxPyVScrolledWindow 
*) x
)); 
12724 static void *_p_wxPyScrolledWindowTo_p_wxPanel(void *x
) { 
12725     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
12727 static void *_p_wxPyHtmlWindowTo_p_wxPanel(void *x
) { 
12728     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
12730 static void *_p_wxPyVListBoxTo_p_wxPanel(void *x
) { 
12731     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
12733 static void *_p_wxPyHtmlListBoxTo_p_wxPanel(void *x
) { 
12734     return (void *)((wxPanel 
*) (wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
12736 static void *_p_wxPyPanelTo_p_wxPanel(void *x
) { 
12737     return (void *)((wxPanel 
*)  ((wxPyPanel 
*) x
)); 
12739 static void *_p_wxPreviewCanvasTo_p_wxPanel(void *x
) { 
12740     return (void *)((wxPanel 
*) (wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
12742 static void *_p_wxPreviewControlBarTo_p_wxPanel(void *x
) { 
12743     return (void *)((wxPanel 
*)  ((wxPreviewControlBar 
*) x
)); 
12745 static void *_p_wxPyPreviewControlBarTo_p_wxPanel(void *x
) { 
12746     return (void *)((wxPanel 
*) (wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
12748 static void *_p_wxPyScrolledWindowTo_p_wxScrolledWindow(void *x
) { 
12749     return (void *)((wxScrolledWindow 
*)  ((wxPyScrolledWindow 
*) x
)); 
12751 static void *_p_wxPyHtmlWindowTo_p_wxScrolledWindow(void *x
) { 
12752     return (void *)((wxScrolledWindow 
*)  ((wxPyHtmlWindow 
*) x
)); 
12754 static void *_p_wxPreviewCanvasTo_p_wxScrolledWindow(void *x
) { 
12755     return (void *)((wxScrolledWindow 
*)  ((wxPreviewCanvas 
*) x
)); 
12757 static void *_p_wxSplashScreenTo_p_wxWindow(void *x
) { 
12758     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
12760 static void *_p_wxMiniFrameTo_p_wxWindow(void *x
) { 
12761     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
12763 static void *_p_wxPyPanelTo_p_wxWindow(void *x
) { 
12764     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyPanel 
*) x
)); 
12766 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
12767     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
12769 static void *_p_wxFindReplaceDialogTo_p_wxWindow(void *x
) { 
12770     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
12772 static void *_p_wxProgressDialogTo_p_wxWindow(void *x
) { 
12773     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
12775 static void *_p_wxMessageDialogTo_p_wxWindow(void *x
) { 
12776     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
12778 static void *_p_wxPasswordEntryDialogTo_p_wxWindow(void *x
) { 
12779     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
12781 static void *_p_wxTextEntryDialogTo_p_wxWindow(void *x
) { 
12782     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
12784 static void *_p_wxSingleChoiceDialogTo_p_wxWindow(void *x
) { 
12785     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
12787 static void *_p_wxMultiChoiceDialogTo_p_wxWindow(void *x
) { 
12788     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
12790 static void *_p_wxFileDialogTo_p_wxWindow(void *x
) { 
12791     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
12793 static void *_p_wxPanelTo_p_wxWindow(void *x
) { 
12794     return (void *)((wxWindow 
*)  ((wxPanel 
*) x
)); 
12796 static void *_p_wxStatusBarTo_p_wxWindow(void *x
) { 
12797     return (void *)((wxWindow 
*)  ((wxStatusBar 
*) x
)); 
12799 static void *_p_wxPyVScrolledWindowTo_p_wxWindow(void *x
) { 
12800     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
12802 static void *_p_wxTipWindowTo_p_wxWindow(void *x
) { 
12803     return (void *)((wxWindow 
*) (wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
12805 static void *_p_wxPyPopupTransientWindowTo_p_wxWindow(void *x
) { 
12806     return (void *)((wxWindow 
*) (wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
12808 static void *_p_wxPopupWindowTo_p_wxWindow(void *x
) { 
12809     return (void *)((wxWindow 
*)  ((wxPopupWindow 
*) x
)); 
12811 static void *_p_wxSashLayoutWindowTo_p_wxWindow(void *x
) { 
12812     return (void *)((wxWindow 
*) (wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
12814 static void *_p_wxScrolledWindowTo_p_wxWindow(void *x
) { 
12815     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
12817 static void *_p_wxTopLevelWindowTo_p_wxWindow(void *x
) { 
12818     return (void *)((wxWindow 
*)  ((wxTopLevelWindow 
*) x
)); 
12820 static void *_p_wxSplashScreenWindowTo_p_wxWindow(void *x
) { 
12821     return (void *)((wxWindow 
*)  ((wxSplashScreenWindow 
*) x
)); 
12823 static void *_p_wxSplitterWindowTo_p_wxWindow(void *x
) { 
12824     return (void *)((wxWindow 
*)  ((wxSplitterWindow 
*) x
)); 
12826 static void *_p_wxSashWindowTo_p_wxWindow(void *x
) { 
12827     return (void *)((wxWindow 
*)  ((wxSashWindow 
*) x
)); 
12829 static void *_p_wxMDIClientWindowTo_p_wxWindow(void *x
) { 
12830     return (void *)((wxWindow 
*)  ((wxMDIClientWindow 
*) x
)); 
12832 static void *_p_wxPyScrolledWindowTo_p_wxWindow(void *x
) { 
12833     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
12835 static void *_p_wxPyHtmlWindowTo_p_wxWindow(void *x
) { 
12836     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
12838 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
12839     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
12841 static void *_p_wxPreviewFrameTo_p_wxWindow(void *x
) { 
12842     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12844 static void *_p_wxPyPreviewFrameTo_p_wxWindow(void *x
) { 
12845     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12847 static void *_p_wxMDIChildFrameTo_p_wxWindow(void *x
) { 
12848     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
12850 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
12851     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
12853 static void *_p_wxPyWindowTo_p_wxWindow(void *x
) { 
12854     return (void *)((wxWindow 
*)  ((wxPyWindow 
*) x
)); 
12856 static void *_p_wxPreviewCanvasTo_p_wxWindow(void *x
) { 
12857     return (void *)((wxWindow 
*) (wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
12859 static void *_p_wxPyHtmlListBoxTo_p_wxWindow(void *x
) { 
12860     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
12862 static void *_p_wxPyVListBoxTo_p_wxWindow(void *x
) { 
12863     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
12865 static void *_p_wxPreviewControlBarTo_p_wxWindow(void *x
) { 
12866     return (void *)((wxWindow 
*) (wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
12868 static void *_p_wxPyPreviewControlBarTo_p_wxWindow(void *x
) { 
12869     return (void *)((wxWindow 
*) (wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
12871 static void *_p_wxHtmlHelpFrameTo_p_wxWindow(void *x
) { 
12872     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
12874 static void *_p_wxFrameTo_p_wxWindow(void *x
) { 
12875     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
12877 static void *_p_wxFontDialogTo_p_wxWindow(void *x
) { 
12878     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
12880 static void *_p_wxDirDialogTo_p_wxWindow(void *x
) { 
12881     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
12883 static void *_p_wxColourDialogTo_p_wxWindow(void *x
) { 
12884     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
12886 static void *_p_wxDialogTo_p_wxWindow(void *x
) { 
12887     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
12889 static void *_p_wxMDIParentFrameTo_p_wxWindow(void *x
) { 
12890     return (void *)((wxWindow 
*) (wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
12892 static void *_p_wxFrameTo_p_wxTopLevelWindow(void *x
) { 
12893     return (void *)((wxTopLevelWindow 
*)  ((wxFrame 
*) x
)); 
12895 static void *_p_wxMiniFrameTo_p_wxTopLevelWindow(void *x
) { 
12896     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMiniFrame 
*) x
)); 
12898 static void *_p_wxFontDialogTo_p_wxTopLevelWindow(void *x
) { 
12899     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFontDialog 
*) x
)); 
12901 static void *_p_wxDirDialogTo_p_wxTopLevelWindow(void *x
) { 
12902     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxDirDialog 
*) x
)); 
12904 static void *_p_wxColourDialogTo_p_wxTopLevelWindow(void *x
) { 
12905     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxColourDialog 
*) x
)); 
12907 static void *_p_wxDialogTo_p_wxTopLevelWindow(void *x
) { 
12908     return (void *)((wxTopLevelWindow 
*)  ((wxDialog 
*) x
)); 
12910 static void *_p_wxSplashScreenTo_p_wxTopLevelWindow(void *x
) { 
12911     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxSplashScreen 
*) x
)); 
12913 static void *_p_wxMDIParentFrameTo_p_wxTopLevelWindow(void *x
) { 
12914     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
12916 static void *_p_wxMDIChildFrameTo_p_wxTopLevelWindow(void *x
) { 
12917     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
12919 static void *_p_wxProgressDialogTo_p_wxTopLevelWindow(void *x
) { 
12920     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxProgressDialog 
*) x
)); 
12922 static void *_p_wxMessageDialogTo_p_wxTopLevelWindow(void *x
) { 
12923     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMessageDialog 
*) x
)); 
12925 static void *_p_wxPasswordEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
12926     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
12928 static void *_p_wxTextEntryDialogTo_p_wxTopLevelWindow(void *x
) { 
12929     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
12931 static void *_p_wxSingleChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
12932     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
12934 static void *_p_wxMultiChoiceDialogTo_p_wxTopLevelWindow(void *x
) { 
12935     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
12937 static void *_p_wxFileDialogTo_p_wxTopLevelWindow(void *x
) { 
12938     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFileDialog 
*) x
)); 
12940 static void *_p_wxFindReplaceDialogTo_p_wxTopLevelWindow(void *x
) { 
12941     return (void *)((wxTopLevelWindow 
*) (wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
12943 static void *_p_wxHtmlHelpFrameTo_p_wxTopLevelWindow(void *x
) { 
12944     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
12946 static void *_p_wxPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
12947     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12949 static void *_p_wxPyPreviewFrameTo_p_wxTopLevelWindow(void *x
) { 
12950     return (void *)((wxTopLevelWindow 
*) (wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12952 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
12953     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
12955 static void *_p_wxQueryLayoutInfoEventTo_p_wxObject(void *x
) { 
12956     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryLayoutInfoEvent 
*) x
)); 
12958 static void *_p_wxPreviewFrameTo_p_wxObject(void *x
) { 
12959     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
12961 static void *_p_wxPyPreviewFrameTo_p_wxObject(void *x
) { 
12962     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
12964 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
12965     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
12967 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
12968     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
12970 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
12971     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
12973 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
12974     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
12976 static void *_p_wxHtmlLinkInfoTo_p_wxObject(void *x
) { 
12977     return (void *)((wxObject 
*)  ((wxHtmlLinkInfo 
*) x
)); 
12979 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
12980     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
12982 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
12983     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
12985 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
12986     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
12988 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
12989     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
12991 static void *_p_wxHtmlFontCellTo_p_wxObject(void *x
) { 
12992     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlFontCell 
*) x
)); 
12994 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
12995     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
12997 static void *_p_wxPyPanelTo_p_wxObject(void *x
) { 
12998     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
13000 static void *_p_wxEventTo_p_wxObject(void *x
) { 
13001     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
13003 static void *_p_wxFontDataTo_p_wxObject(void *x
) { 
13004     return (void *)((wxObject 
*)  ((wxFontData 
*) x
)); 
13006 static void *_p_wxPrintDataTo_p_wxObject(void *x
) { 
13007     return (void *)((wxObject 
*)  ((wxPrintData 
*) x
)); 
13009 static void *_p_wxHtmlTagTo_p_wxObject(void *x
) { 
13010     return (void *)((wxObject 
*)  ((wxHtmlTag 
*) x
)); 
13012 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
13013     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
13015 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
13016     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
13018 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
13019     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
13021 static void *_p_wxLayoutAlgorithmTo_p_wxObject(void *x
) { 
13022     return (void *)((wxObject 
*)  ((wxLayoutAlgorithm 
*) x
)); 
13024 static void *_p_wxPyTaskBarIconTo_p_wxObject(void *x
) { 
13025     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTaskBarIcon 
*) x
)); 
13027 static void *_p_wxFindDialogEventTo_p_wxObject(void *x
) { 
13028     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxFindDialogEvent 
*) x
)); 
13030 static void *_p_wxHtmlHelpFrameTo_p_wxObject(void *x
) { 
13031     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
13033 static void *_p_wxHtmlCellTo_p_wxObject(void *x
) { 
13034     return (void *)((wxObject 
*)  ((wxHtmlCell 
*) x
)); 
13036 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
13037     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
13039 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
13040     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
13042 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
13043     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
13045 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
13046     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
13048 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
13049     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
13051 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
13052     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
13054 static void *_p_wxPreviewCanvasTo_p_wxObject(void *x
) { 
13055     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
13057 static void *_p_wxControlTo_p_wxObject(void *x
) { 
13058     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
13060 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
13061     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
13063 static void *_p_wxSplitterEventTo_p_wxObject(void *x
) { 
13064     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*)(wxNotifyEvent 
*) ((wxSplitterEvent 
*) x
)); 
13066 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
13067     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
13069 static void *_p_wxHtmlWidgetCellTo_p_wxObject(void *x
) { 
13070     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWidgetCell 
*) x
)); 
13072 static void *_p_wxFindReplaceDataTo_p_wxObject(void *x
) { 
13073     return (void *)((wxObject 
*)  ((wxFindReplaceData 
*) x
)); 
13075 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
13076     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
13078 static void *_p_wxHtmlColourCellTo_p_wxObject(void *x
) { 
13079     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlColourCell 
*) x
)); 
13081 static void *_p_wxMDIChildFrameTo_p_wxObject(void *x
) { 
13082     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
13084 static void *_p_wxColourDataTo_p_wxObject(void *x
) { 
13085     return (void *)((wxObject 
*)  ((wxColourData 
*) x
)); 
13087 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
13088     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
13090 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
13091     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
13093 static void *_p_wxPyWindowTo_p_wxObject(void *x
) { 
13094     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPyWindow 
*) x
)); 
13096 static void *_p_wxSplashScreenTo_p_wxObject(void *x
) { 
13097     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
13099 static void *_p_wxFileDialogTo_p_wxObject(void *x
) { 
13100     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
13102 static void *_p_wxMultiChoiceDialogTo_p_wxObject(void *x
) { 
13103     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
13105 static void *_p_wxSingleChoiceDialogTo_p_wxObject(void *x
) { 
13106     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
13108 static void *_p_wxTextEntryDialogTo_p_wxObject(void *x
) { 
13109     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
13111 static void *_p_wxPasswordEntryDialogTo_p_wxObject(void *x
) { 
13112     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
13114 static void *_p_wxMessageDialogTo_p_wxObject(void *x
) { 
13115     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
13117 static void *_p_wxProgressDialogTo_p_wxObject(void *x
) { 
13118     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
13120 static void *_p_wxFindReplaceDialogTo_p_wxObject(void *x
) { 
13121     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
13123 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
13124     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
13126 static void *_p_wxPrinterTo_p_wxObject(void *x
) { 
13127     return (void *)((wxObject 
*)  ((wxPrinter 
*) x
)); 
13129 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
13130     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
13132 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
13133     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
13135 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
13136     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
13138 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
13139     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
13141 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
13142     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
13144 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
13145     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
13147 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
13148     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
13150 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
13151     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
13153 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
13154     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
13156 static void *_p_wxPyHtmlFilterTo_p_wxObject(void *x
) { 
13157     return (void *)((wxObject 
*)  ((wxPyHtmlFilter 
*) x
)); 
13159 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
13160     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
13162 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
13163     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
13165 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
13166     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
13168 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
13169     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
13171 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
13172     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
13174 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
13175     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
13177 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
13178     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
13180 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
13181     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
13183 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
13184     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
13186 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
13187     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
13189 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
13190     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
13192 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
13193     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
13195 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
13196     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
13198 static void *_p_wxCalculateLayoutEventTo_p_wxObject(void *x
) { 
13199     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCalculateLayoutEvent 
*) x
)); 
13201 static void *_p_wxPyHtmlTagHandlerTo_p_wxObject(void *x
) { 
13202     return (void *)((wxObject 
*)  ((wxPyHtmlTagHandler 
*) x
)); 
13204 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxObject(void *x
) { 
13205     return (void *)((wxObject 
*) (wxPyHtmlTagHandler 
*) ((wxPyHtmlWinTagHandler 
*) x
)); 
13207 static void *_p_wxPyVListBoxTo_p_wxObject(void *x
) { 
13208     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
13210 static void *_p_wxPyHtmlListBoxTo_p_wxObject(void *x
) { 
13211     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
13213 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) { 
13214     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
13216 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
13217     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
13219 static void *_p_wxMiniFrameTo_p_wxObject(void *x
) { 
13220     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
13222 static void *_p_wxImageTo_p_wxObject(void *x
) { 
13223     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
13225 static void *_p_wxFrameTo_p_wxObject(void *x
) { 
13226     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
13228 static void *_p_wxPyPrintoutTo_p_wxObject(void *x
) { 
13229     return (void *)((wxObject 
*)  ((wxPyPrintout 
*) x
)); 
13231 static void *_p_wxHtmlPrintoutTo_p_wxObject(void *x
) { 
13232     return (void *)((wxObject 
*) (wxPyPrintout 
*) ((wxHtmlPrintout 
*) x
)); 
13234 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
13235     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
13237 static void *_p_wxTaskBarIconEventTo_p_wxObject(void *x
) { 
13238     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTaskBarIconEvent 
*) x
)); 
13240 static void *_p_wxStatusBarTo_p_wxObject(void *x
) { 
13241     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxStatusBar 
*) x
)); 
13243 static void *_p_wxHtmlDCRendererTo_p_wxObject(void *x
) { 
13244     return (void *)((wxObject 
*)  ((wxHtmlDCRenderer 
*) x
)); 
13246 static void *_p_wxHtmlContainerCellTo_p_wxObject(void *x
) { 
13247     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlContainerCell 
*) x
)); 
13249 static void *_p_wxMDIParentFrameTo_p_wxObject(void *x
) { 
13250     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
13252 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
13253     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
13255 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
13256     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
13258 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
13259     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
13261 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
13262     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
13264 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
13265     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
13267 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
13268     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
13270 static void *_p_wxScrolledWindowTo_p_wxObject(void *x
) { 
13271     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
13273 static void *_p_wxTopLevelWindowTo_p_wxObject(void *x
) { 
13274     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
13276 static void *_p_wxSplashScreenWindowTo_p_wxObject(void *x
) { 
13277     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
13279 static void *_p_wxSplitterWindowTo_p_wxObject(void *x
) { 
13280     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
13282 static void *_p_wxSashWindowTo_p_wxObject(void *x
) { 
13283     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxSashWindow 
*) x
)); 
13285 static void *_p_wxSashLayoutWindowTo_p_wxObject(void *x
) { 
13286     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
13288 static void *_p_wxPopupWindowTo_p_wxObject(void *x
) { 
13289     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPopupWindow 
*) x
)); 
13291 static void *_p_wxPyPopupTransientWindowTo_p_wxObject(void *x
) { 
13292     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
13294 static void *_p_wxTipWindowTo_p_wxObject(void *x
) { 
13295     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
13297 static void *_p_wxPyVScrolledWindowTo_p_wxObject(void *x
) { 
13298     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
13300 static void *_p_wxMDIClientWindowTo_p_wxObject(void *x
) { 
13301     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
13303 static void *_p_wxPyScrolledWindowTo_p_wxObject(void *x
) { 
13304     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
13306 static void *_p_wxPyHtmlWindowTo_p_wxObject(void *x
) { 
13307     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
13309 static void *_p_wxSashEventTo_p_wxObject(void *x
) { 
13310     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxSashEvent 
*) x
)); 
13312 static void *_p_wxPrintPreviewTo_p_wxObject(void *x
) { 
13313     return (void *)((wxObject 
*)  ((wxPrintPreview 
*) x
)); 
13315 static void *_p_wxPyPrintPreviewTo_p_wxObject(void *x
) { 
13316     return (void *)((wxObject 
*) (wxPrintPreview 
*) ((wxPyPrintPreview 
*) x
)); 
13318 static void *_p_wxPanelTo_p_wxObject(void *x
) { 
13319     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxPanel 
*) x
)); 
13321 static void *_p_wxDialogTo_p_wxObject(void *x
) { 
13322     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
13324 static void *_p_wxColourDialogTo_p_wxObject(void *x
) { 
13325     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
13327 static void *_p_wxDirDialogTo_p_wxObject(void *x
) { 
13328     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
13330 static void *_p_wxFontDialogTo_p_wxObject(void *x
) { 
13331     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
13333 static void *_p_wxPageSetupDialogTo_p_wxObject(void *x
) { 
13334     return (void *)((wxObject 
*)  ((wxPageSetupDialog 
*) x
)); 
13336 static void *_p_wxPrintDialogTo_p_wxObject(void *x
) { 
13337     return (void *)((wxObject 
*)  ((wxPrintDialog 
*) x
)); 
13339 static void *_p_wxHtmlParserTo_p_wxObject(void *x
) { 
13340     return (void *)((wxObject 
*)  ((wxHtmlParser 
*) x
)); 
13342 static void *_p_wxHtmlWinParserTo_p_wxObject(void *x
) { 
13343     return (void *)((wxObject 
*) (wxHtmlParser 
*) ((wxHtmlWinParser 
*) x
)); 
13345 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
13346     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
13348 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
13349     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
13351 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
13352     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
13354 static void *_p_wxHtmlWordCellTo_p_wxObject(void *x
) { 
13355     return (void *)((wxObject 
*) (wxHtmlCell 
*) ((wxHtmlWordCell 
*) x
)); 
13357 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
13358     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
13360 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
13361     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
13363 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
13364     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
13366 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
13367     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
13369 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
13370     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
13372 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
13373     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
13375 static void *_p_wxPreviewControlBarTo_p_wxObject(void *x
) { 
13376     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
13378 static void *_p_wxPyPreviewControlBarTo_p_wxObject(void *x
) { 
13379     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
13381 static void *_p_wxHtmlEasyPrintingTo_p_wxObject(void *x
) { 
13382     return (void *)((wxObject 
*)  ((wxHtmlEasyPrinting 
*) x
)); 
13384 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
13385     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
13387 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
13388     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
13390 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
13391     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
13393 static void *_p_wxHtmlHelpControllerTo_p_wxObject(void *x
) { 
13394     return (void *)((wxObject 
*)  ((wxHtmlHelpController 
*) x
)); 
13396 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
13397     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
13399 static void *_p_wxPageSetupDialogDataTo_p_wxObject(void *x
) { 
13400     return (void *)((wxObject 
*)  ((wxPageSetupDialogData 
*) x
)); 
13402 static void *_p_wxPrintDialogDataTo_p_wxObject(void *x
) { 
13403     return (void *)((wxObject 
*)  ((wxPrintDialogData 
*) x
)); 
13405 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
13406     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
13408 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
13409     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
13411 static void *_p_wxPyHtmlWinTagHandlerTo_p_wxPyHtmlTagHandler(void *x
) { 
13412     return (void *)((wxPyHtmlTagHandler 
*)  ((wxPyHtmlWinTagHandler 
*) x
)); 
13414 static void *_p_wxSplashScreenTo_p_wxEvtHandler(void *x
) { 
13415     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxSplashScreen 
*) x
)); 
13417 static void *_p_wxMiniFrameTo_p_wxEvtHandler(void *x
) { 
13418     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMiniFrame 
*) x
)); 
13420 static void *_p_wxPyPanelTo_p_wxEvtHandler(void *x
) { 
13421     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyPanel 
*) x
)); 
13423 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
13424     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
13426 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
13427     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
13429 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
13430     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
13432 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
13433     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
13435 static void *_p_wxPasswordEntryDialogTo_p_wxEvtHandler(void *x
) { 
13436     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*)(wxTextEntryDialog 
*) ((wxPasswordEntryDialog 
*) x
)); 
13438 static void *_p_wxTextEntryDialogTo_p_wxEvtHandler(void *x
) { 
13439     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxTextEntryDialog 
*) x
)); 
13441 static void *_p_wxSingleChoiceDialogTo_p_wxEvtHandler(void *x
) { 
13442     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxSingleChoiceDialog 
*) x
)); 
13444 static void *_p_wxMultiChoiceDialogTo_p_wxEvtHandler(void *x
) { 
13445     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMultiChoiceDialog 
*) x
)); 
13447 static void *_p_wxFileDialogTo_p_wxEvtHandler(void *x
) { 
13448     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFileDialog 
*) x
)); 
13450 static void *_p_wxMessageDialogTo_p_wxEvtHandler(void *x
) { 
13451     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxMessageDialog 
*) x
)); 
13453 static void *_p_wxProgressDialogTo_p_wxEvtHandler(void *x
) { 
13454     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxProgressDialog 
*) x
)); 
13456 static void *_p_wxFindReplaceDialogTo_p_wxEvtHandler(void *x
) { 
13457     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFindReplaceDialog 
*) x
)); 
13459 static void *_p_wxPanelTo_p_wxEvtHandler(void *x
) { 
13460     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPanel 
*) x
)); 
13462 static void *_p_wxStatusBarTo_p_wxEvtHandler(void *x
) { 
13463     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxStatusBar 
*) x
)); 
13465 static void *_p_wxPyVScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13466     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPyVScrolledWindow 
*) x
)); 
13468 static void *_p_wxTipWindowTo_p_wxEvtHandler(void *x
) { 
13469     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*)(wxPyPopupTransientWindow 
*) ((wxTipWindow 
*) x
)); 
13471 static void *_p_wxPyPopupTransientWindowTo_p_wxEvtHandler(void *x
) { 
13472     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPopupWindow 
*) ((wxPyPopupTransientWindow 
*) x
)); 
13474 static void *_p_wxPopupWindowTo_p_wxEvtHandler(void *x
) { 
13475     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPopupWindow 
*) x
)); 
13477 static void *_p_wxSashLayoutWindowTo_p_wxEvtHandler(void *x
) { 
13478     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxSashWindow 
*) ((wxSashLayoutWindow 
*) x
)); 
13480 static void *_p_wxSashWindowTo_p_wxEvtHandler(void *x
) { 
13481     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSashWindow 
*) x
)); 
13483 static void *_p_wxSplitterWindowTo_p_wxEvtHandler(void *x
) { 
13484     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplitterWindow 
*) x
)); 
13486 static void *_p_wxSplashScreenWindowTo_p_wxEvtHandler(void *x
) { 
13487     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxSplashScreenWindow 
*) x
)); 
13489 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
13490     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
13492 static void *_p_wxScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13493     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxScrolledWindow 
*) x
)); 
13495 static void *_p_wxTopLevelWindowTo_p_wxEvtHandler(void *x
) { 
13496     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxTopLevelWindow 
*) x
)); 
13498 static void *_p_wxMDIClientWindowTo_p_wxEvtHandler(void *x
) { 
13499     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMDIClientWindow 
*) x
)); 
13501 static void *_p_wxPyScrolledWindowTo_p_wxEvtHandler(void *x
) { 
13502     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyScrolledWindow 
*) x
)); 
13504 static void *_p_wxPyHtmlWindowTo_p_wxEvtHandler(void *x
) { 
13505     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPyHtmlWindow 
*) x
)); 
13507 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
13508     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
13510 static void *_p_wxPreviewFrameTo_p_wxEvtHandler(void *x
) { 
13511     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxPreviewFrame 
*) x
)); 
13513 static void *_p_wxPyPreviewFrameTo_p_wxEvtHandler(void *x
) { 
13514     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*)(wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
13516 static void *_p_wxMDIChildFrameTo_p_wxEvtHandler(void *x
) { 
13517     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIChildFrame 
*) x
)); 
13519 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
13520     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
13522 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
13523     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
13525 static void *_p_wxPyWindowTo_p_wxEvtHandler(void *x
) { 
13526     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxPyWindow 
*) x
)); 
13528 static void *_p_wxPreviewCanvasTo_p_wxEvtHandler(void *x
) { 
13529     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxScrolledWindow 
*) ((wxPreviewCanvas 
*) x
)); 
13531 static void *_p_wxPyHtmlListBoxTo_p_wxEvtHandler(void *x
) { 
13532     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*)(wxPyVListBox 
*) ((wxPyHtmlListBox 
*) x
)); 
13534 static void *_p_wxPyVListBoxTo_p_wxEvtHandler(void *x
) { 
13535     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPyVScrolledWindow 
*) ((wxPyVListBox 
*) x
)); 
13537 static void *_p_wxPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
13538     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*) ((wxPreviewControlBar 
*) x
)); 
13540 static void *_p_wxPyPreviewControlBarTo_p_wxEvtHandler(void *x
) { 
13541     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxPanel 
*)(wxPreviewControlBar 
*) ((wxPyPreviewControlBar 
*) x
)); 
13543 static void *_p_wxPyTaskBarIconTo_p_wxEvtHandler(void *x
) { 
13544     return (void *)((wxEvtHandler 
*)  ((wxPyTaskBarIcon 
*) x
)); 
13546 static void *_p_wxHtmlHelpFrameTo_p_wxEvtHandler(void *x
) { 
13547     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxHtmlHelpFrame 
*) x
)); 
13549 static void *_p_wxFrameTo_p_wxEvtHandler(void *x
) { 
13550     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxFrame 
*) x
)); 
13552 static void *_p_wxDirDialogTo_p_wxEvtHandler(void *x
) { 
13553     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxDirDialog 
*) x
)); 
13555 static void *_p_wxColourDialogTo_p_wxEvtHandler(void *x
) { 
13556     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxColourDialog 
*) x
)); 
13558 static void *_p_wxDialogTo_p_wxEvtHandler(void *x
) { 
13559     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*) ((wxDialog 
*) x
)); 
13561 static void *_p_wxFontDialogTo_p_wxEvtHandler(void *x
) { 
13562     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxDialog 
*) ((wxFontDialog 
*) x
)); 
13564 static void *_p_wxMDIParentFrameTo_p_wxEvtHandler(void *x
) { 
13565     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxTopLevelWindow 
*)(wxFrame 
*) ((wxMDIParentFrame 
*) x
)); 
13567 static void *_p_wxHtmlPrintoutTo_p_wxPyPrintout(void *x
) { 
13568     return (void *)((wxPyPrintout 
*)  ((wxHtmlPrintout 
*) x
)); 
13570 static void *_p_wxMDIChildFrameTo_p_wxFrame(void *x
) { 
13571     return (void *)((wxFrame 
*)  ((wxMDIChildFrame 
*) x
)); 
13573 static void *_p_wxProgressDialogTo_p_wxFrame(void *x
) { 
13574     return (void *)((wxFrame 
*)  ((wxProgressDialog 
*) x
)); 
13576 static void *_p_wxPreviewFrameTo_p_wxFrame(void *x
) { 
13577     return (void *)((wxFrame 
*)  ((wxPreviewFrame 
*) x
)); 
13579 static void *_p_wxPyPreviewFrameTo_p_wxFrame(void *x
) { 
13580     return (void *)((wxFrame 
*) (wxPreviewFrame 
*) ((wxPyPreviewFrame 
*) x
)); 
13582 static void *_p_wxMiniFrameTo_p_wxFrame(void *x
) { 
13583     return (void *)((wxFrame 
*)  ((wxMiniFrame 
*) x
)); 
13585 static void *_p_wxHtmlHelpFrameTo_p_wxFrame(void *x
) { 
13586     return (void *)((wxFrame 
*)  ((wxHtmlHelpFrame 
*) x
)); 
13588 static void *_p_wxSplashScreenTo_p_wxFrame(void *x
) { 
13589     return (void *)((wxFrame 
*)  ((wxSplashScreen 
*) x
)); 
13591 static void *_p_wxMDIParentFrameTo_p_wxFrame(void *x
) { 
13592     return (void *)((wxFrame 
*)  ((wxMDIParentFrame 
*) x
)); 
13594 static void *_p_wxHtmlContainerCellTo_p_wxHtmlCell(void *x
) { 
13595     return (void *)((wxHtmlCell 
*)  ((wxHtmlContainerCell 
*) x
)); 
13597 static void *_p_wxHtmlWidgetCellTo_p_wxHtmlCell(void *x
) { 
13598     return (void *)((wxHtmlCell 
*)  ((wxHtmlWidgetCell 
*) x
)); 
13600 static void *_p_wxHtmlColourCellTo_p_wxHtmlCell(void *x
) { 
13601     return (void *)((wxHtmlCell 
*)  ((wxHtmlColourCell 
*) x
)); 
13603 static void *_p_wxHtmlWordCellTo_p_wxHtmlCell(void *x
) { 
13604     return (void *)((wxHtmlCell 
*)  ((wxHtmlWordCell 
*) x
)); 
13606 static void *_p_wxHtmlFontCellTo_p_wxHtmlCell(void *x
) { 
13607     return (void *)((wxHtmlCell 
*)  ((wxHtmlFontCell 
*) x
)); 
13609 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}}; 
13610 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}}; 
13611 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}}; 
13612 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}}; 
13613 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}}; 
13614 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}}; 
13615 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}}; 
13616 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}}; 
13617 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}}; 
13618 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}}; 
13619 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}}; 
13620 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}}; 
13621 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}}; 
13622 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}}; 
13623 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}}; 
13624 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}}; 
13625 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}}; 
13626 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}}; 
13627 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}}; 
13628 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}}; 
13629 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}}; 
13630 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}}; 
13631 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}}; 
13632 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}}; 
13633 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}}; 
13634 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}}; 
13635 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}}; 
13636 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_wxStdDialogButtonSizer", _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxAcceleratorTable", _p_wxAcceleratorTableTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxMiniFrame", _p_wxMiniFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxImage", _p_wxImageTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxFrame", _p_wxFrameTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_wxPyPrintout", _p_wxPyPrintoutTo_p_wxObject
, 0, 0, 0, 0, 0},{"_p_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}}; 
13637 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}}; 
13638 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}}; 
13639 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}}; 
13640 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}}; 
13641 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}}; 
13642 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}}; 
13643 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}}; 
13644 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}}; 
13645 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}}; 
13646 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}}; 
13647 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}}; 
13648 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}}; 
13649 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}}; 
13650 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}}; 
13651 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}}; 
13652 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}}; 
13653 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}}; 
13654 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}}; 
13655 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}}; 
13656 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}}; 
13657 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}}; 
13658 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}}; 
13659 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}}; 
13660 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}}; 
13661 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}}; 
13662 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}}; 
13663 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}}; 
13664 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}}; 
13665 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}}; 
13666 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}}; 
13667 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}}; 
13668 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}}; 
13669 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}}; 
13670 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}}; 
13672 static swig_type_info 
*swig_types_initial
[] = { 
13673 _swigt__p_wxHtmlDCRenderer
,  
13674 _swigt__p_wxColour
,  
13675 _swigt__p_wxPageSetupDialogData
,  
13677 _swigt__p_form_ops_t
,  
13678 _swigt__p_wxHtmlRenderingStyle
,  
13679 _swigt__p_wxMouseEvent
,  
13680 _swigt__p_wxDuplexMode
,  
13681 _swigt__p_wxDefaultHtmlRenderingStyle
,  
13682 _swigt__p_wxHtmlWordCell
,  
13683 _swigt__p_wxVisualAttributes
,  
13684 _swigt__p_wxHtmlHelpData
,  
13686 _swigt__p_wxHtmlWinParser
,  
13687 _swigt__p_wxHtmlParser
,  
13689 _swigt__p_wxPyHtmlWindow
,  
13690 _swigt__p_wxScrolledWindow
,  
13691 _swigt__p_wxWindow
,  
13692 _swigt__p_wxTopLevelWindow
,  
13694 _swigt__p_wxHtmlColourCell
,  
13695 _swigt__p_wxHtmlFontCell
,  
13696 _swigt__p_wxHtmlEasyPrinting
,  
13697 _swigt__p_wxHtmlSelection
,  
13698 _swigt__p_wxHtmlRenderingInfo
,  
13699 _swigt__p_wxHtmlWidgetCell
,  
13700 _swigt__p_wxObject
,  
13701 _swigt__p_wxPaperSize
,  
13702 _swigt__p_wxString
,  
13703 _swigt__p_unsigned_int
,  
13704 _swigt__unsigned_int
,  
13705 _swigt__p_wxHtmlTagHandler
,  
13706 _swigt__p_wxPyHtmlTagHandler
,  
13707 _swigt__p_wxEvtHandler
,  
13708 _swigt__p_wxPyHtmlWinTagHandler
,  
13710 _swigt__p_wxHtmlHelpController
,  
13711 _swigt__p_wxCursor
,  
13712 _swigt__p_wxFileSystem
,  
13713 _swigt__p_wxHtmlBookRecArray
,  
13714 _swigt__p_unsigned_char
,  
13715 _swigt__p_wxPyPrintout
,  
13716 _swigt__p_wxHtmlPrintout
,  
13717 _swigt__p_wxHtmlSearchStatus
,  
13718 _swigt__std__ptrdiff_t
,  
13720 _swigt__p_wxHtmlContentsItem
,  
13721 _swigt__p_wxConfigBase
,  
13722 _swigt__p_wxPrintData
,  
13723 _swigt__p_wxHtmlHelpFrame
,  
13725 _swigt__p_wxHtmlRenderingState
,  
13726 _swigt__p_wxPyHtmlFilter
,  
13727 _swigt__p_wxHtmlFilter
,  
13728 _swigt__p_wxHtmlCell
,  
13729 _swigt__p_wxHtmlContainerCell
,  
13730 _swigt__p_wxHtmlTag
,  
13732 _swigt__p_wxHtmlLinkInfo
,  
13733 _swigt__p_unsigned_long
,  
13734 _swigt__p_wxHtmlBookRecord
,  
13739 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
13741 static swig_const_info swig_const_table
[] = { 
13742 {0, 0, 0, 0.0, 0, 0}}; 
13753     /* Python-specific SWIG API */ 
13754 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
13755 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
13756 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
13758     /* ----------------------------------------------------------------------------- 
13759      * global variable support code. 
13760      * ----------------------------------------------------------------------------- */ 
13762     typedef struct swig_globalvar 
{ 
13763         char       *name
;                  /* Name of global variable */ 
13764         PyObject 
*(*get_attr
)();           /* Return the current value */ 
13765         int       (*set_attr
)(PyObject 
*); /* Set the value */ 
13766         struct swig_globalvar 
*next
; 
13769     typedef struct swig_varlinkobject 
{ 
13771         swig_globalvar 
*vars
; 
13772     } swig_varlinkobject
; 
13775     swig_varlink_repr(swig_varlinkobject 
*v
) { 
13777         return PyString_FromString("<Swig global variables>"); 
13781     swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int flags
) { 
13782         swig_globalvar  
*var
; 
13784         fprintf(fp
,"Swig global variables { "); 
13785         for (var 
= v
->vars
; var
; var
=var
->next
) { 
13786             fprintf(fp
,"%s", var
->name
); 
13787             if (var
->next
) fprintf(fp
,", "); 
13789         fprintf(fp
," }\n"); 
13794     swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
13795         swig_globalvar 
*var 
= v
->vars
; 
13797             if (strcmp(var
->name
,n
) == 0) { 
13798                 return (*var
->get_attr
)(); 
13802         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
13807     swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
13808         swig_globalvar 
*var 
= v
->vars
; 
13810             if (strcmp(var
->name
,n
) == 0) { 
13811                 return (*var
->set_attr
)(p
); 
13815         PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
13819     static PyTypeObject varlinktype 
= { 
13820         PyObject_HEAD_INIT(0)               
13821         0,                                  /* Number of items in variable part (ob_size) */ 
13822         (char *)"swigvarlink",              /* Type name (tp_name) */ 
13823         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
13824         0,                                  /* Itemsize (tp_itemsize) */ 
13825         0,                                  /* Deallocator (tp_dealloc) */  
13826         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
13827         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
13828         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
13829         0,                                  /* tp_compare */ 
13830         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
13831         0,                                  /* tp_as_number */ 
13832         0,                                  /* tp_as_sequence */ 
13833         0,                                  /* tp_as_mapping */ 
13837         0,                                  /* tp_getattro */ 
13838         0,                                  /* tp_setattro */ 
13839         0,                                  /* tp_as_buffer */ 
13842 #if PY_VERSION_HEX >= 0x02000000 
13843         0,                                  /* tp_traverse */ 
13846 #if PY_VERSION_HEX >= 0x02010000 
13847         0,                                  /* tp_richcompare */ 
13848         0,                                  /* tp_weaklistoffset */ 
13850 #if PY_VERSION_HEX >= 0x02020000 
13851         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
13853 #if PY_VERSION_HEX >= 0x02030000 
13856 #ifdef COUNT_ALLOCS 
13857         0,0,0,0                             /* tp_alloc -> tp_next */ 
13861     /* Create a variable linking object for use later */ 
13863     SWIG_Python_newvarlink(void) { 
13864         swig_varlinkobject 
*result 
= 0; 
13865         result 
= PyMem_NEW(swig_varlinkobject
,1); 
13866         varlinktype
.ob_type 
= &PyType_Type
;    /* Patch varlinktype into a PyType */ 
13867         result
->ob_type 
= &varlinktype
; 
13869         result
->ob_refcnt 
= 0; 
13870         Py_XINCREF((PyObject 
*) result
); 
13871         return ((PyObject
*) result
); 
13875     SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
13876         swig_varlinkobject 
*v
; 
13877         swig_globalvar 
*gv
; 
13878         v
= (swig_varlinkobject 
*) p
; 
13879         gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
13880         gv
->name 
= (char *) malloc(strlen(name
)+1); 
13881         strcpy(gv
->name
,name
); 
13882         gv
->get_attr 
= get_attr
; 
13883         gv
->set_attr 
= set_attr
; 
13884         gv
->next 
= v
->vars
; 
13888     /* ----------------------------------------------------------------------------- 
13889      * constants/methods manipulation 
13890      * ----------------------------------------------------------------------------- */ 
13892     /* Install Constants */ 
13894     SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
13897         for (i 
= 0; constants
[i
].type
; i
++) { 
13898             switch(constants
[i
].type
) { 
13900                 obj 
= PyInt_FromLong(constants
[i
].lvalue
); 
13902                 case SWIG_PY_FLOAT
: 
13903                 obj 
= PyFloat_FromDouble(constants
[i
].dvalue
); 
13905                 case SWIG_PY_STRING
: 
13906                 if (constants
[i
].pvalue
) { 
13907                     obj 
= PyString_FromString((char *) constants
[i
].pvalue
); 
13909                     Py_INCREF(Py_None
); 
13913                 case SWIG_PY_POINTER
: 
13914                 obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
13916                 case SWIG_PY_BINARY
: 
13917                 obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
13924                 PyDict_SetItemString(d
,constants
[i
].name
,obj
); 
13930     /* -----------------------------------------------------------------------------*/ 
13931     /* Fix SwigMethods to carry the callback ptrs when needed */ 
13932     /* -----------------------------------------------------------------------------*/ 
13935     SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
13936     swig_const_info 
*const_table
, 
13937     swig_type_info 
**types
, 
13938     swig_type_info 
**types_initial
) { 
13940         for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
13941             char *c 
= methods
[i
].ml_doc
; 
13942             if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
13944                 swig_const_info 
*ci 
= 0; 
13945                 char *name 
= c 
+ 10; 
13946                 for (j 
= 0; const_table
[j
].type
; j
++) { 
13947                     if (strncmp(const_table
[j
].name
, name
,  
13948                     strlen(const_table
[j
].name
)) == 0) { 
13949                         ci 
= &(const_table
[j
]); 
13954                     size_t shift 
= (ci
->ptype
) - types
; 
13955                     swig_type_info 
*ty 
= types_initial
[shift
]; 
13956                     size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
13957                     size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
13958                     char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
13960                     void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue
: (void *)(ci
->lvalue
); 
13961                     strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
13963                     strncpy(buff
, "swig_ptr: ", 10); 
13965                     SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
13966                     methods
[i
].ml_doc 
= ndoc
; 
13972     /* -----------------------------------------------------------------------------* 
13973      *  Initialize type list 
13974      * -----------------------------------------------------------------------------*/ 
13976 #if PY_MAJOR_VERSION < 2 
13977     /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
13978     is copied out of Python/modsupport.c in python version 2.3.4 */ 
13980     PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
13983         if (!PyModule_Check(m
)) { 
13984             PyErr_SetString(PyExc_TypeError
, 
13985             "PyModule_AddObject() needs module as first arg"); 
13989             PyErr_SetString(PyExc_TypeError
, 
13990             "PyModule_AddObject() needs non-NULL value"); 
13994         dict 
= PyModule_GetDict(m
); 
13995         if (dict 
== NULL
) { 
13996             /* Internal error -- modules must have a dict! */ 
13997             PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
13998             PyModule_GetName(m
)); 
14001         if (PyDict_SetItemString(dict
, name
, o
)) 
14008     static swig_type_info 
** 
14009     SWIG_Python_SetTypeListHandle(swig_type_info 
**type_list_handle
) { 
14010         static PyMethodDef swig_empty_runtime_method_table
[] = { 
14012                 NULL
, NULL
, 0, NULL
 
14016         PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
14017         swig_empty_runtime_method_table
); 
14018         PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) type_list_handle
, NULL
); 
14019         if (pointer 
&& module) { 
14020             PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
14022         return type_list_handle
; 
14025     static swig_type_info 
** 
14026     SWIG_Python_LookupTypePointer(swig_type_info 
**type_list_handle
) { 
14027         swig_type_info 
**type_pointer
; 
14029         /* first check if module already created */ 
14030         type_pointer 
= SWIG_Python_GetTypeListHandle(); 
14031         if (type_pointer
) { 
14032             return type_pointer
; 
14034             /* create a new module and variable */ 
14035             return SWIG_Python_SetTypeListHandle(type_list_handle
); 
14043 /* -----------------------------------------------------------------------------* 
14044  *  Partial Init method 
14045  * -----------------------------------------------------------------------------*/ 
14047 #ifdef SWIG_LINK_RUNTIME 
14051 SWIGEXPORT(void *) SWIG_ReturnGlobalTypeList(void *); 
14057 SWIGEXPORT(void) SWIG_init(void) { 
14058     static PyObject 
*SWIG_globals 
= 0;  
14059     static int       typeinit 
= 0; 
14062     if (!SWIG_globals
) SWIG_globals 
= SWIG_newvarlink(); 
14064     /* Fix SwigMethods to carry the callback ptrs when needed */ 
14065     SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_types_initial
); 
14067     m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
14068     d 
= PyModule_GetDict(m
); 
14071 #ifdef SWIG_LINK_RUNTIME 
14072         swig_type_list_handle 
= (swig_type_info 
**) SWIG_ReturnGlobalTypeList(swig_type_list_handle
); 
14074 #  ifndef SWIG_STATIC_RUNTIME 
14075         swig_type_list_handle 
= SWIG_Python_LookupTypePointer(swig_type_list_handle
); 
14078         for (i 
= 0; swig_types_initial
[i
]; i
++) { 
14079             swig_types
[i
] = SWIG_TypeRegister(swig_types_initial
[i
]); 
14083     SWIG_InstallConstants(d
,swig_const_table
); 
14085     PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals
); 
14086     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlWindowNameStr",_wrap_HtmlWindowNameStr_get
, _wrap_HtmlWindowNameStr_set
); 
14087     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintoutTitleStr",_wrap_HtmlPrintoutTitleStr_get
, _wrap_HtmlPrintoutTitleStr_set
); 
14088     SWIG_addvarlink(SWIG_globals
,(char*)"HtmlPrintingTitleStr",_wrap_HtmlPrintingTitleStr_get
, _wrap_HtmlPrintingTitleStr_set
); 
14090         PyDict_SetItemString(d
,"HTML_ALIGN_LEFT", SWIG_From_int((int)(wxHTML_ALIGN_LEFT
)));  
14093         PyDict_SetItemString(d
,"HTML_ALIGN_CENTER", SWIG_From_int((int)(wxHTML_ALIGN_CENTER
)));  
14096         PyDict_SetItemString(d
,"HTML_ALIGN_RIGHT", SWIG_From_int((int)(wxHTML_ALIGN_RIGHT
)));  
14099         PyDict_SetItemString(d
,"HTML_ALIGN_BOTTOM", SWIG_From_int((int)(wxHTML_ALIGN_BOTTOM
)));  
14102         PyDict_SetItemString(d
,"HTML_ALIGN_TOP", SWIG_From_int((int)(wxHTML_ALIGN_TOP
)));  
14105         PyDict_SetItemString(d
,"HTML_CLR_FOREGROUND", SWIG_From_int((int)(wxHTML_CLR_FOREGROUND
)));  
14108         PyDict_SetItemString(d
,"HTML_CLR_BACKGROUND", SWIG_From_int((int)(wxHTML_CLR_BACKGROUND
)));  
14111         PyDict_SetItemString(d
,"HTML_UNITS_PIXELS", SWIG_From_int((int)(wxHTML_UNITS_PIXELS
)));  
14114         PyDict_SetItemString(d
,"HTML_UNITS_PERCENT", SWIG_From_int((int)(wxHTML_UNITS_PERCENT
)));  
14117         PyDict_SetItemString(d
,"HTML_INDENT_LEFT", SWIG_From_int((int)(wxHTML_INDENT_LEFT
)));  
14120         PyDict_SetItemString(d
,"HTML_INDENT_RIGHT", SWIG_From_int((int)(wxHTML_INDENT_RIGHT
)));  
14123         PyDict_SetItemString(d
,"HTML_INDENT_TOP", SWIG_From_int((int)(wxHTML_INDENT_TOP
)));  
14126         PyDict_SetItemString(d
,"HTML_INDENT_BOTTOM", SWIG_From_int((int)(wxHTML_INDENT_BOTTOM
)));  
14129         PyDict_SetItemString(d
,"HTML_INDENT_HORIZONTAL", SWIG_From_int((int)(wxHTML_INDENT_HORIZONTAL
)));  
14132         PyDict_SetItemString(d
,"HTML_INDENT_VERTICAL", SWIG_From_int((int)(wxHTML_INDENT_VERTICAL
)));  
14135         PyDict_SetItemString(d
,"HTML_INDENT_ALL", SWIG_From_int((int)(wxHTML_INDENT_ALL
)));  
14138         PyDict_SetItemString(d
,"HTML_COND_ISANCHOR", SWIG_From_int((int)(wxHTML_COND_ISANCHOR
)));  
14141         PyDict_SetItemString(d
,"HTML_COND_ISIMAGEMAP", SWIG_From_int((int)(wxHTML_COND_ISIMAGEMAP
)));  
14144         PyDict_SetItemString(d
,"HTML_COND_USER", SWIG_From_int((int)(wxHTML_COND_USER
)));  
14147         PyDict_SetItemString(d
,"HTML_FONT_SIZE_1", SWIG_From_int((int)(wxHTML_FONT_SIZE_1
)));  
14150         PyDict_SetItemString(d
,"HTML_FONT_SIZE_2", SWIG_From_int((int)(wxHTML_FONT_SIZE_2
)));  
14153         PyDict_SetItemString(d
,"HTML_FONT_SIZE_3", SWIG_From_int((int)(wxHTML_FONT_SIZE_3
)));  
14156         PyDict_SetItemString(d
,"HTML_FONT_SIZE_4", SWIG_From_int((int)(wxHTML_FONT_SIZE_4
)));  
14159         PyDict_SetItemString(d
,"HTML_FONT_SIZE_5", SWIG_From_int((int)(wxHTML_FONT_SIZE_5
)));  
14162         PyDict_SetItemString(d
,"HTML_FONT_SIZE_6", SWIG_From_int((int)(wxHTML_FONT_SIZE_6
)));  
14165         PyDict_SetItemString(d
,"HTML_FONT_SIZE_7", SWIG_From_int((int)(wxHTML_FONT_SIZE_7
)));  
14168         PyDict_SetItemString(d
,"HW_SCROLLBAR_NEVER", SWIG_From_int((int)(wxHW_SCROLLBAR_NEVER
)));  
14171         PyDict_SetItemString(d
,"HW_SCROLLBAR_AUTO", SWIG_From_int((int)(wxHW_SCROLLBAR_AUTO
)));  
14174         PyDict_SetItemString(d
,"HW_NO_SELECTION", SWIG_From_int((int)(wxHW_NO_SELECTION
)));  
14177         PyDict_SetItemString(d
,"HW_DEFAULT_STYLE", SWIG_From_int((int)(wxHW_DEFAULT_STYLE
)));  
14180         PyDict_SetItemString(d
,"HTML_OPEN", SWIG_From_int((int)(wxHTML_OPEN
)));  
14183         PyDict_SetItemString(d
,"HTML_BLOCK", SWIG_From_int((int)(wxHTML_BLOCK
)));  
14186         PyDict_SetItemString(d
,"HTML_REDIRECT", SWIG_From_int((int)(wxHTML_REDIRECT
)));  
14189         PyDict_SetItemString(d
,"HTML_URL_PAGE", SWIG_From_int((int)(wxHTML_URL_PAGE
)));  
14192         PyDict_SetItemString(d
,"HTML_URL_IMAGE", SWIG_From_int((int)(wxHTML_URL_IMAGE
)));  
14195         PyDict_SetItemString(d
,"HTML_URL_OTHER", SWIG_From_int((int)(wxHTML_URL_OTHER
)));  
14198         PyDict_SetItemString(d
,"HTML_SEL_OUT", SWIG_From_int((int)(wxHTML_SEL_OUT
)));  
14201         PyDict_SetItemString(d
,"HTML_SEL_IN", SWIG_From_int((int)(wxHTML_SEL_IN
)));  
14204         PyDict_SetItemString(d
,"HTML_SEL_CHANGING", SWIG_From_int((int)(wxHTML_SEL_CHANGING
)));  
14207         PyDict_SetItemString(d
,"HTML_FIND_EXACT", SWIG_From_int((int)(wxHTML_FIND_EXACT
)));  
14210         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_BEFORE", SWIG_From_int((int)(wxHTML_FIND_NEAREST_BEFORE
)));  
14213         PyDict_SetItemString(d
,"HTML_FIND_NEAREST_AFTER", SWIG_From_int((int)(wxHTML_FIND_NEAREST_AFTER
)));  
14216         PyDict_SetItemString(d
,"PAGE_ODD", SWIG_From_int((int)(wxPAGE_ODD
)));  
14219         PyDict_SetItemString(d
,"PAGE_EVEN", SWIG_From_int((int)(wxPAGE_EVEN
)));  
14222         PyDict_SetItemString(d
,"PAGE_ALL", SWIG_From_int((int)(wxPAGE_ALL
)));  
14225         PyDict_SetItemString(d
,"HF_TOOLBAR", SWIG_From_int((int)(wxHF_TOOLBAR
)));  
14228         PyDict_SetItemString(d
,"HF_FLATTOOLBAR", SWIG_From_int((int)(wxHF_FLATTOOLBAR
)));  
14231         PyDict_SetItemString(d
,"HF_CONTENTS", SWIG_From_int((int)(wxHF_CONTENTS
)));  
14234         PyDict_SetItemString(d
,"HF_INDEX", SWIG_From_int((int)(wxHF_INDEX
)));  
14237         PyDict_SetItemString(d
,"HF_SEARCH", SWIG_From_int((int)(wxHF_SEARCH
)));  
14240         PyDict_SetItemString(d
,"HF_BOOKMARKS", SWIG_From_int((int)(wxHF_BOOKMARKS
)));  
14243         PyDict_SetItemString(d
,"HF_OPENFILES", SWIG_From_int((int)(wxHF_OPENFILES
)));  
14246         PyDict_SetItemString(d
,"HF_PRINT", SWIG_From_int((int)(wxHF_PRINT
)));  
14249         PyDict_SetItemString(d
,"HF_DEFAULTSTYLE", SWIG_From_int((int)(wxHF_DEFAULTSTYLE
)));  
14252     wxPyPtrTypeMap_Add("wxHtmlTagHandler",    "wxPyHtmlTagHandler"); 
14253     wxPyPtrTypeMap_Add("wxHtmlWinTagHandler", "wxPyHtmlWinTagHandler"); 
14254     wxPyPtrTypeMap_Add("wxHtmlWindow",        "wxPyHtmlWindow"); 
14255     wxPyPtrTypeMap_Add("wxHtmlFilter",        "wxPyHtmlFilter");