1 /* ---------------------------------------------------------------------------- 
   2  * This file was automatically generated by SWIG (http://www.swig.org). 
   5  * This file is not intended to be easily readable and contains a number of  
   6  * coding conventions designed to improve portability and efficiency. Do not make 
   7  * changes to this file unless you know what you are doing--modify the SWIG  
   8  * interface file instead.  
   9  * ----------------------------------------------------------------------------- */ 
  12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE 
  15 template<class T
> class SwigValueWrapper 
{ 
  18     SwigValueWrapper() : tt(0) { } 
  19     SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { } 
  20     SwigValueWrapper(const T
& t
) : tt(new T(t
)) { } 
  21     ~SwigValueWrapper() { delete tt
; }  
  22     SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt 
= new T(t
); return *this; } 
  23     operator T
&() const { return *tt
; } 
  24     T 
*operator&() { return tt
; } 
  26     SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
); 
  30 /* ----------------------------------------------------------------------------- 
  31  *  This section contains generic SWIG labels for method/variable 
  32  *  declarations/attributes, and other compiler dependent labels. 
  33  * ----------------------------------------------------------------------------- */ 
  35 /* template workaround for compilers that cannot correctly implement the C++ standard */ 
  36 #ifndef SWIGTEMPLATEDISAMBIGUATOR 
  37 # if defined(__SUNPRO_CC) 
  38 #   if (__SUNPRO_CC <= 0x560) 
  39 #     define SWIGTEMPLATEDISAMBIGUATOR template 
  41 #     define SWIGTEMPLATEDISAMBIGUATOR  
  44 #   define SWIGTEMPLATEDISAMBIGUATOR  
  48 /* inline attribute */ 
  50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__)) 
  51 #   define SWIGINLINE inline 
  57 /* attribute recognised by some compilers to avoid 'unused' warnings */ 
  59 # if defined(__GNUC__) 
  60 #   if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) 
  61 #     define SWIGUNUSED __attribute__ ((__unused__))  
  66 #   define SWIGUNUSED __attribute__ ((__unused__))  
  72 #ifndef SWIGUNUSEDPARM 
  74 #   define SWIGUNUSEDPARM(p) 
  76 #   define SWIGUNUSEDPARM(p) p SWIGUNUSED  
  80 /* internal SWIG method */ 
  82 # define SWIGINTERN static SWIGUNUSED 
  85 /* internal inline SWIG method */ 
  86 #ifndef SWIGINTERNINLINE 
  87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE 
  90 /* exporting methods */ 
  91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4) 
  92 #  ifndef GCC_HASCLASSVISIBILITY 
  93 #    define GCC_HASCLASSVISIBILITY 
  98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
  99 #   if defined(STATIC_LINKED) 
 102 #     define SWIGEXPORT __declspec(dllexport) 
 105 #   if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY) 
 106 #     define SWIGEXPORT __attribute__ ((visibility("default"))) 
 113 /* calling conventions for Windows */ 
 115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
 116 #   define SWIGSTDCALL __stdcall 
 122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */ 
 123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER) 
 124 # define _CRT_SECURE_NO_DEPRECATE 
 128 /* Python.h has to appear first */ 
 131 /* ----------------------------------------------------------------------------- 
 134  * This file contains generic CAPI SWIG runtime support for pointer 
 136  * ----------------------------------------------------------------------------- */ 
 138 /* This should only be incremented when either the layout of swig_type_info changes, 
 139    or for whatever reason, the runtime changes incompatibly */ 
 140 #define SWIG_RUNTIME_VERSION "2" 
 142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */ 
 143 #ifdef SWIG_TYPE_TABLE 
 144 # define SWIG_QUOTE_STRING(x) #x 
 145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x) 
 146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE) 
 148 # define SWIG_TYPE_TABLE_NAME 
 152   You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for 
 153   creating a static or dynamic library from the swig runtime code. 
 154   In 99.9% of the cases, swig just needs to declare them as 'static'. 
 156   But only do this if is strictly necessary, ie, if you have problems 
 157   with your compiler or so. 
 161 # define SWIGRUNTIME SWIGINTERN 
 164 #ifndef SWIGRUNTIMEINLINE 
 165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE 
 168 /*  Generic buffer size */ 
 169 #ifndef SWIG_BUFFER_SIZE 
 170 # define SWIG_BUFFER_SIZE 1024 
 173 /* Flags for pointer conversions */ 
 174 #define SWIG_POINTER_DISOWN        0x1 
 176 /* Flags for new pointer objects */ 
 177 #define SWIG_POINTER_OWN           0x1 
 181    Flags/methods for returning states. 
 183    The swig conversion methods, as ConvertPtr, return and integer  
 184    that tells if the conversion was successful or not. And if not, 
 185    an error code can be returned (see swigerrors.swg for the codes). 
 187    Use the following macros/flags to set or process the returning 
 190    In old swig versions, you usually write code as: 
 192      if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) { 
 198    Now you can be more explicit as: 
 200     int res = SWIG_ConvertPtr(obj,vptr,ty.flags); 
 201     if (SWIG_IsOK(res)) { 
 207    that seems to be the same, but now you can also do 
 210     int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags); 
 211     if (SWIG_IsOK(res)) { 
 213       if (SWIG_IsNewObj(res) { 
 223    I.e., now SWIG_ConvertPtr can return new objects and you can 
 224    identify the case and take care of the deallocation. Of course that 
 225    requires also to SWIG_ConvertPtr to return new result values, as 
 227       int SWIG_ConvertPtr(obj, ptr,...) {          
 229           if (<need new object>) {                      
 230             *ptr = <ptr to new allocated object>;  
 233             *ptr = <ptr to old object>;         
 241    Of course, returning the plain '0(success)/-1(fail)' still works, but you can be 
 242    more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the 
 245    Finally, if the SWIG_CASTRANK_MODE is enabled, the result code 
 246    allows to return the 'cast rank', for example, if you have this 
 253       food(1)   // cast rank '1'  (1 -> 1.0) 
 254       fooi(1)   // cast rank '0' 
 256    just use the SWIG_AddCast()/SWIG_CheckState() 
 261 #define SWIG_ERROR                 (-1) 
 262 #define SWIG_IsOK(r)               (r >= 0) 
 263 #define SWIG_ArgError(r)           ((r != SWIG_ERROR) ? r : SWIG_TypeError)   
 265 /* The CastRankLimit says how many bits are used for the cast rank */ 
 266 #define SWIG_CASTRANKLIMIT         (1 << 8) 
 267 /* The NewMask denotes the object was created (using new/malloc) */ 
 268 #define SWIG_NEWOBJMASK            (SWIG_CASTRANKLIMIT  << 1) 
 269 /* The TmpMask is for in/out typemaps that use temporal objects */ 
 270 #define SWIG_TMPOBJMASK            (SWIG_NEWOBJMASK << 1) 
 271 /* Simple returning values */ 
 272 #define SWIG_BADOBJ                (SWIG_ERROR) 
 273 #define SWIG_OLDOBJ                (SWIG_OK) 
 274 #define SWIG_NEWOBJ                (SWIG_OK | SWIG_NEWOBJMASK) 
 275 #define SWIG_TMPOBJ                (SWIG_OK | SWIG_TMPOBJMASK) 
 276 /* Check, add and del mask methods */ 
 277 #define SWIG_AddNewMask(r)         (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r) 
 278 #define SWIG_DelNewMask(r)         (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r) 
 279 #define SWIG_IsNewObj(r)           (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK)) 
 280 #define SWIG_AddTmpMask(r)         (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r) 
 281 #define SWIG_DelTmpMask(r)         (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r) 
 282 #define SWIG_IsTmpObj(r)           (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK)) 
 286 #if defined(SWIG_CASTRANK_MODE) 
 287 #  ifndef SWIG_TypeRank 
 288 #    define SWIG_TypeRank             unsigned long 
 290 #  ifndef SWIG_MAXCASTRANK            /* Default cast allowed */ 
 291 #    define SWIG_MAXCASTRANK          (2) 
 293 #  define SWIG_CASTRANKMASK          ((SWIG_CASTRANKLIMIT) -1) 
 294 #  define SWIG_CastRank(r)           (r & SWIG_CASTRANKMASK) 
 295 SWIGINTERNINLINE 
int SWIG_AddCast(int r
) {  
 296   return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r 
+ 1) : SWIG_ERROR
) : r
; 
 298 SWIGINTERNINLINE 
int SWIG_CheckState(int r
) {  
 299   return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;  
 301 #else /* no cast-rank mode */ 
 302 #  define SWIG_AddCast 
 303 #  define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0) 
 315 typedef void *(*swig_converter_func
)(void *); 
 316 typedef struct swig_type_info 
*(*swig_dycast_func
)(void **); 
 318 /* Structure to store inforomation on one type */ 
 319 typedef struct swig_type_info 
{ 
 320   const char             *name
;                 /* mangled name of this type */ 
 321   const char             *str
;                  /* human readable name of this type */ 
 322   swig_dycast_func        dcast
;                /* dynamic cast function down a hierarchy */ 
 323   struct swig_cast_info  
*cast
;                 /* linked list of types that can cast into this type */ 
 324   void                   *clientdata
;           /* language specific type data */ 
 325   int                    owndata
;               /* flag if the structure owns the clientdata */ 
 328 /* Structure to store a type and conversion function used for casting */ 
 329 typedef struct swig_cast_info 
{ 
 330   swig_type_info         
*type
;                 /* pointer to type that is equivalent to this type */ 
 331   swig_converter_func     converter
;            /* function to cast the void pointers */ 
 332   struct swig_cast_info  
*next
;                 /* pointer to next cast in linked list */ 
 333   struct swig_cast_info  
*prev
;                 /* pointer to the previous cast */ 
 336 /* Structure used to store module information 
 337  * Each module generates one structure like this, and the runtime collects 
 338  * all of these structures and stores them in a circularly linked list.*/ 
 339 typedef struct swig_module_info 
{ 
 340   swig_type_info         
**types
;               /* Array of pointers to swig_type_info structures that are in this module */ 
 341   size_t                 size
;                  /* Number of types in this module */ 
 342   struct swig_module_info 
*next
;                /* Pointer to next element in circularly linked list */ 
 343   swig_type_info         
**type_initial
;        /* Array of initially generated type structures */ 
 344   swig_cast_info         
**cast_initial
;        /* Array of initially generated casting structures */ 
 345   void                    *clientdata
;          /* Language specific module data */ 
 349   Compare two type names skipping the space characters, therefore 
 350   "char*" == "char *" and "Class<int>" == "Class<int >", etc. 
 352   Return 0 when the two name types are equivalent, as in 
 353   strncmp, but skipping ' '. 
 356 SWIG_TypeNameComp(const char *f1
, const char *l1
, 
 357                   const char *f2
, const char *l2
) { 
 358   for (;(f1 
!= l1
) && (f2 
!= l2
); ++f1
, ++f2
) { 
 359     while ((*f1 
== ' ') && (f1 
!= l1
)) ++f1
; 
 360     while ((*f2 
== ' ') && (f2 
!= l2
)) ++f2
; 
 361     if (*f1 
!= *f2
) return (*f1 
> *f2
) ? 1 : -1; 
 363   return (l1 
- f1
) - (l2 
- f2
); 
 367   Check type equivalence in a name list like <name1>|<name2>|... 
 368   Return 0 if not equal, 1 if equal 
 371 SWIG_TypeEquiv(const char *nb
, const char *tb
) { 
 373   const char* te 
= tb 
+ strlen(tb
); 
 375   while (!equiv 
&& *ne
) { 
 376     for (nb 
= ne
; *ne
; ++ne
) { 
 377       if (*ne 
== '|') break; 
 379     equiv 
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0; 
 386   Check type equivalence in a name list like <name1>|<name2>|... 
 387   Return 0 if equal, -1 if nb < tb, 1 if nb > tb 
 390 SWIG_TypeCompare(const char *nb
, const char *tb
) { 
 392   const char* te 
= tb 
+ strlen(tb
); 
 394   while (!equiv 
&& *ne
) { 
 395     for (nb 
= ne
; *ne
; ++ne
) { 
 396       if (*ne 
== '|') break; 
 398     equiv 
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0; 
 405 /* think of this as a c++ template<> or a scheme macro */ 
 406 #define SWIG_TypeCheck_Template(comparison, ty)         \ 
 408     swig_cast_info *iter = ty->cast;                    \ 
 411         if (iter == ty->cast) return iter;              \ 
 412         /* Move iter to the top of the linked list */   \ 
 413         iter->prev->next = iter->next;                  \ 
 415           iter->next->prev = iter->prev;                \ 
 416         iter->next = ty->cast;                          \ 
 418         if (ty->cast) ty->cast->prev = iter;            \ 
 430 SWIGRUNTIME swig_cast_info 
* 
 431 SWIG_TypeCheck(const char *c
, swig_type_info 
*ty
) { 
 432   SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
); 
 435 /* Same as previous function, except strcmp is replaced with a pointer comparison */ 
 436 SWIGRUNTIME swig_cast_info 
* 
 437 SWIG_TypeCheckStruct(swig_type_info 
*from
, swig_type_info 
*into
) { 
 438   SWIG_TypeCheck_Template(iter
->type 
== from
, into
); 
 442   Cast a pointer up an inheritance hierarchy 
 444 SWIGRUNTIMEINLINE 
void * 
 445 SWIG_TypeCast(swig_cast_info 
*ty
, void *ptr
) { 
 446   return ((!ty
) || (!ty
->converter
)) ? ptr 
: (*ty
->converter
)(ptr
); 
 450    Dynamic pointer casting. Down an inheritance hierarchy 
 452 SWIGRUNTIME swig_type_info 
* 
 453 SWIG_TypeDynamicCast(swig_type_info 
*ty
, void **ptr
) { 
 454   swig_type_info 
*lastty 
= ty
; 
 455   if (!ty 
|| !ty
->dcast
) return ty
; 
 456   while (ty 
&& (ty
->dcast
)) { 
 457     ty 
= (*ty
->dcast
)(ptr
); 
 464   Return the name associated with this type 
 466 SWIGRUNTIMEINLINE 
const char * 
 467 SWIG_TypeName(const swig_type_info 
*ty
) { 
 472   Return the pretty name associated with this type, 
 473   that is an unmangled type name in a form presentable to the user. 
 475 SWIGRUNTIME 
const char * 
 476 SWIG_TypePrettyName(const swig_type_info 
*type
) { 
 477   /* The "str" field contains the equivalent pretty names of the 
 478      type, separated by vertical-bar characters.  We choose 
 479      to print the last name, as it is often (?) the most 
 481   if (!type
) return NULL
; 
 482   if (type
->str 
!= NULL
) { 
 483     const char *last_name 
= type
->str
; 
 485     for (s 
= type
->str
; *s
; s
++) 
 486       if (*s 
== '|') last_name 
= s
+1; 
 494    Set the clientdata field for a type 
 497 SWIG_TypeClientData(swig_type_info 
*ti
, void *clientdata
) { 
 498   swig_cast_info 
*cast 
= ti
->cast
; 
 499   /* if (ti->clientdata == clientdata) return; */ 
 500   ti
->clientdata 
= clientdata
; 
 503     if (!cast
->converter
) { 
 504       swig_type_info 
*tc 
= cast
->type
; 
 505       if (!tc
->clientdata
) { 
 506         SWIG_TypeClientData(tc
, clientdata
); 
 513 SWIG_TypeNewClientData(swig_type_info 
*ti
, void *clientdata
) { 
 514   SWIG_TypeClientData(ti
, clientdata
); 
 519   Search for a swig_type_info structure only by mangled name 
 520   Search is a O(log #types) 
 522   We start searching at module start, and finish searching when start == end.   
 523   Note: if start == end at the beginning of the function, we go all the way around 
 526 SWIGRUNTIME swig_type_info 
* 
 527 SWIG_MangledTypeQueryModule(swig_module_info 
*start
,  
 528                             swig_module_info 
*end
,  
 530   swig_module_info 
*iter 
= start
; 
 533       register size_t l 
= 0; 
 534       register size_t r 
= iter
->size 
- 1; 
 536         /* since l+r >= 0, we can (>> 1) instead (/ 2) */ 
 537         register size_t i 
= (l 
+ r
) >> 1;  
 538         const char *iname 
= iter
->types
[i
]->name
; 
 540           register int compare 
= strcmp(name
, iname
); 
 542             return iter
->types
[i
]; 
 543           } else if (compare 
< 0) { 
 549           } else if (compare 
> 0) { 
 553           break; /* should never happen */ 
 558   } while (iter 
!= end
); 
 563   Search for a swig_type_info structure for either a mangled name or a human readable name. 
 564   It first searches the mangled names of the types, which is a O(log #types) 
 565   If a type is not found it then searches the human readable names, which is O(#types). 
 567   We start searching at module start, and finish searching when start == end.   
 568   Note: if start == end at the beginning of the function, we go all the way around 
 571 SWIGRUNTIME swig_type_info 
* 
 572 SWIG_TypeQueryModule(swig_module_info 
*start
,  
 573                      swig_module_info 
*end
,  
 575   /* STEP 1: Search the name field using binary search */ 
 576   swig_type_info 
*ret 
= SWIG_MangledTypeQueryModule(start
, end
, name
); 
 580     /* STEP 2: If the type hasn't been found, do a complete search 
 581        of the str field (the human readable name) */ 
 582     swig_module_info 
*iter 
= start
; 
 584       register size_t i 
= 0; 
 585       for (; i 
< iter
->size
; ++i
) { 
 586         if (iter
->types
[i
]->str 
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
))) 
 587           return iter
->types
[i
]; 
 590     } while (iter 
!= end
); 
 593   /* neither found a match */ 
 598    Pack binary data into a string 
 601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) { 
 602   static const char hex
[17] = "0123456789abcdef"; 
 603   register const unsigned char *u 
= (unsigned char *) ptr
; 
 604   register const unsigned char *eu 
=  u 
+ sz
; 
 605   for (; u 
!= eu
; ++u
) { 
 606     register unsigned char uu 
= *u
; 
 607     *(c
++) = hex
[(uu 
& 0xf0) >> 4]; 
 608     *(c
++) = hex
[uu 
& 0xf]; 
 614    Unpack binary data from a string 
 616 SWIGRUNTIME 
const char * 
 617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) { 
 618   register unsigned char *u 
= (unsigned char *) ptr
; 
 619   register const unsigned char *eu 
= u 
+ sz
; 
 620   for (; u 
!= eu
; ++u
) { 
 621     register char d 
= *(c
++); 
 622     register unsigned char uu
; 
 623     if ((d 
>= '0') && (d 
<= '9')) 
 624       uu 
= ((d 
- '0') << 4); 
 625     else if ((d 
>= 'a') && (d 
<= 'f')) 
 626       uu 
= ((d 
- ('a'-10)) << 4); 
 630     if ((d 
>= '0') && (d 
<= '9')) 
 632     else if ((d 
>= 'a') && (d 
<= 'f')) 
 633       uu 
|= (d 
- ('a'-10)); 
 642    Pack 'void *' into a string buffer. 
 645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) { 
 647   if ((2*sizeof(void *) + 2) > bsz
) return 0; 
 649   r 
= SWIG_PackData(r
,&ptr
,sizeof(void *)); 
 650   if (strlen(name
) + 1 > (bsz 
- (r 
- buff
))) return 0; 
 655 SWIGRUNTIME 
const char * 
 656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) { 
 658     if (strcmp(c
,"NULL") == 0) { 
 665   return SWIG_UnpackData(++c
,ptr
,sizeof(void *)); 
 669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) { 
 671   size_t lname 
= (name 
? strlen(name
) : 0); 
 672   if ((2*sz 
+ 2 + lname
) > bsz
) return 0; 
 674   r 
= SWIG_PackData(r
,ptr
,sz
); 
 676     strncpy(r
,name
,lname
+1); 
 683 SWIGRUNTIME 
const char * 
 684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) { 
 686     if (strcmp(c
,"NULL") == 0) { 
 693   return SWIG_UnpackData(++c
,ptr
,sz
); 
 701 #define  SWIG_UnknownError         -1  
 702 #define  SWIG_IOError              -2  
 703 #define  SWIG_RuntimeError         -3  
 704 #define  SWIG_IndexError           -4  
 705 #define  SWIG_TypeError            -5  
 706 #define  SWIG_DivisionByZero       -6  
 707 #define  SWIG_OverflowError        -7  
 708 #define  SWIG_SyntaxError          -8  
 709 #define  SWIG_ValueError           -9  
 710 #define  SWIG_SystemError          -10 
 711 #define  SWIG_AttributeError       -11 
 712 #define  SWIG_MemoryError          -12  
 713 #define  SWIG_NullReferenceError   -13 
 717 /* Python.h has to appear first */ 
 720 /* Add PyOS_snprintf for old Pythons */ 
 721 #if PY_VERSION_HEX < 0x02020000 
 722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM) 
 723 #  define PyOS_snprintf _snprintf 
 725 #  define PyOS_snprintf snprintf 
 729 /* A crude PyString_FromFormat implementation for old Pythons */ 
 730 #if PY_VERSION_HEX < 0x02020000 
 732 #ifndef SWIG_PYBUFFER_SIZE 
 733 # define SWIG_PYBUFFER_SIZE 1024 
 737 PyString_FromFormat(const char *fmt
, ...) { 
 739   char buf
[SWIG_PYBUFFER_SIZE 
* 2]; 
 742   res 
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
); 
 744   return (res 
< 0 || res 
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
); 
 748 /* Add PyObject_Del for old Pythons */ 
 749 #if PY_VERSION_HEX < 0x01060000 
 750 # define PyObject_Del(op) PyMem_DEL((op)) 
 753 # define PyObject_DEL PyObject_Del 
 756 /* A crude PyExc_StopIteration exception for old Pythons */ 
 757 #if PY_VERSION_HEX < 0x02020000 
 758 # ifndef PyExc_StopIteration 
 759 #  define PyExc_StopIteration PyExc_RuntimeError 
 761 # ifndef PyObject_GenericGetAttr 
 762 #  define PyObject_GenericGetAttr 0 
 765 /* Py_NotImplemented is defined in 2.1 and up. */ 
 766 #if PY_VERSION_HEX < 0x02010000 
 767 # ifndef Py_NotImplemented 
 768 #  define Py_NotImplemented PyExc_RuntimeError 
 773 /* A crude PyString_AsStringAndSize implementation for old Pythons */ 
 774 #if PY_VERSION_HEX < 0x02010000 
 775 # ifndef PyString_AsStringAndSize 
 776 #  define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;} 
 780 /* PySequence_Size for old Pythons */ 
 781 #if PY_VERSION_HEX < 0x02000000 
 782 # ifndef PySequence_Size 
 783 #  define PySequence_Size PySequence_Length 
 788 /* PyBool_FromLong for old Pythons */ 
 789 #if PY_VERSION_HEX < 0x02030000 
 791 PyObject 
*PyBool_FromLong(long ok
) 
 793   PyObject 
*result 
= ok 
? Py_True 
: Py_False
; 
 800 /* ----------------------------------------------------------------------------- 
 802  * ----------------------------------------------------------------------------- */ 
 804 SWIGRUNTIME PyObject
* 
 805 SWIG_Python_ErrorType(int code
) { 
 808   case SWIG_MemoryError
: 
 809     type 
= PyExc_MemoryError
; 
 812     type 
= PyExc_IOError
; 
 814   case SWIG_RuntimeError
: 
 815     type 
= PyExc_RuntimeError
; 
 817   case SWIG_IndexError
: 
 818     type 
= PyExc_IndexError
; 
 821     type 
= PyExc_TypeError
; 
 823   case SWIG_DivisionByZero
: 
 824     type 
= PyExc_ZeroDivisionError
; 
 826   case SWIG_OverflowError
: 
 827     type 
= PyExc_OverflowError
; 
 829   case SWIG_SyntaxError
: 
 830     type 
= PyExc_SyntaxError
; 
 832   case SWIG_ValueError
: 
 833     type 
= PyExc_ValueError
; 
 835   case SWIG_SystemError
: 
 836     type 
= PyExc_SystemError
; 
 838   case SWIG_AttributeError
: 
 839     type 
= PyExc_AttributeError
; 
 842     type 
= PyExc_RuntimeError
; 
 849 SWIG_Python_AddErrorMsg(const char* mesg
) 
 853   PyObject 
*traceback 
= 0; 
 855   if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
); 
 857     PyObject 
*old_str 
= PyObject_Str(value
); 
 860     PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
 864     PyErr_Format(PyExc_RuntimeError
, mesg
); 
 870 #if defined(SWIG_PYTHON_NO_THREADS) 
 871 #  if defined(SWIG_PYTHON_THREADS) 
 872 #    undef SWIG_PYTHON_THREADS 
 875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */ 
 876 #  if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL) 
 877 #    if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */ 
 878 #      define SWIG_PYTHON_USE_GIL 
 881 #  if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */ 
 882 #    ifndef SWIG_PYTHON_INITIALIZE_THREADS 
 883 #     define SWIG_PYTHON_INITIALIZE_THREADS  PyEval_InitThreads()  
 885 #    ifdef __cplusplus /* C++ code */ 
 886        class SWIG_Python_Thread_Block 
{ 
 888          PyGILState_STATE state
; 
 890          void end() { if (status
) { PyGILState_Release(state
); status 
= false;} } 
 891          SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} 
 892          ~SWIG_Python_Thread_Block() { end(); } 
 894        class SWIG_Python_Thread_Allow 
{ 
 898          void end() { if (status
) { PyEval_RestoreThread(save
); status 
= false; }} 
 899          SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {} 
 900          ~SWIG_Python_Thread_Allow() { end(); } 
 902 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK   SWIG_Python_Thread_Block _swig_thread_block 
 903 #      define SWIG_PYTHON_THREAD_END_BLOCK     _swig_thread_block.end() 
 904 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW   SWIG_Python_Thread_Allow _swig_thread_allow 
 905 #      define SWIG_PYTHON_THREAD_END_ALLOW     _swig_thread_allow.end() 
 907 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK   PyGILState_STATE _swig_thread_block = PyGILState_Ensure() 
 908 #      define SWIG_PYTHON_THREAD_END_BLOCK     PyGILState_Release(_swig_thread_block) 
 909 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW   PyThreadState *_swig_thread_allow = PyEval_SaveThread() 
 910 #      define SWIG_PYTHON_THREAD_END_ALLOW     PyEval_RestoreThread(_swig_thread_allow) 
 912 #  else /* Old thread way, not implemented, user must provide it */ 
 913 #    if !defined(SWIG_PYTHON_INITIALIZE_THREADS) 
 914 #      define SWIG_PYTHON_INITIALIZE_THREADS 
 916 #    if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK) 
 917 #      define SWIG_PYTHON_THREAD_BEGIN_BLOCK 
 919 #    if !defined(SWIG_PYTHON_THREAD_END_BLOCK) 
 920 #      define SWIG_PYTHON_THREAD_END_BLOCK 
 922 #    if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW) 
 923 #      define SWIG_PYTHON_THREAD_BEGIN_ALLOW 
 925 #    if !defined(SWIG_PYTHON_THREAD_END_ALLOW) 
 926 #      define SWIG_PYTHON_THREAD_END_ALLOW 
 929 #else /* No thread support */ 
 930 #  define SWIG_PYTHON_INITIALIZE_THREADS 
 931 #  define SWIG_PYTHON_THREAD_BEGIN_BLOCK 
 932 #  define SWIG_PYTHON_THREAD_END_BLOCK 
 933 #  define SWIG_PYTHON_THREAD_BEGIN_ALLOW 
 934 #  define SWIG_PYTHON_THREAD_END_ALLOW 
 937 /* ----------------------------------------------------------------------------- 
 938  * Python API portion that goes into the runtime 
 939  * ----------------------------------------------------------------------------- */ 
 948 /* ----------------------------------------------------------------------------- 
 949  * Constant declarations 
 950  * ----------------------------------------------------------------------------- */ 
 953 #define SWIG_PY_POINTER 4 
 954 #define SWIG_PY_BINARY  5 
 956 /* Constant information structure */ 
 957 typedef struct swig_const_info 
{ 
 963   swig_type_info 
**ptype
; 
 974 /* ----------------------------------------------------------------------------- 
 975  * See the LICENSE file for information on copyright, usage and redistribution 
 976  * of SWIG, and the README file for authors - http://www.swig.org/release.html. 
 980  * This file contains the runtime support for Python modules 
 981  * and includes code for managing global variables and pointer 
 984  * ----------------------------------------------------------------------------- */ 
 986 /* Common SWIG API */ 
 988 #if PY_VERSION_HEX < 0x02050000 
 989 typedef int Py_ssize_t
; 
 992 /* for raw pointers */ 
 993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags)  SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0) 
 994 #define SWIG_ConvertPtr(obj, pptr, type, flags)         SWIG_Python_ConvertPtr(obj, pptr, type, flags) 
 995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own)  SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own) 
 996 #define SWIG_NewPointerObj(ptr, type, flags)            SWIG_Python_NewPointerObj(ptr, type, flags) 
 997 #define SWIG_CheckImplicit(ty)                          SWIG_Python_CheckImplicit(ty)  
 998 #define SWIG_AcquirePtr(ptr, src)                       SWIG_Python_AcquirePtr(ptr, src) 
 999 #define swig_owntype                                    int 
1001 /* for raw packed data */ 
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty) 
1003 #define SWIG_NewPackedObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type) 
1005 /* for class or struct pointers */ 
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags)    SWIG_ConvertPtr(obj, pptr, type, flags) 
1007 #define SWIG_NewInstanceObj(ptr, type, flags)           SWIG_NewPointerObj(ptr, type, flags) 
1009 /* for C or C++ function pointers */ 
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type)        SWIG_Python_ConvertFunctionPtr(obj, pptr, type) 
1011 #define SWIG_NewFunctionPtrObj(ptr, type)               SWIG_Python_NewPointerObj(ptr, type, 0) 
1013 /* for C++ member pointers, ie, member methods */ 
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty)            SWIG_Python_ConvertPacked(obj, ptr, sz, ty) 
1015 #define SWIG_NewMemberObj(ptr, sz, type)                SWIG_Python_NewPackedObj(ptr, sz, type) 
1020 #define SWIG_GetModule(clientdata)                      SWIG_Python_GetModule() 
1021 #define SWIG_SetModule(clientdata, pointer)             SWIG_Python_SetModule(pointer) 
1022 #define SWIG_NewClientData(obj)                         PySwigClientData_New(obj) 
1024 #define SWIG_SetErrorObj                                SWIG_Python_SetErrorObj                             
1025 #define SWIG_SetErrorMsg                                SWIG_Python_SetErrorMsg                             
1026 #define SWIG_ErrorType(code)                            SWIG_Python_ErrorType(code)                         
1027 #define SWIG_Error(code, msg)                           SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)  
1028 #define SWIG_fail                                       goto fail                                           
1031 /* Runtime API implementation */ 
1033 /* Error manipulation */ 
1036 SWIG_Python_SetErrorObj(PyObject 
*errtype
, PyObject 
*obj
) { 
1037   SWIG_PYTHON_THREAD_BEGIN_BLOCK
;  
1038   PyErr_SetObject(errtype
, obj
); 
1040   SWIG_PYTHON_THREAD_END_BLOCK
; 
1044 SWIG_Python_SetErrorMsg(PyObject 
*errtype
, const char *msg
) { 
1045   SWIG_PYTHON_THREAD_BEGIN_BLOCK
; 
1046   PyErr_SetString(errtype
, (char *) msg
); 
1047   SWIG_PYTHON_THREAD_END_BLOCK
; 
1050 #define SWIG_Python_Raise(obj, type, desc)  SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj) 
1052 /* Set a constant value */ 
1055 SWIG_Python_SetConstant(PyObject 
*d
, const char *name
, PyObject 
*obj
) {    
1056   PyDict_SetItemString(d
, (char*) name
, obj
); 
1060 /* Append a value to the result obj */ 
1062 SWIGINTERN PyObject
* 
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) { 
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE) 
1067   } else if (result 
== Py_None
) { 
1071     if (!PyList_Check(result
)) { 
1072       PyObject 
*o2 
= result
; 
1073       result 
= PyList_New(1); 
1074       PyList_SetItem(result
, 0, o2
); 
1076     PyList_Append(result
,obj
); 
1085   } else if (result 
== Py_None
) { 
1089     if (!PyTuple_Check(result
)) { 
1091       result 
= PyTuple_New(1); 
1092       PyTuple_SET_ITEM(result
, 0, o2
); 
1094     o3 
= PyTuple_New(1); 
1095     PyTuple_SET_ITEM(o3
, 0, obj
); 
1097     result 
= PySequence_Concat(o2
, o3
); 
1105 /* Unpack the argument tuple */ 
1108 SWIG_Python_UnpackTuple(PyObject 
*args
, const char *name
, int min
, int max
, PyObject 
**objs
) 
1114       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",  
1115                    name
, (min 
== max 
? "" : "at least "), min
); 
1119   if (!PyTuple_Check(args
)) { 
1120     PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple"); 
1123     register int l 
= PyTuple_GET_SIZE(args
); 
1125       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",  
1126                    name
, (min 
== max 
? "" : "at least "), min
, l
); 
1128     } else if (l 
> max
) { 
1129       PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",  
1130                    name
, (min 
== max 
? "" : "at most "), max
, l
); 
1134       for (i 
= 0; i 
< l
; ++i
) { 
1135         objs
[i
] = PyTuple_GET_ITEM(args
, i
); 
1137       for (; l 
< max
; ++l
) { 
1145 /* A functor is a function object with one single object argument */ 
1146 #if PY_VERSION_HEX >= 0x02020000 
1147 #define SWIG_Python_CallFunctor(functor, obj)           PyObject_CallFunctionObjArgs(functor, obj, NULL); 
1149 #define SWIG_Python_CallFunctor(functor, obj)           PyObject_CallFunction(functor, "O", obj); 
1153   Helper for static pointer initialization for both C and C++ code, for example 
1154   static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...); 
1157 #define SWIG_STATIC_POINTER(var)  var 
1159 #define SWIG_STATIC_POINTER(var)  var = 0; if (!var) var 
1162 /* ----------------------------------------------------------------------------- 
1163  * Pointer declarations 
1164  * ----------------------------------------------------------------------------- */ 
1166 /* Flags for new pointer objects */ 
1167 #define SWIG_POINTER_NOSHADOW       (SWIG_POINTER_OWN      << 1) 
1168 #define SWIG_POINTER_NEW            (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN) 
1170 #define SWIG_POINTER_IMPLICIT_CONV  (SWIG_POINTER_DISOWN   << 1) 
1179 /*  How to access Py_None */ 
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__) 
1181 #  ifndef SWIG_PYTHON_NO_BUILD_NONE 
1182 #    ifndef SWIG_PYTHON_BUILD_NONE 
1183 #      define SWIG_PYTHON_BUILD_NONE 
1188 #ifdef SWIG_PYTHON_BUILD_NONE 
1191 #   define Py_None SWIG_Py_None() 
1193 SWIGRUNTIMEINLINE PyObject 
*  
1196   PyObject 
*none 
= Py_BuildValue(""); 
1200 SWIGRUNTIME PyObject 
*  
1203   static PyObject 
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None(); 
1208 /* The python void return value */ 
1210 SWIGRUNTIMEINLINE PyObject 
*  
1213   PyObject 
*none 
= Py_None
; 
1218 /* PySwigClientData */ 
1229 SWIGRUNTIMEINLINE 
int  
1230 SWIG_Python_CheckImplicit(swig_type_info 
*ty
) 
1232   PySwigClientData 
*data 
= (PySwigClientData 
*)ty
->clientdata
; 
1233   return data 
? data
->implicitconv 
: 0; 
1236 SWIGRUNTIMEINLINE PyObject 
* 
1237 SWIG_Python_ExceptionType(swig_type_info 
*desc
) { 
1238   PySwigClientData 
*data 
= desc 
? (PySwigClientData 
*) desc
->clientdata 
: 0; 
1239   PyObject 
*klass 
= data 
? data
->klass 
: 0; 
1240   return (klass 
? klass 
: PyExc_RuntimeError
); 
1244 SWIGRUNTIME PySwigClientData 
*  
1245 PySwigClientData_New(PyObject
* obj
) 
1250     PySwigClientData 
*data 
= (PySwigClientData 
*)malloc(sizeof(PySwigClientData
)); 
1251     /* the klass element */ 
1253     Py_INCREF(data
->klass
); 
1254     /* the newraw method and newargs arguments used to create a new raw instance */ 
1255     if (PyClass_Check(obj
)) { 
1257       data
->newargs 
= obj
; 
1260 #if (PY_VERSION_HEX < 0x02020000) 
1263       data
->newraw 
= PyObject_GetAttrString(data
->klass
, (char *)"__new__"); 
1266         Py_INCREF(data
->newraw
); 
1267         data
->newargs 
= PyTuple_New(1); 
1268         PyTuple_SetItem(data
->newargs
, 0, obj
); 
1270         data
->newargs 
= obj
; 
1272       Py_INCREF(data
->newargs
); 
1274     /* the destroy method, aka as the C++ delete method */ 
1275     data
->destroy 
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__"); 
1276     if (PyErr_Occurred()) { 
1280     if (data
->destroy
) { 
1282       Py_INCREF(data
->destroy
); 
1283       flags 
= PyCFunction_GET_FLAGS(data
->destroy
); 
1285       data
->delargs 
= !(flags 
& (METH_O
)); 
1292     data
->implicitconv 
= 0; 
1298 PySwigClientData_Del(PySwigClientData
* data
) 
1300   Py_XDECREF(data
->newraw
); 
1301   Py_XDECREF(data
->newargs
); 
1302   Py_XDECREF(data
->destroy
); 
1305 /* =============== PySwigObject =====================*/ 
1315 SWIGRUNTIME PyObject 
* 
1316 PySwigObject_long(PySwigObject 
*v
) 
1318   return PyLong_FromVoidPtr(v
->ptr
); 
1321 SWIGRUNTIME PyObject 
* 
1322 PySwigObject_format(const char* fmt
, PySwigObject 
*v
) 
1324   PyObject 
*res 
= NULL
; 
1325   PyObject 
*args 
= PyTuple_New(1); 
1327     if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) { 
1328       PyObject 
*ofmt 
= PyString_FromString(fmt
); 
1330         res 
= PyString_Format(ofmt
,args
); 
1339 SWIGRUNTIME PyObject 
* 
1340 PySwigObject_oct(PySwigObject 
*v
) 
1342   return PySwigObject_format("%o",v
); 
1345 SWIGRUNTIME PyObject 
* 
1346 PySwigObject_hex(PySwigObject 
*v
) 
1348   return PySwigObject_format("%x",v
); 
1351 SWIGRUNTIME PyObject 
* 
1353 PySwigObject_repr(PySwigObject 
*v
) 
1355 PySwigObject_repr(PySwigObject 
*v
, PyObject 
*args
) 
1358   const char *name 
= SWIG_TypePrettyName(v
->ty
); 
1359   PyObject 
*hex 
= PySwigObject_hex(v
);     
1360   PyObject 
*repr 
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
)); 
1364     PyObject 
*nrep 
= PySwigObject_repr((PySwigObject 
*)v
->next
); 
1366     PyObject 
*nrep 
= PySwigObject_repr((PySwigObject 
*)v
->next
, args
); 
1368     PyString_ConcatAndDel(&repr
,nrep
); 
1374 PySwigObject_print(PySwigObject 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) 
1377   PyObject 
*repr 
= PySwigObject_repr(v
); 
1379   PyObject 
*repr 
= PySwigObject_repr(v
, NULL
); 
1382     fputs(PyString_AsString(repr
), fp
); 
1390 SWIGRUNTIME PyObject 
* 
1391 PySwigObject_str(PySwigObject 
*v
) 
1393   char result
[SWIG_BUFFER_SIZE
]; 
1394   return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ? 
1395     PyString_FromString(result
) : 0; 
1399 PySwigObject_compare(PySwigObject 
*v
, PySwigObject 
*w
) 
1403   return (i 
< j
) ? -1 : ((i 
> j
) ? 1 : 0); 
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void); 
1408 SWIGRUNTIME PyTypeObject
* 
1409 PySwigObject_type(void) { 
1410   static PyTypeObject 
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type(); 
1414 SWIGRUNTIMEINLINE 
int 
1415 PySwigObject_Check(PyObject 
*op
) { 
1416   return ((op
)->ob_type 
== PySwigObject_type()) 
1417     || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0); 
1420 SWIGRUNTIME PyObject 
* 
1421 PySwigObject_New(void *ptr
, swig_type_info 
*ty
, int own
); 
1424 PySwigObject_dealloc(PyObject 
*v
) 
1426   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1427   PyObject 
*next 
= sobj
->next
; 
1429     swig_type_info 
*ty 
= sobj
->ty
; 
1430     PySwigClientData 
*data 
= ty 
? (PySwigClientData 
*) ty
->clientdata 
: 0; 
1431     PyObject 
*destroy 
= data 
? data
->destroy 
: 0; 
1433       /* destroy is always a VARARGS method */ 
1435       if (data
->delargs
) { 
1436         /* we need to create a temporal object to carry the destroy operation */ 
1437         PyObject 
*tmp 
= PySwigObject_New(sobj
->ptr
, ty
, 0); 
1438         res 
= SWIG_Python_CallFunctor(destroy
, tmp
); 
1441         PyCFunction meth 
= PyCFunction_GET_FUNCTION(destroy
); 
1442         PyObject 
*mself 
= PyCFunction_GET_SELF(destroy
); 
1443         res 
= ((*meth
)(mself
, v
)); 
1447       const char *name 
= SWIG_TypePrettyName(ty
); 
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK) 
1449       printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
); 
1457 SWIGRUNTIME PyObject
*  
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
) 
1460   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1463   if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
; 
1466   if (!PySwigObject_Check(next
)) { 
1471   return SWIG_Py_Void(); 
1474 SWIGRUNTIME PyObject
*  
1476 PySwigObject_next(PyObject
* v
) 
1478 PySwigObject_next(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1481   PySwigObject 
*sobj 
= (PySwigObject 
*) v
; 
1483     Py_INCREF(sobj
->next
); 
1486     return SWIG_Py_Void(); 
1490 SWIGINTERN PyObject
* 
1492 PySwigObject_disown(PyObject 
*v
) 
1494 PySwigObject_disown(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1497   PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1499   return SWIG_Py_Void(); 
1502 SWIGINTERN PyObject
* 
1504 PySwigObject_acquire(PyObject 
*v
) 
1506 PySwigObject_acquire(PyObject
* v
, PyObject 
*SWIGUNUSEDPARM(args
)) 
1509   PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1510   sobj
->own 
= SWIG_POINTER_OWN
; 
1511   return SWIG_Py_Void(); 
1514 SWIGINTERN PyObject
* 
1515 PySwigObject_own(PyObject 
*v
, PyObject 
*args
) 
1518 #if (PY_VERSION_HEX < 0x02020000) 
1519   if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
)) 
1521   if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))  
1528       PySwigObject 
*sobj 
= (PySwigObject 
*)v
; 
1529       PyObject 
*obj 
= PyBool_FromLong(sobj
->own
); 
1532         if (PyObject_IsTrue(val
)) { 
1533           PySwigObject_acquire(v
); 
1535           PySwigObject_disown(v
); 
1538         if (PyObject_IsTrue(val
)) { 
1539           PySwigObject_acquire(v
,args
); 
1541           PySwigObject_disown(v
,args
); 
1551 swigobject_methods
[] = { 
1552   {(char *)"disown",  (PyCFunction
)PySwigObject_disown
,  METH_NOARGS
,  (char *)"releases ownership of the pointer"}, 
1553   {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
,  (char *)"aquires ownership of the pointer"}, 
1554   {(char *)"own",     (PyCFunction
)PySwigObject_own
,     METH_VARARGS
, (char *)"returns/sets ownership of the pointer"}, 
1555   {(char *)"append",  (PyCFunction
)PySwigObject_append
,  METH_O
,       (char *)"appends another 'this' object"}, 
1556   {(char *)"next",    (PyCFunction
)PySwigObject_next
,    METH_NOARGS
,  (char *)"returns the next 'this' object"}, 
1557   {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
,    METH_NOARGS
,  (char *)"returns object representation"}, 
1562 swigobject_methods
[] = { 
1563   {(char *)"disown",  (PyCFunction
)PySwigObject_disown
,  METH_VARARGS
,  (char *)"releases ownership of the pointer"}, 
1564   {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
,  (char *)"aquires ownership of the pointer"}, 
1565   {(char *)"own",     (PyCFunction
)PySwigObject_own
,     METH_VARARGS
,  (char *)"returns/sets ownership of the pointer"}, 
1566   {(char *)"append",  (PyCFunction
)PySwigObject_append
,  METH_VARARGS
,  (char *)"appends another 'this' object"}, 
1567   {(char *)"next",    (PyCFunction
)PySwigObject_next
,    METH_VARARGS
,  (char *)"returns the next 'this' object"}, 
1568   {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
,   METH_VARARGS
,  (char *)"returns object representation"}, 
1573 #if PY_VERSION_HEX < 0x02020000 
1574 SWIGINTERN PyObject 
* 
1575 PySwigObject_getattr(PySwigObject 
*sobj
,char *name
) 
1577   return Py_FindMethod(swigobject_methods
, (PyObject 
*)sobj
, name
); 
1581 SWIGRUNTIME PyTypeObject
* 
1582 _PySwigObject_type(void) { 
1583   static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer"; 
1585   static PyNumberMethods PySwigObject_as_number 
= { 
1586     (binaryfunc
)0, /*nb_add*/ 
1587     (binaryfunc
)0, /*nb_subtract*/ 
1588     (binaryfunc
)0, /*nb_multiply*/ 
1589     (binaryfunc
)0, /*nb_divide*/ 
1590     (binaryfunc
)0, /*nb_remainder*/ 
1591     (binaryfunc
)0, /*nb_divmod*/ 
1592     (ternaryfunc
)0,/*nb_power*/ 
1593     (unaryfunc
)0,  /*nb_negative*/ 
1594     (unaryfunc
)0,  /*nb_positive*/ 
1595     (unaryfunc
)0,  /*nb_absolute*/ 
1596     (inquiry
)0,    /*nb_nonzero*/ 
1603     (coercion
)0,   /*nb_coerce*/ 
1604     (unaryfunc
)PySwigObject_long
, /*nb_int*/ 
1605     (unaryfunc
)PySwigObject_long
, /*nb_long*/ 
1606     (unaryfunc
)0,                 /*nb_float*/ 
1607     (unaryfunc
)PySwigObject_oct
,  /*nb_oct*/ 
1608     (unaryfunc
)PySwigObject_hex
,  /*nb_hex*/ 
1609 #if PY_VERSION_HEX >= 0x02020000 
1610     0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */  
1611 #elif PY_VERSION_HEX >= 0x02000000 
1612     0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */ 
1616   static PyTypeObject pyswigobject_type
;   
1617   static int type_init 
= 0; 
1619     const PyTypeObject tmp
 
1621         PyObject_HEAD_INIT(NULL
) 
1623         (char *)"PySwigObject",             /* tp_name */ 
1624         sizeof(PySwigObject
),               /* tp_basicsize */ 
1625         0,                                  /* tp_itemsize */ 
1626         (destructor
)PySwigObject_dealloc
,   /* tp_dealloc */ 
1627         (printfunc
)PySwigObject_print
,      /* tp_print */ 
1628 #if PY_VERSION_HEX < 0x02020000 
1629         (getattrfunc
)PySwigObject_getattr
,  /* tp_getattr */  
1631         (getattrfunc
)0,                     /* tp_getattr */  
1633         (setattrfunc
)0,                     /* tp_setattr */  
1634         (cmpfunc
)PySwigObject_compare
,      /* tp_compare */  
1635         (reprfunc
)PySwigObject_repr
,        /* tp_repr */     
1636         &PySwigObject_as_number
,            /* tp_as_number */ 
1637         0,                                  /* tp_as_sequence */ 
1638         0,                                  /* tp_as_mapping */ 
1639         (hashfunc
)0,                        /* tp_hash */ 
1640         (ternaryfunc
)0,                     /* tp_call */ 
1641         (reprfunc
)PySwigObject_str
,         /* tp_str */ 
1642         PyObject_GenericGetAttr
,            /* tp_getattro */ 
1643         0,                                  /* tp_setattro */ 
1644         0,                                  /* tp_as_buffer */ 
1645         Py_TPFLAGS_DEFAULT
,                 /* tp_flags */ 
1646         swigobject_doc
,                     /* tp_doc */         
1647         0,                                  /* tp_traverse */ 
1649         0,                                  /* tp_richcompare */ 
1650         0,                                  /* tp_weaklistoffset */ 
1651 #if PY_VERSION_HEX >= 0x02020000 
1653         0,                                  /* tp_iternext */ 
1654         swigobject_methods
,                 /* tp_methods */  
1659         0,                                  /* tp_descr_get */           
1660         0,                                  /* tp_descr_set */           
1661         0,                                  /* tp_dictoffset */          
1670         0,                                  /* tp_subclasses */ 
1671         0,                                  /* tp_weaklist */ 
1673 #if PY_VERSION_HEX >= 0x02030000 
1677         0,0,0,0                             /* tp_alloc -> tp_next */ 
1680     pyswigobject_type 
= tmp
; 
1681     pyswigobject_type
.ob_type 
= &PyType_Type
; 
1684   return &pyswigobject_type
; 
1687 SWIGRUNTIME PyObject 
* 
1688 PySwigObject_New(void *ptr
, swig_type_info 
*ty
, int own
) 
1690   PySwigObject 
*sobj 
= PyObject_NEW(PySwigObject
, PySwigObject_type()); 
1697   return (PyObject 
*)sobj
; 
1700 /* ----------------------------------------------------------------------------- 
1701  * Implements a simple Swig Packed type, and use it instead of string 
1702  * ----------------------------------------------------------------------------- */ 
1712 PySwigPacked_print(PySwigPacked 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) 
1714   char result
[SWIG_BUFFER_SIZE
]; 
1715   fputs("<Swig Packed ", fp
);  
1716   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
1720   fputs(v
->ty
->name
,fp
);  
1725 SWIGRUNTIME PyObject 
* 
1726 PySwigPacked_repr(PySwigPacked 
*v
) 
1728   char result
[SWIG_BUFFER_SIZE
]; 
1729   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) { 
1730     return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
); 
1732     return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
); 
1736 SWIGRUNTIME PyObject 
* 
1737 PySwigPacked_str(PySwigPacked 
*v
) 
1739   char result
[SWIG_BUFFER_SIZE
]; 
1740   if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){ 
1741     return PyString_FromFormat("%s%s", result
, v
->ty
->name
); 
1743     return PyString_FromString(v
->ty
->name
); 
1748 PySwigPacked_compare(PySwigPacked 
*v
, PySwigPacked 
*w
) 
1752   int s 
= (i 
< j
) ? -1 : ((i 
> j
) ? 1 : 0); 
1753   return s 
? s 
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
); 
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void); 
1758 SWIGRUNTIME PyTypeObject
* 
1759 PySwigPacked_type(void) { 
1760   static PyTypeObject 
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type(); 
1764 SWIGRUNTIMEINLINE 
int 
1765 PySwigPacked_Check(PyObject 
*op
) { 
1766   return ((op
)->ob_type 
== _PySwigPacked_type())  
1767     || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0); 
1771 PySwigPacked_dealloc(PyObject 
*v
) 
1773   if (PySwigPacked_Check(v
)) { 
1774     PySwigPacked 
*sobj 
= (PySwigPacked 
*) v
; 
1780 SWIGRUNTIME PyTypeObject
* 
1781 _PySwigPacked_type(void) { 
1782   static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer"; 
1783   static PyTypeObject pyswigpacked_type
; 
1784   static int type_init 
= 0;   
1786     const PyTypeObject tmp
 
1788         PyObject_HEAD_INIT(NULL
) 
1790         (char *)"PySwigPacked",             /* tp_name */        
1791         sizeof(PySwigPacked
),               /* tp_basicsize */   
1792         0,                                  /* tp_itemsize */    
1793         (destructor
)PySwigPacked_dealloc
,   /* tp_dealloc */     
1794         (printfunc
)PySwigPacked_print
,      /* tp_print */       
1795         (getattrfunc
)0,                     /* tp_getattr */     
1796         (setattrfunc
)0,                     /* tp_setattr */     
1797         (cmpfunc
)PySwigPacked_compare
,      /* tp_compare */     
1798         (reprfunc
)PySwigPacked_repr
,        /* tp_repr */        
1799         0,                                  /* tp_as_number */   
1800         0,                                  /* tp_as_sequence */ 
1801         0,                                  /* tp_as_mapping */  
1802         (hashfunc
)0,                        /* tp_hash */        
1803         (ternaryfunc
)0,                     /* tp_call */        
1804         (reprfunc
)PySwigPacked_str
,         /* tp_str */         
1805         PyObject_GenericGetAttr
,            /* tp_getattro */ 
1806         0,                                  /* tp_setattro */ 
1807         0,                                  /* tp_as_buffer */ 
1808         Py_TPFLAGS_DEFAULT
,                 /* tp_flags */ 
1809         swigpacked_doc
,                     /* tp_doc */ 
1810         0,                                  /* tp_traverse */ 
1812         0,                                  /* tp_richcompare */ 
1813         0,                                  /* tp_weaklistoffset */ 
1814 #if PY_VERSION_HEX >= 0x02020000 
1816         0,                                  /* tp_iternext */ 
1822         0,                                  /* tp_descr_get */           
1823         0,                                  /* tp_descr_set */           
1824         0,                                  /* tp_dictoffset */          
1833         0,                                  /* tp_subclasses */ 
1834         0,                                  /* tp_weaklist */ 
1836 #if PY_VERSION_HEX >= 0x02030000 
1840         0,0,0,0                             /* tp_alloc -> tp_next */ 
1843     pyswigpacked_type 
= tmp
; 
1844     pyswigpacked_type
.ob_type 
= &PyType_Type
; 
1847   return &pyswigpacked_type
; 
1850 SWIGRUNTIME PyObject 
* 
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info 
*ty
) 
1853   PySwigPacked 
*sobj 
= PyObject_NEW(PySwigPacked
, PySwigPacked_type()); 
1855     void *pack 
= malloc(size
); 
1857       memcpy(pack
, ptr
, size
); 
1862       PyObject_DEL((PyObject 
*) sobj
); 
1866   return (PyObject 
*) sobj
; 
1869 SWIGRUNTIME swig_type_info 
* 
1870 PySwigPacked_UnpackData(PyObject 
*obj
, void *ptr
, size_t size
) 
1872   if (PySwigPacked_Check(obj
)) { 
1873     PySwigPacked 
*sobj 
= (PySwigPacked 
*)obj
; 
1874     if (sobj
->size 
!= size
) return 0; 
1875     memcpy(ptr
, sobj
->pack
, size
); 
1882 /* ----------------------------------------------------------------------------- 
1883  * pointers/data manipulation 
1884  * ----------------------------------------------------------------------------- */ 
1886 SWIGRUNTIMEINLINE PyObject 
* 
1889   return PyString_FromString("this"); 
1892 SWIGRUNTIME PyObject 
* 
1895   static PyObject 
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This(); 
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */ 
1901 SWIGRUNTIME PySwigObject 
* 
1902 SWIG_Python_GetSwigThis(PyObject 
*pyobj
)  
1904   if (PySwigObject_Check(pyobj
)) { 
1905     return (PySwigObject 
*) pyobj
; 
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000)) 
1909     if (PyInstance_Check(pyobj
)) { 
1910       obj 
= _PyInstance_Lookup(pyobj
, SWIG_This());       
1912       PyObject 
**dictptr 
= _PyObject_GetDictPtr(pyobj
); 
1913       if (dictptr 
!= NULL
) { 
1914         PyObject 
*dict 
= *dictptr
; 
1915         obj 
= dict 
? PyDict_GetItem(dict
, SWIG_This()) : 0; 
1917 #ifdef PyWeakref_CheckProxy 
1918         if (PyWeakref_CheckProxy(pyobj
)) { 
1919           PyObject 
*wobj 
= PyWeakref_GET_OBJECT(pyobj
); 
1920           return wobj 
? SWIG_Python_GetSwigThis(wobj
) : 0; 
1923         obj 
= PyObject_GetAttr(pyobj
,SWIG_This()); 
1927           if (PyErr_Occurred()) PyErr_Clear(); 
1933     obj 
= PyObject_GetAttr(pyobj
,SWIG_This()); 
1937       if (PyErr_Occurred()) PyErr_Clear(); 
1941     if (obj 
&& !PySwigObject_Check(obj
)) { 
1942       /* a PyObject is called 'this', try to get the 'real this' 
1943          PySwigObject from it */  
1944       return SWIG_Python_GetSwigThis(obj
); 
1946     return (PySwigObject 
*)obj
; 
1950 /* Acquire a pointer value */ 
1953 SWIG_Python_AcquirePtr(PyObject 
*obj
, int own
) { 
1955     PySwigObject 
*sobj 
= SWIG_Python_GetSwigThis(obj
); 
1957       int oldown 
= sobj
->own
; 
1965 /* Convert a pointer value */ 
1968 SWIG_Python_ConvertPtrAndOwn(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
, int flags
, int *own
) { 
1969   if (!obj
) return SWIG_ERROR
; 
1970   if (obj 
== Py_None
) { 
1974     PySwigObject 
*sobj 
= SWIG_Python_GetSwigThis(obj
); 
1976       void *vptr 
= sobj
->ptr
; 
1978         swig_type_info 
*to 
= sobj
->ty
; 
1980           /* no type cast needed */ 
1981           if (ptr
) *ptr 
= vptr
; 
1984           swig_cast_info 
*tc 
= SWIG_TypeCheck(to
->name
,ty
); 
1986             sobj 
= (PySwigObject 
*)sobj
->next
; 
1988             if (ptr
) *ptr 
= SWIG_TypeCast(tc
,vptr
); 
1993         if (ptr
) *ptr 
= vptr
; 
1998       if (own
) *own 
= sobj
->own
; 
1999       if (flags 
& SWIG_POINTER_DISOWN
) { 
2004       int res 
= SWIG_ERROR
; 
2005       if (flags 
& SWIG_POINTER_IMPLICIT_CONV
) { 
2006         PySwigClientData 
*data 
= ty 
? (PySwigClientData 
*) ty
->clientdata 
: 0; 
2007         if (data 
&& !data
->implicitconv
) { 
2008           PyObject 
*klass 
= data
->klass
; 
2011             data
->implicitconv 
= 1; /* avoid recursion and call 'explicit' constructors*/ 
2012             impconv 
= SWIG_Python_CallFunctor(klass
, obj
); 
2013             data
->implicitconv 
= 0; 
2014             if (PyErr_Occurred()) { 
2019               PySwigObject 
*iobj 
= SWIG_Python_GetSwigThis(impconv
); 
2022                 res 
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0); 
2023                 if (SWIG_IsOK(res
)) { 
2026                     /* transfer the ownership to 'ptr' */ 
2028                     res 
= SWIG_AddCast(res
); 
2029                     res 
= SWIG_AddNewMask(res
); 
2031                     res 
= SWIG_AddCast(res
);                 
2045 /* Convert a function ptr value */ 
2048 SWIG_Python_ConvertFunctionPtr(PyObject 
*obj
, void **ptr
, swig_type_info 
*ty
) { 
2049   if (!PyCFunction_Check(obj
)) { 
2050     return SWIG_ConvertPtr(obj
, ptr
, ty
, 0); 
2054     /* here we get the method pointer for callbacks */ 
2055     const char *doc 
= (((PyCFunctionObject 
*)obj
) -> m_ml 
-> ml_doc
); 
2056     const char *desc 
= doc 
? strstr(doc
, "swig_ptr: ") : 0; 
2058       desc 
= ty 
? SWIG_UnpackVoidPtr(desc 
+ 10, &vptr
, ty
->name
) : 0; 
2059       if (!desc
) return SWIG_ERROR
; 
2062       swig_cast_info 
*tc 
= SWIG_TypeCheck(desc
,ty
); 
2063       if (!tc
) return SWIG_ERROR
; 
2064       *ptr 
= SWIG_TypeCast(tc
,vptr
); 
2072 /* Convert a packed value value */ 
2075 SWIG_Python_ConvertPacked(PyObject 
*obj
, void *ptr
, size_t sz
, swig_type_info 
*ty
) { 
2076   swig_type_info 
*to 
= PySwigPacked_UnpackData(obj
, ptr
, sz
); 
2077   if (!to
) return SWIG_ERROR
; 
2080       /* check type cast? */ 
2081       swig_cast_info 
*tc 
= SWIG_TypeCheck(to
->name
,ty
); 
2082       if (!tc
) return SWIG_ERROR
; 
2088 /* ----------------------------------------------------------------------------- 
2089  * Create a new pointer object 
2090  * ----------------------------------------------------------------------------- */ 
2093   Create a new instance object, whitout calling __init__, and set the 
2097 SWIGRUNTIME PyObject
*  
2098 SWIG_Python_NewShadowInstance(PySwigClientData 
*data
, PyObject 
*swig_this
) 
2100 #if (PY_VERSION_HEX >= 0x02020000) 
2102   PyObject 
*newraw 
= data
->newraw
; 
2104     inst 
= PyObject_Call(newraw
, data
->newargs
, NULL
); 
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS) 
2107       PyObject 
**dictptr 
= _PyObject_GetDictPtr(inst
); 
2108       if (dictptr 
!= NULL
) { 
2109         PyObject 
*dict 
= *dictptr
; 
2111           dict 
= PyDict_New(); 
2113           PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2117       PyObject 
*key 
= SWIG_This(); 
2118       PyObject_SetAttr(inst
, key
, swig_this
); 
2122     PyObject 
*dict 
= PyDict_New(); 
2123     PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2124     inst 
= PyInstance_NewRaw(data
->newargs
, dict
); 
2129 #if (PY_VERSION_HEX >= 0x02010000) 
2131   PyObject 
*dict 
= PyDict_New(); 
2132   PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2133   inst 
= PyInstance_NewRaw(data
->newargs
, dict
); 
2135   return (PyObject 
*) inst
; 
2137   PyInstanceObject 
*inst 
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
); 
2141   inst
->in_class 
= (PyClassObject 
*)data
->newargs
; 
2142   Py_INCREF(inst
->in_class
); 
2143   inst
->in_dict 
= PyDict_New(); 
2144   if (inst
->in_dict 
== NULL
) { 
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS 
2149   inst
->in_weakreflist 
= NULL
; 
2151 #ifdef Py_TPFLAGS_GC 
2152   PyObject_GC_Init(inst
); 
2154   PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
); 
2155   return (PyObject 
*) inst
; 
2161 SWIG_Python_SetSwigThis(PyObject 
*inst
, PyObject 
*swig_this
) 
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS) 
2165  PyObject 
**dictptr 
= _PyObject_GetDictPtr(inst
); 
2166  if (dictptr 
!= NULL
) { 
2169      dict 
= PyDict_New(); 
2172    PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2176  dict 
= PyObject_GetAttrString(inst
, "__dict__"); 
2177  PyDict_SetItem(dict
, SWIG_This(), swig_this
); 
2182 SWIGINTERN PyObject 
* 
2183 SWIG_Python_InitShadowInstance(PyObject 
*args
) { 
2185   if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) { 
2188     PySwigObject 
*sthis 
= SWIG_Python_GetSwigThis(obj
[0]); 
2190       PySwigObject_append((PyObject
*) sthis
, obj
[1]); 
2192       SWIG_Python_SetSwigThis(obj
[0], obj
[1]); 
2194     return SWIG_Py_Void(); 
2198 /* Create a new pointer object */ 
2200 SWIGRUNTIME PyObject 
* 
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info 
*type
, int flags
) { 
2203     return SWIG_Py_Void(); 
2205     int own 
= (flags 
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN 
: 0; 
2206     PyObject 
*robj 
= PySwigObject_New(ptr
, type
, own
); 
2207     PySwigClientData 
*clientdata 
= type 
? (PySwigClientData 
*)(type
->clientdata
) : 0; 
2208     if (clientdata 
&& !(flags 
& SWIG_POINTER_NOSHADOW
)) { 
2209       PyObject 
*inst 
= SWIG_Python_NewShadowInstance(clientdata
, robj
); 
2219 /* Create a new packed object */ 
2221 SWIGRUNTIMEINLINE PyObject 
* 
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info 
*type
) { 
2223   return ptr 
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void(); 
2226 /* -----------------------------------------------------------------------------* 
2228  * -----------------------------------------------------------------------------*/ 
2230 #ifdef SWIG_LINK_RUNTIME 
2231 void *SWIG_ReturnGlobalTypeList(void *); 
2234 SWIGRUNTIME swig_module_info 
* 
2235 SWIG_Python_GetModule(void) { 
2236   static void *type_pointer 
= (void *)0; 
2237   /* first check if module already created */ 
2238   if (!type_pointer
) { 
2239 #ifdef SWIG_LINK_RUNTIME 
2240     type_pointer 
= SWIG_ReturnGlobalTypeList((void *)0); 
2242     type_pointer 
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
2243                                     (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
); 
2244     if (PyErr_Occurred()) { 
2246       type_pointer 
= (void *)0; 
2250   return (swig_module_info 
*) type_pointer
; 
2253 #if PY_MAJOR_VERSION < 2 
2254 /* PyModule_AddObject function was introduced in Python 2.0.  The following function 
2255    is copied out of Python/modsupport.c in python version 2.3.4 */ 
2257 PyModule_AddObject(PyObject 
*m
, char *name
, PyObject 
*o
) 
2260   if (!PyModule_Check(m
)) { 
2261     PyErr_SetString(PyExc_TypeError
, 
2262                     "PyModule_AddObject() needs module as first arg"); 
2266     PyErr_SetString(PyExc_TypeError
, 
2267                     "PyModule_AddObject() needs non-NULL value"); 
2271   dict 
= PyModule_GetDict(m
); 
2273     /* Internal error -- modules must have a dict! */ 
2274     PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__", 
2275                  PyModule_GetName(m
)); 
2278   if (PyDict_SetItemString(dict
, name
, o
)) 
2286 SWIG_Python_DestroyModule(void *vptr
) 
2288   swig_module_info 
*swig_module 
= (swig_module_info 
*) vptr
; 
2289   swig_type_info 
**types 
= swig_module
->types
; 
2291   for (i 
=0; i 
< swig_module
->size
; ++i
) { 
2292     swig_type_info 
*ty 
= types
[i
]; 
2294       PySwigClientData 
*data 
= (PySwigClientData 
*) ty
->clientdata
; 
2295       if (data
) PySwigClientData_Del(data
); 
2298   Py_DECREF(SWIG_This()); 
2302 SWIG_Python_SetModule(swig_module_info 
*swig_module
) { 
2303   static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */ 
2305   PyObject 
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
, 
2306                                    swig_empty_runtime_method_table
); 
2307   PyObject 
*pointer 
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
); 
2308   if (pointer 
&& module) { 
2309     PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
); 
2311     Py_XDECREF(pointer
); 
2315 /* The python cached type query */ 
2316 SWIGRUNTIME PyObject 
* 
2317 SWIG_Python_TypeCache() { 
2318   static PyObject 
*SWIG_STATIC_POINTER(cache
) = PyDict_New(); 
2322 SWIGRUNTIME swig_type_info 
* 
2323 SWIG_Python_TypeQuery(const char *type
) 
2325   PyObject 
*cache 
= SWIG_Python_TypeCache(); 
2326   PyObject 
*key 
= PyString_FromString(type
);  
2327   PyObject 
*obj 
= PyDict_GetItem(cache
, key
); 
2328   swig_type_info 
*descriptor
; 
2330     descriptor 
= (swig_type_info 
*) PyCObject_AsVoidPtr(obj
); 
2332     swig_module_info 
*swig_module 
= SWIG_Python_GetModule(); 
2333     descriptor 
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
); 
2335       obj 
= PyCObject_FromVoidPtr(descriptor
, NULL
); 
2336       PyDict_SetItem(cache
, key
, obj
); 
2345    For backward compatibility only 
2347 #define SWIG_POINTER_EXCEPTION  0 
2348 #define SWIG_arg_fail(arg)      SWIG_Python_ArgFail(arg) 
2349 #define SWIG_MustGetPtr(p, type, argnum, flags)  SWIG_Python_MustGetPtr(p, type, argnum, flags) 
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
) 
2354   if (PyErr_Occurred()) { 
2356     PyObject 
*value 
= 0; 
2357     PyObject 
*traceback 
= 0; 
2358     PyErr_Fetch(&type
, &value
, &traceback
); 
2360       PyObject 
*old_str 
= PyObject_Str(value
); 
2364         PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
)); 
2366         PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
); 
2377 SWIG_Python_ArgFail(int argnum
) 
2379   if (PyErr_Occurred()) { 
2380     /* add information about failing argument */ 
2382     PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
); 
2383     return SWIG_Python_AddErrMesg(mesg
, 1); 
2389 SWIGRUNTIMEINLINE 
const char * 
2390 PySwigObject_GetDesc(PyObject 
*self
) 
2392   PySwigObject 
*v 
= (PySwigObject 
*)self
; 
2393   swig_type_info 
*ty 
= v 
? v
->ty 
: 0; 
2394   return ty 
? ty
->str 
: (char*)""; 
2398 SWIG_Python_TypeError(const char *type
, PyObject 
*obj
) 
2401 #if defined(SWIG_COBJECT_TYPES) 
2402     if (obj 
&& PySwigObject_Check(obj
)) { 
2403       const char *otype 
= (const char *) PySwigObject_GetDesc(obj
); 
2405         PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received", 
2412       const char *otype 
= (obj 
? obj
->ob_type
->tp_name 
: 0);  
2414         PyObject 
*str 
= PyObject_Str(obj
); 
2415         const char *cstr 
= str 
? PyString_AsString(str
) : 0; 
2417           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received", 
2420           PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received", 
2427     PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
); 
2429     PyErr_Format(PyExc_TypeError
, "unexpected type is received"); 
2434 /* Convert a pointer value, signal an exception on a type mismatch */ 
2436 SWIG_Python_MustGetPtr(PyObject 
*obj
, swig_type_info 
*ty
, int argnum
, int flags
) { 
2438   if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) { 
2440     if (flags 
& SWIG_POINTER_EXCEPTION
) { 
2441       SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
); 
2442       SWIG_Python_ArgFail(argnum
); 
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)  
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else  
2464 /* -------- TYPES TABLE (BEGIN) -------- */ 
2466 #define SWIGTYPE_p_char swig_types[0] 
2467 #define SWIGTYPE_p_form_ops_t swig_types[1] 
2468 #define SWIGTYPE_p_int swig_types[2] 
2469 #define SWIGTYPE_p_unsigned_char swig_types[3] 
2470 #define SWIGTYPE_p_unsigned_int swig_types[4] 
2471 #define SWIGTYPE_p_unsigned_long swig_types[5] 
2472 #define SWIGTYPE_p_void swig_types[6] 
2473 #define SWIGTYPE_p_wxANIHandler swig_types[7] 
2474 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8] 
2475 #define SWIGTYPE_p_wxActivateEvent swig_types[9] 
2476 #define SWIGTYPE_p_wxBMPHandler swig_types[10] 
2477 #define SWIGTYPE_p_wxBitmap swig_types[11] 
2478 #define SWIGTYPE_p_wxBoxSizer swig_types[12] 
2479 #define SWIGTYPE_p_wxBusyInfo swig_types[13] 
2480 #define SWIGTYPE_p_wxCURHandler swig_types[14] 
2481 #define SWIGTYPE_p_wxChildFocusEvent swig_types[15] 
2482 #define SWIGTYPE_p_wxClipboard swig_types[16] 
2483 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[17] 
2484 #define SWIGTYPE_p_wxCloseEvent swig_types[18] 
2485 #define SWIGTYPE_p_wxColour swig_types[19] 
2486 #define SWIGTYPE_p_wxCommandEvent swig_types[20] 
2487 #define SWIGTYPE_p_wxContextMenuEvent swig_types[21] 
2488 #define SWIGTYPE_p_wxControl swig_types[22] 
2489 #define SWIGTYPE_p_wxControlWithItems swig_types[23] 
2490 #define SWIGTYPE_p_wxDC swig_types[24] 
2491 #define SWIGTYPE_p_wxDateEvent swig_types[25] 
2492 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[26] 
2493 #define SWIGTYPE_p_wxDropFilesEvent swig_types[27] 
2494 #define SWIGTYPE_p_wxDuplexMode swig_types[28] 
2495 #define SWIGTYPE_p_wxEraseEvent swig_types[29] 
2496 #define SWIGTYPE_p_wxEvent swig_types[30] 
2497 #define SWIGTYPE_p_wxEvtHandler swig_types[31] 
2498 #define SWIGTYPE_p_wxFSFile swig_types[32] 
2499 #define SWIGTYPE_p_wxFileHistory swig_types[33] 
2500 #define SWIGTYPE_p_wxFileSystem swig_types[34] 
2501 #define SWIGTYPE_p_wxFlexGridSizer swig_types[35] 
2502 #define SWIGTYPE_p_wxFocusEvent swig_types[36] 
2503 #define SWIGTYPE_p_wxFont swig_types[37] 
2504 #define SWIGTYPE_p_wxGBSizerItem swig_types[38] 
2505 #define SWIGTYPE_p_wxGIFHandler swig_types[39] 
2506 #define SWIGTYPE_p_wxGridBagSizer swig_types[40] 
2507 #define SWIGTYPE_p_wxGridSizer swig_types[41] 
2508 #define SWIGTYPE_p_wxICOHandler swig_types[42] 
2509 #define SWIGTYPE_p_wxIconizeEvent swig_types[43] 
2510 #define SWIGTYPE_p_wxIdleEvent swig_types[44] 
2511 #define SWIGTYPE_p_wxImage swig_types[45] 
2512 #define SWIGTYPE_p_wxImageHandler swig_types[46] 
2513 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[47] 
2514 #define SWIGTYPE_p_wxInitDialogEvent swig_types[48] 
2515 #define SWIGTYPE_p_wxJPEGHandler swig_types[49] 
2516 #define SWIGTYPE_p_wxJoystickEvent swig_types[50] 
2517 #define SWIGTYPE_p_wxKeyEvent swig_types[51] 
2518 #define SWIGTYPE_p_wxLayoutConstraints swig_types[52] 
2519 #define SWIGTYPE_p_wxMaximizeEvent swig_types[53] 
2520 #define SWIGTYPE_p_wxMemoryBuffer swig_types[54] 
2521 #define SWIGTYPE_p_wxMenu swig_types[55] 
2522 #define SWIGTYPE_p_wxMenuBar swig_types[56] 
2523 #define SWIGTYPE_p_wxMenuEvent swig_types[57] 
2524 #define SWIGTYPE_p_wxMenuItem swig_types[58] 
2525 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[59] 
2526 #define SWIGTYPE_p_wxMouseCaptureLostEvent swig_types[60] 
2527 #define SWIGTYPE_p_wxMouseEvent swig_types[61] 
2528 #define SWIGTYPE_p_wxMoveEvent swig_types[62] 
2529 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[63] 
2530 #define SWIGTYPE_p_wxNcPaintEvent swig_types[64] 
2531 #define SWIGTYPE_p_wxNotifyEvent swig_types[65] 
2532 #define SWIGTYPE_p_wxObject swig_types[66] 
2533 #define SWIGTYPE_p_wxPCXHandler swig_types[67] 
2534 #define SWIGTYPE_p_wxPNGHandler swig_types[68] 
2535 #define SWIGTYPE_p_wxPNMHandler swig_types[69] 
2536 #define SWIGTYPE_p_wxPaintEvent swig_types[70] 
2537 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[71] 
2538 #define SWIGTYPE_p_wxPaperSize swig_types[72] 
2539 #define SWIGTYPE_p_wxPoint swig_types[73] 
2540 #define SWIGTYPE_p_wxPowerEvent swig_types[74] 
2541 #define SWIGTYPE_p_wxProcessEvent swig_types[75] 
2542 #define SWIGTYPE_p_wxPyApp swig_types[76] 
2543 #define SWIGTYPE_p_wxPyCommandEvent swig_types[77] 
2544 #define SWIGTYPE_p_wxPyEvent swig_types[78] 
2545 #define SWIGTYPE_p_wxPyImageHandler swig_types[79] 
2546 #define SWIGTYPE_p_wxPyProcess swig_types[80] 
2547 #define SWIGTYPE_p_wxPySizer swig_types[81] 
2548 #define SWIGTYPE_p_wxPyTimer swig_types[82] 
2549 #define SWIGTYPE_p_wxPyValidator swig_types[83] 
2550 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[84] 
2551 #define SWIGTYPE_p_wxRect swig_types[85] 
2552 #define SWIGTYPE_p_wxScrollBar swig_types[86] 
2553 #define SWIGTYPE_p_wxScrollEvent swig_types[87] 
2554 #define SWIGTYPE_p_wxScrollWinEvent swig_types[88] 
2555 #define SWIGTYPE_p_wxSetCursorEvent swig_types[89] 
2556 #define SWIGTYPE_p_wxShowEvent swig_types[90] 
2557 #define SWIGTYPE_p_wxSizeEvent swig_types[91] 
2558 #define SWIGTYPE_p_wxSizer swig_types[92] 
2559 #define SWIGTYPE_p_wxSizerItem swig_types[93] 
2560 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[94] 
2561 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[95] 
2562 #define SWIGTYPE_p_wxStyledTextCtrl swig_types[96] 
2563 #define SWIGTYPE_p_wxStyledTextEvent swig_types[97] 
2564 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[98] 
2565 #define SWIGTYPE_p_wxSystemOptions swig_types[99] 
2566 #define SWIGTYPE_p_wxTIFFHandler swig_types[100] 
2567 #define SWIGTYPE_p_wxTimerEvent swig_types[101] 
2568 #define SWIGTYPE_p_wxToolTip swig_types[102] 
2569 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[103] 
2570 #define SWIGTYPE_p_wxValidator swig_types[104] 
2571 #define SWIGTYPE_p_wxWindow swig_types[105] 
2572 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[106] 
2573 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[107] 
2574 #define SWIGTYPE_p_wxXPMHandler swig_types[108] 
2575 static swig_type_info 
*swig_types
[110]; 
2576 static swig_module_info swig_module 
= {swig_types
, 109, 0, 0, 0, 0}; 
2577 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name) 
2578 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name) 
2580 /* -------- TYPES TABLE (END) -------- */ 
2582 #if (PY_VERSION_HEX <= 0x02000000) 
2583 # if !defined(SWIG_PYTHON_CLASSIC) 
2584 #  error "This python version requires to use swig with the '-classic' option" 
2587 #if (PY_VERSION_HEX <= 0x02020000) 
2588 # error "This python version requires to use swig with the '-nomodern' option" 
2590 #if (PY_VERSION_HEX <= 0x02020000) 
2591 # error "This python version requires to use swig with the '-nomodernargs' option" 
2594 # error "This python version requires to use swig with the '-nofastunpack' option" 
2597 /*----------------------------------------------- 
2599   ------------------------------------------------*/ 
2600 #define SWIG_init    init_stc 
2602 #define SWIG_name    "_stc" 
2604 #define SWIGVERSION 0x010329  
2607 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))  
2608 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))  
2611 #include <stdexcept> 
2615   class PyObject_ptr 
{ 
2620     PyObject_ptr() :_obj(0) 
2624     PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
) 
2629     PyObject_ptr(PyObject 
*obj
, bool initial_ref 
= true) :_obj(obj
) 
2631       if (initial_ref
) Py_XINCREF(_obj
); 
2634     PyObject_ptr 
& operator=(const PyObject_ptr
& item
)  
2636       Py_XINCREF(item
._obj
); 
2647     operator PyObject 
*() const 
2652     PyObject 
*operator->() const 
2661   struct PyObject_var 
: PyObject_ptr 
{ 
2662     PyObject_var(PyObject
* obj 
= 0) : PyObject_ptr(obj
, false) { } 
2664     PyObject_var 
& operator = (PyObject
* obj
) 
2674 #include "wx/wxPython/wxPython.h" 
2675 #include "wx/wxPython/pyclasses.h" 
2676 #include <wx/stc/stc.h> 
2679  static const wxString 
wxPySTCNameStr(wxSTCNameStr
);  
2681   #define SWIG_From_long   PyInt_FromLong  
2684 SWIGINTERNINLINE PyObject 
* 
2685 SWIG_From_int  (int value
) 
2687   return SWIG_From_long  (value
); 
2693 # define LLONG_MIN      LONG_LONG_MIN 
2696 # define LLONG_MAX      LONG_LONG_MAX 
2699 # define ULLONG_MAX     ULONG_LONG_MAX 
2704 SWIG_AsVal_long (PyObject
* obj
, long* val
) 
2706     if (PyNumber_Check(obj
)) { 
2707         if (val
) *val 
= PyInt_AsLong(obj
); 
2710     return SWIG_TypeError
; 
2715 SWIG_AsVal_int (PyObject 
* obj
, int *val
) 
2718   int res 
= SWIG_AsVal_long (obj
, &v
); 
2719   if (SWIG_IsOK(res
)) { 
2720     if ((v 
< INT_MIN 
|| v 
> INT_MAX
)) { 
2721       return SWIG_OverflowError
; 
2723       if (val
) *val 
= static_cast< int >(v
); 
2731 SWIG_AsVal_bool (PyObject 
*obj
, bool *val
) 
2733   if (obj 
== Py_True
) { 
2734     if (val
) *val 
= true; 
2736   } else if (obj 
== Py_False
) { 
2737     if (val
) *val 
= false; 
2741     int res 
= SWIG_AddCast(SWIG_AsVal_long (obj
, val 
? &v 
: 0)); 
2742     if (SWIG_IsOK(res
) && val
) *val 
= v 
? true : false; 
2748 SWIGINTERN swig_type_info
* 
2749 SWIG_pchar_descriptor() 
2751   static int init 
= 0; 
2752   static swig_type_info
* info 
= 0; 
2754     info 
= SWIG_TypeQuery("_p_char"); 
2762 SWIG_AsCharPtrAndSize(PyObject 
*obj
, char** cptr
, size_t* psize
, int *alloc
) 
2764   if (PyString_Check(obj
)) { 
2765     char *cstr
; Py_ssize_t len
; 
2766     PyString_AsStringAndSize(obj
, &cstr
, &len
); 
2770            In python the user should not be able to modify the inner 
2771            string representation. To warranty that, if you define 
2772            SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string 
2773            buffer is always returned. 
2775            The default behavior is just to return the pointer value, 
2778 #if defined(SWIG_PYTHON_SAFE_CSTRINGS) 
2779         if (*alloc 
!= SWIG_OLDOBJ
)  
2781         if (*alloc 
== SWIG_NEWOBJ
)  
2784             *cptr 
= reinterpret_cast< char* >(memcpy((new char[len 
+ 1]), cstr
, sizeof(char)*(len 
+ 1))); 
2785             *alloc 
= SWIG_NEWOBJ
; 
2789           *alloc 
= SWIG_OLDOBJ
; 
2792         *cptr 
= PyString_AsString(obj
); 
2795     if (psize
) *psize 
= len 
+ 1; 
2798     swig_type_info
* pchar_descriptor 
= SWIG_pchar_descriptor(); 
2799     if (pchar_descriptor
) { 
2801       if (SWIG_ConvertPtr(obj
, &vptr
, pchar_descriptor
, 0) == SWIG_OK
) { 
2802         if (cptr
) *cptr 
= (char *) vptr
; 
2803         if (psize
) *psize 
= vptr 
? (strlen((char *)vptr
) + 1) : 0; 
2804         if (alloc
) *alloc 
= SWIG_OLDOBJ
; 
2809   return SWIG_TypeError
; 
2818 SWIGINTERN 
int STCNameStr_set(PyObject 
*) { 
2819   SWIG_Error(SWIG_AttributeError
,"Variable STCNameStr is read-only."); 
2824 SWIGINTERN PyObject 
*STCNameStr_get(void) { 
2825   PyObject 
*pyobj 
= 0; 
2829     pyobj 
= PyUnicode_FromWideChar((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len()); 
2831     pyobj 
= PyString_FromStringAndSize((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len()); 
2838 SWIGINTERN PyObject 
*_wrap_new_StyledTextCtrl(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
2839   PyObject 
*resultobj 
= 0; 
2840   wxWindow 
*arg1 
= (wxWindow 
*) 0 ; 
2841   int arg2 
= (int) wxID_ANY 
; 
2842   wxPoint 
const &arg3_defvalue 
= wxDefaultPosition 
; 
2843   wxPoint 
*arg3 
= (wxPoint 
*) &arg3_defvalue 
; 
2844   wxSize 
const &arg4_defvalue 
= wxDefaultSize 
; 
2845   wxSize 
*arg4 
= (wxSize 
*) &arg4_defvalue 
; 
2846   long arg5 
= (long) 0 ; 
2847   wxString 
const &arg6_defvalue 
= wxPySTCNameStr 
; 
2848   wxString 
*arg6 
= (wxString 
*) &arg6_defvalue 
; 
2849   wxStyledTextCtrl 
*result 
= 0 ; 
2858   bool temp6 
= false ; 
2859   PyObject 
* obj0 
= 0 ; 
2860   PyObject 
* obj1 
= 0 ; 
2861   PyObject 
* obj2 
= 0 ; 
2862   PyObject 
* obj3 
= 0 ; 
2863   PyObject 
* obj4 
= 0 ; 
2864   PyObject 
* obj5 
= 0 ; 
2865   char *  kwnames
[] = { 
2866     (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
2869   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StyledTextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
; 
2870   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
2871   if (!SWIG_IsOK(res1
)) { 
2872     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StyledTextCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");  
2874   arg1 
= reinterpret_cast< wxWindow 
* >(argp1
); 
2876     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
2877     if (!SWIG_IsOK(ecode2
)) { 
2878       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextCtrl" "', expected argument " "2"" of type '" "int""'"); 
2880     arg2 
= static_cast< int >(val2
); 
2885       if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
; 
2891       if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
; 
2895     ecode5 
= SWIG_AsVal_long(obj4
, &val5
); 
2896     if (!SWIG_IsOK(ecode5
)) { 
2897       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_StyledTextCtrl" "', expected argument " "5"" of type '" "long""'"); 
2899     arg5 
= static_cast< long >(val5
); 
2903       arg6 
= wxString_in_helper(obj5
); 
2904       if (arg6 
== NULL
) SWIG_fail
; 
2909     if (!wxPyCheckForApp()) SWIG_fail
; 
2910     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2911     result 
= (wxStyledTextCtrl 
*)new wxStyledTextCtrl(arg1
,arg2
,(wxPoint 
const &)*arg3
,(wxSize 
const &)*arg4
,arg5
,(wxString 
const &)*arg6
); 
2912     wxPyEndAllowThreads(__tstate
); 
2913     if (PyErr_Occurred()) SWIG_fail
; 
2915   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_NEW 
|  0 ); 
2930 SWIGINTERN PyObject 
*_wrap_new_PreStyledTextCtrl(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
2931   PyObject 
*resultobj 
= 0; 
2932   wxStyledTextCtrl 
*result 
= 0 ; 
2934   if (!SWIG_Python_UnpackTuple(args
,"new_PreStyledTextCtrl",0,0,0)) SWIG_fail
; 
2936     if (!wxPyCheckForApp()) SWIG_fail
; 
2937     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
2938     result 
= (wxStyledTextCtrl 
*)new wxStyledTextCtrl(); 
2939     wxPyEndAllowThreads(__tstate
); 
2940     if (PyErr_Occurred()) SWIG_fail
; 
2942   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_OWN 
|  0 ); 
2949 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Create(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
2950   PyObject 
*resultobj 
= 0; 
2951   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
2952   wxWindow 
*arg2 
= (wxWindow 
*) 0 ; 
2953   int arg3 
= (int) wxID_ANY 
; 
2954   wxPoint 
const &arg4_defvalue 
= wxDefaultPosition 
; 
2955   wxPoint 
*arg4 
= (wxPoint 
*) &arg4_defvalue 
; 
2956   wxSize 
const &arg5_defvalue 
= wxDefaultSize 
; 
2957   wxSize 
*arg5 
= (wxSize 
*) &arg5_defvalue 
; 
2958   long arg6 
= (long) 0 ; 
2959   wxString 
const &arg7_defvalue 
= wxSTCNameStr 
; 
2960   wxString 
*arg7 
= (wxString 
*) &arg7_defvalue 
; 
2972   bool temp7 
= false ; 
2973   PyObject 
* obj0 
= 0 ; 
2974   PyObject 
* obj1 
= 0 ; 
2975   PyObject 
* obj2 
= 0 ; 
2976   PyObject 
* obj3 
= 0 ; 
2977   PyObject 
* obj4 
= 0 ; 
2978   PyObject 
* obj5 
= 0 ; 
2979   PyObject 
* obj6 
= 0 ; 
2980   char *  kwnames
[] = { 
2981     (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL 
 
2984   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StyledTextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
; 
2985   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
2986   if (!SWIG_IsOK(res1
)) { 
2987     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Create" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
2989   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
2990   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 |  0 ); 
2991   if (!SWIG_IsOK(res2
)) { 
2992     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_Create" "', expected argument " "2"" of type '" "wxWindow *""'");  
2994   arg2 
= reinterpret_cast< wxWindow 
* >(argp2
); 
2996     ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
2997     if (!SWIG_IsOK(ecode3
)) { 
2998       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Create" "', expected argument " "3"" of type '" "int""'"); 
3000     arg3 
= static_cast< int >(val3
); 
3005       if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
; 
3011       if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
; 
3015     ecode6 
= SWIG_AsVal_long(obj5
, &val6
); 
3016     if (!SWIG_IsOK(ecode6
)) { 
3017       SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_Create" "', expected argument " "6"" of type '" "long""'"); 
3019     arg6 
= static_cast< long >(val6
); 
3023       arg7 
= wxString_in_helper(obj6
); 
3024       if (arg7 
== NULL
) SWIG_fail
; 
3029     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3030     result 
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint 
const &)*arg4
,(wxSize 
const &)*arg5
,arg6
,(wxString 
const &)*arg7
); 
3031     wxPyEndAllowThreads(__tstate
); 
3032     if (PyErr_Occurred()) SWIG_fail
; 
3035     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3051 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AddText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3052   PyObject 
*resultobj 
= 0; 
3053   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3054   wxString 
*arg2 
= 0 ; 
3057   bool temp2 
= false ; 
3058   PyObject 
* obj0 
= 0 ; 
3059   PyObject 
* obj1 
= 0 ; 
3060   char *  kwnames
[] = { 
3061     (char *) "self",(char *) "text", NULL 
 
3064   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3065   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3066   if (!SWIG_IsOK(res1
)) { 
3067     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3069   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3071     arg2 
= wxString_in_helper(obj1
); 
3072     if (arg2 
== NULL
) SWIG_fail
; 
3076     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3077     (arg1
)->AddText((wxString 
const &)*arg2
); 
3078     wxPyEndAllowThreads(__tstate
); 
3079     if (PyErr_Occurred()) SWIG_fail
; 
3081   resultobj 
= SWIG_Py_Void(); 
3096 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AddStyledText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3097   PyObject 
*resultobj 
= 0; 
3098   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3099   wxMemoryBuffer 
*arg2 
= 0 ; 
3102   bool temp2 
= false ; 
3103   PyObject 
* obj0 
= 0 ; 
3104   PyObject 
* obj1 
= 0 ; 
3105   char *  kwnames
[] = { 
3106     (char *) "self",(char *) "data", NULL 
 
3109   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddStyledText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3110   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3111   if (!SWIG_IsOK(res1
)) { 
3112     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3114   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3116     if (!PyString_Check(obj1
)) { 
3117       PyErr_SetString(PyExc_TypeError
, "String buffer expected"); 
3120     char* str 
= PyString_AS_STRING(obj1
); 
3121     int   len 
= PyString_GET_SIZE(obj1
); 
3122     arg2 
= new wxMemoryBuffer(len
); 
3124     memcpy(arg2
->GetData(), str
, len
); 
3125     arg2
->SetDataLen(len
); 
3128     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3129     (arg1
)->AddStyledText((wxMemoryBuffer 
const &)*arg2
); 
3130     wxPyEndAllowThreads(__tstate
); 
3131     if (PyErr_Occurred()) SWIG_fail
; 
3133   resultobj 
= SWIG_Py_Void(); 
3135     if (temp2
) delete arg2
; 
3140     if (temp2
) delete arg2
; 
3146 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_InsertText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3147   PyObject 
*resultobj 
= 0; 
3148   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3150   wxString 
*arg3 
= 0 ; 
3155   bool temp3 
= false ; 
3156   PyObject 
* obj0 
= 0 ; 
3157   PyObject 
* obj1 
= 0 ; 
3158   PyObject 
* obj2 
= 0 ; 
3159   char *  kwnames
[] = { 
3160     (char *) "self",(char *) "pos",(char *) "text", NULL 
 
3163   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
3164   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3165   if (!SWIG_IsOK(res1
)) { 
3166     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3168   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3169   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3170   if (!SWIG_IsOK(ecode2
)) { 
3171     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "2"" of type '" "int""'"); 
3173   arg2 
= static_cast< int >(val2
); 
3175     arg3 
= wxString_in_helper(obj2
); 
3176     if (arg3 
== NULL
) SWIG_fail
; 
3180     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3181     (arg1
)->InsertText(arg2
,(wxString 
const &)*arg3
); 
3182     wxPyEndAllowThreads(__tstate
); 
3183     if (PyErr_Occurred()) SWIG_fail
; 
3185   resultobj 
= SWIG_Py_Void(); 
3200 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ClearAll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3201   PyObject 
*resultobj 
= 0; 
3202   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3205   PyObject 
*swig_obj
[1] ; 
3207   if (!args
) SWIG_fail
; 
3209   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3210   if (!SWIG_IsOK(res1
)) { 
3211     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3213   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3215     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3217     wxPyEndAllowThreads(__tstate
); 
3218     if (PyErr_Occurred()) SWIG_fail
; 
3220   resultobj 
= SWIG_Py_Void(); 
3227 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ClearDocumentStyle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3228   PyObject 
*resultobj 
= 0; 
3229   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3232   PyObject 
*swig_obj
[1] ; 
3234   if (!args
) SWIG_fail
; 
3236   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3237   if (!SWIG_IsOK(res1
)) { 
3238     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearDocumentStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3240   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3242     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3243     (arg1
)->ClearDocumentStyle(); 
3244     wxPyEndAllowThreads(__tstate
); 
3245     if (PyErr_Occurred()) SWIG_fail
; 
3247   resultobj 
= SWIG_Py_Void(); 
3254 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLength(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3255   PyObject 
*resultobj 
= 0; 
3256   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3260   PyObject 
*swig_obj
[1] ; 
3262   if (!args
) SWIG_fail
; 
3264   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3265   if (!SWIG_IsOK(res1
)) { 
3266     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3268   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3270     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3271     result 
= (int)(arg1
)->GetLength(); 
3272     wxPyEndAllowThreads(__tstate
); 
3273     if (PyErr_Occurred()) SWIG_fail
; 
3275   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3282 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCharAt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3283   PyObject 
*resultobj 
= 0; 
3284   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3291   PyObject 
* obj0 
= 0 ; 
3292   PyObject 
* obj1 
= 0 ; 
3293   char *  kwnames
[] = { 
3294     (char *) "self",(char *) "pos", NULL 
 
3297   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetCharAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3298   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3299   if (!SWIG_IsOK(res1
)) { 
3300     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3302   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3303   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3304   if (!SWIG_IsOK(ecode2
)) { 
3305     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "2"" of type '" "int""'"); 
3307   arg2 
= static_cast< int >(val2
); 
3309     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3310     result 
= (int)(arg1
)->GetCharAt(arg2
); 
3311     wxPyEndAllowThreads(__tstate
); 
3312     if (PyErr_Occurred()) SWIG_fail
; 
3314   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3321 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCurrentPos(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3322   PyObject 
*resultobj 
= 0; 
3323   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3327   PyObject 
*swig_obj
[1] ; 
3329   if (!args
) SWIG_fail
; 
3331   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3332   if (!SWIG_IsOK(res1
)) { 
3333     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3335   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3337     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3338     result 
= (int)(arg1
)->GetCurrentPos(); 
3339     wxPyEndAllowThreads(__tstate
); 
3340     if (PyErr_Occurred()) SWIG_fail
; 
3342   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3349 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetAnchor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3350   PyObject 
*resultobj 
= 0; 
3351   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3355   PyObject 
*swig_obj
[1] ; 
3357   if (!args
) SWIG_fail
; 
3359   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3360   if (!SWIG_IsOK(res1
)) { 
3361     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3363   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3365     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3366     result 
= (int)(arg1
)->GetAnchor(); 
3367     wxPyEndAllowThreads(__tstate
); 
3368     if (PyErr_Occurred()) SWIG_fail
; 
3370   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3377 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetStyleAt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3378   PyObject 
*resultobj 
= 0; 
3379   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3386   PyObject 
* obj0 
= 0 ; 
3387   PyObject 
* obj1 
= 0 ; 
3388   char *  kwnames
[] = { 
3389     (char *) "self",(char *) "pos", NULL 
 
3392   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetStyleAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3393   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3394   if (!SWIG_IsOK(res1
)) { 
3395     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3397   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3398   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3399   if (!SWIG_IsOK(ecode2
)) { 
3400     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "2"" of type '" "int""'"); 
3402   arg2 
= static_cast< int >(val2
); 
3404     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3405     result 
= (int)(arg1
)->GetStyleAt(arg2
); 
3406     wxPyEndAllowThreads(__tstate
); 
3407     if (PyErr_Occurred()) SWIG_fail
; 
3409   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3416 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Redo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3417   PyObject 
*resultobj 
= 0; 
3418   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3421   PyObject 
*swig_obj
[1] ; 
3423   if (!args
) SWIG_fail
; 
3425   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3426   if (!SWIG_IsOK(res1
)) { 
3427     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Redo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3429   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3431     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3433     wxPyEndAllowThreads(__tstate
); 
3434     if (PyErr_Occurred()) SWIG_fail
; 
3436   resultobj 
= SWIG_Py_Void(); 
3443 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetUndoCollection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3444   PyObject 
*resultobj 
= 0; 
3445   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3451   PyObject 
* obj0 
= 0 ; 
3452   PyObject 
* obj1 
= 0 ; 
3453   char *  kwnames
[] = { 
3454     (char *) "self",(char *) "collectUndo", NULL 
 
3457   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUndoCollection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3458   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3459   if (!SWIG_IsOK(res1
)) { 
3460     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3462   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3463   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
3464   if (!SWIG_IsOK(ecode2
)) { 
3465     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "2"" of type '" "bool""'"); 
3467   arg2 
= static_cast< bool >(val2
); 
3469     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3470     (arg1
)->SetUndoCollection(arg2
); 
3471     wxPyEndAllowThreads(__tstate
); 
3472     if (PyErr_Occurred()) SWIG_fail
; 
3474   resultobj 
= SWIG_Py_Void(); 
3481 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SelectAll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3482   PyObject 
*resultobj 
= 0; 
3483   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3486   PyObject 
*swig_obj
[1] ; 
3488   if (!args
) SWIG_fail
; 
3490   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3491   if (!SWIG_IsOK(res1
)) { 
3492     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3494   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3496     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3497     (arg1
)->SelectAll(); 
3498     wxPyEndAllowThreads(__tstate
); 
3499     if (PyErr_Occurred()) SWIG_fail
; 
3501   resultobj 
= SWIG_Py_Void(); 
3508 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSavePoint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3509   PyObject 
*resultobj 
= 0; 
3510   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3513   PyObject 
*swig_obj
[1] ; 
3515   if (!args
) SWIG_fail
; 
3517   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3518   if (!SWIG_IsOK(res1
)) { 
3519     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSavePoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3521   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3523     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3524     (arg1
)->SetSavePoint(); 
3525     wxPyEndAllowThreads(__tstate
); 
3526     if (PyErr_Occurred()) SWIG_fail
; 
3528   resultobj 
= SWIG_Py_Void(); 
3535 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetStyledText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3536   PyObject 
*resultobj 
= 0; 
3537   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3540   wxMemoryBuffer result
; 
3547   PyObject 
* obj0 
= 0 ; 
3548   PyObject 
* obj1 
= 0 ; 
3549   PyObject 
* obj2 
= 0 ; 
3550   char *  kwnames
[] = { 
3551     (char *) "self",(char *) "startPos",(char *) "endPos", NULL 
 
3554   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetStyledText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
3555   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3556   if (!SWIG_IsOK(res1
)) { 
3557     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3559   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3560   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3561   if (!SWIG_IsOK(ecode2
)) { 
3562     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "2"" of type '" "int""'"); 
3564   arg2 
= static_cast< int >(val2
); 
3565   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
3566   if (!SWIG_IsOK(ecode3
)) { 
3567     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "3"" of type '" "int""'"); 
3569   arg3 
= static_cast< int >(val3
); 
3571     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3572     result 
= (arg1
)->GetStyledText(arg2
,arg3
); 
3573     wxPyEndAllowThreads(__tstate
); 
3574     if (PyErr_Occurred()) SWIG_fail
; 
3577     resultobj 
= PyString_FromStringAndSize((char*)(&result
)->GetData(), (&result
)->GetDataLen()); 
3585 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CanRedo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3586   PyObject 
*resultobj 
= 0; 
3587   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3591   PyObject 
*swig_obj
[1] ; 
3593   if (!args
) SWIG_fail
; 
3595   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3596   if (!SWIG_IsOK(res1
)) { 
3597     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanRedo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3599   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3601     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3602     result 
= (bool)(arg1
)->CanRedo(); 
3603     wxPyEndAllowThreads(__tstate
); 
3604     if (PyErr_Occurred()) SWIG_fail
; 
3607     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3615 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerLineFromHandle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3616   PyObject 
*resultobj 
= 0; 
3617   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3624   PyObject 
* obj0 
= 0 ; 
3625   PyObject 
* obj1 
= 0 ; 
3626   char *  kwnames
[] = { 
3627     (char *) "self",(char *) "handle", NULL 
 
3630   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerLineFromHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3631   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3632   if (!SWIG_IsOK(res1
)) { 
3633     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3635   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3636   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3637   if (!SWIG_IsOK(ecode2
)) { 
3638     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "2"" of type '" "int""'"); 
3640   arg2 
= static_cast< int >(val2
); 
3642     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3643     result 
= (int)(arg1
)->MarkerLineFromHandle(arg2
); 
3644     wxPyEndAllowThreads(__tstate
); 
3645     if (PyErr_Occurred()) SWIG_fail
; 
3647   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3654 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerDeleteHandle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3655   PyObject 
*resultobj 
= 0; 
3656   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3662   PyObject 
* obj0 
= 0 ; 
3663   PyObject 
* obj1 
= 0 ; 
3664   char *  kwnames
[] = { 
3665     (char *) "self",(char *) "handle", NULL 
 
3668   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3669   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3670   if (!SWIG_IsOK(res1
)) { 
3671     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3673   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3674   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3675   if (!SWIG_IsOK(ecode2
)) { 
3676     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "2"" of type '" "int""'"); 
3678   arg2 
= static_cast< int >(val2
); 
3680     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3681     (arg1
)->MarkerDeleteHandle(arg2
); 
3682     wxPyEndAllowThreads(__tstate
); 
3683     if (PyErr_Occurred()) SWIG_fail
; 
3685   resultobj 
= SWIG_Py_Void(); 
3692 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetUndoCollection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3693   PyObject 
*resultobj 
= 0; 
3694   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3698   PyObject 
*swig_obj
[1] ; 
3700   if (!args
) SWIG_fail
; 
3702   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3703   if (!SWIG_IsOK(res1
)) { 
3704     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3706   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3708     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3709     result 
= (bool)(arg1
)->GetUndoCollection(); 
3710     wxPyEndAllowThreads(__tstate
); 
3711     if (PyErr_Occurred()) SWIG_fail
; 
3714     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
3722 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetViewWhiteSpace(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3723   PyObject 
*resultobj 
= 0; 
3724   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3728   PyObject 
*swig_obj
[1] ; 
3730   if (!args
) SWIG_fail
; 
3732   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3733   if (!SWIG_IsOK(res1
)) { 
3734     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3736   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3738     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3739     result 
= (int)(arg1
)->GetViewWhiteSpace(); 
3740     wxPyEndAllowThreads(__tstate
); 
3741     if (PyErr_Occurred()) SWIG_fail
; 
3743   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3750 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetViewWhiteSpace(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3751   PyObject 
*resultobj 
= 0; 
3752   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3758   PyObject 
* obj0 
= 0 ; 
3759   PyObject 
* obj1 
= 0 ; 
3760   char *  kwnames
[] = { 
3761     (char *) "self",(char *) "viewWS", NULL 
 
3764   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewWhiteSpace",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3765   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3766   if (!SWIG_IsOK(res1
)) { 
3767     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3769   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3770   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3771   if (!SWIG_IsOK(ecode2
)) { 
3772     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "2"" of type '" "int""'"); 
3774   arg2 
= static_cast< int >(val2
); 
3776     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3777     (arg1
)->SetViewWhiteSpace(arg2
); 
3778     wxPyEndAllowThreads(__tstate
); 
3779     if (PyErr_Occurred()) SWIG_fail
; 
3781   resultobj 
= SWIG_Py_Void(); 
3788 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PositionFromPoint(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3789   PyObject 
*resultobj 
= 0; 
3790   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3797   PyObject 
* obj0 
= 0 ; 
3798   PyObject 
* obj1 
= 0 ; 
3799   char *  kwnames
[] = { 
3800     (char *) "self",(char *) "pt", NULL 
 
3803   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3804   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3805   if (!SWIG_IsOK(res1
)) { 
3806     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3808   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3810     res2 
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPoint
,  0  | 0); 
3811     if (!SWIG_IsOK(res2
)) { 
3812       SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");  
3815       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'"); 
3817       wxPoint 
* temp 
= reinterpret_cast< wxPoint 
* >(argp2
); 
3819       if (SWIG_IsNewObj(res2
)) delete temp
; 
3823     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3824     result 
= (int)(arg1
)->PositionFromPoint(arg2
); 
3825     wxPyEndAllowThreads(__tstate
); 
3826     if (PyErr_Occurred()) SWIG_fail
; 
3828   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3835 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PositionFromPointClose(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3836   PyObject 
*resultobj 
= 0; 
3837   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3847   PyObject 
* obj0 
= 0 ; 
3848   PyObject 
* obj1 
= 0 ; 
3849   PyObject 
* obj2 
= 0 ; 
3850   char *  kwnames
[] = { 
3851     (char *) "self",(char *) "x",(char *) "y", NULL 
 
3854   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_PositionFromPointClose",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
3855   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3856   if (!SWIG_IsOK(res1
)) { 
3857     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3859   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3860   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3861   if (!SWIG_IsOK(ecode2
)) { 
3862     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "2"" of type '" "int""'"); 
3864   arg2 
= static_cast< int >(val2
); 
3865   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
3866   if (!SWIG_IsOK(ecode3
)) { 
3867     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "3"" of type '" "int""'"); 
3869   arg3 
= static_cast< int >(val3
); 
3871     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3872     result 
= (int)(arg1
)->PositionFromPointClose(arg2
,arg3
); 
3873     wxPyEndAllowThreads(__tstate
); 
3874     if (PyErr_Occurred()) SWIG_fail
; 
3876   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
3883 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GotoLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3884   PyObject 
*resultobj 
= 0; 
3885   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3891   PyObject 
* obj0 
= 0 ; 
3892   PyObject 
* obj1 
= 0 ; 
3893   char *  kwnames
[] = { 
3894     (char *) "self",(char *) "line", NULL 
 
3897   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3898   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3899   if (!SWIG_IsOK(res1
)) { 
3900     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3902   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3903   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3904   if (!SWIG_IsOK(ecode2
)) { 
3905     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "2"" of type '" "int""'"); 
3907   arg2 
= static_cast< int >(val2
); 
3909     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3910     (arg1
)->GotoLine(arg2
); 
3911     wxPyEndAllowThreads(__tstate
); 
3912     if (PyErr_Occurred()) SWIG_fail
; 
3914   resultobj 
= SWIG_Py_Void(); 
3921 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GotoPos(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3922   PyObject 
*resultobj 
= 0; 
3923   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3929   PyObject 
* obj0 
= 0 ; 
3930   PyObject 
* obj1 
= 0 ; 
3931   char *  kwnames
[] = { 
3932     (char *) "self",(char *) "pos", NULL 
 
3935   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3936   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3937   if (!SWIG_IsOK(res1
)) { 
3938     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3940   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3941   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3942   if (!SWIG_IsOK(ecode2
)) { 
3943     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "2"" of type '" "int""'"); 
3945   arg2 
= static_cast< int >(val2
); 
3947     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3948     (arg1
)->GotoPos(arg2
); 
3949     wxPyEndAllowThreads(__tstate
); 
3950     if (PyErr_Occurred()) SWIG_fail
; 
3952   resultobj 
= SWIG_Py_Void(); 
3959 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetAnchor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
3960   PyObject 
*resultobj 
= 0; 
3961   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
3967   PyObject 
* obj0 
= 0 ; 
3968   PyObject 
* obj1 
= 0 ; 
3969   char *  kwnames
[] = { 
3970     (char *) "self",(char *) "posAnchor", NULL 
 
3973   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetAnchor",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
3974   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
3975   if (!SWIG_IsOK(res1
)) { 
3976     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
3978   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
3979   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
3980   if (!SWIG_IsOK(ecode2
)) { 
3981     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "2"" of type '" "int""'"); 
3983   arg2 
= static_cast< int >(val2
); 
3985     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
3986     (arg1
)->SetAnchor(arg2
); 
3987     wxPyEndAllowThreads(__tstate
); 
3988     if (PyErr_Occurred()) SWIG_fail
; 
3990   resultobj 
= SWIG_Py_Void(); 
3997 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCurLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
3998   PyObject 
*resultobj 
= 0; 
3999   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4000   int *arg2 
= (int *) 0 ; 
4005   int res2 
= SWIG_TMPOBJ 
; 
4006   PyObject 
*swig_obj
[1] ; 
4009   if (!args
) SWIG_fail
; 
4011   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4012   if (!SWIG_IsOK(res1
)) { 
4013     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4015   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4017     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4018     result 
= (arg1
)->GetCurLine(arg2
); 
4019     wxPyEndAllowThreads(__tstate
); 
4020     if (PyErr_Occurred()) SWIG_fail
; 
4024     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
4026     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
4029   if (SWIG_IsTmpObj(res2
)) { 
4030     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
))); 
4032     int new_flags 
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN 
|  0 ) :  0 ; 
4033     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
)); 
4041 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEndStyled(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4042   PyObject 
*resultobj 
= 0; 
4043   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4047   PyObject 
*swig_obj
[1] ; 
4049   if (!args
) SWIG_fail
; 
4051   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4052   if (!SWIG_IsOK(res1
)) { 
4053     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndStyled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4055   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4057     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4058     result 
= (int)(arg1
)->GetEndStyled(); 
4059     wxPyEndAllowThreads(__tstate
); 
4060     if (PyErr_Occurred()) SWIG_fail
; 
4062   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4069 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ConvertEOLs(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4070   PyObject 
*resultobj 
= 0; 
4071   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4077   PyObject 
* obj0 
= 0 ; 
4078   PyObject 
* obj1 
= 0 ; 
4079   char *  kwnames
[] = { 
4080     (char *) "self",(char *) "eolMode", NULL 
 
4083   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ConvertEOLs",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4084   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4085   if (!SWIG_IsOK(res1
)) { 
4086     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4088   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4089   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4090   if (!SWIG_IsOK(ecode2
)) { 
4091     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "2"" of type '" "int""'"); 
4093   arg2 
= static_cast< int >(val2
); 
4095     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4096     (arg1
)->ConvertEOLs(arg2
); 
4097     wxPyEndAllowThreads(__tstate
); 
4098     if (PyErr_Occurred()) SWIG_fail
; 
4100   resultobj 
= SWIG_Py_Void(); 
4107 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEOLMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4108   PyObject 
*resultobj 
= 0; 
4109   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4113   PyObject 
*swig_obj
[1] ; 
4115   if (!args
) SWIG_fail
; 
4117   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4118   if (!SWIG_IsOK(res1
)) { 
4119     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4121   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4123     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4124     result 
= (int)(arg1
)->GetEOLMode(); 
4125     wxPyEndAllowThreads(__tstate
); 
4126     if (PyErr_Occurred()) SWIG_fail
; 
4128   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4135 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetEOLMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4136   PyObject 
*resultobj 
= 0; 
4137   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4143   PyObject 
* obj0 
= 0 ; 
4144   PyObject 
* obj1 
= 0 ; 
4145   char *  kwnames
[] = { 
4146     (char *) "self",(char *) "eolMode", NULL 
 
4149   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEOLMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4150   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4151   if (!SWIG_IsOK(res1
)) { 
4152     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4154   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4155   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4156   if (!SWIG_IsOK(ecode2
)) { 
4157     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "2"" of type '" "int""'"); 
4159   arg2 
= static_cast< int >(val2
); 
4161     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4162     (arg1
)->SetEOLMode(arg2
); 
4163     wxPyEndAllowThreads(__tstate
); 
4164     if (PyErr_Occurred()) SWIG_fail
; 
4166   resultobj 
= SWIG_Py_Void(); 
4173 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StartStyling(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4174   PyObject 
*resultobj 
= 0; 
4175   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4184   PyObject 
* obj0 
= 0 ; 
4185   PyObject 
* obj1 
= 0 ; 
4186   PyObject 
* obj2 
= 0 ; 
4187   char *  kwnames
[] = { 
4188     (char *) "self",(char *) "pos",(char *) "mask", NULL 
 
4191   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StartStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4192   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4193   if (!SWIG_IsOK(res1
)) { 
4194     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4196   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4197   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4198   if (!SWIG_IsOK(ecode2
)) { 
4199     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "2"" of type '" "int""'"); 
4201   arg2 
= static_cast< int >(val2
); 
4202   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4203   if (!SWIG_IsOK(ecode3
)) { 
4204     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "3"" of type '" "int""'"); 
4206   arg3 
= static_cast< int >(val3
); 
4208     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4209     (arg1
)->StartStyling(arg2
,arg3
); 
4210     wxPyEndAllowThreads(__tstate
); 
4211     if (PyErr_Occurred()) SWIG_fail
; 
4213   resultobj 
= SWIG_Py_Void(); 
4220 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetStyling(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4221   PyObject 
*resultobj 
= 0; 
4222   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4231   PyObject 
* obj0 
= 0 ; 
4232   PyObject 
* obj1 
= 0 ; 
4233   PyObject 
* obj2 
= 0 ; 
4234   char *  kwnames
[] = { 
4235     (char *) "self",(char *) "length",(char *) "style", NULL 
 
4238   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4239   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4240   if (!SWIG_IsOK(res1
)) { 
4241     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4243   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4244   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4245   if (!SWIG_IsOK(ecode2
)) { 
4246     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "2"" of type '" "int""'"); 
4248   arg2 
= static_cast< int >(val2
); 
4249   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4250   if (!SWIG_IsOK(ecode3
)) { 
4251     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "3"" of type '" "int""'"); 
4253   arg3 
= static_cast< int >(val3
); 
4255     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4256     (arg1
)->SetStyling(arg2
,arg3
); 
4257     wxPyEndAllowThreads(__tstate
); 
4258     if (PyErr_Occurred()) SWIG_fail
; 
4260   resultobj 
= SWIG_Py_Void(); 
4267 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetBufferedDraw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4268   PyObject 
*resultobj 
= 0; 
4269   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4273   PyObject 
*swig_obj
[1] ; 
4275   if (!args
) SWIG_fail
; 
4277   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4278   if (!SWIG_IsOK(res1
)) { 
4279     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4281   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4283     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4284     result 
= (bool)(arg1
)->GetBufferedDraw(); 
4285     wxPyEndAllowThreads(__tstate
); 
4286     if (PyErr_Occurred()) SWIG_fail
; 
4289     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
4297 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetBufferedDraw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4298   PyObject 
*resultobj 
= 0; 
4299   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4305   PyObject 
* obj0 
= 0 ; 
4306   PyObject 
* obj1 
= 0 ; 
4307   char *  kwnames
[] = { 
4308     (char *) "self",(char *) "buffered", NULL 
 
4311   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBufferedDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4312   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4313   if (!SWIG_IsOK(res1
)) { 
4314     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4316   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4317   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
4318   if (!SWIG_IsOK(ecode2
)) { 
4319     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "2"" of type '" "bool""'"); 
4321   arg2 
= static_cast< bool >(val2
); 
4323     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4324     (arg1
)->SetBufferedDraw(arg2
); 
4325     wxPyEndAllowThreads(__tstate
); 
4326     if (PyErr_Occurred()) SWIG_fail
; 
4328   resultobj 
= SWIG_Py_Void(); 
4335 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTabWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4336   PyObject 
*resultobj 
= 0; 
4337   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4343   PyObject 
* obj0 
= 0 ; 
4344   PyObject 
* obj1 
= 0 ; 
4345   char *  kwnames
[] = { 
4346     (char *) "self",(char *) "tabWidth", NULL 
 
4349   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4350   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4351   if (!SWIG_IsOK(res1
)) { 
4352     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4354   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4355   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4356   if (!SWIG_IsOK(ecode2
)) { 
4357     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "2"" of type '" "int""'"); 
4359   arg2 
= static_cast< int >(val2
); 
4361     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4362     (arg1
)->SetTabWidth(arg2
); 
4363     wxPyEndAllowThreads(__tstate
); 
4364     if (PyErr_Occurred()) SWIG_fail
; 
4366   resultobj 
= SWIG_Py_Void(); 
4373 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTabWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
4374   PyObject 
*resultobj 
= 0; 
4375   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4379   PyObject 
*swig_obj
[1] ; 
4381   if (!args
) SWIG_fail
; 
4383   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4384   if (!SWIG_IsOK(res1
)) { 
4385     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4387   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4389     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4390     result 
= (int)(arg1
)->GetTabWidth(); 
4391     wxPyEndAllowThreads(__tstate
); 
4392     if (PyErr_Occurred()) SWIG_fail
; 
4394   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4401 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCodePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4402   PyObject 
*resultobj 
= 0; 
4403   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4409   PyObject 
* obj0 
= 0 ; 
4410   PyObject 
* obj1 
= 0 ; 
4411   char *  kwnames
[] = { 
4412     (char *) "self",(char *) "codePage", NULL 
 
4415   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCodePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4416   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4417   if (!SWIG_IsOK(res1
)) { 
4418     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4420   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4421   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4422   if (!SWIG_IsOK(ecode2
)) { 
4423     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "2"" of type '" "int""'"); 
4425   arg2 
= static_cast< int >(val2
); 
4427     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4428     (arg1
)->SetCodePage(arg2
); 
4429     wxPyEndAllowThreads(__tstate
); 
4430     if (PyErr_Occurred()) SWIG_fail
; 
4432   resultobj 
= SWIG_Py_Void(); 
4439 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerDefine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4440   PyObject 
*resultobj 
= 0; 
4441   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4444   wxColour 
const &arg4_defvalue 
= wxNullColour 
; 
4445   wxColour 
*arg4 
= (wxColour 
*) &arg4_defvalue 
; 
4446   wxColour 
const &arg5_defvalue 
= wxNullColour 
; 
4447   wxColour 
*arg5 
= (wxColour 
*) &arg5_defvalue 
; 
4456   PyObject 
* obj0 
= 0 ; 
4457   PyObject 
* obj1 
= 0 ; 
4458   PyObject 
* obj2 
= 0 ; 
4459   PyObject 
* obj3 
= 0 ; 
4460   PyObject 
* obj4 
= 0 ; 
4461   char *  kwnames
[] = { 
4462     (char *) "self",(char *) "markerNumber",(char *) "markerSymbol",(char *) "foreground",(char *) "background", NULL 
 
4465   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:StyledTextCtrl_MarkerDefine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
4466   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4467   if (!SWIG_IsOK(res1
)) { 
4468     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4470   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4471   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4472   if (!SWIG_IsOK(ecode2
)) { 
4473     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "2"" of type '" "int""'"); 
4475   arg2 
= static_cast< int >(val2
); 
4476   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4477   if (!SWIG_IsOK(ecode3
)) { 
4478     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "3"" of type '" "int""'"); 
4480   arg3 
= static_cast< int >(val3
); 
4484       if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
; 
4490       if ( ! wxColour_helper(obj4
, &arg5
)) SWIG_fail
; 
4494     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4495     (arg1
)->MarkerDefine(arg2
,arg3
,(wxColour 
const &)*arg4
,(wxColour 
const &)*arg5
); 
4496     wxPyEndAllowThreads(__tstate
); 
4497     if (PyErr_Occurred()) SWIG_fail
; 
4499   resultobj 
= SWIG_Py_Void(); 
4506 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerSetForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4507   PyObject 
*resultobj 
= 0; 
4508   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4510   wxColour 
*arg3 
= 0 ; 
4516   PyObject 
* obj0 
= 0 ; 
4517   PyObject 
* obj1 
= 0 ; 
4518   PyObject 
* obj2 
= 0 ; 
4519   char *  kwnames
[] = { 
4520     (char *) "self",(char *) "markerNumber",(char *) "fore", NULL 
 
4523   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4524   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4525   if (!SWIG_IsOK(res1
)) { 
4526     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4528   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4529   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4530   if (!SWIG_IsOK(ecode2
)) { 
4531     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "2"" of type '" "int""'"); 
4533   arg2 
= static_cast< int >(val2
); 
4536     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
4539     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4540     (arg1
)->MarkerSetForeground(arg2
,(wxColour 
const &)*arg3
); 
4541     wxPyEndAllowThreads(__tstate
); 
4542     if (PyErr_Occurred()) SWIG_fail
; 
4544   resultobj 
= SWIG_Py_Void(); 
4551 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerSetBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4552   PyObject 
*resultobj 
= 0; 
4553   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4555   wxColour 
*arg3 
= 0 ; 
4561   PyObject 
* obj0 
= 0 ; 
4562   PyObject 
* obj1 
= 0 ; 
4563   PyObject 
* obj2 
= 0 ; 
4564   char *  kwnames
[] = { 
4565     (char *) "self",(char *) "markerNumber",(char *) "back", NULL 
 
4568   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4569   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4570   if (!SWIG_IsOK(res1
)) { 
4571     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4573   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4574   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4575   if (!SWIG_IsOK(ecode2
)) { 
4576     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "2"" of type '" "int""'"); 
4578   arg2 
= static_cast< int >(val2
); 
4581     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
4584     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4585     (arg1
)->MarkerSetBackground(arg2
,(wxColour 
const &)*arg3
); 
4586     wxPyEndAllowThreads(__tstate
); 
4587     if (PyErr_Occurred()) SWIG_fail
; 
4589   resultobj 
= SWIG_Py_Void(); 
4596 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerAdd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4597   PyObject 
*resultobj 
= 0; 
4598   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4608   PyObject 
* obj0 
= 0 ; 
4609   PyObject 
* obj1 
= 0 ; 
4610   PyObject 
* obj2 
= 0 ; 
4611   char *  kwnames
[] = { 
4612     (char *) "self",(char *) "line",(char *) "markerNumber", NULL 
 
4615   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAdd",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4616   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4617   if (!SWIG_IsOK(res1
)) { 
4618     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4620   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4621   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4622   if (!SWIG_IsOK(ecode2
)) { 
4623     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "2"" of type '" "int""'"); 
4625   arg2 
= static_cast< int >(val2
); 
4626   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4627   if (!SWIG_IsOK(ecode3
)) { 
4628     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "3"" of type '" "int""'"); 
4630   arg3 
= static_cast< int >(val3
); 
4632     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4633     result 
= (int)(arg1
)->MarkerAdd(arg2
,arg3
); 
4634     wxPyEndAllowThreads(__tstate
); 
4635     if (PyErr_Occurred()) SWIG_fail
; 
4637   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4644 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerDelete(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4645   PyObject 
*resultobj 
= 0; 
4646   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4655   PyObject 
* obj0 
= 0 ; 
4656   PyObject 
* obj1 
= 0 ; 
4657   PyObject 
* obj2 
= 0 ; 
4658   char *  kwnames
[] = { 
4659     (char *) "self",(char *) "line",(char *) "markerNumber", NULL 
 
4662   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDelete",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4663   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4664   if (!SWIG_IsOK(res1
)) { 
4665     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4667   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4668   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4669   if (!SWIG_IsOK(ecode2
)) { 
4670     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "2"" of type '" "int""'"); 
4672   arg2 
= static_cast< int >(val2
); 
4673   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4674   if (!SWIG_IsOK(ecode3
)) { 
4675     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "3"" of type '" "int""'"); 
4677   arg3 
= static_cast< int >(val3
); 
4679     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4680     (arg1
)->MarkerDelete(arg2
,arg3
); 
4681     wxPyEndAllowThreads(__tstate
); 
4682     if (PyErr_Occurred()) SWIG_fail
; 
4684   resultobj 
= SWIG_Py_Void(); 
4691 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerDeleteAll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4692   PyObject 
*resultobj 
= 0; 
4693   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4699   PyObject 
* obj0 
= 0 ; 
4700   PyObject 
* obj1 
= 0 ; 
4701   char *  kwnames
[] = { 
4702     (char *) "self",(char *) "markerNumber", NULL 
 
4705   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteAll",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4706   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4707   if (!SWIG_IsOK(res1
)) { 
4708     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4710   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4711   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4712   if (!SWIG_IsOK(ecode2
)) { 
4713     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "2"" of type '" "int""'"); 
4715   arg2 
= static_cast< int >(val2
); 
4717     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4718     (arg1
)->MarkerDeleteAll(arg2
); 
4719     wxPyEndAllowThreads(__tstate
); 
4720     if (PyErr_Occurred()) SWIG_fail
; 
4722   resultobj 
= SWIG_Py_Void(); 
4729 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerGet(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4730   PyObject 
*resultobj 
= 0; 
4731   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4738   PyObject 
* obj0 
= 0 ; 
4739   PyObject 
* obj1 
= 0 ; 
4740   char *  kwnames
[] = { 
4741     (char *) "self",(char *) "line", NULL 
 
4744   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerGet",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
4745   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4746   if (!SWIG_IsOK(res1
)) { 
4747     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4749   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4750   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4751   if (!SWIG_IsOK(ecode2
)) { 
4752     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "2"" of type '" "int""'"); 
4754   arg2 
= static_cast< int >(val2
); 
4756     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4757     result 
= (int)(arg1
)->MarkerGet(arg2
); 
4758     wxPyEndAllowThreads(__tstate
); 
4759     if (PyErr_Occurred()) SWIG_fail
; 
4761   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4768 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerNext(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4769   PyObject 
*resultobj 
= 0; 
4770   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4780   PyObject 
* obj0 
= 0 ; 
4781   PyObject 
* obj1 
= 0 ; 
4782   PyObject 
* obj2 
= 0 ; 
4783   char *  kwnames
[] = { 
4784     (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL 
 
4787   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4788   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4789   if (!SWIG_IsOK(res1
)) { 
4790     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4792   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4793   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4794   if (!SWIG_IsOK(ecode2
)) { 
4795     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "2"" of type '" "int""'"); 
4797   arg2 
= static_cast< int >(val2
); 
4798   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4799   if (!SWIG_IsOK(ecode3
)) { 
4800     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "3"" of type '" "int""'"); 
4802   arg3 
= static_cast< int >(val3
); 
4804     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4805     result 
= (int)(arg1
)->MarkerNext(arg2
,arg3
); 
4806     wxPyEndAllowThreads(__tstate
); 
4807     if (PyErr_Occurred()) SWIG_fail
; 
4809   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4816 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerPrevious(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4817   PyObject 
*resultobj 
= 0; 
4818   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4828   PyObject 
* obj0 
= 0 ; 
4829   PyObject 
* obj1 
= 0 ; 
4830   PyObject 
* obj2 
= 0 ; 
4831   char *  kwnames
[] = { 
4832     (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL 
 
4835   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerPrevious",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4836   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4837   if (!SWIG_IsOK(res1
)) { 
4838     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4840   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4841   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4842   if (!SWIG_IsOK(ecode2
)) { 
4843     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "2"" of type '" "int""'"); 
4845   arg2 
= static_cast< int >(val2
); 
4846   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4847   if (!SWIG_IsOK(ecode3
)) { 
4848     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "3"" of type '" "int""'"); 
4850   arg3 
= static_cast< int >(val3
); 
4852     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4853     result 
= (int)(arg1
)->MarkerPrevious(arg2
,arg3
); 
4854     wxPyEndAllowThreads(__tstate
); 
4855     if (PyErr_Occurred()) SWIG_fail
; 
4857   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
4864 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerDefineBitmap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4865   PyObject 
*resultobj 
= 0; 
4866   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4868   wxBitmap 
*arg3 
= 0 ; 
4875   PyObject 
* obj0 
= 0 ; 
4876   PyObject 
* obj1 
= 0 ; 
4877   PyObject 
* obj2 
= 0 ; 
4878   char *  kwnames
[] = { 
4879     (char *) "self",(char *) "markerNumber",(char *) "bmp", NULL 
 
4882   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDefineBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4883   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4884   if (!SWIG_IsOK(res1
)) { 
4885     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4887   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4888   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4889   if (!SWIG_IsOK(ecode2
)) { 
4890     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "2"" of type '" "int""'"); 
4892   arg2 
= static_cast< int >(val2
); 
4893   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
4894   if (!SWIG_IsOK(res3
)) { 
4895     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
4898     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
4900   arg3 
= reinterpret_cast< wxBitmap 
* >(argp3
); 
4902     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4903     (arg1
)->MarkerDefineBitmap(arg2
,(wxBitmap 
const &)*arg3
); 
4904     wxPyEndAllowThreads(__tstate
); 
4905     if (PyErr_Occurred()) SWIG_fail
; 
4907   resultobj 
= SWIG_Py_Void(); 
4914 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerAddSet(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4915   PyObject 
*resultobj 
= 0; 
4916   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4925   PyObject 
* obj0 
= 0 ; 
4926   PyObject 
* obj1 
= 0 ; 
4927   PyObject 
* obj2 
= 0 ; 
4928   char *  kwnames
[] = { 
4929     (char *) "self",(char *) "line",(char *) "set", NULL 
 
4932   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAddSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4933   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4934   if (!SWIG_IsOK(res1
)) { 
4935     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4937   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4938   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4939   if (!SWIG_IsOK(ecode2
)) { 
4940     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "2"" of type '" "int""'"); 
4942   arg2 
= static_cast< int >(val2
); 
4943   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4944   if (!SWIG_IsOK(ecode3
)) { 
4945     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "3"" of type '" "int""'"); 
4947   arg3 
= static_cast< int >(val3
); 
4949     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4950     (arg1
)->MarkerAddSet(arg2
,arg3
); 
4951     wxPyEndAllowThreads(__tstate
); 
4952     if (PyErr_Occurred()) SWIG_fail
; 
4954   resultobj 
= SWIG_Py_Void(); 
4961 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MarkerSetAlpha(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
4962   PyObject 
*resultobj 
= 0; 
4963   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
4972   PyObject 
* obj0 
= 0 ; 
4973   PyObject 
* obj1 
= 0 ; 
4974   PyObject 
* obj2 
= 0 ; 
4975   char *  kwnames
[] = { 
4976     (char *) "self",(char *) "markerNumber",(char *) "alpha", NULL 
 
4979   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetAlpha",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
4980   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
4981   if (!SWIG_IsOK(res1
)) { 
4982     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetAlpha" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
4984   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
4985   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
4986   if (!SWIG_IsOK(ecode2
)) { 
4987     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetAlpha" "', expected argument " "2"" of type '" "int""'"); 
4989   arg2 
= static_cast< int >(val2
); 
4990   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
4991   if (!SWIG_IsOK(ecode3
)) { 
4992     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerSetAlpha" "', expected argument " "3"" of type '" "int""'"); 
4994   arg3 
= static_cast< int >(val3
); 
4996     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
4997     (arg1
)->MarkerSetAlpha(arg2
,arg3
); 
4998     wxPyEndAllowThreads(__tstate
); 
4999     if (PyErr_Occurred()) SWIG_fail
; 
5001   resultobj 
= SWIG_Py_Void(); 
5008 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5009   PyObject 
*resultobj 
= 0; 
5010   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5019   PyObject 
* obj0 
= 0 ; 
5020   PyObject 
* obj1 
= 0 ; 
5021   PyObject 
* obj2 
= 0 ; 
5022   char *  kwnames
[] = { 
5023     (char *) "self",(char *) "margin",(char *) "marginType", NULL 
 
5026   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginType",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5027   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5028   if (!SWIG_IsOK(res1
)) { 
5029     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5031   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5032   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5033   if (!SWIG_IsOK(ecode2
)) { 
5034     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "2"" of type '" "int""'"); 
5036   arg2 
= static_cast< int >(val2
); 
5037   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
5038   if (!SWIG_IsOK(ecode3
)) { 
5039     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "3"" of type '" "int""'"); 
5041   arg3 
= static_cast< int >(val3
); 
5043     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5044     (arg1
)->SetMarginType(arg2
,arg3
); 
5045     wxPyEndAllowThreads(__tstate
); 
5046     if (PyErr_Occurred()) SWIG_fail
; 
5048   resultobj 
= SWIG_Py_Void(); 
5055 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5056   PyObject 
*resultobj 
= 0; 
5057   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5064   PyObject 
* obj0 
= 0 ; 
5065   PyObject 
* obj1 
= 0 ; 
5066   char *  kwnames
[] = { 
5067     (char *) "self",(char *) "margin", NULL 
 
5070   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginType",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5071   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5072   if (!SWIG_IsOK(res1
)) { 
5073     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5075   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5076   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5077   if (!SWIG_IsOK(ecode2
)) { 
5078     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "2"" of type '" "int""'"); 
5080   arg2 
= static_cast< int >(val2
); 
5082     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5083     result 
= (int)(arg1
)->GetMarginType(arg2
); 
5084     wxPyEndAllowThreads(__tstate
); 
5085     if (PyErr_Occurred()) SWIG_fail
; 
5087   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
5094 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5095   PyObject 
*resultobj 
= 0; 
5096   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5105   PyObject 
* obj0 
= 0 ; 
5106   PyObject 
* obj1 
= 0 ; 
5107   PyObject 
* obj2 
= 0 ; 
5108   char *  kwnames
[] = { 
5109     (char *) "self",(char *) "margin",(char *) "pixelWidth", NULL 
 
5112   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5113   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5114   if (!SWIG_IsOK(res1
)) { 
5115     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5117   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5118   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5119   if (!SWIG_IsOK(ecode2
)) { 
5120     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "2"" of type '" "int""'"); 
5122   arg2 
= static_cast< int >(val2
); 
5123   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
5124   if (!SWIG_IsOK(ecode3
)) { 
5125     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "3"" of type '" "int""'"); 
5127   arg3 
= static_cast< int >(val3
); 
5129     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5130     (arg1
)->SetMarginWidth(arg2
,arg3
); 
5131     wxPyEndAllowThreads(__tstate
); 
5132     if (PyErr_Occurred()) SWIG_fail
; 
5134   resultobj 
= SWIG_Py_Void(); 
5141 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5142   PyObject 
*resultobj 
= 0; 
5143   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5150   PyObject 
* obj0 
= 0 ; 
5151   PyObject 
* obj1 
= 0 ; 
5152   char *  kwnames
[] = { 
5153     (char *) "self",(char *) "margin", NULL 
 
5156   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5157   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5158   if (!SWIG_IsOK(res1
)) { 
5159     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5161   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5162   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5163   if (!SWIG_IsOK(ecode2
)) { 
5164     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "2"" of type '" "int""'"); 
5166   arg2 
= static_cast< int >(val2
); 
5168     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5169     result 
= (int)(arg1
)->GetMarginWidth(arg2
); 
5170     wxPyEndAllowThreads(__tstate
); 
5171     if (PyErr_Occurred()) SWIG_fail
; 
5173   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
5180 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginMask(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5181   PyObject 
*resultobj 
= 0; 
5182   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5191   PyObject 
* obj0 
= 0 ; 
5192   PyObject 
* obj1 
= 0 ; 
5193   PyObject 
* obj2 
= 0 ; 
5194   char *  kwnames
[] = { 
5195     (char *) "self",(char *) "margin",(char *) "mask", NULL 
 
5198   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginMask",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5199   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5200   if (!SWIG_IsOK(res1
)) { 
5201     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5203   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5204   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5205   if (!SWIG_IsOK(ecode2
)) { 
5206     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "2"" of type '" "int""'"); 
5208   arg2 
= static_cast< int >(val2
); 
5209   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
5210   if (!SWIG_IsOK(ecode3
)) { 
5211     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "3"" of type '" "int""'"); 
5213   arg3 
= static_cast< int >(val3
); 
5215     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5216     (arg1
)->SetMarginMask(arg2
,arg3
); 
5217     wxPyEndAllowThreads(__tstate
); 
5218     if (PyErr_Occurred()) SWIG_fail
; 
5220   resultobj 
= SWIG_Py_Void(); 
5227 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginMask(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5228   PyObject 
*resultobj 
= 0; 
5229   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5236   PyObject 
* obj0 
= 0 ; 
5237   PyObject 
* obj1 
= 0 ; 
5238   char *  kwnames
[] = { 
5239     (char *) "self",(char *) "margin", NULL 
 
5242   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5243   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5244   if (!SWIG_IsOK(res1
)) { 
5245     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5247   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5248   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5249   if (!SWIG_IsOK(ecode2
)) { 
5250     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "2"" of type '" "int""'"); 
5252   arg2 
= static_cast< int >(val2
); 
5254     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5255     result 
= (int)(arg1
)->GetMarginMask(arg2
); 
5256     wxPyEndAllowThreads(__tstate
); 
5257     if (PyErr_Occurred()) SWIG_fail
; 
5259   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
5266 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginSensitive(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5267   PyObject 
*resultobj 
= 0; 
5268   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5277   PyObject 
* obj0 
= 0 ; 
5278   PyObject 
* obj1 
= 0 ; 
5279   PyObject 
* obj2 
= 0 ; 
5280   char *  kwnames
[] = { 
5281     (char *) "self",(char *) "margin",(char *) "sensitive", NULL 
 
5284   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginSensitive",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5285   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5286   if (!SWIG_IsOK(res1
)) { 
5287     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5289   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5290   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5291   if (!SWIG_IsOK(ecode2
)) { 
5292     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "2"" of type '" "int""'"); 
5294   arg2 
= static_cast< int >(val2
); 
5295   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5296   if (!SWIG_IsOK(ecode3
)) { 
5297     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "3"" of type '" "bool""'"); 
5299   arg3 
= static_cast< bool >(val3
); 
5301     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5302     (arg1
)->SetMarginSensitive(arg2
,arg3
); 
5303     wxPyEndAllowThreads(__tstate
); 
5304     if (PyErr_Occurred()) SWIG_fail
; 
5306   resultobj 
= SWIG_Py_Void(); 
5313 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginSensitive(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5314   PyObject 
*resultobj 
= 0; 
5315   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5322   PyObject 
* obj0 
= 0 ; 
5323   PyObject 
* obj1 
= 0 ; 
5324   char *  kwnames
[] = { 
5325     (char *) "self",(char *) "margin", NULL 
 
5328   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginSensitive",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
5329   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5330   if (!SWIG_IsOK(res1
)) { 
5331     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5333   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5334   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5335   if (!SWIG_IsOK(ecode2
)) { 
5336     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "2"" of type '" "int""'"); 
5338   arg2 
= static_cast< int >(val2
); 
5340     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5341     result 
= (bool)(arg1
)->GetMarginSensitive(arg2
); 
5342     wxPyEndAllowThreads(__tstate
); 
5343     if (PyErr_Occurred()) SWIG_fail
; 
5346     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
5354 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleClearAll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5355   PyObject 
*resultobj 
= 0; 
5356   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5359   PyObject 
*swig_obj
[1] ; 
5361   if (!args
) SWIG_fail
; 
5363   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5364   if (!SWIG_IsOK(res1
)) { 
5365     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5367   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5369     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5370     (arg1
)->StyleClearAll(); 
5371     wxPyEndAllowThreads(__tstate
); 
5372     if (PyErr_Occurred()) SWIG_fail
; 
5374   resultobj 
= SWIG_Py_Void(); 
5381 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5382   PyObject 
*resultobj 
= 0; 
5383   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5385   wxColour 
*arg3 
= 0 ; 
5391   PyObject 
* obj0 
= 0 ; 
5392   PyObject 
* obj1 
= 0 ; 
5393   PyObject 
* obj2 
= 0 ; 
5394   char *  kwnames
[] = { 
5395     (char *) "self",(char *) "style",(char *) "fore", NULL 
 
5398   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5399   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5400   if (!SWIG_IsOK(res1
)) { 
5401     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5403   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5404   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5405   if (!SWIG_IsOK(ecode2
)) { 
5406     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "2"" of type '" "int""'"); 
5408   arg2 
= static_cast< int >(val2
); 
5411     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
5414     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5415     (arg1
)->StyleSetForeground(arg2
,(wxColour 
const &)*arg3
); 
5416     wxPyEndAllowThreads(__tstate
); 
5417     if (PyErr_Occurred()) SWIG_fail
; 
5419   resultobj 
= SWIG_Py_Void(); 
5426 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5427   PyObject 
*resultobj 
= 0; 
5428   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5430   wxColour 
*arg3 
= 0 ; 
5436   PyObject 
* obj0 
= 0 ; 
5437   PyObject 
* obj1 
= 0 ; 
5438   PyObject 
* obj2 
= 0 ; 
5439   char *  kwnames
[] = { 
5440     (char *) "self",(char *) "style",(char *) "back", NULL 
 
5443   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5444   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5445   if (!SWIG_IsOK(res1
)) { 
5446     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5448   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5449   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5450   if (!SWIG_IsOK(ecode2
)) { 
5451     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "2"" of type '" "int""'"); 
5453   arg2 
= static_cast< int >(val2
); 
5456     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
5459     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5460     (arg1
)->StyleSetBackground(arg2
,(wxColour 
const &)*arg3
); 
5461     wxPyEndAllowThreads(__tstate
); 
5462     if (PyErr_Occurred()) SWIG_fail
; 
5464   resultobj 
= SWIG_Py_Void(); 
5471 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetBold(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5472   PyObject 
*resultobj 
= 0; 
5473   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5482   PyObject 
* obj0 
= 0 ; 
5483   PyObject 
* obj1 
= 0 ; 
5484   PyObject 
* obj2 
= 0 ; 
5485   char *  kwnames
[] = { 
5486     (char *) "self",(char *) "style",(char *) "bold", NULL 
 
5489   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBold",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5490   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5491   if (!SWIG_IsOK(res1
)) { 
5492     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5494   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5495   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5496   if (!SWIG_IsOK(ecode2
)) { 
5497     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "2"" of type '" "int""'"); 
5499   arg2 
= static_cast< int >(val2
); 
5500   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5501   if (!SWIG_IsOK(ecode3
)) { 
5502     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "3"" of type '" "bool""'"); 
5504   arg3 
= static_cast< bool >(val3
); 
5506     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5507     (arg1
)->StyleSetBold(arg2
,arg3
); 
5508     wxPyEndAllowThreads(__tstate
); 
5509     if (PyErr_Occurred()) SWIG_fail
; 
5511   resultobj 
= SWIG_Py_Void(); 
5518 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetItalic(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5519   PyObject 
*resultobj 
= 0; 
5520   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5529   PyObject 
* obj0 
= 0 ; 
5530   PyObject 
* obj1 
= 0 ; 
5531   PyObject 
* obj2 
= 0 ; 
5532   char *  kwnames
[] = { 
5533     (char *) "self",(char *) "style",(char *) "italic", NULL 
 
5536   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetItalic",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5537   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5538   if (!SWIG_IsOK(res1
)) { 
5539     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5541   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5542   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5543   if (!SWIG_IsOK(ecode2
)) { 
5544     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "2"" of type '" "int""'"); 
5546   arg2 
= static_cast< int >(val2
); 
5547   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5548   if (!SWIG_IsOK(ecode3
)) { 
5549     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "3"" of type '" "bool""'"); 
5551   arg3 
= static_cast< bool >(val3
); 
5553     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5554     (arg1
)->StyleSetItalic(arg2
,arg3
); 
5555     wxPyEndAllowThreads(__tstate
); 
5556     if (PyErr_Occurred()) SWIG_fail
; 
5558   resultobj 
= SWIG_Py_Void(); 
5565 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetSize(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5566   PyObject 
*resultobj 
= 0; 
5567   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5576   PyObject 
* obj0 
= 0 ; 
5577   PyObject 
* obj1 
= 0 ; 
5578   PyObject 
* obj2 
= 0 ; 
5579   char *  kwnames
[] = { 
5580     (char *) "self",(char *) "style",(char *) "sizePoints", NULL 
 
5583   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5584   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5585   if (!SWIG_IsOK(res1
)) { 
5586     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5588   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5589   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5590   if (!SWIG_IsOK(ecode2
)) { 
5591     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "2"" of type '" "int""'"); 
5593   arg2 
= static_cast< int >(val2
); 
5594   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
5595   if (!SWIG_IsOK(ecode3
)) { 
5596     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "3"" of type '" "int""'"); 
5598   arg3 
= static_cast< int >(val3
); 
5600     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5601     (arg1
)->StyleSetSize(arg2
,arg3
); 
5602     wxPyEndAllowThreads(__tstate
); 
5603     if (PyErr_Occurred()) SWIG_fail
; 
5605   resultobj 
= SWIG_Py_Void(); 
5612 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetFaceName(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5613   PyObject 
*resultobj 
= 0; 
5614   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5616   wxString 
*arg3 
= 0 ; 
5621   bool temp3 
= false ; 
5622   PyObject 
* obj0 
= 0 ; 
5623   PyObject 
* obj1 
= 0 ; 
5624   PyObject 
* obj2 
= 0 ; 
5625   char *  kwnames
[] = { 
5626     (char *) "self",(char *) "style",(char *) "fontName", NULL 
 
5629   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFaceName",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5630   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5631   if (!SWIG_IsOK(res1
)) { 
5632     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5634   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5635   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5636   if (!SWIG_IsOK(ecode2
)) { 
5637     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "2"" of type '" "int""'"); 
5639   arg2 
= static_cast< int >(val2
); 
5641     arg3 
= wxString_in_helper(obj2
); 
5642     if (arg3 
== NULL
) SWIG_fail
; 
5646     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5647     (arg1
)->StyleSetFaceName(arg2
,(wxString 
const &)*arg3
); 
5648     wxPyEndAllowThreads(__tstate
); 
5649     if (PyErr_Occurred()) SWIG_fail
; 
5651   resultobj 
= SWIG_Py_Void(); 
5666 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetEOLFilled(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5667   PyObject 
*resultobj 
= 0; 
5668   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5677   PyObject 
* obj0 
= 0 ; 
5678   PyObject 
* obj1 
= 0 ; 
5679   PyObject 
* obj2 
= 0 ; 
5680   char *  kwnames
[] = { 
5681     (char *) "self",(char *) "style",(char *) "filled", NULL 
 
5684   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetEOLFilled",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5685   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5686   if (!SWIG_IsOK(res1
)) { 
5687     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5689   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5690   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5691   if (!SWIG_IsOK(ecode2
)) { 
5692     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "2"" of type '" "int""'"); 
5694   arg2 
= static_cast< int >(val2
); 
5695   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5696   if (!SWIG_IsOK(ecode3
)) { 
5697     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "3"" of type '" "bool""'"); 
5699   arg3 
= static_cast< bool >(val3
); 
5701     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5702     (arg1
)->StyleSetEOLFilled(arg2
,arg3
); 
5703     wxPyEndAllowThreads(__tstate
); 
5704     if (PyErr_Occurred()) SWIG_fail
; 
5706   resultobj 
= SWIG_Py_Void(); 
5713 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleResetDefault(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5714   PyObject 
*resultobj 
= 0; 
5715   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5718   PyObject 
*swig_obj
[1] ; 
5720   if (!args
) SWIG_fail
; 
5722   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5723   if (!SWIG_IsOK(res1
)) { 
5724     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleResetDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5726   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5728     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5729     (arg1
)->StyleResetDefault(); 
5730     wxPyEndAllowThreads(__tstate
); 
5731     if (PyErr_Occurred()) SWIG_fail
; 
5733   resultobj 
= SWIG_Py_Void(); 
5740 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetUnderline(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5741   PyObject 
*resultobj 
= 0; 
5742   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5751   PyObject 
* obj0 
= 0 ; 
5752   PyObject 
* obj1 
= 0 ; 
5753   PyObject 
* obj2 
= 0 ; 
5754   char *  kwnames
[] = { 
5755     (char *) "self",(char *) "style",(char *) "underline", NULL 
 
5758   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetUnderline",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5759   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5760   if (!SWIG_IsOK(res1
)) { 
5761     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5763   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5764   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5765   if (!SWIG_IsOK(ecode2
)) { 
5766     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "2"" of type '" "int""'"); 
5768   arg2 
= static_cast< int >(val2
); 
5769   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5770   if (!SWIG_IsOK(ecode3
)) { 
5771     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "3"" of type '" "bool""'"); 
5773   arg3 
= static_cast< bool >(val3
); 
5775     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5776     (arg1
)->StyleSetUnderline(arg2
,arg3
); 
5777     wxPyEndAllowThreads(__tstate
); 
5778     if (PyErr_Occurred()) SWIG_fail
; 
5780   resultobj 
= SWIG_Py_Void(); 
5787 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetCase(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5788   PyObject 
*resultobj 
= 0; 
5789   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5798   PyObject 
* obj0 
= 0 ; 
5799   PyObject 
* obj1 
= 0 ; 
5800   PyObject 
* obj2 
= 0 ; 
5801   char *  kwnames
[] = { 
5802     (char *) "self",(char *) "style",(char *) "caseForce", NULL 
 
5805   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCase",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5806   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5807   if (!SWIG_IsOK(res1
)) { 
5808     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5810   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5811   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5812   if (!SWIG_IsOK(ecode2
)) { 
5813     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "2"" of type '" "int""'"); 
5815   arg2 
= static_cast< int >(val2
); 
5816   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
5817   if (!SWIG_IsOK(ecode3
)) { 
5818     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "3"" of type '" "int""'"); 
5820   arg3 
= static_cast< int >(val3
); 
5822     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5823     (arg1
)->StyleSetCase(arg2
,arg3
); 
5824     wxPyEndAllowThreads(__tstate
); 
5825     if (PyErr_Occurred()) SWIG_fail
; 
5827   resultobj 
= SWIG_Py_Void(); 
5834 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetHotSpot(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5835   PyObject 
*resultobj 
= 0; 
5836   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5845   PyObject 
* obj0 
= 0 ; 
5846   PyObject 
* obj1 
= 0 ; 
5847   PyObject 
* obj2 
= 0 ; 
5848   char *  kwnames
[] = { 
5849     (char *) "self",(char *) "style",(char *) "hotspot", NULL 
 
5852   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetHotSpot",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5853   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5854   if (!SWIG_IsOK(res1
)) { 
5855     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5857   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5858   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
5859   if (!SWIG_IsOK(ecode2
)) { 
5860     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "2"" of type '" "int""'"); 
5862   arg2 
= static_cast< int >(val2
); 
5863   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
5864   if (!SWIG_IsOK(ecode3
)) { 
5865     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "3"" of type '" "bool""'"); 
5867   arg3 
= static_cast< bool >(val3
); 
5869     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5870     (arg1
)->StyleSetHotSpot(arg2
,arg3
); 
5871     wxPyEndAllowThreads(__tstate
); 
5872     if (PyErr_Occurred()) SWIG_fail
; 
5874   resultobj 
= SWIG_Py_Void(); 
5881 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5882   PyObject 
*resultobj 
= 0; 
5883   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5885   wxColour 
*arg3 
= 0 ; 
5891   PyObject 
* obj0 
= 0 ; 
5892   PyObject 
* obj1 
= 0 ; 
5893   PyObject 
* obj2 
= 0 ; 
5894   char *  kwnames
[] = { 
5895     (char *) "self",(char *) "useSetting",(char *) "fore", NULL 
 
5898   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5899   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5900   if (!SWIG_IsOK(res1
)) { 
5901     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5903   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5904   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5905   if (!SWIG_IsOK(ecode2
)) { 
5906     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "2"" of type '" "bool""'"); 
5908   arg2 
= static_cast< bool >(val2
); 
5911     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
5914     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5915     (arg1
)->SetSelForeground(arg2
,(wxColour 
const &)*arg3
); 
5916     wxPyEndAllowThreads(__tstate
); 
5917     if (PyErr_Occurred()) SWIG_fail
; 
5919   resultobj 
= SWIG_Py_Void(); 
5926 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
5927   PyObject 
*resultobj 
= 0; 
5928   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5930   wxColour 
*arg3 
= 0 ; 
5936   PyObject 
* obj0 
= 0 ; 
5937   PyObject 
* obj1 
= 0 ; 
5938   PyObject 
* obj2 
= 0 ; 
5939   char *  kwnames
[] = { 
5940     (char *) "self",(char *) "useSetting",(char *) "back", NULL 
 
5943   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
5944   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5945   if (!SWIG_IsOK(res1
)) { 
5946     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5948   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5949   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
5950   if (!SWIG_IsOK(ecode2
)) { 
5951     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "2"" of type '" "bool""'"); 
5953   arg2 
= static_cast< bool >(val2
); 
5956     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
5959     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5960     (arg1
)->SetSelBackground(arg2
,(wxColour 
const &)*arg3
); 
5961     wxPyEndAllowThreads(__tstate
); 
5962     if (PyErr_Occurred()) SWIG_fail
; 
5964   resultobj 
= SWIG_Py_Void(); 
5971 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelAlpha(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
5972   PyObject 
*resultobj 
= 0; 
5973   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
5977   PyObject 
*swig_obj
[1] ; 
5979   if (!args
) SWIG_fail
; 
5981   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
5982   if (!SWIG_IsOK(res1
)) { 
5983     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelAlpha" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
5985   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
5987     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
5988     result 
= (int)(arg1
)->GetSelAlpha(); 
5989     wxPyEndAllowThreads(__tstate
); 
5990     if (PyErr_Occurred()) SWIG_fail
; 
5992   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
5999 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelAlpha(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6000   PyObject 
*resultobj 
= 0; 
6001   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6007   PyObject 
* obj0 
= 0 ; 
6008   PyObject 
* obj1 
= 0 ; 
6009   char *  kwnames
[] = { 
6010     (char *) "self",(char *) "alpha", NULL 
 
6013   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelAlpha",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6014   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6015   if (!SWIG_IsOK(res1
)) { 
6016     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelAlpha" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6018   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6019   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6020   if (!SWIG_IsOK(ecode2
)) { 
6021     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelAlpha" "', expected argument " "2"" of type '" "int""'"); 
6023   arg2 
= static_cast< int >(val2
); 
6025     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6026     (arg1
)->SetSelAlpha(arg2
); 
6027     wxPyEndAllowThreads(__tstate
); 
6028     if (PyErr_Occurred()) SWIG_fail
; 
6030   resultobj 
= SWIG_Py_Void(); 
6037 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6038   PyObject 
*resultobj 
= 0; 
6039   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6040   wxColour 
*arg2 
= 0 ; 
6044   PyObject 
* obj0 
= 0 ; 
6045   PyObject 
* obj1 
= 0 ; 
6046   char *  kwnames
[] = { 
6047     (char *) "self",(char *) "fore", NULL 
 
6050   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6051   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6052   if (!SWIG_IsOK(res1
)) { 
6053     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6055   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6058     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
6061     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6062     (arg1
)->SetCaretForeground((wxColour 
const &)*arg2
); 
6063     wxPyEndAllowThreads(__tstate
); 
6064     if (PyErr_Occurred()) SWIG_fail
; 
6066   resultobj 
= SWIG_Py_Void(); 
6073 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CmdKeyAssign(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6074   PyObject 
*resultobj 
= 0; 
6075   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6087   PyObject 
* obj0 
= 0 ; 
6088   PyObject 
* obj1 
= 0 ; 
6089   PyObject 
* obj2 
= 0 ; 
6090   PyObject 
* obj3 
= 0 ; 
6091   char *  kwnames
[] = { 
6092     (char *) "self",(char *) "key",(char *) "modifiers",(char *) "cmd", NULL 
 
6095   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_CmdKeyAssign",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
6096   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6097   if (!SWIG_IsOK(res1
)) { 
6098     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6100   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6101   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6102   if (!SWIG_IsOK(ecode2
)) { 
6103     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "2"" of type '" "int""'"); 
6105   arg2 
= static_cast< int >(val2
); 
6106   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
6107   if (!SWIG_IsOK(ecode3
)) { 
6108     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "3"" of type '" "int""'"); 
6110   arg3 
= static_cast< int >(val3
); 
6111   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
6112   if (!SWIG_IsOK(ecode4
)) { 
6113     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "4"" of type '" "int""'"); 
6115   arg4 
= static_cast< int >(val4
); 
6117     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6118     (arg1
)->CmdKeyAssign(arg2
,arg3
,arg4
); 
6119     wxPyEndAllowThreads(__tstate
); 
6120     if (PyErr_Occurred()) SWIG_fail
; 
6122   resultobj 
= SWIG_Py_Void(); 
6129 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CmdKeyClear(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6130   PyObject 
*resultobj 
= 0; 
6131   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6140   PyObject 
* obj0 
= 0 ; 
6141   PyObject 
* obj1 
= 0 ; 
6142   PyObject 
* obj2 
= 0 ; 
6143   char *  kwnames
[] = { 
6144     (char *) "self",(char *) "key",(char *) "modifiers", NULL 
 
6147   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CmdKeyClear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6148   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6149   if (!SWIG_IsOK(res1
)) { 
6150     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6152   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6153   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6154   if (!SWIG_IsOK(ecode2
)) { 
6155     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "2"" of type '" "int""'"); 
6157   arg2 
= static_cast< int >(val2
); 
6158   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
6159   if (!SWIG_IsOK(ecode3
)) { 
6160     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "3"" of type '" "int""'"); 
6162   arg3 
= static_cast< int >(val3
); 
6164     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6165     (arg1
)->CmdKeyClear(arg2
,arg3
); 
6166     wxPyEndAllowThreads(__tstate
); 
6167     if (PyErr_Occurred()) SWIG_fail
; 
6169   resultobj 
= SWIG_Py_Void(); 
6176 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CmdKeyClearAll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6177   PyObject 
*resultobj 
= 0; 
6178   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6181   PyObject 
*swig_obj
[1] ; 
6183   if (!args
) SWIG_fail
; 
6185   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6186   if (!SWIG_IsOK(res1
)) { 
6187     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6189   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6191     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6192     (arg1
)->CmdKeyClearAll(); 
6193     wxPyEndAllowThreads(__tstate
); 
6194     if (PyErr_Occurred()) SWIG_fail
; 
6196   resultobj 
= SWIG_Py_Void(); 
6203 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetStyleBytes(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6204   PyObject 
*resultobj 
= 0; 
6205   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6207   char *arg3 
= (char *) 0 ; 
6215   PyObject 
* obj0 
= 0 ; 
6216   PyObject 
* obj1 
= 0 ; 
6217   PyObject 
* obj2 
= 0 ; 
6218   char *  kwnames
[] = { 
6219     (char *) "self",(char *) "length",(char *) "styleBytes", NULL 
 
6222   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyleBytes",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6223   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6224   if (!SWIG_IsOK(res1
)) { 
6225     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6227   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6228   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6229   if (!SWIG_IsOK(ecode2
)) { 
6230     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "2"" of type '" "int""'"); 
6232   arg2 
= static_cast< int >(val2
); 
6233   res3 
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
); 
6234   if (!SWIG_IsOK(res3
)) { 
6235     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "3"" of type '" "char *""'"); 
6239     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6240     (arg1
)->SetStyleBytes(arg2
,arg3
); 
6241     wxPyEndAllowThreads(__tstate
); 
6242     if (PyErr_Occurred()) SWIG_fail
; 
6244   resultobj 
= SWIG_Py_Void(); 
6245   if (alloc3 
== SWIG_NEWOBJ
) delete[] buf3
; 
6248   if (alloc3 
== SWIG_NEWOBJ
) delete[] buf3
; 
6253 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6254   PyObject 
*resultobj 
= 0; 
6255   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6264   PyObject 
* obj0 
= 0 ; 
6265   PyObject 
* obj1 
= 0 ; 
6266   PyObject 
* obj2 
= 0 ; 
6267   char *  kwnames
[] = { 
6268     (char *) "self",(char *) "style",(char *) "visible", NULL 
 
6271   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6272   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6273   if (!SWIG_IsOK(res1
)) { 
6274     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6276   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6277   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6278   if (!SWIG_IsOK(ecode2
)) { 
6279     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "2"" of type '" "int""'"); 
6281   arg2 
= static_cast< int >(val2
); 
6282   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
6283   if (!SWIG_IsOK(ecode3
)) { 
6284     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "3"" of type '" "bool""'"); 
6286   arg3 
= static_cast< bool >(val3
); 
6288     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6289     (arg1
)->StyleSetVisible(arg2
,arg3
); 
6290     wxPyEndAllowThreads(__tstate
); 
6291     if (PyErr_Occurred()) SWIG_fail
; 
6293   resultobj 
= SWIG_Py_Void(); 
6300 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretPeriod(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6301   PyObject 
*resultobj 
= 0; 
6302   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6306   PyObject 
*swig_obj
[1] ; 
6308   if (!args
) SWIG_fail
; 
6310   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6311   if (!SWIG_IsOK(res1
)) { 
6312     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6314   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6316     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6317     result 
= (int)(arg1
)->GetCaretPeriod(); 
6318     wxPyEndAllowThreads(__tstate
); 
6319     if (PyErr_Occurred()) SWIG_fail
; 
6321   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6328 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretPeriod(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6329   PyObject 
*resultobj 
= 0; 
6330   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6336   PyObject 
* obj0 
= 0 ; 
6337   PyObject 
* obj1 
= 0 ; 
6338   char *  kwnames
[] = { 
6339     (char *) "self",(char *) "periodMilliseconds", NULL 
 
6342   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretPeriod",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6343   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6344   if (!SWIG_IsOK(res1
)) { 
6345     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6347   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6348   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6349   if (!SWIG_IsOK(ecode2
)) { 
6350     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "2"" of type '" "int""'"); 
6352   arg2 
= static_cast< int >(val2
); 
6354     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6355     (arg1
)->SetCaretPeriod(arg2
); 
6356     wxPyEndAllowThreads(__tstate
); 
6357     if (PyErr_Occurred()) SWIG_fail
; 
6359   resultobj 
= SWIG_Py_Void(); 
6366 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWordChars(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6367   PyObject 
*resultobj 
= 0; 
6368   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6369   wxString 
*arg2 
= 0 ; 
6372   bool temp2 
= false ; 
6373   PyObject 
* obj0 
= 0 ; 
6374   PyObject 
* obj1 
= 0 ; 
6375   char *  kwnames
[] = { 
6376     (char *) "self",(char *) "characters", NULL 
 
6379   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWordChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6380   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6381   if (!SWIG_IsOK(res1
)) { 
6382     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWordChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6384   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6386     arg2 
= wxString_in_helper(obj1
); 
6387     if (arg2 
== NULL
) SWIG_fail
; 
6391     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6392     (arg1
)->SetWordChars((wxString 
const &)*arg2
); 
6393     wxPyEndAllowThreads(__tstate
); 
6394     if (PyErr_Occurred()) SWIG_fail
; 
6396   resultobj 
= SWIG_Py_Void(); 
6411 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_BeginUndoAction(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6412   PyObject 
*resultobj 
= 0; 
6413   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6416   PyObject 
*swig_obj
[1] ; 
6418   if (!args
) SWIG_fail
; 
6420   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6421   if (!SWIG_IsOK(res1
)) { 
6422     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BeginUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6424   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6426     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6427     (arg1
)->BeginUndoAction(); 
6428     wxPyEndAllowThreads(__tstate
); 
6429     if (PyErr_Occurred()) SWIG_fail
; 
6431   resultobj 
= SWIG_Py_Void(); 
6438 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EndUndoAction(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6439   PyObject 
*resultobj 
= 0; 
6440   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6443   PyObject 
*swig_obj
[1] ; 
6445   if (!args
) SWIG_fail
; 
6447   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6448   if (!SWIG_IsOK(res1
)) { 
6449     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EndUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6451   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6453     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6454     (arg1
)->EndUndoAction(); 
6455     wxPyEndAllowThreads(__tstate
); 
6456     if (PyErr_Occurred()) SWIG_fail
; 
6458   resultobj 
= SWIG_Py_Void(); 
6465 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_IndicatorSetStyle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6466   PyObject 
*resultobj 
= 0; 
6467   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6476   PyObject 
* obj0 
= 0 ; 
6477   PyObject 
* obj1 
= 0 ; 
6478   PyObject 
* obj2 
= 0 ; 
6479   char *  kwnames
[] = { 
6480     (char *) "self",(char *) "indic",(char *) "style", NULL 
 
6483   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6484   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6485   if (!SWIG_IsOK(res1
)) { 
6486     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6488   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6489   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6490   if (!SWIG_IsOK(ecode2
)) { 
6491     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "2"" of type '" "int""'"); 
6493   arg2 
= static_cast< int >(val2
); 
6494   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
6495   if (!SWIG_IsOK(ecode3
)) { 
6496     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "3"" of type '" "int""'"); 
6498   arg3 
= static_cast< int >(val3
); 
6500     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6501     (arg1
)->IndicatorSetStyle(arg2
,arg3
); 
6502     wxPyEndAllowThreads(__tstate
); 
6503     if (PyErr_Occurred()) SWIG_fail
; 
6505   resultobj 
= SWIG_Py_Void(); 
6512 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_IndicatorGetStyle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6513   PyObject 
*resultobj 
= 0; 
6514   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6521   PyObject 
* obj0 
= 0 ; 
6522   PyObject 
* obj1 
= 0 ; 
6523   char *  kwnames
[] = { 
6524     (char *) "self",(char *) "indic", NULL 
 
6527   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6528   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6529   if (!SWIG_IsOK(res1
)) { 
6530     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6532   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6533   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6534   if (!SWIG_IsOK(ecode2
)) { 
6535     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "2"" of type '" "int""'"); 
6537   arg2 
= static_cast< int >(val2
); 
6539     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6540     result 
= (int)(arg1
)->IndicatorGetStyle(arg2
); 
6541     wxPyEndAllowThreads(__tstate
); 
6542     if (PyErr_Occurred()) SWIG_fail
; 
6544   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6551 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_IndicatorSetForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6552   PyObject 
*resultobj 
= 0; 
6553   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6555   wxColour 
*arg3 
= 0 ; 
6561   PyObject 
* obj0 
= 0 ; 
6562   PyObject 
* obj1 
= 0 ; 
6563   PyObject 
* obj2 
= 0 ; 
6564   char *  kwnames
[] = { 
6565     (char *) "self",(char *) "indic",(char *) "fore", NULL 
 
6568   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6569   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6570   if (!SWIG_IsOK(res1
)) { 
6571     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6573   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6574   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6575   if (!SWIG_IsOK(ecode2
)) { 
6576     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "2"" of type '" "int""'"); 
6578   arg2 
= static_cast< int >(val2
); 
6581     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
6584     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6585     (arg1
)->IndicatorSetForeground(arg2
,(wxColour 
const &)*arg3
); 
6586     wxPyEndAllowThreads(__tstate
); 
6587     if (PyErr_Occurred()) SWIG_fail
; 
6589   resultobj 
= SWIG_Py_Void(); 
6596 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_IndicatorGetForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6597   PyObject 
*resultobj 
= 0; 
6598   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6605   PyObject 
* obj0 
= 0 ; 
6606   PyObject 
* obj1 
= 0 ; 
6607   char *  kwnames
[] = { 
6608     (char *) "self",(char *) "indic", NULL 
 
6611   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6612   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6613   if (!SWIG_IsOK(res1
)) { 
6614     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6616   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6617   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6618   if (!SWIG_IsOK(ecode2
)) { 
6619     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "2"" of type '" "int""'"); 
6621   arg2 
= static_cast< int >(val2
); 
6623     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6624     result 
= (arg1
)->IndicatorGetForeground(arg2
); 
6625     wxPyEndAllowThreads(__tstate
); 
6626     if (PyErr_Occurred()) SWIG_fail
; 
6628   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
6635 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWhitespaceForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6636   PyObject 
*resultobj 
= 0; 
6637   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6639   wxColour 
*arg3 
= 0 ; 
6645   PyObject 
* obj0 
= 0 ; 
6646   PyObject 
* obj1 
= 0 ; 
6647   PyObject 
* obj2 
= 0 ; 
6648   char *  kwnames
[] = { 
6649     (char *) "self",(char *) "useSetting",(char *) "fore", NULL 
 
6652   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6653   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6654   if (!SWIG_IsOK(res1
)) { 
6655     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6657   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6658   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
6659   if (!SWIG_IsOK(ecode2
)) { 
6660     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "2"" of type '" "bool""'"); 
6662   arg2 
= static_cast< bool >(val2
); 
6665     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
6668     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6669     (arg1
)->SetWhitespaceForeground(arg2
,(wxColour 
const &)*arg3
); 
6670     wxPyEndAllowThreads(__tstate
); 
6671     if (PyErr_Occurred()) SWIG_fail
; 
6673   resultobj 
= SWIG_Py_Void(); 
6680 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWhitespaceBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6681   PyObject 
*resultobj 
= 0; 
6682   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6684   wxColour 
*arg3 
= 0 ; 
6690   PyObject 
* obj0 
= 0 ; 
6691   PyObject 
* obj1 
= 0 ; 
6692   PyObject 
* obj2 
= 0 ; 
6693   char *  kwnames
[] = { 
6694     (char *) "self",(char *) "useSetting",(char *) "back", NULL 
 
6697   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6698   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6699   if (!SWIG_IsOK(res1
)) { 
6700     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6702   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6703   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
6704   if (!SWIG_IsOK(ecode2
)) { 
6705     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "2"" of type '" "bool""'"); 
6707   arg2 
= static_cast< bool >(val2
); 
6710     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
6713     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6714     (arg1
)->SetWhitespaceBackground(arg2
,(wxColour 
const &)*arg3
); 
6715     wxPyEndAllowThreads(__tstate
); 
6716     if (PyErr_Occurred()) SWIG_fail
; 
6718   resultobj 
= SWIG_Py_Void(); 
6725 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetStyleBits(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6726   PyObject 
*resultobj 
= 0; 
6727   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6733   PyObject 
* obj0 
= 0 ; 
6734   PyObject 
* obj1 
= 0 ; 
6735   char *  kwnames
[] = { 
6736     (char *) "self",(char *) "bits", NULL 
 
6739   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStyleBits",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6740   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6741   if (!SWIG_IsOK(res1
)) { 
6742     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6744   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6745   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6746   if (!SWIG_IsOK(ecode2
)) { 
6747     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "2"" of type '" "int""'"); 
6749   arg2 
= static_cast< int >(val2
); 
6751     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6752     (arg1
)->SetStyleBits(arg2
); 
6753     wxPyEndAllowThreads(__tstate
); 
6754     if (PyErr_Occurred()) SWIG_fail
; 
6756   resultobj 
= SWIG_Py_Void(); 
6763 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetStyleBits(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6764   PyObject 
*resultobj 
= 0; 
6765   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6769   PyObject 
*swig_obj
[1] ; 
6771   if (!args
) SWIG_fail
; 
6773   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6774   if (!SWIG_IsOK(res1
)) { 
6775     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6777   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6779     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6780     result 
= (int)(arg1
)->GetStyleBits(); 
6781     wxPyEndAllowThreads(__tstate
); 
6782     if (PyErr_Occurred()) SWIG_fail
; 
6784   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6791 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLineState(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6792   PyObject 
*resultobj 
= 0; 
6793   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6802   PyObject 
* obj0 
= 0 ; 
6803   PyObject 
* obj1 
= 0 ; 
6804   PyObject 
* obj2 
= 0 ; 
6805   char *  kwnames
[] = { 
6806     (char *) "self",(char *) "line",(char *) "state", NULL 
 
6809   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineState",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
6810   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6811   if (!SWIG_IsOK(res1
)) { 
6812     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6814   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6815   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6816   if (!SWIG_IsOK(ecode2
)) { 
6817     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "2"" of type '" "int""'"); 
6819   arg2 
= static_cast< int >(val2
); 
6820   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
6821   if (!SWIG_IsOK(ecode3
)) { 
6822     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "3"" of type '" "int""'"); 
6824   arg3 
= static_cast< int >(val3
); 
6826     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6827     (arg1
)->SetLineState(arg2
,arg3
); 
6828     wxPyEndAllowThreads(__tstate
); 
6829     if (PyErr_Occurred()) SWIG_fail
; 
6831   resultobj 
= SWIG_Py_Void(); 
6838 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineState(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6839   PyObject 
*resultobj 
= 0; 
6840   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6847   PyObject 
* obj0 
= 0 ; 
6848   PyObject 
* obj1 
= 0 ; 
6849   char *  kwnames
[] = { 
6850     (char *) "self",(char *) "line", NULL 
 
6853   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineState",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6854   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6855   if (!SWIG_IsOK(res1
)) { 
6856     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6858   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6859   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
6860   if (!SWIG_IsOK(ecode2
)) { 
6861     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "2"" of type '" "int""'"); 
6863   arg2 
= static_cast< int >(val2
); 
6865     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6866     result 
= (int)(arg1
)->GetLineState(arg2
); 
6867     wxPyEndAllowThreads(__tstate
); 
6868     if (PyErr_Occurred()) SWIG_fail
; 
6870   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6877 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMaxLineState(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6878   PyObject 
*resultobj 
= 0; 
6879   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6883   PyObject 
*swig_obj
[1] ; 
6885   if (!args
) SWIG_fail
; 
6887   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6888   if (!SWIG_IsOK(res1
)) { 
6889     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMaxLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6891   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6893     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6894     result 
= (int)(arg1
)->GetMaxLineState(); 
6895     wxPyEndAllowThreads(__tstate
); 
6896     if (PyErr_Occurred()) SWIG_fail
; 
6898   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
6905 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretLineVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6906   PyObject 
*resultobj 
= 0; 
6907   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6911   PyObject 
*swig_obj
[1] ; 
6913   if (!args
) SWIG_fail
; 
6915   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6916   if (!SWIG_IsOK(res1
)) { 
6917     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6919   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6921     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6922     result 
= (bool)(arg1
)->GetCaretLineVisible(); 
6923     wxPyEndAllowThreads(__tstate
); 
6924     if (PyErr_Occurred()) SWIG_fail
; 
6927     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
6935 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretLineVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
6936   PyObject 
*resultobj 
= 0; 
6937   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6943   PyObject 
* obj0 
= 0 ; 
6944   PyObject 
* obj1 
= 0 ; 
6945   char *  kwnames
[] = { 
6946     (char *) "self",(char *) "show", NULL 
 
6949   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
6950   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6951   if (!SWIG_IsOK(res1
)) { 
6952     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6954   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6955   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
6956   if (!SWIG_IsOK(ecode2
)) { 
6957     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "2"" of type '" "bool""'"); 
6959   arg2 
= static_cast< bool >(val2
); 
6961     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6962     (arg1
)->SetCaretLineVisible(arg2
); 
6963     wxPyEndAllowThreads(__tstate
); 
6964     if (PyErr_Occurred()) SWIG_fail
; 
6966   resultobj 
= SWIG_Py_Void(); 
6973 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretLineBack(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
6974   PyObject 
*resultobj 
= 0; 
6975   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
6979   PyObject 
*swig_obj
[1] ; 
6981   if (!args
) SWIG_fail
; 
6983   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
6984   if (!SWIG_IsOK(res1
)) { 
6985     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
6987   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
6989     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
6990     result 
= (arg1
)->GetCaretLineBack(); 
6991     wxPyEndAllowThreads(__tstate
); 
6992     if (PyErr_Occurred()) SWIG_fail
; 
6994   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
7001 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretLineBack(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7002   PyObject 
*resultobj 
= 0; 
7003   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7004   wxColour 
*arg2 
= 0 ; 
7008   PyObject 
* obj0 
= 0 ; 
7009   PyObject 
* obj1 
= 0 ; 
7010   char *  kwnames
[] = { 
7011     (char *) "self",(char *) "back", NULL 
 
7014   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineBack",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7015   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7016   if (!SWIG_IsOK(res1
)) { 
7017     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7019   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7022     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
7025     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7026     (arg1
)->SetCaretLineBack((wxColour 
const &)*arg2
); 
7027     wxPyEndAllowThreads(__tstate
); 
7028     if (PyErr_Occurred()) SWIG_fail
; 
7030   resultobj 
= SWIG_Py_Void(); 
7037 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetChangeable(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7038   PyObject 
*resultobj 
= 0; 
7039   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7048   PyObject 
* obj0 
= 0 ; 
7049   PyObject 
* obj1 
= 0 ; 
7050   PyObject 
* obj2 
= 0 ; 
7051   char *  kwnames
[] = { 
7052     (char *) "self",(char *) "style",(char *) "changeable", NULL 
 
7055   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetChangeable",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7056   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7057   if (!SWIG_IsOK(res1
)) { 
7058     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7060   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7061   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7062   if (!SWIG_IsOK(ecode2
)) { 
7063     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "2"" of type '" "int""'"); 
7065   arg2 
= static_cast< int >(val2
); 
7066   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
7067   if (!SWIG_IsOK(ecode3
)) { 
7068     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "3"" of type '" "bool""'"); 
7070   arg3 
= static_cast< bool >(val3
); 
7072     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7073     (arg1
)->StyleSetChangeable(arg2
,arg3
); 
7074     wxPyEndAllowThreads(__tstate
); 
7075     if (PyErr_Occurred()) SWIG_fail
; 
7077   resultobj 
= SWIG_Py_Void(); 
7084 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompShow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7085   PyObject 
*resultobj 
= 0; 
7086   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7088   wxString 
*arg3 
= 0 ; 
7093   bool temp3 
= false ; 
7094   PyObject 
* obj0 
= 0 ; 
7095   PyObject 
* obj1 
= 0 ; 
7096   PyObject 
* obj2 
= 0 ; 
7097   char *  kwnames
[] = { 
7098     (char *) "self",(char *) "lenEntered",(char *) "itemList", NULL 
 
7101   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_AutoCompShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7102   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7103   if (!SWIG_IsOK(res1
)) { 
7104     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7106   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7107   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7108   if (!SWIG_IsOK(ecode2
)) { 
7109     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "2"" of type '" "int""'"); 
7111   arg2 
= static_cast< int >(val2
); 
7113     arg3 
= wxString_in_helper(obj2
); 
7114     if (arg3 
== NULL
) SWIG_fail
; 
7118     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7119     (arg1
)->AutoCompShow(arg2
,(wxString 
const &)*arg3
); 
7120     wxPyEndAllowThreads(__tstate
); 
7121     if (PyErr_Occurred()) SWIG_fail
; 
7123   resultobj 
= SWIG_Py_Void(); 
7138 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompCancel(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7139   PyObject 
*resultobj 
= 0; 
7140   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7143   PyObject 
*swig_obj
[1] ; 
7145   if (!args
) SWIG_fail
; 
7147   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7148   if (!SWIG_IsOK(res1
)) { 
7149     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7151   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7153     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7154     (arg1
)->AutoCompCancel(); 
7155     wxPyEndAllowThreads(__tstate
); 
7156     if (PyErr_Occurred()) SWIG_fail
; 
7158   resultobj 
= SWIG_Py_Void(); 
7165 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompActive(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7166   PyObject 
*resultobj 
= 0; 
7167   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7171   PyObject 
*swig_obj
[1] ; 
7173   if (!args
) SWIG_fail
; 
7175   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7176   if (!SWIG_IsOK(res1
)) { 
7177     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7179   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7181     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7182     result 
= (bool)(arg1
)->AutoCompActive(); 
7183     wxPyEndAllowThreads(__tstate
); 
7184     if (PyErr_Occurred()) SWIG_fail
; 
7187     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7195 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompPosStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7196   PyObject 
*resultobj 
= 0; 
7197   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7201   PyObject 
*swig_obj
[1] ; 
7203   if (!args
) SWIG_fail
; 
7205   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7206   if (!SWIG_IsOK(res1
)) { 
7207     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompPosStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7209   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7211     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7212     result 
= (int)(arg1
)->AutoCompPosStart(); 
7213     wxPyEndAllowThreads(__tstate
); 
7214     if (PyErr_Occurred()) SWIG_fail
; 
7216   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
7223 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompComplete(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7224   PyObject 
*resultobj 
= 0; 
7225   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7228   PyObject 
*swig_obj
[1] ; 
7230   if (!args
) SWIG_fail
; 
7232   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7233   if (!SWIG_IsOK(res1
)) { 
7234     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompComplete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7236   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7238     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7239     (arg1
)->AutoCompComplete(); 
7240     wxPyEndAllowThreads(__tstate
); 
7241     if (PyErr_Occurred()) SWIG_fail
; 
7243   resultobj 
= SWIG_Py_Void(); 
7250 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompStops(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7251   PyObject 
*resultobj 
= 0; 
7252   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7253   wxString 
*arg2 
= 0 ; 
7256   bool temp2 
= false ; 
7257   PyObject 
* obj0 
= 0 ; 
7258   PyObject 
* obj1 
= 0 ; 
7259   char *  kwnames
[] = { 
7260     (char *) "self",(char *) "characterSet", NULL 
 
7263   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompStops",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7264   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7265   if (!SWIG_IsOK(res1
)) { 
7266     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompStops" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7268   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7270     arg2 
= wxString_in_helper(obj1
); 
7271     if (arg2 
== NULL
) SWIG_fail
; 
7275     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7276     (arg1
)->AutoCompStops((wxString 
const &)*arg2
); 
7277     wxPyEndAllowThreads(__tstate
); 
7278     if (PyErr_Occurred()) SWIG_fail
; 
7280   resultobj 
= SWIG_Py_Void(); 
7295 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetSeparator(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7296   PyObject 
*resultobj 
= 0; 
7297   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7303   PyObject 
* obj0 
= 0 ; 
7304   PyObject 
* obj1 
= 0 ; 
7305   char *  kwnames
[] = { 
7306     (char *) "self",(char *) "separatorCharacter", NULL 
 
7309   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7310   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7311   if (!SWIG_IsOK(res1
)) { 
7312     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7314   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7315   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7316   if (!SWIG_IsOK(ecode2
)) { 
7317     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "2"" of type '" "int""'"); 
7319   arg2 
= static_cast< int >(val2
); 
7321     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7322     (arg1
)->AutoCompSetSeparator(arg2
); 
7323     wxPyEndAllowThreads(__tstate
); 
7324     if (PyErr_Occurred()) SWIG_fail
; 
7326   resultobj 
= SWIG_Py_Void(); 
7333 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetSeparator(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7334   PyObject 
*resultobj 
= 0; 
7335   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7339   PyObject 
*swig_obj
[1] ; 
7341   if (!args
) SWIG_fail
; 
7343   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7344   if (!SWIG_IsOK(res1
)) { 
7345     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7347   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7349     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7350     result 
= (int)(arg1
)->AutoCompGetSeparator(); 
7351     wxPyEndAllowThreads(__tstate
); 
7352     if (PyErr_Occurred()) SWIG_fail
; 
7354   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
7361 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSelect(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7362   PyObject 
*resultobj 
= 0; 
7363   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7364   wxString 
*arg2 
= 0 ; 
7367   bool temp2 
= false ; 
7368   PyObject 
* obj0 
= 0 ; 
7369   PyObject 
* obj1 
= 0 ; 
7370   char *  kwnames
[] = { 
7371     (char *) "self",(char *) "text", NULL 
 
7374   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSelect",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7375   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7376   if (!SWIG_IsOK(res1
)) { 
7377     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSelect" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7379   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7381     arg2 
= wxString_in_helper(obj1
); 
7382     if (arg2 
== NULL
) SWIG_fail
; 
7386     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7387     (arg1
)->AutoCompSelect((wxString 
const &)*arg2
); 
7388     wxPyEndAllowThreads(__tstate
); 
7389     if (PyErr_Occurred()) SWIG_fail
; 
7391   resultobj 
= SWIG_Py_Void(); 
7406 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetCancelAtStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7407   PyObject 
*resultobj 
= 0; 
7408   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7414   PyObject 
* obj0 
= 0 ; 
7415   PyObject 
* obj1 
= 0 ; 
7416   char *  kwnames
[] = { 
7417     (char *) "self",(char *) "cancel", NULL 
 
7420   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetCancelAtStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7421   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7422   if (!SWIG_IsOK(res1
)) { 
7423     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7425   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7426   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
7427   if (!SWIG_IsOK(ecode2
)) { 
7428     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "2"" of type '" "bool""'"); 
7430   arg2 
= static_cast< bool >(val2
); 
7432     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7433     (arg1
)->AutoCompSetCancelAtStart(arg2
); 
7434     wxPyEndAllowThreads(__tstate
); 
7435     if (PyErr_Occurred()) SWIG_fail
; 
7437   resultobj 
= SWIG_Py_Void(); 
7444 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetCancelAtStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7445   PyObject 
*resultobj 
= 0; 
7446   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7450   PyObject 
*swig_obj
[1] ; 
7452   if (!args
) SWIG_fail
; 
7454   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7455   if (!SWIG_IsOK(res1
)) { 
7456     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7458   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7460     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7461     result 
= (bool)(arg1
)->AutoCompGetCancelAtStart(); 
7462     wxPyEndAllowThreads(__tstate
); 
7463     if (PyErr_Occurred()) SWIG_fail
; 
7466     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7474 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetFillUps(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7475   PyObject 
*resultobj 
= 0; 
7476   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7477   wxString 
*arg2 
= 0 ; 
7480   bool temp2 
= false ; 
7481   PyObject 
* obj0 
= 0 ; 
7482   PyObject 
* obj1 
= 0 ; 
7483   char *  kwnames
[] = { 
7484     (char *) "self",(char *) "characterSet", NULL 
 
7487   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetFillUps",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7488   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7489   if (!SWIG_IsOK(res1
)) { 
7490     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetFillUps" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7492   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7494     arg2 
= wxString_in_helper(obj1
); 
7495     if (arg2 
== NULL
) SWIG_fail
; 
7499     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7500     (arg1
)->AutoCompSetFillUps((wxString 
const &)*arg2
); 
7501     wxPyEndAllowThreads(__tstate
); 
7502     if (PyErr_Occurred()) SWIG_fail
; 
7504   resultobj 
= SWIG_Py_Void(); 
7519 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetChooseSingle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7520   PyObject 
*resultobj 
= 0; 
7521   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7527   PyObject 
* obj0 
= 0 ; 
7528   PyObject 
* obj1 
= 0 ; 
7529   char *  kwnames
[] = { 
7530     (char *) "self",(char *) "chooseSingle", NULL 
 
7533   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetChooseSingle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7534   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7535   if (!SWIG_IsOK(res1
)) { 
7536     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7538   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7539   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
7540   if (!SWIG_IsOK(ecode2
)) { 
7541     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "2"" of type '" "bool""'"); 
7543   arg2 
= static_cast< bool >(val2
); 
7545     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7546     (arg1
)->AutoCompSetChooseSingle(arg2
); 
7547     wxPyEndAllowThreads(__tstate
); 
7548     if (PyErr_Occurred()) SWIG_fail
; 
7550   resultobj 
= SWIG_Py_Void(); 
7557 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetChooseSingle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7558   PyObject 
*resultobj 
= 0; 
7559   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7563   PyObject 
*swig_obj
[1] ; 
7565   if (!args
) SWIG_fail
; 
7567   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7568   if (!SWIG_IsOK(res1
)) { 
7569     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7571   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7573     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7574     result 
= (bool)(arg1
)->AutoCompGetChooseSingle(); 
7575     wxPyEndAllowThreads(__tstate
); 
7576     if (PyErr_Occurred()) SWIG_fail
; 
7579     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7587 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetIgnoreCase(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7588   PyObject 
*resultobj 
= 0; 
7589   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7595   PyObject 
* obj0 
= 0 ; 
7596   PyObject 
* obj1 
= 0 ; 
7597   char *  kwnames
[] = { 
7598     (char *) "self",(char *) "ignoreCase", NULL 
 
7601   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetIgnoreCase",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7602   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7603   if (!SWIG_IsOK(res1
)) { 
7604     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7606   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7607   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
7608   if (!SWIG_IsOK(ecode2
)) { 
7609     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "2"" of type '" "bool""'"); 
7611   arg2 
= static_cast< bool >(val2
); 
7613     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7614     (arg1
)->AutoCompSetIgnoreCase(arg2
); 
7615     wxPyEndAllowThreads(__tstate
); 
7616     if (PyErr_Occurred()) SWIG_fail
; 
7618   resultobj 
= SWIG_Py_Void(); 
7625 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetIgnoreCase(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7626   PyObject 
*resultobj 
= 0; 
7627   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7631   PyObject 
*swig_obj
[1] ; 
7633   if (!args
) SWIG_fail
; 
7635   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7636   if (!SWIG_IsOK(res1
)) { 
7637     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7639   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7641     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7642     result 
= (bool)(arg1
)->AutoCompGetIgnoreCase(); 
7643     wxPyEndAllowThreads(__tstate
); 
7644     if (PyErr_Occurred()) SWIG_fail
; 
7647     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7655 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_UserListShow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7656   PyObject 
*resultobj 
= 0; 
7657   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7659   wxString 
*arg3 
= 0 ; 
7664   bool temp3 
= false ; 
7665   PyObject 
* obj0 
= 0 ; 
7666   PyObject 
* obj1 
= 0 ; 
7667   PyObject 
* obj2 
= 0 ; 
7668   char *  kwnames
[] = { 
7669     (char *) "self",(char *) "listType",(char *) "itemList", NULL 
 
7672   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_UserListShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7673   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7674   if (!SWIG_IsOK(res1
)) { 
7675     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7677   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7678   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7679   if (!SWIG_IsOK(ecode2
)) { 
7680     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "2"" of type '" "int""'"); 
7682   arg2 
= static_cast< int >(val2
); 
7684     arg3 
= wxString_in_helper(obj2
); 
7685     if (arg3 
== NULL
) SWIG_fail
; 
7689     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7690     (arg1
)->UserListShow(arg2
,(wxString 
const &)*arg3
); 
7691     wxPyEndAllowThreads(__tstate
); 
7692     if (PyErr_Occurred()) SWIG_fail
; 
7694   resultobj 
= SWIG_Py_Void(); 
7709 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetAutoHide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7710   PyObject 
*resultobj 
= 0; 
7711   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7717   PyObject 
* obj0 
= 0 ; 
7718   PyObject 
* obj1 
= 0 ; 
7719   char *  kwnames
[] = { 
7720     (char *) "self",(char *) "autoHide", NULL 
 
7723   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetAutoHide",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7724   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7725   if (!SWIG_IsOK(res1
)) { 
7726     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7728   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7729   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
7730   if (!SWIG_IsOK(ecode2
)) { 
7731     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "2"" of type '" "bool""'"); 
7733   arg2 
= static_cast< bool >(val2
); 
7735     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7736     (arg1
)->AutoCompSetAutoHide(arg2
); 
7737     wxPyEndAllowThreads(__tstate
); 
7738     if (PyErr_Occurred()) SWIG_fail
; 
7740   resultobj 
= SWIG_Py_Void(); 
7747 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetAutoHide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7748   PyObject 
*resultobj 
= 0; 
7749   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7753   PyObject 
*swig_obj
[1] ; 
7755   if (!args
) SWIG_fail
; 
7757   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7758   if (!SWIG_IsOK(res1
)) { 
7759     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7761   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7763     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7764     result 
= (bool)(arg1
)->AutoCompGetAutoHide(); 
7765     wxPyEndAllowThreads(__tstate
); 
7766     if (PyErr_Occurred()) SWIG_fail
; 
7769     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7777 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetDropRestOfWord(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7778   PyObject 
*resultobj 
= 0; 
7779   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7785   PyObject 
* obj0 
= 0 ; 
7786   PyObject 
* obj1 
= 0 ; 
7787   char *  kwnames
[] = { 
7788     (char *) "self",(char *) "dropRestOfWord", NULL 
 
7791   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetDropRestOfWord",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7792   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7793   if (!SWIG_IsOK(res1
)) { 
7794     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7796   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7797   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
7798   if (!SWIG_IsOK(ecode2
)) { 
7799     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "2"" of type '" "bool""'"); 
7801   arg2 
= static_cast< bool >(val2
); 
7803     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7804     (arg1
)->AutoCompSetDropRestOfWord(arg2
); 
7805     wxPyEndAllowThreads(__tstate
); 
7806     if (PyErr_Occurred()) SWIG_fail
; 
7808   resultobj 
= SWIG_Py_Void(); 
7815 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7816   PyObject 
*resultobj 
= 0; 
7817   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7821   PyObject 
*swig_obj
[1] ; 
7823   if (!args
) SWIG_fail
; 
7825   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7826   if (!SWIG_IsOK(res1
)) { 
7827     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7829   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7831     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7832     result 
= (bool)(arg1
)->AutoCompGetDropRestOfWord(); 
7833     wxPyEndAllowThreads(__tstate
); 
7834     if (PyErr_Occurred()) SWIG_fail
; 
7837     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
7845 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_RegisterImage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7846   PyObject 
*resultobj 
= 0; 
7847   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7849   wxBitmap 
*arg3 
= 0 ; 
7856   PyObject 
* obj0 
= 0 ; 
7857   PyObject 
* obj1 
= 0 ; 
7858   PyObject 
* obj2 
= 0 ; 
7859   char *  kwnames
[] = { 
7860     (char *) "self",(char *) "type",(char *) "bmp", NULL 
 
7863   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_RegisterImage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
7864   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7865   if (!SWIG_IsOK(res1
)) { 
7866     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7868   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7869   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7870   if (!SWIG_IsOK(ecode2
)) { 
7871     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "2"" of type '" "int""'"); 
7873   arg2 
= static_cast< int >(val2
); 
7874   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
,  0  | 0); 
7875   if (!SWIG_IsOK(res3
)) { 
7876     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
7879     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");  
7881   arg3 
= reinterpret_cast< wxBitmap 
* >(argp3
); 
7883     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7884     (arg1
)->RegisterImage(arg2
,(wxBitmap 
const &)*arg3
); 
7885     wxPyEndAllowThreads(__tstate
); 
7886     if (PyErr_Occurred()) SWIG_fail
; 
7888   resultobj 
= SWIG_Py_Void(); 
7895 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ClearRegisteredImages(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7896   PyObject 
*resultobj 
= 0; 
7897   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7900   PyObject 
*swig_obj
[1] ; 
7902   if (!args
) SWIG_fail
; 
7904   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7905   if (!SWIG_IsOK(res1
)) { 
7906     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearRegisteredImages" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7908   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7910     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7911     (arg1
)->ClearRegisteredImages(); 
7912     wxPyEndAllowThreads(__tstate
); 
7913     if (PyErr_Occurred()) SWIG_fail
; 
7915   resultobj 
= SWIG_Py_Void(); 
7922 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetTypeSeparator(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
7923   PyObject 
*resultobj 
= 0; 
7924   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7928   PyObject 
*swig_obj
[1] ; 
7930   if (!args
) SWIG_fail
; 
7932   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7933   if (!SWIG_IsOK(res1
)) { 
7934     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7936   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7938     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7939     result 
= (int)(arg1
)->AutoCompGetTypeSeparator(); 
7940     wxPyEndAllowThreads(__tstate
); 
7941     if (PyErr_Occurred()) SWIG_fail
; 
7943   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
7950 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetTypeSeparator(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7951   PyObject 
*resultobj 
= 0; 
7952   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7958   PyObject 
* obj0 
= 0 ; 
7959   PyObject 
* obj1 
= 0 ; 
7960   char *  kwnames
[] = { 
7961     (char *) "self",(char *) "separatorCharacter", NULL 
 
7964   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetTypeSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
7965   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
7966   if (!SWIG_IsOK(res1
)) { 
7967     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
7969   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
7970   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
7971   if (!SWIG_IsOK(ecode2
)) { 
7972     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "2"" of type '" "int""'"); 
7974   arg2 
= static_cast< int >(val2
); 
7976     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
7977     (arg1
)->AutoCompSetTypeSeparator(arg2
); 
7978     wxPyEndAllowThreads(__tstate
); 
7979     if (PyErr_Occurred()) SWIG_fail
; 
7981   resultobj 
= SWIG_Py_Void(); 
7988 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetMaxWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
7989   PyObject 
*resultobj 
= 0; 
7990   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
7996   PyObject 
* obj0 
= 0 ; 
7997   PyObject 
* obj1 
= 0 ; 
7998   char *  kwnames
[] = { 
7999     (char *) "self",(char *) "characterCount", NULL 
 
8002   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8003   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8004   if (!SWIG_IsOK(res1
)) { 
8005     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8007   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8008   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8009   if (!SWIG_IsOK(ecode2
)) { 
8010     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "2"" of type '" "int""'"); 
8012   arg2 
= static_cast< int >(val2
); 
8014     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8015     (arg1
)->AutoCompSetMaxWidth(arg2
); 
8016     wxPyEndAllowThreads(__tstate
); 
8017     if (PyErr_Occurred()) SWIG_fail
; 
8019   resultobj 
= SWIG_Py_Void(); 
8026 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetMaxWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8027   PyObject 
*resultobj 
= 0; 
8028   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8032   PyObject 
*swig_obj
[1] ; 
8034   if (!args
) SWIG_fail
; 
8036   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8037   if (!SWIG_IsOK(res1
)) { 
8038     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8040   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8042     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8043     result 
= (int)(arg1
)->AutoCompGetMaxWidth(); 
8044     wxPyEndAllowThreads(__tstate
); 
8045     if (PyErr_Occurred()) SWIG_fail
; 
8047   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8054 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompSetMaxHeight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8055   PyObject 
*resultobj 
= 0; 
8056   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8062   PyObject 
* obj0 
= 0 ; 
8063   PyObject 
* obj1 
= 0 ; 
8064   char *  kwnames
[] = { 
8065     (char *) "self",(char *) "rowCount", NULL 
 
8068   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8069   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8070   if (!SWIG_IsOK(res1
)) { 
8071     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8073   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8074   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8075   if (!SWIG_IsOK(ecode2
)) { 
8076     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "2"" of type '" "int""'"); 
8078   arg2 
= static_cast< int >(val2
); 
8080     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8081     (arg1
)->AutoCompSetMaxHeight(arg2
); 
8082     wxPyEndAllowThreads(__tstate
); 
8083     if (PyErr_Occurred()) SWIG_fail
; 
8085   resultobj 
= SWIG_Py_Void(); 
8092 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetMaxHeight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8093   PyObject 
*resultobj 
= 0; 
8094   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8098   PyObject 
*swig_obj
[1] ; 
8100   if (!args
) SWIG_fail
; 
8102   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8103   if (!SWIG_IsOK(res1
)) { 
8104     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8106   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8108     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8109     result 
= (int)(arg1
)->AutoCompGetMaxHeight(); 
8110     wxPyEndAllowThreads(__tstate
); 
8111     if (PyErr_Occurred()) SWIG_fail
; 
8113   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8120 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetIndent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8121   PyObject 
*resultobj 
= 0; 
8122   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8128   PyObject 
* obj0 
= 0 ; 
8129   PyObject 
* obj1 
= 0 ; 
8130   char *  kwnames
[] = { 
8131     (char *) "self",(char *) "indentSize", NULL 
 
8134   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8135   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8136   if (!SWIG_IsOK(res1
)) { 
8137     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8139   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8140   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8141   if (!SWIG_IsOK(ecode2
)) { 
8142     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "2"" of type '" "int""'"); 
8144   arg2 
= static_cast< int >(val2
); 
8146     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8147     (arg1
)->SetIndent(arg2
); 
8148     wxPyEndAllowThreads(__tstate
); 
8149     if (PyErr_Occurred()) SWIG_fail
; 
8151   resultobj 
= SWIG_Py_Void(); 
8158 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetIndent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8159   PyObject 
*resultobj 
= 0; 
8160   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8164   PyObject 
*swig_obj
[1] ; 
8166   if (!args
) SWIG_fail
; 
8168   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8169   if (!SWIG_IsOK(res1
)) { 
8170     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8172   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8174     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8175     result 
= (int)(arg1
)->GetIndent(); 
8176     wxPyEndAllowThreads(__tstate
); 
8177     if (PyErr_Occurred()) SWIG_fail
; 
8179   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8186 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetUseTabs(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8187   PyObject 
*resultobj 
= 0; 
8188   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8194   PyObject 
* obj0 
= 0 ; 
8195   PyObject 
* obj1 
= 0 ; 
8196   char *  kwnames
[] = { 
8197     (char *) "self",(char *) "useTabs", NULL 
 
8200   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseTabs",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8201   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8202   if (!SWIG_IsOK(res1
)) { 
8203     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8205   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8206   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
8207   if (!SWIG_IsOK(ecode2
)) { 
8208     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "2"" of type '" "bool""'"); 
8210   arg2 
= static_cast< bool >(val2
); 
8212     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8213     (arg1
)->SetUseTabs(arg2
); 
8214     wxPyEndAllowThreads(__tstate
); 
8215     if (PyErr_Occurred()) SWIG_fail
; 
8217   resultobj 
= SWIG_Py_Void(); 
8224 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetUseTabs(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8225   PyObject 
*resultobj 
= 0; 
8226   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8230   PyObject 
*swig_obj
[1] ; 
8232   if (!args
) SWIG_fail
; 
8234   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8235   if (!SWIG_IsOK(res1
)) { 
8236     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8238   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8240     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8241     result 
= (bool)(arg1
)->GetUseTabs(); 
8242     wxPyEndAllowThreads(__tstate
); 
8243     if (PyErr_Occurred()) SWIG_fail
; 
8246     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8254 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLineIndentation(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8255   PyObject 
*resultobj 
= 0; 
8256   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8265   PyObject 
* obj0 
= 0 ; 
8266   PyObject 
* obj1 
= 0 ; 
8267   PyObject 
* obj2 
= 0 ; 
8268   char *  kwnames
[] = { 
8269     (char *) "self",(char *) "line",(char *) "indentSize", NULL 
 
8272   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineIndentation",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
8273   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8274   if (!SWIG_IsOK(res1
)) { 
8275     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8277   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8278   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8279   if (!SWIG_IsOK(ecode2
)) { 
8280     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "2"" of type '" "int""'"); 
8282   arg2 
= static_cast< int >(val2
); 
8283   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
8284   if (!SWIG_IsOK(ecode3
)) { 
8285     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "3"" of type '" "int""'"); 
8287   arg3 
= static_cast< int >(val3
); 
8289     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8290     (arg1
)->SetLineIndentation(arg2
,arg3
); 
8291     wxPyEndAllowThreads(__tstate
); 
8292     if (PyErr_Occurred()) SWIG_fail
; 
8294   resultobj 
= SWIG_Py_Void(); 
8301 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineIndentation(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8302   PyObject 
*resultobj 
= 0; 
8303   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8310   PyObject 
* obj0 
= 0 ; 
8311   PyObject 
* obj1 
= 0 ; 
8312   char *  kwnames
[] = { 
8313     (char *) "self",(char *) "line", NULL 
 
8316   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentation",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8317   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8318   if (!SWIG_IsOK(res1
)) { 
8319     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8321   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8322   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8323   if (!SWIG_IsOK(ecode2
)) { 
8324     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "2"" of type '" "int""'"); 
8326   arg2 
= static_cast< int >(val2
); 
8328     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8329     result 
= (int)(arg1
)->GetLineIndentation(arg2
); 
8330     wxPyEndAllowThreads(__tstate
); 
8331     if (PyErr_Occurred()) SWIG_fail
; 
8333   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8340 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineIndentPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8341   PyObject 
*resultobj 
= 0; 
8342   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8349   PyObject 
* obj0 
= 0 ; 
8350   PyObject 
* obj1 
= 0 ; 
8351   char *  kwnames
[] = { 
8352     (char *) "self",(char *) "line", NULL 
 
8355   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8356   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8357   if (!SWIG_IsOK(res1
)) { 
8358     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8360   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8361   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8362   if (!SWIG_IsOK(ecode2
)) { 
8363     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "2"" of type '" "int""'"); 
8365   arg2 
= static_cast< int >(val2
); 
8367     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8368     result 
= (int)(arg1
)->GetLineIndentPosition(arg2
); 
8369     wxPyEndAllowThreads(__tstate
); 
8370     if (PyErr_Occurred()) SWIG_fail
; 
8372   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8379 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetColumn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8380   PyObject 
*resultobj 
= 0; 
8381   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8388   PyObject 
* obj0 
= 0 ; 
8389   PyObject 
* obj1 
= 0 ; 
8390   char *  kwnames
[] = { 
8391     (char *) "self",(char *) "pos", NULL 
 
8394   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8395   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8396   if (!SWIG_IsOK(res1
)) { 
8397     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8399   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8400   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8401   if (!SWIG_IsOK(ecode2
)) { 
8402     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "2"" of type '" "int""'"); 
8404   arg2 
= static_cast< int >(val2
); 
8406     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8407     result 
= (int)(arg1
)->GetColumn(arg2
); 
8408     wxPyEndAllowThreads(__tstate
); 
8409     if (PyErr_Occurred()) SWIG_fail
; 
8411   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8418 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetUseHorizontalScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8419   PyObject 
*resultobj 
= 0; 
8420   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8426   PyObject 
* obj0 
= 0 ; 
8427   PyObject 
* obj1 
= 0 ; 
8428   char *  kwnames
[] = { 
8429     (char *) "self",(char *) "show", NULL 
 
8432   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseHorizontalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8433   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8434   if (!SWIG_IsOK(res1
)) { 
8435     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8437   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8438   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
8439   if (!SWIG_IsOK(ecode2
)) { 
8440     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "2"" of type '" "bool""'"); 
8442   arg2 
= static_cast< bool >(val2
); 
8444     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8445     (arg1
)->SetUseHorizontalScrollBar(arg2
); 
8446     wxPyEndAllowThreads(__tstate
); 
8447     if (PyErr_Occurred()) SWIG_fail
; 
8449   resultobj 
= SWIG_Py_Void(); 
8456 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetUseHorizontalScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8457   PyObject 
*resultobj 
= 0; 
8458   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8462   PyObject 
*swig_obj
[1] ; 
8464   if (!args
) SWIG_fail
; 
8466   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8467   if (!SWIG_IsOK(res1
)) { 
8468     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8470   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8472     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8473     result 
= (bool)(arg1
)->GetUseHorizontalScrollBar(); 
8474     wxPyEndAllowThreads(__tstate
); 
8475     if (PyErr_Occurred()) SWIG_fail
; 
8478     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8486 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetIndentationGuides(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8487   PyObject 
*resultobj 
= 0; 
8488   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8494   PyObject 
* obj0 
= 0 ; 
8495   PyObject 
* obj1 
= 0 ; 
8496   char *  kwnames
[] = { 
8497     (char *) "self",(char *) "show", NULL 
 
8500   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndentationGuides",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8501   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8502   if (!SWIG_IsOK(res1
)) { 
8503     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8505   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8506   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
8507   if (!SWIG_IsOK(ecode2
)) { 
8508     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "2"" of type '" "bool""'"); 
8510   arg2 
= static_cast< bool >(val2
); 
8512     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8513     (arg1
)->SetIndentationGuides(arg2
); 
8514     wxPyEndAllowThreads(__tstate
); 
8515     if (PyErr_Occurred()) SWIG_fail
; 
8517   resultobj 
= SWIG_Py_Void(); 
8524 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetIndentationGuides(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8525   PyObject 
*resultobj 
= 0; 
8526   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8530   PyObject 
*swig_obj
[1] ; 
8532   if (!args
) SWIG_fail
; 
8534   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8535   if (!SWIG_IsOK(res1
)) { 
8536     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8538   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8540     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8541     result 
= (bool)(arg1
)->GetIndentationGuides(); 
8542     wxPyEndAllowThreads(__tstate
); 
8543     if (PyErr_Occurred()) SWIG_fail
; 
8546     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8554 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHighlightGuide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8555   PyObject 
*resultobj 
= 0; 
8556   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8562   PyObject 
* obj0 
= 0 ; 
8563   PyObject 
* obj1 
= 0 ; 
8564   char *  kwnames
[] = { 
8565     (char *) "self",(char *) "column", NULL 
 
8568   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHighlightGuide",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8569   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8570   if (!SWIG_IsOK(res1
)) { 
8571     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8573   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8574   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8575   if (!SWIG_IsOK(ecode2
)) { 
8576     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "2"" of type '" "int""'"); 
8578   arg2 
= static_cast< int >(val2
); 
8580     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8581     (arg1
)->SetHighlightGuide(arg2
); 
8582     wxPyEndAllowThreads(__tstate
); 
8583     if (PyErr_Occurred()) SWIG_fail
; 
8585   resultobj 
= SWIG_Py_Void(); 
8592 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetHighlightGuide(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8593   PyObject 
*resultobj 
= 0; 
8594   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8598   PyObject 
*swig_obj
[1] ; 
8600   if (!args
) SWIG_fail
; 
8602   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8603   if (!SWIG_IsOK(res1
)) { 
8604     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8606   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8608     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8609     result 
= (int)(arg1
)->GetHighlightGuide(); 
8610     wxPyEndAllowThreads(__tstate
); 
8611     if (PyErr_Occurred()) SWIG_fail
; 
8613   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8620 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineEndPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8621   PyObject 
*resultobj 
= 0; 
8622   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8629   PyObject 
* obj0 
= 0 ; 
8630   PyObject 
* obj1 
= 0 ; 
8631   char *  kwnames
[] = { 
8632     (char *) "self",(char *) "line", NULL 
 
8635   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8636   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8637   if (!SWIG_IsOK(res1
)) { 
8638     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8640   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8641   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8642   if (!SWIG_IsOK(ecode2
)) { 
8643     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "2"" of type '" "int""'"); 
8645   arg2 
= static_cast< int >(val2
); 
8647     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8648     result 
= (int)(arg1
)->GetLineEndPosition(arg2
); 
8649     wxPyEndAllowThreads(__tstate
); 
8650     if (PyErr_Occurred()) SWIG_fail
; 
8652   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8659 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCodePage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8660   PyObject 
*resultobj 
= 0; 
8661   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8665   PyObject 
*swig_obj
[1] ; 
8667   if (!args
) SWIG_fail
; 
8669   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8670   if (!SWIG_IsOK(res1
)) { 
8671     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8673   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8675     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8676     result 
= (int)(arg1
)->GetCodePage(); 
8677     wxPyEndAllowThreads(__tstate
); 
8678     if (PyErr_Occurred()) SWIG_fail
; 
8680   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8687 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8688   PyObject 
*resultobj 
= 0; 
8689   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8693   PyObject 
*swig_obj
[1] ; 
8695   if (!args
) SWIG_fail
; 
8697   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8698   if (!SWIG_IsOK(res1
)) { 
8699     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8701   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8703     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8704     result 
= (arg1
)->GetCaretForeground(); 
8705     wxPyEndAllowThreads(__tstate
); 
8706     if (PyErr_Occurred()) SWIG_fail
; 
8708   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
8715 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetReadOnly(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8716   PyObject 
*resultobj 
= 0; 
8717   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8721   PyObject 
*swig_obj
[1] ; 
8723   if (!args
) SWIG_fail
; 
8725   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8726   if (!SWIG_IsOK(res1
)) { 
8727     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8729   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8731     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8732     result 
= (bool)(arg1
)->GetReadOnly(); 
8733     wxPyEndAllowThreads(__tstate
); 
8734     if (PyErr_Occurred()) SWIG_fail
; 
8737     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
8745 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCurrentPos(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8746   PyObject 
*resultobj 
= 0; 
8747   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8753   PyObject 
* obj0 
= 0 ; 
8754   PyObject 
* obj1 
= 0 ; 
8755   char *  kwnames
[] = { 
8756     (char *) "self",(char *) "pos", NULL 
 
8759   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCurrentPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8760   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8761   if (!SWIG_IsOK(res1
)) { 
8762     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8764   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8765   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8766   if (!SWIG_IsOK(ecode2
)) { 
8767     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "2"" of type '" "int""'"); 
8769   arg2 
= static_cast< int >(val2
); 
8771     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8772     (arg1
)->SetCurrentPos(arg2
); 
8773     wxPyEndAllowThreads(__tstate
); 
8774     if (PyErr_Occurred()) SWIG_fail
; 
8776   resultobj 
= SWIG_Py_Void(); 
8783 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelectionStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8784   PyObject 
*resultobj 
= 0; 
8785   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8791   PyObject 
* obj0 
= 0 ; 
8792   PyObject 
* obj1 
= 0 ; 
8793   char *  kwnames
[] = { 
8794     (char *) "self",(char *) "pos", NULL 
 
8797   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8798   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8799   if (!SWIG_IsOK(res1
)) { 
8800     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8802   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8803   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8804   if (!SWIG_IsOK(ecode2
)) { 
8805     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "2"" of type '" "int""'"); 
8807   arg2 
= static_cast< int >(val2
); 
8809     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8810     (arg1
)->SetSelectionStart(arg2
); 
8811     wxPyEndAllowThreads(__tstate
); 
8812     if (PyErr_Occurred()) SWIG_fail
; 
8814   resultobj 
= SWIG_Py_Void(); 
8821 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelectionStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8822   PyObject 
*resultobj 
= 0; 
8823   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8827   PyObject 
*swig_obj
[1] ; 
8829   if (!args
) SWIG_fail
; 
8831   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8832   if (!SWIG_IsOK(res1
)) { 
8833     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8835   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8837     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8838     result 
= (int)(arg1
)->GetSelectionStart(); 
8839     wxPyEndAllowThreads(__tstate
); 
8840     if (PyErr_Occurred()) SWIG_fail
; 
8842   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8849 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelectionEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8850   PyObject 
*resultobj 
= 0; 
8851   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8857   PyObject 
* obj0 
= 0 ; 
8858   PyObject 
* obj1 
= 0 ; 
8859   char *  kwnames
[] = { 
8860     (char *) "self",(char *) "pos", NULL 
 
8863   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8864   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8865   if (!SWIG_IsOK(res1
)) { 
8866     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8868   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8869   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8870   if (!SWIG_IsOK(ecode2
)) { 
8871     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "2"" of type '" "int""'"); 
8873   arg2 
= static_cast< int >(val2
); 
8875     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8876     (arg1
)->SetSelectionEnd(arg2
); 
8877     wxPyEndAllowThreads(__tstate
); 
8878     if (PyErr_Occurred()) SWIG_fail
; 
8880   resultobj 
= SWIG_Py_Void(); 
8887 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelectionEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8888   PyObject 
*resultobj 
= 0; 
8889   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8893   PyObject 
*swig_obj
[1] ; 
8895   if (!args
) SWIG_fail
; 
8897   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8898   if (!SWIG_IsOK(res1
)) { 
8899     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8901   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8903     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8904     result 
= (int)(arg1
)->GetSelectionEnd(); 
8905     wxPyEndAllowThreads(__tstate
); 
8906     if (PyErr_Occurred()) SWIG_fail
; 
8908   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8915 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetPrintMagnification(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8916   PyObject 
*resultobj 
= 0; 
8917   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8923   PyObject 
* obj0 
= 0 ; 
8924   PyObject 
* obj1 
= 0 ; 
8925   char *  kwnames
[] = { 
8926     (char *) "self",(char *) "magnification", NULL 
 
8929   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintMagnification",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8930   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8931   if (!SWIG_IsOK(res1
)) { 
8932     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8934   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8935   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
8936   if (!SWIG_IsOK(ecode2
)) { 
8937     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "2"" of type '" "int""'"); 
8939   arg2 
= static_cast< int >(val2
); 
8941     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8942     (arg1
)->SetPrintMagnification(arg2
); 
8943     wxPyEndAllowThreads(__tstate
); 
8944     if (PyErr_Occurred()) SWIG_fail
; 
8946   resultobj 
= SWIG_Py_Void(); 
8953 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPrintMagnification(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
8954   PyObject 
*resultobj 
= 0; 
8955   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8959   PyObject 
*swig_obj
[1] ; 
8961   if (!args
) SWIG_fail
; 
8963   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8964   if (!SWIG_IsOK(res1
)) { 
8965     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
8967   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
8969     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
8970     result 
= (int)(arg1
)->GetPrintMagnification(); 
8971     wxPyEndAllowThreads(__tstate
); 
8972     if (PyErr_Occurred()) SWIG_fail
; 
8974   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
8981 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetPrintColourMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
8982   PyObject 
*resultobj 
= 0; 
8983   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
8989   PyObject 
* obj0 
= 0 ; 
8990   PyObject 
* obj1 
= 0 ; 
8991   char *  kwnames
[] = { 
8992     (char *) "self",(char *) "mode", NULL 
 
8995   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintColourMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
8996   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
8997   if (!SWIG_IsOK(res1
)) { 
8998     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9000   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9001   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9002   if (!SWIG_IsOK(ecode2
)) { 
9003     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "2"" of type '" "int""'"); 
9005   arg2 
= static_cast< int >(val2
); 
9007     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9008     (arg1
)->SetPrintColourMode(arg2
); 
9009     wxPyEndAllowThreads(__tstate
); 
9010     if (PyErr_Occurred()) SWIG_fail
; 
9012   resultobj 
= SWIG_Py_Void(); 
9019 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPrintColourMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9020   PyObject 
*resultobj 
= 0; 
9021   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9025   PyObject 
*swig_obj
[1] ; 
9027   if (!args
) SWIG_fail
; 
9029   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9030   if (!SWIG_IsOK(res1
)) { 
9031     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9033   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9035     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9036     result 
= (int)(arg1
)->GetPrintColourMode(); 
9037     wxPyEndAllowThreads(__tstate
); 
9038     if (PyErr_Occurred()) SWIG_fail
; 
9040   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9047 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_FindText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9048   PyObject 
*resultobj 
= 0; 
9049   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9052   wxString 
*arg4 
= 0 ; 
9053   int arg5 
= (int) 0 ; 
9061   bool temp4 
= false ; 
9064   PyObject 
* obj0 
= 0 ; 
9065   PyObject 
* obj1 
= 0 ; 
9066   PyObject 
* obj2 
= 0 ; 
9067   PyObject 
* obj3 
= 0 ; 
9068   PyObject 
* obj4 
= 0 ; 
9069   char *  kwnames
[] = { 
9070     (char *) "self",(char *) "minPos",(char *) "maxPos",(char *) "text",(char *) "flags", NULL 
 
9073   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:StyledTextCtrl_FindText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
; 
9074   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9075   if (!SWIG_IsOK(res1
)) { 
9076     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9078   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9079   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9080   if (!SWIG_IsOK(ecode2
)) { 
9081     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "2"" of type '" "int""'"); 
9083   arg2 
= static_cast< int >(val2
); 
9084   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
9085   if (!SWIG_IsOK(ecode3
)) { 
9086     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "3"" of type '" "int""'"); 
9088   arg3 
= static_cast< int >(val3
); 
9090     arg4 
= wxString_in_helper(obj3
); 
9091     if (arg4 
== NULL
) SWIG_fail
; 
9095     ecode5 
= SWIG_AsVal_int(obj4
, &val5
); 
9096     if (!SWIG_IsOK(ecode5
)) { 
9097       SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "5"" of type '" "int""'"); 
9099     arg5 
= static_cast< int >(val5
); 
9102     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9103     result 
= (int)(arg1
)->FindText(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
); 
9104     wxPyEndAllowThreads(__tstate
); 
9105     if (PyErr_Occurred()) SWIG_fail
; 
9107   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9122 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_FormatRange(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9123   PyObject 
*resultobj 
= 0; 
9124   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9128   wxDC 
*arg5 
= (wxDC 
*) 0 ; 
9129   wxDC 
*arg6 
= (wxDC 
*) 0 ; 
9149   PyObject 
* obj0 
= 0 ; 
9150   PyObject 
* obj1 
= 0 ; 
9151   PyObject 
* obj2 
= 0 ; 
9152   PyObject 
* obj3 
= 0 ; 
9153   PyObject 
* obj4 
= 0 ; 
9154   PyObject 
* obj5 
= 0 ; 
9155   PyObject 
* obj6 
= 0 ; 
9156   PyObject 
* obj7 
= 0 ; 
9157   char *  kwnames
[] = { 
9158     (char *) "self",(char *) "doDraw",(char *) "startPos",(char *) "endPos",(char *) "draw",(char *) "target",(char *) "renderRect",(char *) "pageRect", NULL 
 
9161   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:StyledTextCtrl_FormatRange",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
9162   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9163   if (!SWIG_IsOK(res1
)) { 
9164     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9166   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9167   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
9168   if (!SWIG_IsOK(ecode2
)) { 
9169     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "2"" of type '" "bool""'"); 
9171   arg2 
= static_cast< bool >(val2
); 
9172   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
9173   if (!SWIG_IsOK(ecode3
)) { 
9174     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "3"" of type '" "int""'"); 
9176   arg3 
= static_cast< int >(val3
); 
9177   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
9178   if (!SWIG_IsOK(ecode4
)) { 
9179     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "4"" of type '" "int""'"); 
9181   arg4 
= static_cast< int >(val4
); 
9182   res5 
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxDC
, 0 |  0 ); 
9183   if (!SWIG_IsOK(res5
)) { 
9184     SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "5"" of type '" "wxDC *""'");  
9186   arg5 
= reinterpret_cast< wxDC 
* >(argp5
); 
9187   res6 
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxDC
, 0 |  0 ); 
9188   if (!SWIG_IsOK(res6
)) { 
9189     SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "6"" of type '" "wxDC *""'");  
9191   arg6 
= reinterpret_cast< wxDC 
* >(argp6
); 
9193     res7 
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxRect
,  0  | 0); 
9194     if (!SWIG_IsOK(res7
)) { 
9195       SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");  
9198       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'"); 
9200       wxRect 
* temp 
= reinterpret_cast< wxRect 
* >(argp7
); 
9202       if (SWIG_IsNewObj(res7
)) delete temp
; 
9206     res8 
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxRect
,  0  | 0); 
9207     if (!SWIG_IsOK(res8
)) { 
9208       SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");  
9211       SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'"); 
9213       wxRect 
* temp 
= reinterpret_cast< wxRect 
* >(argp8
); 
9215       if (SWIG_IsNewObj(res8
)) delete temp
; 
9219     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9220     result 
= (int)(arg1
)->FormatRange(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
); 
9221     wxPyEndAllowThreads(__tstate
); 
9222     if (PyErr_Occurred()) SWIG_fail
; 
9224   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9231 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetFirstVisibleLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9232   PyObject 
*resultobj 
= 0; 
9233   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9237   PyObject 
*swig_obj
[1] ; 
9239   if (!args
) SWIG_fail
; 
9241   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9242   if (!SWIG_IsOK(res1
)) { 
9243     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9245   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9247     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9248     result 
= (int)(arg1
)->GetFirstVisibleLine(); 
9249     wxPyEndAllowThreads(__tstate
); 
9250     if (PyErr_Occurred()) SWIG_fail
; 
9252   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9259 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9260   PyObject 
*resultobj 
= 0; 
9261   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9268   PyObject 
* obj0 
= 0 ; 
9269   PyObject 
* obj1 
= 0 ; 
9270   char *  kwnames
[] = { 
9271     (char *) "self",(char *) "line", NULL 
 
9274   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9275   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9276   if (!SWIG_IsOK(res1
)) { 
9277     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9279   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9280   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9281   if (!SWIG_IsOK(ecode2
)) { 
9282     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "2"" of type '" "int""'"); 
9284   arg2 
= static_cast< int >(val2
); 
9286     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9287     result 
= (arg1
)->GetLine(arg2
); 
9288     wxPyEndAllowThreads(__tstate
); 
9289     if (PyErr_Occurred()) SWIG_fail
; 
9293     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
9295     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
9304 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineCount(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9305   PyObject 
*resultobj 
= 0; 
9306   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9310   PyObject 
*swig_obj
[1] ; 
9312   if (!args
) SWIG_fail
; 
9314   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9315   if (!SWIG_IsOK(res1
)) { 
9316     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9318   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9320     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9321     result 
= (int)(arg1
)->GetLineCount(); 
9322     wxPyEndAllowThreads(__tstate
); 
9323     if (PyErr_Occurred()) SWIG_fail
; 
9325   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9332 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9333   PyObject 
*resultobj 
= 0; 
9334   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9340   PyObject 
* obj0 
= 0 ; 
9341   PyObject 
* obj1 
= 0 ; 
9342   char *  kwnames
[] = { 
9343     (char *) "self",(char *) "pixelWidth", NULL 
 
9346   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9347   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9348   if (!SWIG_IsOK(res1
)) { 
9349     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9351   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9352   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9353   if (!SWIG_IsOK(ecode2
)) { 
9354     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "2"" of type '" "int""'"); 
9356   arg2 
= static_cast< int >(val2
); 
9358     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9359     (arg1
)->SetMarginLeft(arg2
); 
9360     wxPyEndAllowThreads(__tstate
); 
9361     if (PyErr_Occurred()) SWIG_fail
; 
9363   resultobj 
= SWIG_Py_Void(); 
9370 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9371   PyObject 
*resultobj 
= 0; 
9372   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9376   PyObject 
*swig_obj
[1] ; 
9378   if (!args
) SWIG_fail
; 
9380   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9381   if (!SWIG_IsOK(res1
)) { 
9382     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9384   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9386     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9387     result 
= (int)(arg1
)->GetMarginLeft(); 
9388     wxPyEndAllowThreads(__tstate
); 
9389     if (PyErr_Occurred()) SWIG_fail
; 
9391   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9398 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMarginRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9399   PyObject 
*resultobj 
= 0; 
9400   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9406   PyObject 
* obj0 
= 0 ; 
9407   PyObject 
* obj1 
= 0 ; 
9408   char *  kwnames
[] = { 
9409     (char *) "self",(char *) "pixelWidth", NULL 
 
9412   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9413   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9414   if (!SWIG_IsOK(res1
)) { 
9415     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9417   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9418   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9419   if (!SWIG_IsOK(ecode2
)) { 
9420     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "2"" of type '" "int""'"); 
9422   arg2 
= static_cast< int >(val2
); 
9424     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9425     (arg1
)->SetMarginRight(arg2
); 
9426     wxPyEndAllowThreads(__tstate
); 
9427     if (PyErr_Occurred()) SWIG_fail
; 
9429   resultobj 
= SWIG_Py_Void(); 
9436 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMarginRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9437   PyObject 
*resultobj 
= 0; 
9438   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9442   PyObject 
*swig_obj
[1] ; 
9444   if (!args
) SWIG_fail
; 
9446   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9447   if (!SWIG_IsOK(res1
)) { 
9448     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9450   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9452     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9453     result 
= (int)(arg1
)->GetMarginRight(); 
9454     wxPyEndAllowThreads(__tstate
); 
9455     if (PyErr_Occurred()) SWIG_fail
; 
9457   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9464 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetModify(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9465   PyObject 
*resultobj 
= 0; 
9466   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9470   PyObject 
*swig_obj
[1] ; 
9472   if (!args
) SWIG_fail
; 
9474   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9475   if (!SWIG_IsOK(res1
)) { 
9476     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModify" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9478   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9480     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9481     result 
= (bool)(arg1
)->GetModify(); 
9482     wxPyEndAllowThreads(__tstate
); 
9483     if (PyErr_Occurred()) SWIG_fail
; 
9486     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9494 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9495   PyObject 
*resultobj 
= 0; 
9496   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9505   PyObject 
* obj0 
= 0 ; 
9506   PyObject 
* obj1 
= 0 ; 
9507   PyObject 
* obj2 
= 0 ; 
9508   char *  kwnames
[] = { 
9509     (char *) "self",(char *) "start",(char *) "end", NULL 
 
9512   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
9513   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9514   if (!SWIG_IsOK(res1
)) { 
9515     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9517   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9518   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9519   if (!SWIG_IsOK(ecode2
)) { 
9520     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "2"" of type '" "int""'"); 
9522   arg2 
= static_cast< int >(val2
); 
9523   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
9524   if (!SWIG_IsOK(ecode3
)) { 
9525     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "3"" of type '" "int""'"); 
9527   arg3 
= static_cast< int >(val3
); 
9529     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9530     (arg1
)->SetSelection(arg2
,arg3
); 
9531     wxPyEndAllowThreads(__tstate
); 
9532     if (PyErr_Occurred()) SWIG_fail
; 
9534   resultobj 
= SWIG_Py_Void(); 
9541 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelectedText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9542   PyObject 
*resultobj 
= 0; 
9543   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9547   PyObject 
*swig_obj
[1] ; 
9549   if (!args
) SWIG_fail
; 
9551   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9552   if (!SWIG_IsOK(res1
)) { 
9553     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9555   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9557     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9558     result 
= (arg1
)->GetSelectedText(); 
9559     wxPyEndAllowThreads(__tstate
); 
9560     if (PyErr_Occurred()) SWIG_fail
; 
9564     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
9566     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
9575 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTextRange(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9576   PyObject 
*resultobj 
= 0; 
9577   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9587   PyObject 
* obj0 
= 0 ; 
9588   PyObject 
* obj1 
= 0 ; 
9589   PyObject 
* obj2 
= 0 ; 
9590   char *  kwnames
[] = { 
9591     (char *) "self",(char *) "startPos",(char *) "endPos", NULL 
 
9594   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
9595   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9596   if (!SWIG_IsOK(res1
)) { 
9597     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9599   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9600   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9601   if (!SWIG_IsOK(ecode2
)) { 
9602     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "2"" of type '" "int""'"); 
9604   arg2 
= static_cast< int >(val2
); 
9605   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
9606   if (!SWIG_IsOK(ecode3
)) { 
9607     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "3"" of type '" "int""'"); 
9609   arg3 
= static_cast< int >(val3
); 
9611     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9612     result 
= (arg1
)->GetTextRange(arg2
,arg3
); 
9613     wxPyEndAllowThreads(__tstate
); 
9614     if (PyErr_Occurred()) SWIG_fail
; 
9618     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
9620     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
9629 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HideSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9630   PyObject 
*resultobj 
= 0; 
9631   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9637   PyObject 
* obj0 
= 0 ; 
9638   PyObject 
* obj1 
= 0 ; 
9639   char *  kwnames
[] = { 
9640     (char *) "self",(char *) "normal", NULL 
 
9643   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_HideSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9644   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9645   if (!SWIG_IsOK(res1
)) { 
9646     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9648   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9649   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
9650   if (!SWIG_IsOK(ecode2
)) { 
9651     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "2"" of type '" "bool""'"); 
9653   arg2 
= static_cast< bool >(val2
); 
9655     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9656     (arg1
)->HideSelection(arg2
); 
9657     wxPyEndAllowThreads(__tstate
); 
9658     if (PyErr_Occurred()) SWIG_fail
; 
9660   resultobj 
= SWIG_Py_Void(); 
9667 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineFromPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9668   PyObject 
*resultobj 
= 0; 
9669   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9676   PyObject 
* obj0 
= 0 ; 
9677   PyObject 
* obj1 
= 0 ; 
9678   char *  kwnames
[] = { 
9679     (char *) "self",(char *) "pos", NULL 
 
9682   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9683   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9684   if (!SWIG_IsOK(res1
)) { 
9685     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9687   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9688   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9689   if (!SWIG_IsOK(ecode2
)) { 
9690     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "2"" of type '" "int""'"); 
9692   arg2 
= static_cast< int >(val2
); 
9694     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9695     result 
= (int)(arg1
)->LineFromPosition(arg2
); 
9696     wxPyEndAllowThreads(__tstate
); 
9697     if (PyErr_Occurred()) SWIG_fail
; 
9699   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9706 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PositionFromLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9707   PyObject 
*resultobj 
= 0; 
9708   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9715   PyObject 
* obj0 
= 0 ; 
9716   PyObject 
* obj1 
= 0 ; 
9717   char *  kwnames
[] = { 
9718     (char *) "self",(char *) "line", NULL 
 
9721   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9722   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9723   if (!SWIG_IsOK(res1
)) { 
9724     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9726   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9727   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9728   if (!SWIG_IsOK(ecode2
)) { 
9729     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "2"" of type '" "int""'"); 
9731   arg2 
= static_cast< int >(val2
); 
9733     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9734     result 
= (int)(arg1
)->PositionFromLine(arg2
); 
9735     wxPyEndAllowThreads(__tstate
); 
9736     if (PyErr_Occurred()) SWIG_fail
; 
9738   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
9745 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineScroll(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9746   PyObject 
*resultobj 
= 0; 
9747   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9756   PyObject 
* obj0 
= 0 ; 
9757   PyObject 
* obj1 
= 0 ; 
9758   PyObject 
* obj2 
= 0 ; 
9759   char *  kwnames
[] = { 
9760     (char *) "self",(char *) "columns",(char *) "lines", NULL 
 
9763   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_LineScroll",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
9764   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9765   if (!SWIG_IsOK(res1
)) { 
9766     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9768   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9769   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
9770   if (!SWIG_IsOK(ecode2
)) { 
9771     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "2"" of type '" "int""'"); 
9773   arg2 
= static_cast< int >(val2
); 
9774   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
9775   if (!SWIG_IsOK(ecode3
)) { 
9776     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "3"" of type '" "int""'"); 
9778   arg3 
= static_cast< int >(val3
); 
9780     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9781     (arg1
)->LineScroll(arg2
,arg3
); 
9782     wxPyEndAllowThreads(__tstate
); 
9783     if (PyErr_Occurred()) SWIG_fail
; 
9785   resultobj 
= SWIG_Py_Void(); 
9792 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EnsureCaretVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9793   PyObject 
*resultobj 
= 0; 
9794   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9797   PyObject 
*swig_obj
[1] ; 
9799   if (!args
) SWIG_fail
; 
9801   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9802   if (!SWIG_IsOK(res1
)) { 
9803     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureCaretVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9805   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9807     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9808     (arg1
)->EnsureCaretVisible(); 
9809     wxPyEndAllowThreads(__tstate
); 
9810     if (PyErr_Occurred()) SWIG_fail
; 
9812   resultobj 
= SWIG_Py_Void(); 
9819 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ReplaceSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9820   PyObject 
*resultobj 
= 0; 
9821   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9822   wxString 
*arg2 
= 0 ; 
9825   bool temp2 
= false ; 
9826   PyObject 
* obj0 
= 0 ; 
9827   PyObject 
* obj1 
= 0 ; 
9828   char *  kwnames
[] = { 
9829     (char *) "self",(char *) "text", NULL 
 
9832   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9833   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9834   if (!SWIG_IsOK(res1
)) { 
9835     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9837   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9839     arg2 
= wxString_in_helper(obj1
); 
9840     if (arg2 
== NULL
) SWIG_fail
; 
9844     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9845     (arg1
)->ReplaceSelection((wxString 
const &)*arg2
); 
9846     wxPyEndAllowThreads(__tstate
); 
9847     if (PyErr_Occurred()) SWIG_fail
; 
9849   resultobj 
= SWIG_Py_Void(); 
9864 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetReadOnly(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
9865   PyObject 
*resultobj 
= 0; 
9866   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9872   PyObject 
* obj0 
= 0 ; 
9873   PyObject 
* obj1 
= 0 ; 
9874   char *  kwnames
[] = { 
9875     (char *) "self",(char *) "readOnly", NULL 
 
9878   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetReadOnly",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
9879   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9880   if (!SWIG_IsOK(res1
)) { 
9881     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9883   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9884   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
9885   if (!SWIG_IsOK(ecode2
)) { 
9886     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "2"" of type '" "bool""'"); 
9888   arg2 
= static_cast< bool >(val2
); 
9890     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9891     (arg1
)->SetReadOnly(arg2
); 
9892     wxPyEndAllowThreads(__tstate
); 
9893     if (PyErr_Occurred()) SWIG_fail
; 
9895   resultobj 
= SWIG_Py_Void(); 
9902 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CanPaste(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9903   PyObject 
*resultobj 
= 0; 
9904   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9908   PyObject 
*swig_obj
[1] ; 
9910   if (!args
) SWIG_fail
; 
9912   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9913   if (!SWIG_IsOK(res1
)) { 
9914     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanPaste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9916   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9918     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9919     result 
= (bool)(arg1
)->CanPaste(); 
9920     wxPyEndAllowThreads(__tstate
); 
9921     if (PyErr_Occurred()) SWIG_fail
; 
9924     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9932 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CanUndo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9933   PyObject 
*resultobj 
= 0; 
9934   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9938   PyObject 
*swig_obj
[1] ; 
9940   if (!args
) SWIG_fail
; 
9942   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9943   if (!SWIG_IsOK(res1
)) { 
9944     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanUndo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9946   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9948     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9949     result 
= (bool)(arg1
)->CanUndo(); 
9950     wxPyEndAllowThreads(__tstate
); 
9951     if (PyErr_Occurred()) SWIG_fail
; 
9954     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
9962 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EmptyUndoBuffer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9963   PyObject 
*resultobj 
= 0; 
9964   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9967   PyObject 
*swig_obj
[1] ; 
9969   if (!args
) SWIG_fail
; 
9971   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9972   if (!SWIG_IsOK(res1
)) { 
9973     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EmptyUndoBuffer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
9975   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
9977     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
9978     (arg1
)->EmptyUndoBuffer(); 
9979     wxPyEndAllowThreads(__tstate
); 
9980     if (PyErr_Occurred()) SWIG_fail
; 
9982   resultobj 
= SWIG_Py_Void(); 
9989 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Undo(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
9990   PyObject 
*resultobj 
= 0; 
9991   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
9994   PyObject 
*swig_obj
[1] ; 
9996   if (!args
) SWIG_fail
; 
9998   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
9999   if (!SWIG_IsOK(res1
)) { 
10000     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Undo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10002   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10004     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10006     wxPyEndAllowThreads(__tstate
); 
10007     if (PyErr_Occurred()) SWIG_fail
; 
10009   resultobj 
= SWIG_Py_Void(); 
10016 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Cut(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10017   PyObject 
*resultobj 
= 0; 
10018   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10021   PyObject 
*swig_obj
[1] ; 
10023   if (!args
) SWIG_fail
; 
10024   swig_obj
[0] = args
; 
10025   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10026   if (!SWIG_IsOK(res1
)) { 
10027     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10029   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10031     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10033     wxPyEndAllowThreads(__tstate
); 
10034     if (PyErr_Occurred()) SWIG_fail
; 
10036   resultobj 
= SWIG_Py_Void(); 
10043 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Copy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10044   PyObject 
*resultobj 
= 0; 
10045   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10048   PyObject 
*swig_obj
[1] ; 
10050   if (!args
) SWIG_fail
; 
10051   swig_obj
[0] = args
; 
10052   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10053   if (!SWIG_IsOK(res1
)) { 
10054     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Copy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10056   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10058     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10060     wxPyEndAllowThreads(__tstate
); 
10061     if (PyErr_Occurred()) SWIG_fail
; 
10063   resultobj 
= SWIG_Py_Void(); 
10070 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Paste(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10071   PyObject 
*resultobj 
= 0; 
10072   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10075   PyObject 
*swig_obj
[1] ; 
10077   if (!args
) SWIG_fail
; 
10078   swig_obj
[0] = args
; 
10079   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10080   if (!SWIG_IsOK(res1
)) { 
10081     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Paste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10083   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10085     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10087     wxPyEndAllowThreads(__tstate
); 
10088     if (PyErr_Occurred()) SWIG_fail
; 
10090   resultobj 
= SWIG_Py_Void(); 
10097 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Clear(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10098   PyObject 
*resultobj 
= 0; 
10099   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10102   PyObject 
*swig_obj
[1] ; 
10104   if (!args
) SWIG_fail
; 
10105   swig_obj
[0] = args
; 
10106   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10107   if (!SWIG_IsOK(res1
)) { 
10108     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Clear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10110   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10112     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10114     wxPyEndAllowThreads(__tstate
); 
10115     if (PyErr_Occurred()) SWIG_fail
; 
10117   resultobj 
= SWIG_Py_Void(); 
10124 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10125   PyObject 
*resultobj 
= 0; 
10126   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10127   wxString 
*arg2 
= 0 ; 
10130   bool temp2 
= false ; 
10131   PyObject 
* obj0 
= 0 ; 
10132   PyObject 
* obj1 
= 0 ; 
10133   char *  kwnames
[] = { 
10134     (char *) "self",(char *) "text", NULL 
 
10137   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10138   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10139   if (!SWIG_IsOK(res1
)) { 
10140     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10142   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10144     arg2 
= wxString_in_helper(obj1
); 
10145     if (arg2 
== NULL
) SWIG_fail
; 
10149     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10150     (arg1
)->SetText((wxString 
const &)*arg2
); 
10151     wxPyEndAllowThreads(__tstate
); 
10152     if (PyErr_Occurred()) SWIG_fail
; 
10154   resultobj 
= SWIG_Py_Void(); 
10169 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10170   PyObject 
*resultobj 
= 0; 
10171   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10175   PyObject 
*swig_obj
[1] ; 
10177   if (!args
) SWIG_fail
; 
10178   swig_obj
[0] = args
; 
10179   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10180   if (!SWIG_IsOK(res1
)) { 
10181     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10183   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10185     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10186     result 
= (arg1
)->GetText(); 
10187     wxPyEndAllowThreads(__tstate
); 
10188     if (PyErr_Occurred()) SWIG_fail
; 
10192     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
10194     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
10203 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTextLength(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10204   PyObject 
*resultobj 
= 0; 
10205   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10209   PyObject 
*swig_obj
[1] ; 
10211   if (!args
) SWIG_fail
; 
10212   swig_obj
[0] = args
; 
10213   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10214   if (!SWIG_IsOK(res1
)) { 
10215     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10217   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10219     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10220     result 
= (int)(arg1
)->GetTextLength(); 
10221     wxPyEndAllowThreads(__tstate
); 
10222     if (PyErr_Occurred()) SWIG_fail
; 
10224   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10231 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetOvertype(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10232   PyObject 
*resultobj 
= 0; 
10233   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10239   PyObject 
* obj0 
= 0 ; 
10240   PyObject 
* obj1 
= 0 ; 
10241   char *  kwnames
[] = { 
10242     (char *) "self",(char *) "overtype", NULL 
 
10245   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetOvertype",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10246   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10247   if (!SWIG_IsOK(res1
)) { 
10248     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10250   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10251   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
10252   if (!SWIG_IsOK(ecode2
)) { 
10253     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "2"" of type '" "bool""'"); 
10255   arg2 
= static_cast< bool >(val2
); 
10257     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10258     (arg1
)->SetOvertype(arg2
); 
10259     wxPyEndAllowThreads(__tstate
); 
10260     if (PyErr_Occurred()) SWIG_fail
; 
10262   resultobj 
= SWIG_Py_Void(); 
10269 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetOvertype(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10270   PyObject 
*resultobj 
= 0; 
10271   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10275   PyObject 
*swig_obj
[1] ; 
10277   if (!args
) SWIG_fail
; 
10278   swig_obj
[0] = args
; 
10279   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10280   if (!SWIG_IsOK(res1
)) { 
10281     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10283   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10285     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10286     result 
= (bool)(arg1
)->GetOvertype(); 
10287     wxPyEndAllowThreads(__tstate
); 
10288     if (PyErr_Occurred()) SWIG_fail
; 
10291     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10299 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10300   PyObject 
*resultobj 
= 0; 
10301   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10307   PyObject 
* obj0 
= 0 ; 
10308   PyObject 
* obj1 
= 0 ; 
10309   char *  kwnames
[] = { 
10310     (char *) "self",(char *) "pixelWidth", NULL 
 
10313   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10314   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10315   if (!SWIG_IsOK(res1
)) { 
10316     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10318   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10319   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10320   if (!SWIG_IsOK(ecode2
)) { 
10321     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "2"" of type '" "int""'"); 
10323   arg2 
= static_cast< int >(val2
); 
10325     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10326     (arg1
)->SetCaretWidth(arg2
); 
10327     wxPyEndAllowThreads(__tstate
); 
10328     if (PyErr_Occurred()) SWIG_fail
; 
10330   resultobj 
= SWIG_Py_Void(); 
10337 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10338   PyObject 
*resultobj 
= 0; 
10339   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10343   PyObject 
*swig_obj
[1] ; 
10345   if (!args
) SWIG_fail
; 
10346   swig_obj
[0] = args
; 
10347   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10348   if (!SWIG_IsOK(res1
)) { 
10349     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10351   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10353     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10354     result 
= (int)(arg1
)->GetCaretWidth(); 
10355     wxPyEndAllowThreads(__tstate
); 
10356     if (PyErr_Occurred()) SWIG_fail
; 
10358   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10365 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTargetStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10366   PyObject 
*resultobj 
= 0; 
10367   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10373   PyObject 
* obj0 
= 0 ; 
10374   PyObject 
* obj1 
= 0 ; 
10375   char *  kwnames
[] = { 
10376     (char *) "self",(char *) "pos", NULL 
 
10379   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10380   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10381   if (!SWIG_IsOK(res1
)) { 
10382     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10384   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10385   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10386   if (!SWIG_IsOK(ecode2
)) { 
10387     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "2"" of type '" "int""'"); 
10389   arg2 
= static_cast< int >(val2
); 
10391     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10392     (arg1
)->SetTargetStart(arg2
); 
10393     wxPyEndAllowThreads(__tstate
); 
10394     if (PyErr_Occurred()) SWIG_fail
; 
10396   resultobj 
= SWIG_Py_Void(); 
10403 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTargetStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10404   PyObject 
*resultobj 
= 0; 
10405   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10409   PyObject 
*swig_obj
[1] ; 
10411   if (!args
) SWIG_fail
; 
10412   swig_obj
[0] = args
; 
10413   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10414   if (!SWIG_IsOK(res1
)) { 
10415     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10417   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10419     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10420     result 
= (int)(arg1
)->GetTargetStart(); 
10421     wxPyEndAllowThreads(__tstate
); 
10422     if (PyErr_Occurred()) SWIG_fail
; 
10424   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10431 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTargetEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10432   PyObject 
*resultobj 
= 0; 
10433   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10439   PyObject 
* obj0 
= 0 ; 
10440   PyObject 
* obj1 
= 0 ; 
10441   char *  kwnames
[] = { 
10442     (char *) "self",(char *) "pos", NULL 
 
10445   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10446   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10447   if (!SWIG_IsOK(res1
)) { 
10448     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10450   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10451   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10452   if (!SWIG_IsOK(ecode2
)) { 
10453     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "2"" of type '" "int""'"); 
10455   arg2 
= static_cast< int >(val2
); 
10457     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10458     (arg1
)->SetTargetEnd(arg2
); 
10459     wxPyEndAllowThreads(__tstate
); 
10460     if (PyErr_Occurred()) SWIG_fail
; 
10462   resultobj 
= SWIG_Py_Void(); 
10469 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTargetEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10470   PyObject 
*resultobj 
= 0; 
10471   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10475   PyObject 
*swig_obj
[1] ; 
10477   if (!args
) SWIG_fail
; 
10478   swig_obj
[0] = args
; 
10479   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10480   if (!SWIG_IsOK(res1
)) { 
10481     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10483   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10485     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10486     result 
= (int)(arg1
)->GetTargetEnd(); 
10487     wxPyEndAllowThreads(__tstate
); 
10488     if (PyErr_Occurred()) SWIG_fail
; 
10490   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10497 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ReplaceTarget(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10498   PyObject 
*resultobj 
= 0; 
10499   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10500   wxString 
*arg2 
= 0 ; 
10504   bool temp2 
= false ; 
10505   PyObject 
* obj0 
= 0 ; 
10506   PyObject 
* obj1 
= 0 ; 
10507   char *  kwnames
[] = { 
10508     (char *) "self",(char *) "text", NULL 
 
10511   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10512   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10513   if (!SWIG_IsOK(res1
)) { 
10514     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10516   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10518     arg2 
= wxString_in_helper(obj1
); 
10519     if (arg2 
== NULL
) SWIG_fail
; 
10523     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10524     result 
= (int)(arg1
)->ReplaceTarget((wxString 
const &)*arg2
); 
10525     wxPyEndAllowThreads(__tstate
); 
10526     if (PyErr_Occurred()) SWIG_fail
; 
10528   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10543 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ReplaceTargetRE(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10544   PyObject 
*resultobj 
= 0; 
10545   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10546   wxString 
*arg2 
= 0 ; 
10550   bool temp2 
= false ; 
10551   PyObject 
* obj0 
= 0 ; 
10552   PyObject 
* obj1 
= 0 ; 
10553   char *  kwnames
[] = { 
10554     (char *) "self",(char *) "text", NULL 
 
10557   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTargetRE",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10558   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10559   if (!SWIG_IsOK(res1
)) { 
10560     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTargetRE" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10562   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10564     arg2 
= wxString_in_helper(obj1
); 
10565     if (arg2 
== NULL
) SWIG_fail
; 
10569     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10570     result 
= (int)(arg1
)->ReplaceTargetRE((wxString 
const &)*arg2
); 
10571     wxPyEndAllowThreads(__tstate
); 
10572     if (PyErr_Occurred()) SWIG_fail
; 
10574   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10589 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SearchInTarget(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10590   PyObject 
*resultobj 
= 0; 
10591   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10592   wxString 
*arg2 
= 0 ; 
10596   bool temp2 
= false ; 
10597   PyObject 
* obj0 
= 0 ; 
10598   PyObject 
* obj1 
= 0 ; 
10599   char *  kwnames
[] = { 
10600     (char *) "self",(char *) "text", NULL 
 
10603   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SearchInTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10604   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10605   if (!SWIG_IsOK(res1
)) { 
10606     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchInTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10608   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10610     arg2 
= wxString_in_helper(obj1
); 
10611     if (arg2 
== NULL
) SWIG_fail
; 
10615     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10616     result 
= (int)(arg1
)->SearchInTarget((wxString 
const &)*arg2
); 
10617     wxPyEndAllowThreads(__tstate
); 
10618     if (PyErr_Occurred()) SWIG_fail
; 
10620   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10635 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSearchFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10636   PyObject 
*resultobj 
= 0; 
10637   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10643   PyObject 
* obj0 
= 0 ; 
10644   PyObject 
* obj1 
= 0 ; 
10645   char *  kwnames
[] = { 
10646     (char *) "self",(char *) "flags", NULL 
 
10649   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSearchFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10650   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10651   if (!SWIG_IsOK(res1
)) { 
10652     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10654   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10655   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10656   if (!SWIG_IsOK(ecode2
)) { 
10657     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "2"" of type '" "int""'"); 
10659   arg2 
= static_cast< int >(val2
); 
10661     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10662     (arg1
)->SetSearchFlags(arg2
); 
10663     wxPyEndAllowThreads(__tstate
); 
10664     if (PyErr_Occurred()) SWIG_fail
; 
10666   resultobj 
= SWIG_Py_Void(); 
10673 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSearchFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10674   PyObject 
*resultobj 
= 0; 
10675   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10679   PyObject 
*swig_obj
[1] ; 
10681   if (!args
) SWIG_fail
; 
10682   swig_obj
[0] = args
; 
10683   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10684   if (!SWIG_IsOK(res1
)) { 
10685     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10687   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10689     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10690     result 
= (int)(arg1
)->GetSearchFlags(); 
10691     wxPyEndAllowThreads(__tstate
); 
10692     if (PyErr_Occurred()) SWIG_fail
; 
10694   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10701 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipShow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10702   PyObject 
*resultobj 
= 0; 
10703   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10705   wxString 
*arg3 
= 0 ; 
10710   bool temp3 
= false ; 
10711   PyObject 
* obj0 
= 0 ; 
10712   PyObject 
* obj1 
= 0 ; 
10713   PyObject 
* obj2 
= 0 ; 
10714   char *  kwnames
[] = { 
10715     (char *) "self",(char *) "pos",(char *) "definition", NULL 
 
10718   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
10719   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10720   if (!SWIG_IsOK(res1
)) { 
10721     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10723   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10724   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10725   if (!SWIG_IsOK(ecode2
)) { 
10726     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "2"" of type '" "int""'"); 
10728   arg2 
= static_cast< int >(val2
); 
10730     arg3 
= wxString_in_helper(obj2
); 
10731     if (arg3 
== NULL
) SWIG_fail
; 
10735     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10736     (arg1
)->CallTipShow(arg2
,(wxString 
const &)*arg3
); 
10737     wxPyEndAllowThreads(__tstate
); 
10738     if (PyErr_Occurred()) SWIG_fail
; 
10740   resultobj 
= SWIG_Py_Void(); 
10755 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipCancel(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10756   PyObject 
*resultobj 
= 0; 
10757   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10760   PyObject 
*swig_obj
[1] ; 
10762   if (!args
) SWIG_fail
; 
10763   swig_obj
[0] = args
; 
10764   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10765   if (!SWIG_IsOK(res1
)) { 
10766     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10768   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10770     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10771     (arg1
)->CallTipCancel(); 
10772     wxPyEndAllowThreads(__tstate
); 
10773     if (PyErr_Occurred()) SWIG_fail
; 
10775   resultobj 
= SWIG_Py_Void(); 
10782 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipActive(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10783   PyObject 
*resultobj 
= 0; 
10784   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10788   PyObject 
*swig_obj
[1] ; 
10790   if (!args
) SWIG_fail
; 
10791   swig_obj
[0] = args
; 
10792   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10793   if (!SWIG_IsOK(res1
)) { 
10794     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10796   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10798     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10799     result 
= (bool)(arg1
)->CallTipActive(); 
10800     wxPyEndAllowThreads(__tstate
); 
10801     if (PyErr_Occurred()) SWIG_fail
; 
10804     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
10812 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipPosAtStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
10813   PyObject 
*resultobj 
= 0; 
10814   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10818   PyObject 
*swig_obj
[1] ; 
10820   if (!args
) SWIG_fail
; 
10821   swig_obj
[0] = args
; 
10822   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10823   if (!SWIG_IsOK(res1
)) { 
10824     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipPosAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10826   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10828     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10829     result 
= (int)(arg1
)->CallTipPosAtStart(); 
10830     wxPyEndAllowThreads(__tstate
); 
10831     if (PyErr_Occurred()) SWIG_fail
; 
10833   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
10840 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipSetHighlight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10841   PyObject 
*resultobj 
= 0; 
10842   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10851   PyObject 
* obj0 
= 0 ; 
10852   PyObject 
* obj1 
= 0 ; 
10853   PyObject 
* obj2 
= 0 ; 
10854   char *  kwnames
[] = { 
10855     (char *) "self",(char *) "start",(char *) "end", NULL 
 
10858   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipSetHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
10859   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10860   if (!SWIG_IsOK(res1
)) { 
10861     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10863   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10864   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
10865   if (!SWIG_IsOK(ecode2
)) { 
10866     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "2"" of type '" "int""'"); 
10868   arg2 
= static_cast< int >(val2
); 
10869   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
10870   if (!SWIG_IsOK(ecode3
)) { 
10871     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "3"" of type '" "int""'"); 
10873   arg3 
= static_cast< int >(val3
); 
10875     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10876     (arg1
)->CallTipSetHighlight(arg2
,arg3
); 
10877     wxPyEndAllowThreads(__tstate
); 
10878     if (PyErr_Occurred()) SWIG_fail
; 
10880   resultobj 
= SWIG_Py_Void(); 
10887 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipSetBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10888   PyObject 
*resultobj 
= 0; 
10889   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10890   wxColour 
*arg2 
= 0 ; 
10894   PyObject 
* obj0 
= 0 ; 
10895   PyObject 
* obj1 
= 0 ; 
10896   char *  kwnames
[] = { 
10897     (char *) "self",(char *) "back", NULL 
 
10900   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10901   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10902   if (!SWIG_IsOK(res1
)) { 
10903     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10905   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10908     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
10911     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10912     (arg1
)->CallTipSetBackground((wxColour 
const &)*arg2
); 
10913     wxPyEndAllowThreads(__tstate
); 
10914     if (PyErr_Occurred()) SWIG_fail
; 
10916   resultobj 
= SWIG_Py_Void(); 
10923 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipSetForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10924   PyObject 
*resultobj 
= 0; 
10925   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10926   wxColour 
*arg2 
= 0 ; 
10930   PyObject 
* obj0 
= 0 ; 
10931   PyObject 
* obj1 
= 0 ; 
10932   char *  kwnames
[] = { 
10933     (char *) "self",(char *) "fore", NULL 
 
10936   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10937   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10938   if (!SWIG_IsOK(res1
)) { 
10939     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10941   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10944     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
10947     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10948     (arg1
)->CallTipSetForeground((wxColour 
const &)*arg2
); 
10949     wxPyEndAllowThreads(__tstate
); 
10950     if (PyErr_Occurred()) SWIG_fail
; 
10952   resultobj 
= SWIG_Py_Void(); 
10959 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipSetForegroundHighlight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10960   PyObject 
*resultobj 
= 0; 
10961   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
10962   wxColour 
*arg2 
= 0 ; 
10966   PyObject 
* obj0 
= 0 ; 
10967   PyObject 
* obj1 
= 0 ; 
10968   char *  kwnames
[] = { 
10969     (char *) "self",(char *) "fore", NULL 
 
10972   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForegroundHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
10973   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
10974   if (!SWIG_IsOK(res1
)) { 
10975     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForegroundHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
10977   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
10980     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
10983     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
10984     (arg1
)->CallTipSetForegroundHighlight((wxColour 
const &)*arg2
); 
10985     wxPyEndAllowThreads(__tstate
); 
10986     if (PyErr_Occurred()) SWIG_fail
; 
10988   resultobj 
= SWIG_Py_Void(); 
10995 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CallTipUseStyle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
10996   PyObject 
*resultobj 
= 0; 
10997   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11003   PyObject 
* obj0 
= 0 ; 
11004   PyObject 
* obj1 
= 0 ; 
11005   char *  kwnames
[] = { 
11006     (char *) "self",(char *) "tabSize", NULL 
 
11009   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipUseStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11010   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11011   if (!SWIG_IsOK(res1
)) { 
11012     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipUseStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11014   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11015   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11016   if (!SWIG_IsOK(ecode2
)) { 
11017     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipUseStyle" "', expected argument " "2"" of type '" "int""'"); 
11019   arg2 
= static_cast< int >(val2
); 
11021     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11022     (arg1
)->CallTipUseStyle(arg2
); 
11023     wxPyEndAllowThreads(__tstate
); 
11024     if (PyErr_Occurred()) SWIG_fail
; 
11026   resultobj 
= SWIG_Py_Void(); 
11033 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VisibleFromDocLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11034   PyObject 
*resultobj 
= 0; 
11035   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11042   PyObject 
* obj0 
= 0 ; 
11043   PyObject 
* obj1 
= 0 ; 
11044   char *  kwnames
[] = { 
11045     (char *) "self",(char *) "line", NULL 
 
11048   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_VisibleFromDocLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11049   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11050   if (!SWIG_IsOK(res1
)) { 
11051     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11053   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11054   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11055   if (!SWIG_IsOK(ecode2
)) { 
11056     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "2"" of type '" "int""'"); 
11058   arg2 
= static_cast< int >(val2
); 
11060     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11061     result 
= (int)(arg1
)->VisibleFromDocLine(arg2
); 
11062     wxPyEndAllowThreads(__tstate
); 
11063     if (PyErr_Occurred()) SWIG_fail
; 
11065   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11072 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DocLineFromVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11073   PyObject 
*resultobj 
= 0; 
11074   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11081   PyObject 
* obj0 
= 0 ; 
11082   PyObject 
* obj1 
= 0 ; 
11083   char *  kwnames
[] = { 
11084     (char *) "self",(char *) "lineDisplay", NULL 
 
11087   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_DocLineFromVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11088   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11089   if (!SWIG_IsOK(res1
)) { 
11090     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11092   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11093   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11094   if (!SWIG_IsOK(ecode2
)) { 
11095     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "2"" of type '" "int""'"); 
11097   arg2 
= static_cast< int >(val2
); 
11099     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11100     result 
= (int)(arg1
)->DocLineFromVisible(arg2
); 
11101     wxPyEndAllowThreads(__tstate
); 
11102     if (PyErr_Occurred()) SWIG_fail
; 
11104   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11111 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WrapCount(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11112   PyObject 
*resultobj 
= 0; 
11113   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11120   PyObject 
* obj0 
= 0 ; 
11121   PyObject 
* obj1 
= 0 ; 
11122   char *  kwnames
[] = { 
11123     (char *) "self",(char *) "line", NULL 
 
11126   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_WrapCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11127   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11128   if (!SWIG_IsOK(res1
)) { 
11129     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11131   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11132   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11133   if (!SWIG_IsOK(ecode2
)) { 
11134     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "2"" of type '" "int""'"); 
11136   arg2 
= static_cast< int >(val2
); 
11138     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11139     result 
= (int)(arg1
)->WrapCount(arg2
); 
11140     wxPyEndAllowThreads(__tstate
); 
11141     if (PyErr_Occurred()) SWIG_fail
; 
11143   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11150 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetFoldLevel(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11151   PyObject 
*resultobj 
= 0; 
11152   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11161   PyObject 
* obj0 
= 0 ; 
11162   PyObject 
* obj1 
= 0 ; 
11163   PyObject 
* obj2 
= 0 ; 
11164   char *  kwnames
[] = { 
11165     (char *) "self",(char *) "line",(char *) "level", NULL 
 
11168   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldLevel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11169   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11170   if (!SWIG_IsOK(res1
)) { 
11171     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11173   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11174   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11175   if (!SWIG_IsOK(ecode2
)) { 
11176     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "2"" of type '" "int""'"); 
11178   arg2 
= static_cast< int >(val2
); 
11179   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
11180   if (!SWIG_IsOK(ecode3
)) { 
11181     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "3"" of type '" "int""'"); 
11183   arg3 
= static_cast< int >(val3
); 
11185     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11186     (arg1
)->SetFoldLevel(arg2
,arg3
); 
11187     wxPyEndAllowThreads(__tstate
); 
11188     if (PyErr_Occurred()) SWIG_fail
; 
11190   resultobj 
= SWIG_Py_Void(); 
11197 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetFoldLevel(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11198   PyObject 
*resultobj 
= 0; 
11199   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11206   PyObject 
* obj0 
= 0 ; 
11207   PyObject 
* obj1 
= 0 ; 
11208   char *  kwnames
[] = { 
11209     (char *) "self",(char *) "line", NULL 
 
11212   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldLevel",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11213   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11214   if (!SWIG_IsOK(res1
)) { 
11215     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11217   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11218   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11219   if (!SWIG_IsOK(ecode2
)) { 
11220     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "2"" of type '" "int""'"); 
11222   arg2 
= static_cast< int >(val2
); 
11224     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11225     result 
= (int)(arg1
)->GetFoldLevel(arg2
); 
11226     wxPyEndAllowThreads(__tstate
); 
11227     if (PyErr_Occurred()) SWIG_fail
; 
11229   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11236 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLastChild(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11237   PyObject 
*resultobj 
= 0; 
11238   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11248   PyObject 
* obj0 
= 0 ; 
11249   PyObject 
* obj1 
= 0 ; 
11250   PyObject 
* obj2 
= 0 ; 
11251   char *  kwnames
[] = { 
11252     (char *) "self",(char *) "line",(char *) "level", NULL 
 
11255   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetLastChild",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11256   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11257   if (!SWIG_IsOK(res1
)) { 
11258     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11260   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11261   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11262   if (!SWIG_IsOK(ecode2
)) { 
11263     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "2"" of type '" "int""'"); 
11265   arg2 
= static_cast< int >(val2
); 
11266   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
11267   if (!SWIG_IsOK(ecode3
)) { 
11268     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "3"" of type '" "int""'"); 
11270   arg3 
= static_cast< int >(val3
); 
11272     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11273     result 
= (int)(arg1
)->GetLastChild(arg2
,arg3
); 
11274     wxPyEndAllowThreads(__tstate
); 
11275     if (PyErr_Occurred()) SWIG_fail
; 
11277   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11284 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetFoldParent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11285   PyObject 
*resultobj 
= 0; 
11286   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11293   PyObject 
* obj0 
= 0 ; 
11294   PyObject 
* obj1 
= 0 ; 
11295   char *  kwnames
[] = { 
11296     (char *) "self",(char *) "line", NULL 
 
11299   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldParent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11300   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11301   if (!SWIG_IsOK(res1
)) { 
11302     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11304   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11305   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11306   if (!SWIG_IsOK(ecode2
)) { 
11307     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "2"" of type '" "int""'"); 
11309   arg2 
= static_cast< int >(val2
); 
11311     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11312     result 
= (int)(arg1
)->GetFoldParent(arg2
); 
11313     wxPyEndAllowThreads(__tstate
); 
11314     if (PyErr_Occurred()) SWIG_fail
; 
11316   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11323 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ShowLines(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11324   PyObject 
*resultobj 
= 0; 
11325   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11334   PyObject 
* obj0 
= 0 ; 
11335   PyObject 
* obj1 
= 0 ; 
11336   PyObject 
* obj2 
= 0 ; 
11337   char *  kwnames
[] = { 
11338     (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL 
 
11341   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_ShowLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11342   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11343   if (!SWIG_IsOK(res1
)) { 
11344     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11346   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11347   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11348   if (!SWIG_IsOK(ecode2
)) { 
11349     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "2"" of type '" "int""'"); 
11351   arg2 
= static_cast< int >(val2
); 
11352   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
11353   if (!SWIG_IsOK(ecode3
)) { 
11354     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "3"" of type '" "int""'"); 
11356   arg3 
= static_cast< int >(val3
); 
11358     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11359     (arg1
)->ShowLines(arg2
,arg3
); 
11360     wxPyEndAllowThreads(__tstate
); 
11361     if (PyErr_Occurred()) SWIG_fail
; 
11363   resultobj 
= SWIG_Py_Void(); 
11370 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HideLines(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11371   PyObject 
*resultobj 
= 0; 
11372   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11381   PyObject 
* obj0 
= 0 ; 
11382   PyObject 
* obj1 
= 0 ; 
11383   PyObject 
* obj2 
= 0 ; 
11384   char *  kwnames
[] = { 
11385     (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL 
 
11388   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_HideLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11389   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11390   if (!SWIG_IsOK(res1
)) { 
11391     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11393   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11394   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11395   if (!SWIG_IsOK(ecode2
)) { 
11396     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "2"" of type '" "int""'"); 
11398   arg2 
= static_cast< int >(val2
); 
11399   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
11400   if (!SWIG_IsOK(ecode3
)) { 
11401     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "3"" of type '" "int""'"); 
11403   arg3 
= static_cast< int >(val3
); 
11405     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11406     (arg1
)->HideLines(arg2
,arg3
); 
11407     wxPyEndAllowThreads(__tstate
); 
11408     if (PyErr_Occurred()) SWIG_fail
; 
11410   resultobj 
= SWIG_Py_Void(); 
11417 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11418   PyObject 
*resultobj 
= 0; 
11419   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11426   PyObject 
* obj0 
= 0 ; 
11427   PyObject 
* obj1 
= 0 ; 
11428   char *  kwnames
[] = { 
11429     (char *) "self",(char *) "line", NULL 
 
11432   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11433   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11434   if (!SWIG_IsOK(res1
)) { 
11435     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11437   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11438   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11439   if (!SWIG_IsOK(ecode2
)) { 
11440     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "2"" of type '" "int""'"); 
11442   arg2 
= static_cast< int >(val2
); 
11444     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11445     result 
= (bool)(arg1
)->GetLineVisible(arg2
); 
11446     wxPyEndAllowThreads(__tstate
); 
11447     if (PyErr_Occurred()) SWIG_fail
; 
11450     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11458 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetFoldExpanded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11459   PyObject 
*resultobj 
= 0; 
11460   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11469   PyObject 
* obj0 
= 0 ; 
11470   PyObject 
* obj1 
= 0 ; 
11471   PyObject 
* obj2 
= 0 ; 
11472   char *  kwnames
[] = { 
11473     (char *) "self",(char *) "line",(char *) "expanded", NULL 
 
11476   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldExpanded",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11477   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11478   if (!SWIG_IsOK(res1
)) { 
11479     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11481   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11482   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11483   if (!SWIG_IsOK(ecode2
)) { 
11484     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "2"" of type '" "int""'"); 
11486   arg2 
= static_cast< int >(val2
); 
11487   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
11488   if (!SWIG_IsOK(ecode3
)) { 
11489     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "3"" of type '" "bool""'"); 
11491   arg3 
= static_cast< bool >(val3
); 
11493     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11494     (arg1
)->SetFoldExpanded(arg2
,arg3
); 
11495     wxPyEndAllowThreads(__tstate
); 
11496     if (PyErr_Occurred()) SWIG_fail
; 
11498   resultobj 
= SWIG_Py_Void(); 
11505 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetFoldExpanded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11506   PyObject 
*resultobj 
= 0; 
11507   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11514   PyObject 
* obj0 
= 0 ; 
11515   PyObject 
* obj1 
= 0 ; 
11516   char *  kwnames
[] = { 
11517     (char *) "self",(char *) "line", NULL 
 
11520   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11521   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11522   if (!SWIG_IsOK(res1
)) { 
11523     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11525   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11526   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11527   if (!SWIG_IsOK(ecode2
)) { 
11528     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "2"" of type '" "int""'"); 
11530   arg2 
= static_cast< int >(val2
); 
11532     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11533     result 
= (bool)(arg1
)->GetFoldExpanded(arg2
); 
11534     wxPyEndAllowThreads(__tstate
); 
11535     if (PyErr_Occurred()) SWIG_fail
; 
11538     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11546 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ToggleFold(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11547   PyObject 
*resultobj 
= 0; 
11548   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11554   PyObject 
* obj0 
= 0 ; 
11555   PyObject 
* obj1 
= 0 ; 
11556   char *  kwnames
[] = { 
11557     (char *) "self",(char *) "line", NULL 
 
11560   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ToggleFold",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11561   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11562   if (!SWIG_IsOK(res1
)) { 
11563     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11565   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11566   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11567   if (!SWIG_IsOK(ecode2
)) { 
11568     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "2"" of type '" "int""'"); 
11570   arg2 
= static_cast< int >(val2
); 
11572     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11573     (arg1
)->ToggleFold(arg2
); 
11574     wxPyEndAllowThreads(__tstate
); 
11575     if (PyErr_Occurred()) SWIG_fail
; 
11577   resultobj 
= SWIG_Py_Void(); 
11584 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EnsureVisible(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11585   PyObject 
*resultobj 
= 0; 
11586   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11592   PyObject 
* obj0 
= 0 ; 
11593   PyObject 
* obj1 
= 0 ; 
11594   char *  kwnames
[] = { 
11595     (char *) "self",(char *) "line", NULL 
 
11598   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11599   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11600   if (!SWIG_IsOK(res1
)) { 
11601     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11603   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11604   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11605   if (!SWIG_IsOK(ecode2
)) { 
11606     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "2"" of type '" "int""'"); 
11608   arg2 
= static_cast< int >(val2
); 
11610     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11611     (arg1
)->EnsureVisible(arg2
); 
11612     wxPyEndAllowThreads(__tstate
); 
11613     if (PyErr_Occurred()) SWIG_fail
; 
11615   resultobj 
= SWIG_Py_Void(); 
11622 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetFoldFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11623   PyObject 
*resultobj 
= 0; 
11624   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11630   PyObject 
* obj0 
= 0 ; 
11631   PyObject 
* obj1 
= 0 ; 
11632   char *  kwnames
[] = { 
11633     (char *) "self",(char *) "flags", NULL 
 
11636   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetFoldFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11637   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11638   if (!SWIG_IsOK(res1
)) { 
11639     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11641   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11642   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11643   if (!SWIG_IsOK(ecode2
)) { 
11644     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "2"" of type '" "int""'"); 
11646   arg2 
= static_cast< int >(val2
); 
11648     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11649     (arg1
)->SetFoldFlags(arg2
); 
11650     wxPyEndAllowThreads(__tstate
); 
11651     if (PyErr_Occurred()) SWIG_fail
; 
11653   resultobj 
= SWIG_Py_Void(); 
11660 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11661   PyObject 
*resultobj 
= 0; 
11662   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11668   PyObject 
* obj0 
= 0 ; 
11669   PyObject 
* obj1 
= 0 ; 
11670   char *  kwnames
[] = { 
11671     (char *) "self",(char *) "line", NULL 
 
11674   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisibleEnforcePolicy",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11675   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11676   if (!SWIG_IsOK(res1
)) { 
11677     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11679   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11680   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11681   if (!SWIG_IsOK(ecode2
)) { 
11682     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "2"" of type '" "int""'"); 
11684   arg2 
= static_cast< int >(val2
); 
11686     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11687     (arg1
)->EnsureVisibleEnforcePolicy(arg2
); 
11688     wxPyEndAllowThreads(__tstate
); 
11689     if (PyErr_Occurred()) SWIG_fail
; 
11691   resultobj 
= SWIG_Py_Void(); 
11698 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTabIndents(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11699   PyObject 
*resultobj 
= 0; 
11700   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11706   PyObject 
* obj0 
= 0 ; 
11707   PyObject 
* obj1 
= 0 ; 
11708   char *  kwnames
[] = { 
11709     (char *) "self",(char *) "tabIndents", NULL 
 
11712   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11713   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11714   if (!SWIG_IsOK(res1
)) { 
11715     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11717   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11718   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
11719   if (!SWIG_IsOK(ecode2
)) { 
11720     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "2"" of type '" "bool""'"); 
11722   arg2 
= static_cast< bool >(val2
); 
11724     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11725     (arg1
)->SetTabIndents(arg2
); 
11726     wxPyEndAllowThreads(__tstate
); 
11727     if (PyErr_Occurred()) SWIG_fail
; 
11729   resultobj 
= SWIG_Py_Void(); 
11736 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTabIndents(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11737   PyObject 
*resultobj 
= 0; 
11738   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11742   PyObject 
*swig_obj
[1] ; 
11744   if (!args
) SWIG_fail
; 
11745   swig_obj
[0] = args
; 
11746   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11747   if (!SWIG_IsOK(res1
)) { 
11748     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11750   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11752     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11753     result 
= (bool)(arg1
)->GetTabIndents(); 
11754     wxPyEndAllowThreads(__tstate
); 
11755     if (PyErr_Occurred()) SWIG_fail
; 
11758     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11766 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetBackSpaceUnIndents(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11767   PyObject 
*resultobj 
= 0; 
11768   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11774   PyObject 
* obj0 
= 0 ; 
11775   PyObject 
* obj1 
= 0 ; 
11776   char *  kwnames
[] = { 
11777     (char *) "self",(char *) "bsUnIndents", NULL 
 
11780   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBackSpaceUnIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11781   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11782   if (!SWIG_IsOK(res1
)) { 
11783     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11785   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11786   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
11787   if (!SWIG_IsOK(ecode2
)) { 
11788     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "2"" of type '" "bool""'"); 
11790   arg2 
= static_cast< bool >(val2
); 
11792     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11793     (arg1
)->SetBackSpaceUnIndents(arg2
); 
11794     wxPyEndAllowThreads(__tstate
); 
11795     if (PyErr_Occurred()) SWIG_fail
; 
11797   resultobj 
= SWIG_Py_Void(); 
11804 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetBackSpaceUnIndents(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11805   PyObject 
*resultobj 
= 0; 
11806   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11810   PyObject 
*swig_obj
[1] ; 
11812   if (!args
) SWIG_fail
; 
11813   swig_obj
[0] = args
; 
11814   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11815   if (!SWIG_IsOK(res1
)) { 
11816     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11818   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11820     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11821     result 
= (bool)(arg1
)->GetBackSpaceUnIndents(); 
11822     wxPyEndAllowThreads(__tstate
); 
11823     if (PyErr_Occurred()) SWIG_fail
; 
11826     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
11834 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMouseDwellTime(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11835   PyObject 
*resultobj 
= 0; 
11836   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11842   PyObject 
* obj0 
= 0 ; 
11843   PyObject 
* obj1 
= 0 ; 
11844   char *  kwnames
[] = { 
11845     (char *) "self",(char *) "periodMilliseconds", NULL 
 
11848   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDwellTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
11849   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11850   if (!SWIG_IsOK(res1
)) { 
11851     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11853   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11854   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11855   if (!SWIG_IsOK(ecode2
)) { 
11856     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "2"" of type '" "int""'"); 
11858   arg2 
= static_cast< int >(val2
); 
11860     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11861     (arg1
)->SetMouseDwellTime(arg2
); 
11862     wxPyEndAllowThreads(__tstate
); 
11863     if (PyErr_Occurred()) SWIG_fail
; 
11865   resultobj 
= SWIG_Py_Void(); 
11872 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMouseDwellTime(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
11873   PyObject 
*resultobj 
= 0; 
11874   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11878   PyObject 
*swig_obj
[1] ; 
11880   if (!args
) SWIG_fail
; 
11881   swig_obj
[0] = args
; 
11882   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11883   if (!SWIG_IsOK(res1
)) { 
11884     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11886   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11888     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11889     result 
= (int)(arg1
)->GetMouseDwellTime(); 
11890     wxPyEndAllowThreads(__tstate
); 
11891     if (PyErr_Occurred()) SWIG_fail
; 
11893   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11900 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordStartPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11901   PyObject 
*resultobj 
= 0; 
11902   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11912   PyObject 
* obj0 
= 0 ; 
11913   PyObject 
* obj1 
= 0 ; 
11914   PyObject 
* obj2 
= 0 ; 
11915   char *  kwnames
[] = { 
11916     (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL 
 
11919   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordStartPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11920   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11921   if (!SWIG_IsOK(res1
)) { 
11922     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11924   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11925   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11926   if (!SWIG_IsOK(ecode2
)) { 
11927     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "2"" of type '" "int""'"); 
11929   arg2 
= static_cast< int >(val2
); 
11930   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
11931   if (!SWIG_IsOK(ecode3
)) { 
11932     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "3"" of type '" "bool""'"); 
11934   arg3 
= static_cast< bool >(val3
); 
11936     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11937     result 
= (int)(arg1
)->WordStartPosition(arg2
,arg3
); 
11938     wxPyEndAllowThreads(__tstate
); 
11939     if (PyErr_Occurred()) SWIG_fail
; 
11941   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11948 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordEndPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11949   PyObject 
*resultobj 
= 0; 
11950   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
11960   PyObject 
* obj0 
= 0 ; 
11961   PyObject 
* obj1 
= 0 ; 
11962   PyObject 
* obj2 
= 0 ; 
11963   char *  kwnames
[] = { 
11964     (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL 
 
11967   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordEndPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
11968   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
11969   if (!SWIG_IsOK(res1
)) { 
11970     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
11972   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
11973   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
11974   if (!SWIG_IsOK(ecode2
)) { 
11975     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "2"" of type '" "int""'"); 
11977   arg2 
= static_cast< int >(val2
); 
11978   ecode3 
= SWIG_AsVal_bool(obj2
, &val3
); 
11979   if (!SWIG_IsOK(ecode3
)) { 
11980     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "3"" of type '" "bool""'"); 
11982   arg3 
= static_cast< bool >(val3
); 
11984     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
11985     result 
= (int)(arg1
)->WordEndPosition(arg2
,arg3
); 
11986     wxPyEndAllowThreads(__tstate
); 
11987     if (PyErr_Occurred()) SWIG_fail
; 
11989   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
11996 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWrapMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
11997   PyObject 
*resultobj 
= 0; 
11998   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12004   PyObject 
* obj0 
= 0 ; 
12005   PyObject 
* obj1 
= 0 ; 
12006   char *  kwnames
[] = { 
12007     (char *) "self",(char *) "mode", NULL 
 
12010   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12011   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12012   if (!SWIG_IsOK(res1
)) { 
12013     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12015   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12016   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12017   if (!SWIG_IsOK(ecode2
)) { 
12018     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "2"" of type '" "int""'"); 
12020   arg2 
= static_cast< int >(val2
); 
12022     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12023     (arg1
)->SetWrapMode(arg2
); 
12024     wxPyEndAllowThreads(__tstate
); 
12025     if (PyErr_Occurred()) SWIG_fail
; 
12027   resultobj 
= SWIG_Py_Void(); 
12034 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetWrapMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12035   PyObject 
*resultobj 
= 0; 
12036   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12040   PyObject 
*swig_obj
[1] ; 
12042   if (!args
) SWIG_fail
; 
12043   swig_obj
[0] = args
; 
12044   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12045   if (!SWIG_IsOK(res1
)) { 
12046     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12048   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12050     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12051     result 
= (int)(arg1
)->GetWrapMode(); 
12052     wxPyEndAllowThreads(__tstate
); 
12053     if (PyErr_Occurred()) SWIG_fail
; 
12055   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12062 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWrapVisualFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12063   PyObject 
*resultobj 
= 0; 
12064   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12070   PyObject 
* obj0 
= 0 ; 
12071   PyObject 
* obj1 
= 0 ; 
12072   char *  kwnames
[] = { 
12073     (char *) "self",(char *) "wrapVisualFlags", NULL 
 
12076   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12077   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12078   if (!SWIG_IsOK(res1
)) { 
12079     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12081   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12082   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12083   if (!SWIG_IsOK(ecode2
)) { 
12084     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "2"" of type '" "int""'"); 
12086   arg2 
= static_cast< int >(val2
); 
12088     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12089     (arg1
)->SetWrapVisualFlags(arg2
); 
12090     wxPyEndAllowThreads(__tstate
); 
12091     if (PyErr_Occurred()) SWIG_fail
; 
12093   resultobj 
= SWIG_Py_Void(); 
12100 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetWrapVisualFlags(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12101   PyObject 
*resultobj 
= 0; 
12102   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12106   PyObject 
*swig_obj
[1] ; 
12108   if (!args
) SWIG_fail
; 
12109   swig_obj
[0] = args
; 
12110   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12111   if (!SWIG_IsOK(res1
)) { 
12112     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12114   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12116     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12117     result 
= (int)(arg1
)->GetWrapVisualFlags(); 
12118     wxPyEndAllowThreads(__tstate
); 
12119     if (PyErr_Occurred()) SWIG_fail
; 
12121   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12128 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWrapVisualFlagsLocation(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12129   PyObject 
*resultobj 
= 0; 
12130   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12136   PyObject 
* obj0 
= 0 ; 
12137   PyObject 
* obj1 
= 0 ; 
12138   char *  kwnames
[] = { 
12139     (char *) "self",(char *) "wrapVisualFlagsLocation", NULL 
 
12142   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlagsLocation",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12143   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12144   if (!SWIG_IsOK(res1
)) { 
12145     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12147   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12148   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12149   if (!SWIG_IsOK(ecode2
)) { 
12150     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "2"" of type '" "int""'"); 
12152   arg2 
= static_cast< int >(val2
); 
12154     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12155     (arg1
)->SetWrapVisualFlagsLocation(arg2
); 
12156     wxPyEndAllowThreads(__tstate
); 
12157     if (PyErr_Occurred()) SWIG_fail
; 
12159   resultobj 
= SWIG_Py_Void(); 
12166 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12167   PyObject 
*resultobj 
= 0; 
12168   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12172   PyObject 
*swig_obj
[1] ; 
12174   if (!args
) SWIG_fail
; 
12175   swig_obj
[0] = args
; 
12176   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12177   if (!SWIG_IsOK(res1
)) { 
12178     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12180   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12182     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12183     result 
= (int)(arg1
)->GetWrapVisualFlagsLocation(); 
12184     wxPyEndAllowThreads(__tstate
); 
12185     if (PyErr_Occurred()) SWIG_fail
; 
12187   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12194 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWrapStartIndent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12195   PyObject 
*resultobj 
= 0; 
12196   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12202   PyObject 
* obj0 
= 0 ; 
12203   PyObject 
* obj1 
= 0 ; 
12204   char *  kwnames
[] = { 
12205     (char *) "self",(char *) "indent", NULL 
 
12208   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapStartIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12209   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12210   if (!SWIG_IsOK(res1
)) { 
12211     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12213   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12214   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12215   if (!SWIG_IsOK(ecode2
)) { 
12216     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "2"" of type '" "int""'"); 
12218   arg2 
= static_cast< int >(val2
); 
12220     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12221     (arg1
)->SetWrapStartIndent(arg2
); 
12222     wxPyEndAllowThreads(__tstate
); 
12223     if (PyErr_Occurred()) SWIG_fail
; 
12225   resultobj 
= SWIG_Py_Void(); 
12232 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetWrapStartIndent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12233   PyObject 
*resultobj 
= 0; 
12234   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12238   PyObject 
*swig_obj
[1] ; 
12240   if (!args
) SWIG_fail
; 
12241   swig_obj
[0] = args
; 
12242   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12243   if (!SWIG_IsOK(res1
)) { 
12244     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12246   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12248     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12249     result 
= (int)(arg1
)->GetWrapStartIndent(); 
12250     wxPyEndAllowThreads(__tstate
); 
12251     if (PyErr_Occurred()) SWIG_fail
; 
12253   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12260 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLayoutCache(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12261   PyObject 
*resultobj 
= 0; 
12262   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12268   PyObject 
* obj0 
= 0 ; 
12269   PyObject 
* obj1 
= 0 ; 
12270   char *  kwnames
[] = { 
12271     (char *) "self",(char *) "mode", NULL 
 
12274   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLayoutCache",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12275   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12276   if (!SWIG_IsOK(res1
)) { 
12277     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12279   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12280   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12281   if (!SWIG_IsOK(ecode2
)) { 
12282     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "2"" of type '" "int""'"); 
12284   arg2 
= static_cast< int >(val2
); 
12286     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12287     (arg1
)->SetLayoutCache(arg2
); 
12288     wxPyEndAllowThreads(__tstate
); 
12289     if (PyErr_Occurred()) SWIG_fail
; 
12291   resultobj 
= SWIG_Py_Void(); 
12298 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLayoutCache(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12299   PyObject 
*resultobj 
= 0; 
12300   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12304   PyObject 
*swig_obj
[1] ; 
12306   if (!args
) SWIG_fail
; 
12307   swig_obj
[0] = args
; 
12308   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12309   if (!SWIG_IsOK(res1
)) { 
12310     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12312   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12314     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12315     result 
= (int)(arg1
)->GetLayoutCache(); 
12316     wxPyEndAllowThreads(__tstate
); 
12317     if (PyErr_Occurred()) SWIG_fail
; 
12319   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12326 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetScrollWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12327   PyObject 
*resultobj 
= 0; 
12328   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12334   PyObject 
* obj0 
= 0 ; 
12335   PyObject 
* obj1 
= 0 ; 
12336   char *  kwnames
[] = { 
12337     (char *) "self",(char *) "pixelWidth", NULL 
 
12340   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetScrollWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12341   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12342   if (!SWIG_IsOK(res1
)) { 
12343     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12345   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12346   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12347   if (!SWIG_IsOK(ecode2
)) { 
12348     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "2"" of type '" "int""'"); 
12350   arg2 
= static_cast< int >(val2
); 
12352     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12353     (arg1
)->SetScrollWidth(arg2
); 
12354     wxPyEndAllowThreads(__tstate
); 
12355     if (PyErr_Occurred()) SWIG_fail
; 
12357   resultobj 
= SWIG_Py_Void(); 
12364 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetScrollWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12365   PyObject 
*resultobj 
= 0; 
12366   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12370   PyObject 
*swig_obj
[1] ; 
12372   if (!args
) SWIG_fail
; 
12373   swig_obj
[0] = args
; 
12374   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12375   if (!SWIG_IsOK(res1
)) { 
12376     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12378   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12380     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12381     result 
= (int)(arg1
)->GetScrollWidth(); 
12382     wxPyEndAllowThreads(__tstate
); 
12383     if (PyErr_Occurred()) SWIG_fail
; 
12385   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12392 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_TextWidth(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12393   PyObject 
*resultobj 
= 0; 
12394   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12396   wxString 
*arg3 
= 0 ; 
12402   bool temp3 
= false ; 
12403   PyObject 
* obj0 
= 0 ; 
12404   PyObject 
* obj1 
= 0 ; 
12405   PyObject 
* obj2 
= 0 ; 
12406   char *  kwnames
[] = { 
12407     (char *) "self",(char *) "style",(char *) "text", NULL 
 
12410   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_TextWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
12411   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12412   if (!SWIG_IsOK(res1
)) { 
12413     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12415   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12416   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12417   if (!SWIG_IsOK(ecode2
)) { 
12418     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "2"" of type '" "int""'"); 
12420   arg2 
= static_cast< int >(val2
); 
12422     arg3 
= wxString_in_helper(obj2
); 
12423     if (arg3 
== NULL
) SWIG_fail
; 
12427     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12428     result 
= (int)(arg1
)->TextWidth(arg2
,(wxString 
const &)*arg3
); 
12429     wxPyEndAllowThreads(__tstate
); 
12430     if (PyErr_Occurred()) SWIG_fail
; 
12432   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12447 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetEndAtLastLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12448   PyObject 
*resultobj 
= 0; 
12449   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12455   PyObject 
* obj0 
= 0 ; 
12456   PyObject 
* obj1 
= 0 ; 
12457   char *  kwnames
[] = { 
12458     (char *) "self",(char *) "endAtLastLine", NULL 
 
12461   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEndAtLastLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12462   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12463   if (!SWIG_IsOK(res1
)) { 
12464     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12466   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12467   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
12468   if (!SWIG_IsOK(ecode2
)) { 
12469     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "2"" of type '" "bool""'"); 
12471   arg2 
= static_cast< bool >(val2
); 
12473     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12474     (arg1
)->SetEndAtLastLine(arg2
); 
12475     wxPyEndAllowThreads(__tstate
); 
12476     if (PyErr_Occurred()) SWIG_fail
; 
12478   resultobj 
= SWIG_Py_Void(); 
12485 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEndAtLastLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12486   PyObject 
*resultobj 
= 0; 
12487   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12491   PyObject 
*swig_obj
[1] ; 
12493   if (!args
) SWIG_fail
; 
12494   swig_obj
[0] = args
; 
12495   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12496   if (!SWIG_IsOK(res1
)) { 
12497     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12499   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12501     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12502     result 
= (bool)(arg1
)->GetEndAtLastLine(); 
12503     wxPyEndAllowThreads(__tstate
); 
12504     if (PyErr_Occurred()) SWIG_fail
; 
12507     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12515 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_TextHeight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12516   PyObject 
*resultobj 
= 0; 
12517   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12524   PyObject 
* obj0 
= 0 ; 
12525   PyObject 
* obj1 
= 0 ; 
12526   char *  kwnames
[] = { 
12527     (char *) "self",(char *) "line", NULL 
 
12530   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_TextHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12531   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12532   if (!SWIG_IsOK(res1
)) { 
12533     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12535   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12536   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12537   if (!SWIG_IsOK(ecode2
)) { 
12538     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "2"" of type '" "int""'"); 
12540   arg2 
= static_cast< int >(val2
); 
12542     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12543     result 
= (int)(arg1
)->TextHeight(arg2
); 
12544     wxPyEndAllowThreads(__tstate
); 
12545     if (PyErr_Occurred()) SWIG_fail
; 
12547   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
12554 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetUseVerticalScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12555   PyObject 
*resultobj 
= 0; 
12556   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12562   PyObject 
* obj0 
= 0 ; 
12563   PyObject 
* obj1 
= 0 ; 
12564   char *  kwnames
[] = { 
12565     (char *) "self",(char *) "show", NULL 
 
12568   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseVerticalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12569   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12570   if (!SWIG_IsOK(res1
)) { 
12571     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12573   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12574   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
12575   if (!SWIG_IsOK(ecode2
)) { 
12576     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "2"" of type '" "bool""'"); 
12578   arg2 
= static_cast< bool >(val2
); 
12580     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12581     (arg1
)->SetUseVerticalScrollBar(arg2
); 
12582     wxPyEndAllowThreads(__tstate
); 
12583     if (PyErr_Occurred()) SWIG_fail
; 
12585   resultobj 
= SWIG_Py_Void(); 
12592 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetUseVerticalScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12593   PyObject 
*resultobj 
= 0; 
12594   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12598   PyObject 
*swig_obj
[1] ; 
12600   if (!args
) SWIG_fail
; 
12601   swig_obj
[0] = args
; 
12602   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12603   if (!SWIG_IsOK(res1
)) { 
12604     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12606   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12608     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12609     result 
= (bool)(arg1
)->GetUseVerticalScrollBar(); 
12610     wxPyEndAllowThreads(__tstate
); 
12611     if (PyErr_Occurred()) SWIG_fail
; 
12614     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12622 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AppendText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12623   PyObject 
*resultobj 
= 0; 
12624   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12625   wxString 
*arg2 
= 0 ; 
12628   bool temp2 
= false ; 
12629   PyObject 
* obj0 
= 0 ; 
12630   PyObject 
* obj1 
= 0 ; 
12631   char *  kwnames
[] = { 
12632     (char *) "self",(char *) "text", NULL 
 
12635   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12636   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12637   if (!SWIG_IsOK(res1
)) { 
12638     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12640   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12642     arg2 
= wxString_in_helper(obj1
); 
12643     if (arg2 
== NULL
) SWIG_fail
; 
12647     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12648     (arg1
)->AppendText((wxString 
const &)*arg2
); 
12649     wxPyEndAllowThreads(__tstate
); 
12650     if (PyErr_Occurred()) SWIG_fail
; 
12652   resultobj 
= SWIG_Py_Void(); 
12667 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTwoPhaseDraw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12668   PyObject 
*resultobj 
= 0; 
12669   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12673   PyObject 
*swig_obj
[1] ; 
12675   if (!args
) SWIG_fail
; 
12676   swig_obj
[0] = args
; 
12677   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12678   if (!SWIG_IsOK(res1
)) { 
12679     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12681   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12683     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12684     result 
= (bool)(arg1
)->GetTwoPhaseDraw(); 
12685     wxPyEndAllowThreads(__tstate
); 
12686     if (PyErr_Occurred()) SWIG_fail
; 
12689     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
12697 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTwoPhaseDraw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12698   PyObject 
*resultobj 
= 0; 
12699   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12705   PyObject 
* obj0 
= 0 ; 
12706   PyObject 
* obj1 
= 0 ; 
12707   char *  kwnames
[] = { 
12708     (char *) "self",(char *) "twoPhase", NULL 
 
12711   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTwoPhaseDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12712   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12713   if (!SWIG_IsOK(res1
)) { 
12714     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12716   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12717   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
12718   if (!SWIG_IsOK(ecode2
)) { 
12719     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "2"" of type '" "bool""'"); 
12721   arg2 
= static_cast< bool >(val2
); 
12723     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12724     (arg1
)->SetTwoPhaseDraw(arg2
); 
12725     wxPyEndAllowThreads(__tstate
); 
12726     if (PyErr_Occurred()) SWIG_fail
; 
12728   resultobj 
= SWIG_Py_Void(); 
12735 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_TargetFromSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12736   PyObject 
*resultobj 
= 0; 
12737   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12740   PyObject 
*swig_obj
[1] ; 
12742   if (!args
) SWIG_fail
; 
12743   swig_obj
[0] = args
; 
12744   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12745   if (!SWIG_IsOK(res1
)) { 
12746     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TargetFromSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12748   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12750     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12751     (arg1
)->TargetFromSelection(); 
12752     wxPyEndAllowThreads(__tstate
); 
12753     if (PyErr_Occurred()) SWIG_fail
; 
12755   resultobj 
= SWIG_Py_Void(); 
12762 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LinesJoin(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12763   PyObject 
*resultobj 
= 0; 
12764   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12767   PyObject 
*swig_obj
[1] ; 
12769   if (!args
) SWIG_fail
; 
12770   swig_obj
[0] = args
; 
12771   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12772   if (!SWIG_IsOK(res1
)) { 
12773     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesJoin" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12775   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12777     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12778     (arg1
)->LinesJoin(); 
12779     wxPyEndAllowThreads(__tstate
); 
12780     if (PyErr_Occurred()) SWIG_fail
; 
12782   resultobj 
= SWIG_Py_Void(); 
12789 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LinesSplit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12790   PyObject 
*resultobj 
= 0; 
12791   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12797   PyObject 
* obj0 
= 0 ; 
12798   PyObject 
* obj1 
= 0 ; 
12799   char *  kwnames
[] = { 
12800     (char *) "self",(char *) "pixelWidth", NULL 
 
12803   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LinesSplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
12804   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12805   if (!SWIG_IsOK(res1
)) { 
12806     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12808   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12809   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
12810   if (!SWIG_IsOK(ecode2
)) { 
12811     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "2"" of type '" "int""'"); 
12813   arg2 
= static_cast< int >(val2
); 
12815     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12816     (arg1
)->LinesSplit(arg2
); 
12817     wxPyEndAllowThreads(__tstate
); 
12818     if (PyErr_Occurred()) SWIG_fail
; 
12820   resultobj 
= SWIG_Py_Void(); 
12827 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetFoldMarginColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12828   PyObject 
*resultobj 
= 0; 
12829   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12831   wxColour 
*arg3 
= 0 ; 
12837   PyObject 
* obj0 
= 0 ; 
12838   PyObject 
* obj1 
= 0 ; 
12839   PyObject 
* obj2 
= 0 ; 
12840   char *  kwnames
[] = { 
12841     (char *) "self",(char *) "useSetting",(char *) "back", NULL 
 
12844   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
12845   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12846   if (!SWIG_IsOK(res1
)) { 
12847     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12849   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12850   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
12851   if (!SWIG_IsOK(ecode2
)) { 
12852     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "2"" of type '" "bool""'"); 
12854   arg2 
= static_cast< bool >(val2
); 
12857     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
12860     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12861     (arg1
)->SetFoldMarginColour(arg2
,(wxColour 
const &)*arg3
); 
12862     wxPyEndAllowThreads(__tstate
); 
12863     if (PyErr_Occurred()) SWIG_fail
; 
12865   resultobj 
= SWIG_Py_Void(); 
12872 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetFoldMarginHiColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
12873   PyObject 
*resultobj 
= 0; 
12874   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12876   wxColour 
*arg3 
= 0 ; 
12882   PyObject 
* obj0 
= 0 ; 
12883   PyObject 
* obj1 
= 0 ; 
12884   PyObject 
* obj2 
= 0 ; 
12885   char *  kwnames
[] = { 
12886     (char *) "self",(char *) "useSetting",(char *) "fore", NULL 
 
12889   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginHiColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
12890   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12891   if (!SWIG_IsOK(res1
)) { 
12892     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12894   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12895   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
12896   if (!SWIG_IsOK(ecode2
)) { 
12897     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "2"" of type '" "bool""'"); 
12899   arg2 
= static_cast< bool >(val2
); 
12902     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
12905     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12906     (arg1
)->SetFoldMarginHiColour(arg2
,(wxColour 
const &)*arg3
); 
12907     wxPyEndAllowThreads(__tstate
); 
12908     if (PyErr_Occurred()) SWIG_fail
; 
12910   resultobj 
= SWIG_Py_Void(); 
12917 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12918   PyObject 
*resultobj 
= 0; 
12919   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12922   PyObject 
*swig_obj
[1] ; 
12924   if (!args
) SWIG_fail
; 
12925   swig_obj
[0] = args
; 
12926   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12927   if (!SWIG_IsOK(res1
)) { 
12928     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12930   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12932     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12933     (arg1
)->LineDown(); 
12934     wxPyEndAllowThreads(__tstate
); 
12935     if (PyErr_Occurred()) SWIG_fail
; 
12937   resultobj 
= SWIG_Py_Void(); 
12944 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineDownExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12945   PyObject 
*resultobj 
= 0; 
12946   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12949   PyObject 
*swig_obj
[1] ; 
12951   if (!args
) SWIG_fail
; 
12952   swig_obj
[0] = args
; 
12953   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12954   if (!SWIG_IsOK(res1
)) { 
12955     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12957   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12959     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12960     (arg1
)->LineDownExtend(); 
12961     wxPyEndAllowThreads(__tstate
); 
12962     if (PyErr_Occurred()) SWIG_fail
; 
12964   resultobj 
= SWIG_Py_Void(); 
12971 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12972   PyObject 
*resultobj 
= 0; 
12973   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
12976   PyObject 
*swig_obj
[1] ; 
12978   if (!args
) SWIG_fail
; 
12979   swig_obj
[0] = args
; 
12980   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
12981   if (!SWIG_IsOK(res1
)) { 
12982     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
12984   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
12986     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
12988     wxPyEndAllowThreads(__tstate
); 
12989     if (PyErr_Occurred()) SWIG_fail
; 
12991   resultobj 
= SWIG_Py_Void(); 
12998 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineUpExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
12999   PyObject 
*resultobj 
= 0; 
13000   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13003   PyObject 
*swig_obj
[1] ; 
13005   if (!args
) SWIG_fail
; 
13006   swig_obj
[0] = args
; 
13007   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13008   if (!SWIG_IsOK(res1
)) { 
13009     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13011   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13013     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13014     (arg1
)->LineUpExtend(); 
13015     wxPyEndAllowThreads(__tstate
); 
13016     if (PyErr_Occurred()) SWIG_fail
; 
13018   resultobj 
= SWIG_Py_Void(); 
13025 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13026   PyObject 
*resultobj 
= 0; 
13027   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13030   PyObject 
*swig_obj
[1] ; 
13032   if (!args
) SWIG_fail
; 
13033   swig_obj
[0] = args
; 
13034   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13035   if (!SWIG_IsOK(res1
)) { 
13036     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13038   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13040     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13041     (arg1
)->CharLeft(); 
13042     wxPyEndAllowThreads(__tstate
); 
13043     if (PyErr_Occurred()) SWIG_fail
; 
13045   resultobj 
= SWIG_Py_Void(); 
13052 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharLeftExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13053   PyObject 
*resultobj 
= 0; 
13054   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13057   PyObject 
*swig_obj
[1] ; 
13059   if (!args
) SWIG_fail
; 
13060   swig_obj
[0] = args
; 
13061   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13062   if (!SWIG_IsOK(res1
)) { 
13063     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13065   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13067     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13068     (arg1
)->CharLeftExtend(); 
13069     wxPyEndAllowThreads(__tstate
); 
13070     if (PyErr_Occurred()) SWIG_fail
; 
13072   resultobj 
= SWIG_Py_Void(); 
13079 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13080   PyObject 
*resultobj 
= 0; 
13081   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13084   PyObject 
*swig_obj
[1] ; 
13086   if (!args
) SWIG_fail
; 
13087   swig_obj
[0] = args
; 
13088   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13089   if (!SWIG_IsOK(res1
)) { 
13090     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13092   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13094     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13095     (arg1
)->CharRight(); 
13096     wxPyEndAllowThreads(__tstate
); 
13097     if (PyErr_Occurred()) SWIG_fail
; 
13099   resultobj 
= SWIG_Py_Void(); 
13106 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharRightExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13107   PyObject 
*resultobj 
= 0; 
13108   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13111   PyObject 
*swig_obj
[1] ; 
13113   if (!args
) SWIG_fail
; 
13114   swig_obj
[0] = args
; 
13115   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13116   if (!SWIG_IsOK(res1
)) { 
13117     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13119   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13121     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13122     (arg1
)->CharRightExtend(); 
13123     wxPyEndAllowThreads(__tstate
); 
13124     if (PyErr_Occurred()) SWIG_fail
; 
13126   resultobj 
= SWIG_Py_Void(); 
13133 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13134   PyObject 
*resultobj 
= 0; 
13135   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13138   PyObject 
*swig_obj
[1] ; 
13140   if (!args
) SWIG_fail
; 
13141   swig_obj
[0] = args
; 
13142   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13143   if (!SWIG_IsOK(res1
)) { 
13144     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13146   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13148     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13149     (arg1
)->WordLeft(); 
13150     wxPyEndAllowThreads(__tstate
); 
13151     if (PyErr_Occurred()) SWIG_fail
; 
13153   resultobj 
= SWIG_Py_Void(); 
13160 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordLeftExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13161   PyObject 
*resultobj 
= 0; 
13162   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13165   PyObject 
*swig_obj
[1] ; 
13167   if (!args
) SWIG_fail
; 
13168   swig_obj
[0] = args
; 
13169   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13170   if (!SWIG_IsOK(res1
)) { 
13171     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13173   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13175     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13176     (arg1
)->WordLeftExtend(); 
13177     wxPyEndAllowThreads(__tstate
); 
13178     if (PyErr_Occurred()) SWIG_fail
; 
13180   resultobj 
= SWIG_Py_Void(); 
13187 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13188   PyObject 
*resultobj 
= 0; 
13189   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13192   PyObject 
*swig_obj
[1] ; 
13194   if (!args
) SWIG_fail
; 
13195   swig_obj
[0] = args
; 
13196   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13197   if (!SWIG_IsOK(res1
)) { 
13198     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13200   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13202     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13203     (arg1
)->WordRight(); 
13204     wxPyEndAllowThreads(__tstate
); 
13205     if (PyErr_Occurred()) SWIG_fail
; 
13207   resultobj 
= SWIG_Py_Void(); 
13214 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordRightExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13215   PyObject 
*resultobj 
= 0; 
13216   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13219   PyObject 
*swig_obj
[1] ; 
13221   if (!args
) SWIG_fail
; 
13222   swig_obj
[0] = args
; 
13223   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13224   if (!SWIG_IsOK(res1
)) { 
13225     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13227   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13229     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13230     (arg1
)->WordRightExtend(); 
13231     wxPyEndAllowThreads(__tstate
); 
13232     if (PyErr_Occurred()) SWIG_fail
; 
13234   resultobj 
= SWIG_Py_Void(); 
13241 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Home(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13242   PyObject 
*resultobj 
= 0; 
13243   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13246   PyObject 
*swig_obj
[1] ; 
13248   if (!args
) SWIG_fail
; 
13249   swig_obj
[0] = args
; 
13250   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13251   if (!SWIG_IsOK(res1
)) { 
13252     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Home" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13254   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13256     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13258     wxPyEndAllowThreads(__tstate
); 
13259     if (PyErr_Occurred()) SWIG_fail
; 
13261   resultobj 
= SWIG_Py_Void(); 
13268 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13269   PyObject 
*resultobj 
= 0; 
13270   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13273   PyObject 
*swig_obj
[1] ; 
13275   if (!args
) SWIG_fail
; 
13276   swig_obj
[0] = args
; 
13277   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13278   if (!SWIG_IsOK(res1
)) { 
13279     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13281   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13283     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13284     (arg1
)->HomeExtend(); 
13285     wxPyEndAllowThreads(__tstate
); 
13286     if (PyErr_Occurred()) SWIG_fail
; 
13288   resultobj 
= SWIG_Py_Void(); 
13295 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13296   PyObject 
*resultobj 
= 0; 
13297   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13300   PyObject 
*swig_obj
[1] ; 
13302   if (!args
) SWIG_fail
; 
13303   swig_obj
[0] = args
; 
13304   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13305   if (!SWIG_IsOK(res1
)) { 
13306     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13308   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13310     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13312     wxPyEndAllowThreads(__tstate
); 
13313     if (PyErr_Occurred()) SWIG_fail
; 
13315   resultobj 
= SWIG_Py_Void(); 
13322 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13323   PyObject 
*resultobj 
= 0; 
13324   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13327   PyObject 
*swig_obj
[1] ; 
13329   if (!args
) SWIG_fail
; 
13330   swig_obj
[0] = args
; 
13331   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13332   if (!SWIG_IsOK(res1
)) { 
13333     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13335   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13337     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13338     (arg1
)->LineEndExtend(); 
13339     wxPyEndAllowThreads(__tstate
); 
13340     if (PyErr_Occurred()) SWIG_fail
; 
13342   resultobj 
= SWIG_Py_Void(); 
13349 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DocumentStart(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13350   PyObject 
*resultobj 
= 0; 
13351   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13354   PyObject 
*swig_obj
[1] ; 
13356   if (!args
) SWIG_fail
; 
13357   swig_obj
[0] = args
; 
13358   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13359   if (!SWIG_IsOK(res1
)) { 
13360     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13362   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13364     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13365     (arg1
)->DocumentStart(); 
13366     wxPyEndAllowThreads(__tstate
); 
13367     if (PyErr_Occurred()) SWIG_fail
; 
13369   resultobj 
= SWIG_Py_Void(); 
13376 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DocumentStartExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13377   PyObject 
*resultobj 
= 0; 
13378   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13381   PyObject 
*swig_obj
[1] ; 
13383   if (!args
) SWIG_fail
; 
13384   swig_obj
[0] = args
; 
13385   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13386   if (!SWIG_IsOK(res1
)) { 
13387     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStartExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13389   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13391     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13392     (arg1
)->DocumentStartExtend(); 
13393     wxPyEndAllowThreads(__tstate
); 
13394     if (PyErr_Occurred()) SWIG_fail
; 
13396   resultobj 
= SWIG_Py_Void(); 
13403 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DocumentEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13404   PyObject 
*resultobj 
= 0; 
13405   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13408   PyObject 
*swig_obj
[1] ; 
13410   if (!args
) SWIG_fail
; 
13411   swig_obj
[0] = args
; 
13412   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13413   if (!SWIG_IsOK(res1
)) { 
13414     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13416   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13418     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13419     (arg1
)->DocumentEnd(); 
13420     wxPyEndAllowThreads(__tstate
); 
13421     if (PyErr_Occurred()) SWIG_fail
; 
13423   resultobj 
= SWIG_Py_Void(); 
13430 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DocumentEndExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13431   PyObject 
*resultobj 
= 0; 
13432   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13435   PyObject 
*swig_obj
[1] ; 
13437   if (!args
) SWIG_fail
; 
13438   swig_obj
[0] = args
; 
13439   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13440   if (!SWIG_IsOK(res1
)) { 
13441     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13443   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13445     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13446     (arg1
)->DocumentEndExtend(); 
13447     wxPyEndAllowThreads(__tstate
); 
13448     if (PyErr_Occurred()) SWIG_fail
; 
13450   resultobj 
= SWIG_Py_Void(); 
13457 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13458   PyObject 
*resultobj 
= 0; 
13459   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13462   PyObject 
*swig_obj
[1] ; 
13464   if (!args
) SWIG_fail
; 
13465   swig_obj
[0] = args
; 
13466   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13467   if (!SWIG_IsOK(res1
)) { 
13468     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13470   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13472     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13474     wxPyEndAllowThreads(__tstate
); 
13475     if (PyErr_Occurred()) SWIG_fail
; 
13477   resultobj 
= SWIG_Py_Void(); 
13484 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageUpExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13485   PyObject 
*resultobj 
= 0; 
13486   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13489   PyObject 
*swig_obj
[1] ; 
13491   if (!args
) SWIG_fail
; 
13492   swig_obj
[0] = args
; 
13493   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13494   if (!SWIG_IsOK(res1
)) { 
13495     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13497   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13499     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13500     (arg1
)->PageUpExtend(); 
13501     wxPyEndAllowThreads(__tstate
); 
13502     if (PyErr_Occurred()) SWIG_fail
; 
13504   resultobj 
= SWIG_Py_Void(); 
13511 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13512   PyObject 
*resultobj 
= 0; 
13513   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13516   PyObject 
*swig_obj
[1] ; 
13518   if (!args
) SWIG_fail
; 
13519   swig_obj
[0] = args
; 
13520   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13521   if (!SWIG_IsOK(res1
)) { 
13522     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13524   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13526     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13527     (arg1
)->PageDown(); 
13528     wxPyEndAllowThreads(__tstate
); 
13529     if (PyErr_Occurred()) SWIG_fail
; 
13531   resultobj 
= SWIG_Py_Void(); 
13538 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageDownExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13539   PyObject 
*resultobj 
= 0; 
13540   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13543   PyObject 
*swig_obj
[1] ; 
13545   if (!args
) SWIG_fail
; 
13546   swig_obj
[0] = args
; 
13547   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13548   if (!SWIG_IsOK(res1
)) { 
13549     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13551   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13553     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13554     (arg1
)->PageDownExtend(); 
13555     wxPyEndAllowThreads(__tstate
); 
13556     if (PyErr_Occurred()) SWIG_fail
; 
13558   resultobj 
= SWIG_Py_Void(); 
13565 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_EditToggleOvertype(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13566   PyObject 
*resultobj 
= 0; 
13567   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13570   PyObject 
*swig_obj
[1] ; 
13572   if (!args
) SWIG_fail
; 
13573   swig_obj
[0] = args
; 
13574   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13575   if (!SWIG_IsOK(res1
)) { 
13576     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EditToggleOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13578   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13580     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13581     (arg1
)->EditToggleOvertype(); 
13582     wxPyEndAllowThreads(__tstate
); 
13583     if (PyErr_Occurred()) SWIG_fail
; 
13585   resultobj 
= SWIG_Py_Void(); 
13592 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Cancel(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13593   PyObject 
*resultobj 
= 0; 
13594   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13597   PyObject 
*swig_obj
[1] ; 
13599   if (!args
) SWIG_fail
; 
13600   swig_obj
[0] = args
; 
13601   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13602   if (!SWIG_IsOK(res1
)) { 
13603     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13605   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13607     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13609     wxPyEndAllowThreads(__tstate
); 
13610     if (PyErr_Occurred()) SWIG_fail
; 
13612   resultobj 
= SWIG_Py_Void(); 
13619 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DeleteBack(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13620   PyObject 
*resultobj 
= 0; 
13621   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13624   PyObject 
*swig_obj
[1] ; 
13626   if (!args
) SWIG_fail
; 
13627   swig_obj
[0] = args
; 
13628   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13629   if (!SWIG_IsOK(res1
)) { 
13630     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13632   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13634     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13635     (arg1
)->DeleteBack(); 
13636     wxPyEndAllowThreads(__tstate
); 
13637     if (PyErr_Occurred()) SWIG_fail
; 
13639   resultobj 
= SWIG_Py_Void(); 
13646 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Tab(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13647   PyObject 
*resultobj 
= 0; 
13648   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13651   PyObject 
*swig_obj
[1] ; 
13653   if (!args
) SWIG_fail
; 
13654   swig_obj
[0] = args
; 
13655   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13656   if (!SWIG_IsOK(res1
)) { 
13657     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Tab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13659   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13661     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13663     wxPyEndAllowThreads(__tstate
); 
13664     if (PyErr_Occurred()) SWIG_fail
; 
13666   resultobj 
= SWIG_Py_Void(); 
13673 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_BackTab(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13674   PyObject 
*resultobj 
= 0; 
13675   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13678   PyObject 
*swig_obj
[1] ; 
13680   if (!args
) SWIG_fail
; 
13681   swig_obj
[0] = args
; 
13682   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13683   if (!SWIG_IsOK(res1
)) { 
13684     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BackTab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13686   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13688     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13690     wxPyEndAllowThreads(__tstate
); 
13691     if (PyErr_Occurred()) SWIG_fail
; 
13693   resultobj 
= SWIG_Py_Void(); 
13700 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_NewLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13701   PyObject 
*resultobj 
= 0; 
13702   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13705   PyObject 
*swig_obj
[1] ; 
13707   if (!args
) SWIG_fail
; 
13708   swig_obj
[0] = args
; 
13709   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13710   if (!SWIG_IsOK(res1
)) { 
13711     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_NewLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13713   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13715     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13717     wxPyEndAllowThreads(__tstate
); 
13718     if (PyErr_Occurred()) SWIG_fail
; 
13720   resultobj 
= SWIG_Py_Void(); 
13727 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_FormFeed(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13728   PyObject 
*resultobj 
= 0; 
13729   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13732   PyObject 
*swig_obj
[1] ; 
13734   if (!args
) SWIG_fail
; 
13735   swig_obj
[0] = args
; 
13736   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13737   if (!SWIG_IsOK(res1
)) { 
13738     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormFeed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13740   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13742     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13743     (arg1
)->FormFeed(); 
13744     wxPyEndAllowThreads(__tstate
); 
13745     if (PyErr_Occurred()) SWIG_fail
; 
13747   resultobj 
= SWIG_Py_Void(); 
13754 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VCHome(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13755   PyObject 
*resultobj 
= 0; 
13756   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13759   PyObject 
*swig_obj
[1] ; 
13761   if (!args
) SWIG_fail
; 
13762   swig_obj
[0] = args
; 
13763   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13764   if (!SWIG_IsOK(res1
)) { 
13765     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHome" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13767   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13769     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13771     wxPyEndAllowThreads(__tstate
); 
13772     if (PyErr_Occurred()) SWIG_fail
; 
13774   resultobj 
= SWIG_Py_Void(); 
13781 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VCHomeExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13782   PyObject 
*resultobj 
= 0; 
13783   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13786   PyObject 
*swig_obj
[1] ; 
13788   if (!args
) SWIG_fail
; 
13789   swig_obj
[0] = args
; 
13790   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13791   if (!SWIG_IsOK(res1
)) { 
13792     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13794   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13796     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13797     (arg1
)->VCHomeExtend(); 
13798     wxPyEndAllowThreads(__tstate
); 
13799     if (PyErr_Occurred()) SWIG_fail
; 
13801   resultobj 
= SWIG_Py_Void(); 
13808 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ZoomIn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13809   PyObject 
*resultobj 
= 0; 
13810   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13813   PyObject 
*swig_obj
[1] ; 
13815   if (!args
) SWIG_fail
; 
13816   swig_obj
[0] = args
; 
13817   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13818   if (!SWIG_IsOK(res1
)) { 
13819     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomIn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13821   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13823     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13825     wxPyEndAllowThreads(__tstate
); 
13826     if (PyErr_Occurred()) SWIG_fail
; 
13828   resultobj 
= SWIG_Py_Void(); 
13835 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ZoomOut(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13836   PyObject 
*resultobj 
= 0; 
13837   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13840   PyObject 
*swig_obj
[1] ; 
13842   if (!args
) SWIG_fail
; 
13843   swig_obj
[0] = args
; 
13844   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13845   if (!SWIG_IsOK(res1
)) { 
13846     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomOut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13848   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13850     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13852     wxPyEndAllowThreads(__tstate
); 
13853     if (PyErr_Occurred()) SWIG_fail
; 
13855   resultobj 
= SWIG_Py_Void(); 
13862 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DelWordLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13863   PyObject 
*resultobj 
= 0; 
13864   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13867   PyObject 
*swig_obj
[1] ; 
13869   if (!args
) SWIG_fail
; 
13870   swig_obj
[0] = args
; 
13871   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13872   if (!SWIG_IsOK(res1
)) { 
13873     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13875   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13877     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13878     (arg1
)->DelWordLeft(); 
13879     wxPyEndAllowThreads(__tstate
); 
13880     if (PyErr_Occurred()) SWIG_fail
; 
13882   resultobj 
= SWIG_Py_Void(); 
13889 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DelWordRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13890   PyObject 
*resultobj 
= 0; 
13891   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13894   PyObject 
*swig_obj
[1] ; 
13896   if (!args
) SWIG_fail
; 
13897   swig_obj
[0] = args
; 
13898   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13899   if (!SWIG_IsOK(res1
)) { 
13900     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13902   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13904     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13905     (arg1
)->DelWordRight(); 
13906     wxPyEndAllowThreads(__tstate
); 
13907     if (PyErr_Occurred()) SWIG_fail
; 
13909   resultobj 
= SWIG_Py_Void(); 
13916 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineCut(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13917   PyObject 
*resultobj 
= 0; 
13918   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13921   PyObject 
*swig_obj
[1] ; 
13923   if (!args
) SWIG_fail
; 
13924   swig_obj
[0] = args
; 
13925   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13926   if (!SWIG_IsOK(res1
)) { 
13927     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13929   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13931     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13933     wxPyEndAllowThreads(__tstate
); 
13934     if (PyErr_Occurred()) SWIG_fail
; 
13936   resultobj 
= SWIG_Py_Void(); 
13943 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineDelete(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13944   PyObject 
*resultobj 
= 0; 
13945   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13948   PyObject 
*swig_obj
[1] ; 
13950   if (!args
) SWIG_fail
; 
13951   swig_obj
[0] = args
; 
13952   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13953   if (!SWIG_IsOK(res1
)) { 
13954     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13956   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13958     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13959     (arg1
)->LineDelete(); 
13960     wxPyEndAllowThreads(__tstate
); 
13961     if (PyErr_Occurred()) SWIG_fail
; 
13963   resultobj 
= SWIG_Py_Void(); 
13970 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineTranspose(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13971   PyObject 
*resultobj 
= 0; 
13972   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
13975   PyObject 
*swig_obj
[1] ; 
13977   if (!args
) SWIG_fail
; 
13978   swig_obj
[0] = args
; 
13979   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
13980   if (!SWIG_IsOK(res1
)) { 
13981     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineTranspose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
13983   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
13985     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
13986     (arg1
)->LineTranspose(); 
13987     wxPyEndAllowThreads(__tstate
); 
13988     if (PyErr_Occurred()) SWIG_fail
; 
13990   resultobj 
= SWIG_Py_Void(); 
13997 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineDuplicate(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
13998   PyObject 
*resultobj 
= 0; 
13999   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14002   PyObject 
*swig_obj
[1] ; 
14004   if (!args
) SWIG_fail
; 
14005   swig_obj
[0] = args
; 
14006   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14007   if (!SWIG_IsOK(res1
)) { 
14008     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14010   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14012     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14013     (arg1
)->LineDuplicate(); 
14014     wxPyEndAllowThreads(__tstate
); 
14015     if (PyErr_Occurred()) SWIG_fail
; 
14017   resultobj 
= SWIG_Py_Void(); 
14024 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LowerCase(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14025   PyObject 
*resultobj 
= 0; 
14026   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14029   PyObject 
*swig_obj
[1] ; 
14031   if (!args
) SWIG_fail
; 
14032   swig_obj
[0] = args
; 
14033   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14034   if (!SWIG_IsOK(res1
)) { 
14035     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LowerCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14037   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14039     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14040     (arg1
)->LowerCase(); 
14041     wxPyEndAllowThreads(__tstate
); 
14042     if (PyErr_Occurred()) SWIG_fail
; 
14044   resultobj 
= SWIG_Py_Void(); 
14051 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_UpperCase(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14052   PyObject 
*resultobj 
= 0; 
14053   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14056   PyObject 
*swig_obj
[1] ; 
14058   if (!args
) SWIG_fail
; 
14059   swig_obj
[0] = args
; 
14060   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14061   if (!SWIG_IsOK(res1
)) { 
14062     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UpperCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14064   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14066     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14067     (arg1
)->UpperCase(); 
14068     wxPyEndAllowThreads(__tstate
); 
14069     if (PyErr_Occurred()) SWIG_fail
; 
14071   resultobj 
= SWIG_Py_Void(); 
14078 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineScrollDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14079   PyObject 
*resultobj 
= 0; 
14080   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14083   PyObject 
*swig_obj
[1] ; 
14085   if (!args
) SWIG_fail
; 
14086   swig_obj
[0] = args
; 
14087   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14088   if (!SWIG_IsOK(res1
)) { 
14089     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14091   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14093     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14094     (arg1
)->LineScrollDown(); 
14095     wxPyEndAllowThreads(__tstate
); 
14096     if (PyErr_Occurred()) SWIG_fail
; 
14098   resultobj 
= SWIG_Py_Void(); 
14105 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineScrollUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14106   PyObject 
*resultobj 
= 0; 
14107   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14110   PyObject 
*swig_obj
[1] ; 
14112   if (!args
) SWIG_fail
; 
14113   swig_obj
[0] = args
; 
14114   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14115   if (!SWIG_IsOK(res1
)) { 
14116     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14118   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14120     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14121     (arg1
)->LineScrollUp(); 
14122     wxPyEndAllowThreads(__tstate
); 
14123     if (PyErr_Occurred()) SWIG_fail
; 
14125   resultobj 
= SWIG_Py_Void(); 
14132 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DeleteBackNotLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14133   PyObject 
*resultobj 
= 0; 
14134   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14137   PyObject 
*swig_obj
[1] ; 
14139   if (!args
) SWIG_fail
; 
14140   swig_obj
[0] = args
; 
14141   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14142   if (!SWIG_IsOK(res1
)) { 
14143     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBackNotLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14145   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14147     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14148     (arg1
)->DeleteBackNotLine(); 
14149     wxPyEndAllowThreads(__tstate
); 
14150     if (PyErr_Occurred()) SWIG_fail
; 
14152   resultobj 
= SWIG_Py_Void(); 
14159 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeDisplay(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14160   PyObject 
*resultobj 
= 0; 
14161   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14164   PyObject 
*swig_obj
[1] ; 
14166   if (!args
) SWIG_fail
; 
14167   swig_obj
[0] = args
; 
14168   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14169   if (!SWIG_IsOK(res1
)) { 
14170     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14172   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14174     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14175     (arg1
)->HomeDisplay(); 
14176     wxPyEndAllowThreads(__tstate
); 
14177     if (PyErr_Occurred()) SWIG_fail
; 
14179   resultobj 
= SWIG_Py_Void(); 
14186 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeDisplayExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14187   PyObject 
*resultobj 
= 0; 
14188   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14191   PyObject 
*swig_obj
[1] ; 
14193   if (!args
) SWIG_fail
; 
14194   swig_obj
[0] = args
; 
14195   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14196   if (!SWIG_IsOK(res1
)) { 
14197     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14199   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14201     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14202     (arg1
)->HomeDisplayExtend(); 
14203     wxPyEndAllowThreads(__tstate
); 
14204     if (PyErr_Occurred()) SWIG_fail
; 
14206   resultobj 
= SWIG_Py_Void(); 
14213 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndDisplay(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14214   PyObject 
*resultobj 
= 0; 
14215   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14218   PyObject 
*swig_obj
[1] ; 
14220   if (!args
) SWIG_fail
; 
14221   swig_obj
[0] = args
; 
14222   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14223   if (!SWIG_IsOK(res1
)) { 
14224     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14226   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14228     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14229     (arg1
)->LineEndDisplay(); 
14230     wxPyEndAllowThreads(__tstate
); 
14231     if (PyErr_Occurred()) SWIG_fail
; 
14233   resultobj 
= SWIG_Py_Void(); 
14240 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndDisplayExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14241   PyObject 
*resultobj 
= 0; 
14242   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14245   PyObject 
*swig_obj
[1] ; 
14247   if (!args
) SWIG_fail
; 
14248   swig_obj
[0] = args
; 
14249   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14250   if (!SWIG_IsOK(res1
)) { 
14251     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14253   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14255     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14256     (arg1
)->LineEndDisplayExtend(); 
14257     wxPyEndAllowThreads(__tstate
); 
14258     if (PyErr_Occurred()) SWIG_fail
; 
14260   resultobj 
= SWIG_Py_Void(); 
14267 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeWrap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14268   PyObject 
*resultobj 
= 0; 
14269   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14272   PyObject 
*swig_obj
[1] ; 
14274   if (!args
) SWIG_fail
; 
14275   swig_obj
[0] = args
; 
14276   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14277   if (!SWIG_IsOK(res1
)) { 
14278     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14280   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14282     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14283     (arg1
)->HomeWrap(); 
14284     wxPyEndAllowThreads(__tstate
); 
14285     if (PyErr_Occurred()) SWIG_fail
; 
14287   resultobj 
= SWIG_Py_Void(); 
14294 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeWrapExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14295   PyObject 
*resultobj 
= 0; 
14296   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14299   PyObject 
*swig_obj
[1] ; 
14301   if (!args
) SWIG_fail
; 
14302   swig_obj
[0] = args
; 
14303   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14304   if (!SWIG_IsOK(res1
)) { 
14305     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14307   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14309     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14310     (arg1
)->HomeWrapExtend(); 
14311     wxPyEndAllowThreads(__tstate
); 
14312     if (PyErr_Occurred()) SWIG_fail
; 
14314   resultobj 
= SWIG_Py_Void(); 
14321 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndWrap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14322   PyObject 
*resultobj 
= 0; 
14323   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14326   PyObject 
*swig_obj
[1] ; 
14328   if (!args
) SWIG_fail
; 
14329   swig_obj
[0] = args
; 
14330   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14331   if (!SWIG_IsOK(res1
)) { 
14332     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14334   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14336     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14337     (arg1
)->LineEndWrap(); 
14338     wxPyEndAllowThreads(__tstate
); 
14339     if (PyErr_Occurred()) SWIG_fail
; 
14341   resultobj 
= SWIG_Py_Void(); 
14348 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndWrapExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14349   PyObject 
*resultobj 
= 0; 
14350   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14353   PyObject 
*swig_obj
[1] ; 
14355   if (!args
) SWIG_fail
; 
14356   swig_obj
[0] = args
; 
14357   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14358   if (!SWIG_IsOK(res1
)) { 
14359     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14361   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14363     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14364     (arg1
)->LineEndWrapExtend(); 
14365     wxPyEndAllowThreads(__tstate
); 
14366     if (PyErr_Occurred()) SWIG_fail
; 
14368   resultobj 
= SWIG_Py_Void(); 
14375 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VCHomeWrap(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14376   PyObject 
*resultobj 
= 0; 
14377   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14380   PyObject 
*swig_obj
[1] ; 
14382   if (!args
) SWIG_fail
; 
14383   swig_obj
[0] = args
; 
14384   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14385   if (!SWIG_IsOK(res1
)) { 
14386     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14388   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14390     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14391     (arg1
)->VCHomeWrap(); 
14392     wxPyEndAllowThreads(__tstate
); 
14393     if (PyErr_Occurred()) SWIG_fail
; 
14395   resultobj 
= SWIG_Py_Void(); 
14402 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VCHomeWrapExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14403   PyObject 
*resultobj 
= 0; 
14404   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14407   PyObject 
*swig_obj
[1] ; 
14409   if (!args
) SWIG_fail
; 
14410   swig_obj
[0] = args
; 
14411   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14412   if (!SWIG_IsOK(res1
)) { 
14413     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14415   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14417     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14418     (arg1
)->VCHomeWrapExtend(); 
14419     wxPyEndAllowThreads(__tstate
); 
14420     if (PyErr_Occurred()) SWIG_fail
; 
14422   resultobj 
= SWIG_Py_Void(); 
14429 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineCopy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14430   PyObject 
*resultobj 
= 0; 
14431   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14434   PyObject 
*swig_obj
[1] ; 
14436   if (!args
) SWIG_fail
; 
14437   swig_obj
[0] = args
; 
14438   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14439   if (!SWIG_IsOK(res1
)) { 
14440     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCopy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14442   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14444     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14445     (arg1
)->LineCopy(); 
14446     wxPyEndAllowThreads(__tstate
); 
14447     if (PyErr_Occurred()) SWIG_fail
; 
14449   resultobj 
= SWIG_Py_Void(); 
14456 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_MoveCaretInsideView(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14457   PyObject 
*resultobj 
= 0; 
14458   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14461   PyObject 
*swig_obj
[1] ; 
14463   if (!args
) SWIG_fail
; 
14464   swig_obj
[0] = args
; 
14465   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14466   if (!SWIG_IsOK(res1
)) { 
14467     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MoveCaretInsideView" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14469   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14471     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14472     (arg1
)->MoveCaretInsideView(); 
14473     wxPyEndAllowThreads(__tstate
); 
14474     if (PyErr_Occurred()) SWIG_fail
; 
14476   resultobj 
= SWIG_Py_Void(); 
14483 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineLength(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14484   PyObject 
*resultobj 
= 0; 
14485   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14492   PyObject 
* obj0 
= 0 ; 
14493   PyObject 
* obj1 
= 0 ; 
14494   char *  kwnames
[] = { 
14495     (char *) "self",(char *) "line", NULL 
 
14498   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14499   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14500   if (!SWIG_IsOK(res1
)) { 
14501     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14503   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14504   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14505   if (!SWIG_IsOK(ecode2
)) { 
14506     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "2"" of type '" "int""'"); 
14508   arg2 
= static_cast< int >(val2
); 
14510     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14511     result 
= (int)(arg1
)->LineLength(arg2
); 
14512     wxPyEndAllowThreads(__tstate
); 
14513     if (PyErr_Occurred()) SWIG_fail
; 
14515   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14522 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_BraceHighlight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14523   PyObject 
*resultobj 
= 0; 
14524   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14533   PyObject 
* obj0 
= 0 ; 
14534   PyObject 
* obj1 
= 0 ; 
14535   PyObject 
* obj2 
= 0 ; 
14536   char *  kwnames
[] = { 
14537     (char *) "self",(char *) "pos1",(char *) "pos2", NULL 
 
14540   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_BraceHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
14541   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14542   if (!SWIG_IsOK(res1
)) { 
14543     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14545   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14546   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14547   if (!SWIG_IsOK(ecode2
)) { 
14548     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "2"" of type '" "int""'"); 
14550   arg2 
= static_cast< int >(val2
); 
14551   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
14552   if (!SWIG_IsOK(ecode3
)) { 
14553     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "3"" of type '" "int""'"); 
14555   arg3 
= static_cast< int >(val3
); 
14557     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14558     (arg1
)->BraceHighlight(arg2
,arg3
); 
14559     wxPyEndAllowThreads(__tstate
); 
14560     if (PyErr_Occurred()) SWIG_fail
; 
14562   resultobj 
= SWIG_Py_Void(); 
14569 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_BraceBadLight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14570   PyObject 
*resultobj 
= 0; 
14571   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14577   PyObject 
* obj0 
= 0 ; 
14578   PyObject 
* obj1 
= 0 ; 
14579   char *  kwnames
[] = { 
14580     (char *) "self",(char *) "pos", NULL 
 
14583   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceBadLight",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14584   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14585   if (!SWIG_IsOK(res1
)) { 
14586     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14588   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14589   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14590   if (!SWIG_IsOK(ecode2
)) { 
14591     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "2"" of type '" "int""'"); 
14593   arg2 
= static_cast< int >(val2
); 
14595     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14596     (arg1
)->BraceBadLight(arg2
); 
14597     wxPyEndAllowThreads(__tstate
); 
14598     if (PyErr_Occurred()) SWIG_fail
; 
14600   resultobj 
= SWIG_Py_Void(); 
14607 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_BraceMatch(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14608   PyObject 
*resultobj 
= 0; 
14609   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14616   PyObject 
* obj0 
= 0 ; 
14617   PyObject 
* obj1 
= 0 ; 
14618   char *  kwnames
[] = { 
14619     (char *) "self",(char *) "pos", NULL 
 
14622   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceMatch",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14623   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14624   if (!SWIG_IsOK(res1
)) { 
14625     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14627   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14628   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14629   if (!SWIG_IsOK(ecode2
)) { 
14630     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "2"" of type '" "int""'"); 
14632   arg2 
= static_cast< int >(val2
); 
14634     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14635     result 
= (int)(arg1
)->BraceMatch(arg2
); 
14636     wxPyEndAllowThreads(__tstate
); 
14637     if (PyErr_Occurred()) SWIG_fail
; 
14639   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14646 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetViewEOL(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14647   PyObject 
*resultobj 
= 0; 
14648   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14652   PyObject 
*swig_obj
[1] ; 
14654   if (!args
) SWIG_fail
; 
14655   swig_obj
[0] = args
; 
14656   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14657   if (!SWIG_IsOK(res1
)) { 
14658     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14660   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14662     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14663     result 
= (bool)(arg1
)->GetViewEOL(); 
14664     wxPyEndAllowThreads(__tstate
); 
14665     if (PyErr_Occurred()) SWIG_fail
; 
14668     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
14676 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetViewEOL(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14677   PyObject 
*resultobj 
= 0; 
14678   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14684   PyObject 
* obj0 
= 0 ; 
14685   PyObject 
* obj1 
= 0 ; 
14686   char *  kwnames
[] = { 
14687     (char *) "self",(char *) "visible", NULL 
 
14690   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewEOL",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14691   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14692   if (!SWIG_IsOK(res1
)) { 
14693     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14695   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14696   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
14697   if (!SWIG_IsOK(ecode2
)) { 
14698     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "2"" of type '" "bool""'"); 
14700   arg2 
= static_cast< bool >(val2
); 
14702     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14703     (arg1
)->SetViewEOL(arg2
); 
14704     wxPyEndAllowThreads(__tstate
); 
14705     if (PyErr_Occurred()) SWIG_fail
; 
14707   resultobj 
= SWIG_Py_Void(); 
14714 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetDocPointer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14715   PyObject 
*resultobj 
= 0; 
14716   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14720   PyObject 
*swig_obj
[1] ; 
14722   if (!args
) SWIG_fail
; 
14723   swig_obj
[0] = args
; 
14724   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14725   if (!SWIG_IsOK(res1
)) { 
14726     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14728   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14730     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14731     result 
= (void *)(arg1
)->GetDocPointer(); 
14732     wxPyEndAllowThreads(__tstate
); 
14733     if (PyErr_Occurred()) SWIG_fail
; 
14735   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 |  0 ); 
14742 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetDocPointer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14743   PyObject 
*resultobj 
= 0; 
14744   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14745   void *arg2 
= (void *) 0 ; 
14749   PyObject 
* obj0 
= 0 ; 
14750   PyObject 
* obj1 
= 0 ; 
14751   char *  kwnames
[] = { 
14752     (char *) "self",(char *) "docPointer", NULL 
 
14755   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetDocPointer",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14756   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14757   if (!SWIG_IsOK(res1
)) { 
14758     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14760   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14761   res2 
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0); 
14762   if (!SWIG_IsOK(res2
)) { 
14763     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "2"" of type '" "void *""'");  
14766     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14767     (arg1
)->SetDocPointer(arg2
); 
14768     wxPyEndAllowThreads(__tstate
); 
14769     if (PyErr_Occurred()) SWIG_fail
; 
14771   resultobj 
= SWIG_Py_Void(); 
14778 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetModEventMask(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14779   PyObject 
*resultobj 
= 0; 
14780   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14786   PyObject 
* obj0 
= 0 ; 
14787   PyObject 
* obj1 
= 0 ; 
14788   char *  kwnames
[] = { 
14789     (char *) "self",(char *) "mask", NULL 
 
14792   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetModEventMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14793   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14794   if (!SWIG_IsOK(res1
)) { 
14795     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14797   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14798   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14799   if (!SWIG_IsOK(ecode2
)) { 
14800     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "2"" of type '" "int""'"); 
14802   arg2 
= static_cast< int >(val2
); 
14804     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14805     (arg1
)->SetModEventMask(arg2
); 
14806     wxPyEndAllowThreads(__tstate
); 
14807     if (PyErr_Occurred()) SWIG_fail
; 
14809   resultobj 
= SWIG_Py_Void(); 
14816 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEdgeColumn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14817   PyObject 
*resultobj 
= 0; 
14818   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14822   PyObject 
*swig_obj
[1] ; 
14824   if (!args
) SWIG_fail
; 
14825   swig_obj
[0] = args
; 
14826   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14827   if (!SWIG_IsOK(res1
)) { 
14828     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14830   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14832     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14833     result 
= (int)(arg1
)->GetEdgeColumn(); 
14834     wxPyEndAllowThreads(__tstate
); 
14835     if (PyErr_Occurred()) SWIG_fail
; 
14837   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14844 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetEdgeColumn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14845   PyObject 
*resultobj 
= 0; 
14846   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14852   PyObject 
* obj0 
= 0 ; 
14853   PyObject 
* obj1 
= 0 ; 
14854   char *  kwnames
[] = { 
14855     (char *) "self",(char *) "column", NULL 
 
14858   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14859   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14860   if (!SWIG_IsOK(res1
)) { 
14861     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14863   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14864   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14865   if (!SWIG_IsOK(ecode2
)) { 
14866     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "2"" of type '" "int""'"); 
14868   arg2 
= static_cast< int >(val2
); 
14870     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14871     (arg1
)->SetEdgeColumn(arg2
); 
14872     wxPyEndAllowThreads(__tstate
); 
14873     if (PyErr_Occurred()) SWIG_fail
; 
14875   resultobj 
= SWIG_Py_Void(); 
14882 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEdgeMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14883   PyObject 
*resultobj 
= 0; 
14884   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14888   PyObject 
*swig_obj
[1] ; 
14890   if (!args
) SWIG_fail
; 
14891   swig_obj
[0] = args
; 
14892   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14893   if (!SWIG_IsOK(res1
)) { 
14894     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14896   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14898     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14899     result 
= (int)(arg1
)->GetEdgeMode(); 
14900     wxPyEndAllowThreads(__tstate
); 
14901     if (PyErr_Occurred()) SWIG_fail
; 
14903   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
14910 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetEdgeMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14911   PyObject 
*resultobj 
= 0; 
14912   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14918   PyObject 
* obj0 
= 0 ; 
14919   PyObject 
* obj1 
= 0 ; 
14920   char *  kwnames
[] = { 
14921     (char *) "self",(char *) "mode", NULL 
 
14924   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14925   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14926   if (!SWIG_IsOK(res1
)) { 
14927     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14929   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14930   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
14931   if (!SWIG_IsOK(ecode2
)) { 
14932     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "2"" of type '" "int""'"); 
14934   arg2 
= static_cast< int >(val2
); 
14936     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14937     (arg1
)->SetEdgeMode(arg2
); 
14938     wxPyEndAllowThreads(__tstate
); 
14939     if (PyErr_Occurred()) SWIG_fail
; 
14941   resultobj 
= SWIG_Py_Void(); 
14948 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetEdgeColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
14949   PyObject 
*resultobj 
= 0; 
14950   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14954   PyObject 
*swig_obj
[1] ; 
14956   if (!args
) SWIG_fail
; 
14957   swig_obj
[0] = args
; 
14958   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14959   if (!SWIG_IsOK(res1
)) { 
14960     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14962   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14964     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
14965     result 
= (arg1
)->GetEdgeColour(); 
14966     wxPyEndAllowThreads(__tstate
); 
14967     if (PyErr_Occurred()) SWIG_fail
; 
14969   resultobj 
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN 
|  0 ); 
14976 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetEdgeColour(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
14977   PyObject 
*resultobj 
= 0; 
14978   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
14979   wxColour 
*arg2 
= 0 ; 
14983   PyObject 
* obj0 
= 0 ; 
14984   PyObject 
* obj1 
= 0 ; 
14985   char *  kwnames
[] = { 
14986     (char *) "self",(char *) "edgeColour", NULL 
 
14989   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
14990   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
14991   if (!SWIG_IsOK(res1
)) { 
14992     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
14994   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
14997     if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
; 
15000     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15001     (arg1
)->SetEdgeColour((wxColour 
const &)*arg2
); 
15002     wxPyEndAllowThreads(__tstate
); 
15003     if (PyErr_Occurred()) SWIG_fail
; 
15005   resultobj 
= SWIG_Py_Void(); 
15012 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SearchAnchor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15013   PyObject 
*resultobj 
= 0; 
15014   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15017   PyObject 
*swig_obj
[1] ; 
15019   if (!args
) SWIG_fail
; 
15020   swig_obj
[0] = args
; 
15021   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15022   if (!SWIG_IsOK(res1
)) { 
15023     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15025   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15027     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15028     (arg1
)->SearchAnchor(); 
15029     wxPyEndAllowThreads(__tstate
); 
15030     if (PyErr_Occurred()) SWIG_fail
; 
15032   resultobj 
= SWIG_Py_Void(); 
15039 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SearchNext(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15040   PyObject 
*resultobj 
= 0; 
15041   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15043   wxString 
*arg3 
= 0 ; 
15049   bool temp3 
= false ; 
15050   PyObject 
* obj0 
= 0 ; 
15051   PyObject 
* obj1 
= 0 ; 
15052   PyObject 
* obj2 
= 0 ; 
15053   char *  kwnames
[] = { 
15054     (char *) "self",(char *) "flags",(char *) "text", NULL 
 
15057   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
15058   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15059   if (!SWIG_IsOK(res1
)) { 
15060     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15062   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15063   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15064   if (!SWIG_IsOK(ecode2
)) { 
15065     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "2"" of type '" "int""'"); 
15067   arg2 
= static_cast< int >(val2
); 
15069     arg3 
= wxString_in_helper(obj2
); 
15070     if (arg3 
== NULL
) SWIG_fail
; 
15074     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15075     result 
= (int)(arg1
)->SearchNext(arg2
,(wxString 
const &)*arg3
); 
15076     wxPyEndAllowThreads(__tstate
); 
15077     if (PyErr_Occurred()) SWIG_fail
; 
15079   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15094 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SearchPrev(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15095   PyObject 
*resultobj 
= 0; 
15096   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15098   wxString 
*arg3 
= 0 ; 
15104   bool temp3 
= false ; 
15105   PyObject 
* obj0 
= 0 ; 
15106   PyObject 
* obj1 
= 0 ; 
15107   PyObject 
* obj2 
= 0 ; 
15108   char *  kwnames
[] = { 
15109     (char *) "self",(char *) "flags",(char *) "text", NULL 
 
15112   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchPrev",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
15113   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15114   if (!SWIG_IsOK(res1
)) { 
15115     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15117   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15118   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15119   if (!SWIG_IsOK(ecode2
)) { 
15120     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "2"" of type '" "int""'"); 
15122   arg2 
= static_cast< int >(val2
); 
15124     arg3 
= wxString_in_helper(obj2
); 
15125     if (arg3 
== NULL
) SWIG_fail
; 
15129     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15130     result 
= (int)(arg1
)->SearchPrev(arg2
,(wxString 
const &)*arg3
); 
15131     wxPyEndAllowThreads(__tstate
); 
15132     if (PyErr_Occurred()) SWIG_fail
; 
15134   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15149 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LinesOnScreen(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15150   PyObject 
*resultobj 
= 0; 
15151   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15155   PyObject 
*swig_obj
[1] ; 
15157   if (!args
) SWIG_fail
; 
15158   swig_obj
[0] = args
; 
15159   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15160   if (!SWIG_IsOK(res1
)) { 
15161     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesOnScreen" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15163   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15165     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15166     result 
= (int)(arg1
)->LinesOnScreen(); 
15167     wxPyEndAllowThreads(__tstate
); 
15168     if (PyErr_Occurred()) SWIG_fail
; 
15170   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15177 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_UsePopUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15178   PyObject 
*resultobj 
= 0; 
15179   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15185   PyObject 
* obj0 
= 0 ; 
15186   PyObject 
* obj1 
= 0 ; 
15187   char *  kwnames
[] = { 
15188     (char *) "self",(char *) "allowPopUp", NULL 
 
15191   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_UsePopUp",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15192   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15193   if (!SWIG_IsOK(res1
)) { 
15194     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15196   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15197   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
15198   if (!SWIG_IsOK(ecode2
)) { 
15199     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "2"" of type '" "bool""'"); 
15201   arg2 
= static_cast< bool >(val2
); 
15203     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15204     (arg1
)->UsePopUp(arg2
); 
15205     wxPyEndAllowThreads(__tstate
); 
15206     if (PyErr_Occurred()) SWIG_fail
; 
15208   resultobj 
= SWIG_Py_Void(); 
15215 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SelectionIsRectangle(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15216   PyObject 
*resultobj 
= 0; 
15217   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15221   PyObject 
*swig_obj
[1] ; 
15223   if (!args
) SWIG_fail
; 
15224   swig_obj
[0] = args
; 
15225   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15226   if (!SWIG_IsOK(res1
)) { 
15227     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionIsRectangle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15229   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15231     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15232     result 
= (bool)(arg1
)->SelectionIsRectangle(); 
15233     wxPyEndAllowThreads(__tstate
); 
15234     if (PyErr_Occurred()) SWIG_fail
; 
15237     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15245 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetZoom(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15246   PyObject 
*resultobj 
= 0; 
15247   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15253   PyObject 
* obj0 
= 0 ; 
15254   PyObject 
* obj1 
= 0 ; 
15255   char *  kwnames
[] = { 
15256     (char *) "self",(char *) "zoom", NULL 
 
15259   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15260   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15261   if (!SWIG_IsOK(res1
)) { 
15262     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15264   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15265   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15266   if (!SWIG_IsOK(ecode2
)) { 
15267     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "2"" of type '" "int""'"); 
15269   arg2 
= static_cast< int >(val2
); 
15271     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15272     (arg1
)->SetZoom(arg2
); 
15273     wxPyEndAllowThreads(__tstate
); 
15274     if (PyErr_Occurred()) SWIG_fail
; 
15276   resultobj 
= SWIG_Py_Void(); 
15283 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetZoom(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15284   PyObject 
*resultobj 
= 0; 
15285   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15289   PyObject 
*swig_obj
[1] ; 
15291   if (!args
) SWIG_fail
; 
15292   swig_obj
[0] = args
; 
15293   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15294   if (!SWIG_IsOK(res1
)) { 
15295     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15297   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15299     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15300     result 
= (int)(arg1
)->GetZoom(); 
15301     wxPyEndAllowThreads(__tstate
); 
15302     if (PyErr_Occurred()) SWIG_fail
; 
15304   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15311 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CreateDocument(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15312   PyObject 
*resultobj 
= 0; 
15313   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15317   PyObject 
*swig_obj
[1] ; 
15319   if (!args
) SWIG_fail
; 
15320   swig_obj
[0] = args
; 
15321   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15322   if (!SWIG_IsOK(res1
)) { 
15323     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CreateDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15325   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15327     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15328     result 
= (void *)(arg1
)->CreateDocument(); 
15329     wxPyEndAllowThreads(__tstate
); 
15330     if (PyErr_Occurred()) SWIG_fail
; 
15332   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 |  0 ); 
15339 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AddRefDocument(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15340   PyObject 
*resultobj 
= 0; 
15341   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15342   void *arg2 
= (void *) 0 ; 
15346   PyObject 
* obj0 
= 0 ; 
15347   PyObject 
* obj1 
= 0 ; 
15348   char *  kwnames
[] = { 
15349     (char *) "self",(char *) "docPointer", NULL 
 
15352   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddRefDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15353   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15354   if (!SWIG_IsOK(res1
)) { 
15355     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15357   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15358   res2 
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0); 
15359   if (!SWIG_IsOK(res2
)) { 
15360     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "2"" of type '" "void *""'");  
15363     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15364     (arg1
)->AddRefDocument(arg2
); 
15365     wxPyEndAllowThreads(__tstate
); 
15366     if (PyErr_Occurred()) SWIG_fail
; 
15368   resultobj 
= SWIG_Py_Void(); 
15375 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ReleaseDocument(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15376   PyObject 
*resultobj 
= 0; 
15377   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15378   void *arg2 
= (void *) 0 ; 
15382   PyObject 
* obj0 
= 0 ; 
15383   PyObject 
* obj1 
= 0 ; 
15384   char *  kwnames
[] = { 
15385     (char *) "self",(char *) "docPointer", NULL 
 
15388   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReleaseDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15389   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15390   if (!SWIG_IsOK(res1
)) { 
15391     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15393   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15394   res2 
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0); 
15395   if (!SWIG_IsOK(res2
)) { 
15396     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "2"" of type '" "void *""'");  
15399     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15400     (arg1
)->ReleaseDocument(arg2
); 
15401     wxPyEndAllowThreads(__tstate
); 
15402     if (PyErr_Occurred()) SWIG_fail
; 
15404   resultobj 
= SWIG_Py_Void(); 
15411 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetModEventMask(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15412   PyObject 
*resultobj 
= 0; 
15413   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15417   PyObject 
*swig_obj
[1] ; 
15419   if (!args
) SWIG_fail
; 
15420   swig_obj
[0] = args
; 
15421   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15422   if (!SWIG_IsOK(res1
)) { 
15423     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15425   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15427     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15428     result 
= (int)(arg1
)->GetModEventMask(); 
15429     wxPyEndAllowThreads(__tstate
); 
15430     if (PyErr_Occurred()) SWIG_fail
; 
15432   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15439 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSTCFocus(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15440   PyObject 
*resultobj 
= 0; 
15441   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15447   PyObject 
* obj0 
= 0 ; 
15448   PyObject 
* obj1 
= 0 ; 
15449   char *  kwnames
[] = { 
15450     (char *) "self",(char *) "focus", NULL 
 
15453   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCFocus",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15454   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15455   if (!SWIG_IsOK(res1
)) { 
15456     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15458   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15459   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
15460   if (!SWIG_IsOK(ecode2
)) { 
15461     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "2"" of type '" "bool""'"); 
15463   arg2 
= static_cast< bool >(val2
); 
15465     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15466     (arg1
)->SetSTCFocus(arg2
); 
15467     wxPyEndAllowThreads(__tstate
); 
15468     if (PyErr_Occurred()) SWIG_fail
; 
15470   resultobj 
= SWIG_Py_Void(); 
15477 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSTCFocus(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15478   PyObject 
*resultobj 
= 0; 
15479   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15483   PyObject 
*swig_obj
[1] ; 
15485   if (!args
) SWIG_fail
; 
15486   swig_obj
[0] = args
; 
15487   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15488   if (!SWIG_IsOK(res1
)) { 
15489     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15491   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15493     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15494     result 
= (bool)(arg1
)->GetSTCFocus(); 
15495     wxPyEndAllowThreads(__tstate
); 
15496     if (PyErr_Occurred()) SWIG_fail
; 
15499     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15507 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetStatus(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15508   PyObject 
*resultobj 
= 0; 
15509   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15515   PyObject 
* obj0 
= 0 ; 
15516   PyObject 
* obj1 
= 0 ; 
15517   char *  kwnames
[] = { 
15518     (char *) "self",(char *) "statusCode", NULL 
 
15521   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15522   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15523   if (!SWIG_IsOK(res1
)) { 
15524     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15526   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15527   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15528   if (!SWIG_IsOK(ecode2
)) { 
15529     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "2"" of type '" "int""'"); 
15531   arg2 
= static_cast< int >(val2
); 
15533     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15534     (arg1
)->SetStatus(arg2
); 
15535     wxPyEndAllowThreads(__tstate
); 
15536     if (PyErr_Occurred()) SWIG_fail
; 
15538   resultobj 
= SWIG_Py_Void(); 
15545 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetStatus(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15546   PyObject 
*resultobj 
= 0; 
15547   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15551   PyObject 
*swig_obj
[1] ; 
15553   if (!args
) SWIG_fail
; 
15554   swig_obj
[0] = args
; 
15555   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15556   if (!SWIG_IsOK(res1
)) { 
15557     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15559   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15561     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15562     result 
= (int)(arg1
)->GetStatus(); 
15563     wxPyEndAllowThreads(__tstate
); 
15564     if (PyErr_Occurred()) SWIG_fail
; 
15566   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15573 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMouseDownCaptures(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15574   PyObject 
*resultobj 
= 0; 
15575   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15581   PyObject 
* obj0 
= 0 ; 
15582   PyObject 
* obj1 
= 0 ; 
15583   char *  kwnames
[] = { 
15584     (char *) "self",(char *) "captures", NULL 
 
15587   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDownCaptures",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15588   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15589   if (!SWIG_IsOK(res1
)) { 
15590     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15592   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15593   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
15594   if (!SWIG_IsOK(ecode2
)) { 
15595     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "2"" of type '" "bool""'"); 
15597   arg2 
= static_cast< bool >(val2
); 
15599     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15600     (arg1
)->SetMouseDownCaptures(arg2
); 
15601     wxPyEndAllowThreads(__tstate
); 
15602     if (PyErr_Occurred()) SWIG_fail
; 
15604   resultobj 
= SWIG_Py_Void(); 
15611 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetMouseDownCaptures(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15612   PyObject 
*resultobj 
= 0; 
15613   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15617   PyObject 
*swig_obj
[1] ; 
15619   if (!args
) SWIG_fail
; 
15620   swig_obj
[0] = args
; 
15621   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15622   if (!SWIG_IsOK(res1
)) { 
15623     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15625   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15627     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15628     result 
= (bool)(arg1
)->GetMouseDownCaptures(); 
15629     wxPyEndAllowThreads(__tstate
); 
15630     if (PyErr_Occurred()) SWIG_fail
; 
15633     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
15641 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSTCCursor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15642   PyObject 
*resultobj 
= 0; 
15643   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15649   PyObject 
* obj0 
= 0 ; 
15650   PyObject 
* obj1 
= 0 ; 
15651   char *  kwnames
[] = { 
15652     (char *) "self",(char *) "cursorType", NULL 
 
15655   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCCursor",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15656   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15657   if (!SWIG_IsOK(res1
)) { 
15658     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15660   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15661   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15662   if (!SWIG_IsOK(ecode2
)) { 
15663     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "2"" of type '" "int""'"); 
15665   arg2 
= static_cast< int >(val2
); 
15667     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15668     (arg1
)->SetSTCCursor(arg2
); 
15669     wxPyEndAllowThreads(__tstate
); 
15670     if (PyErr_Occurred()) SWIG_fail
; 
15672   resultobj 
= SWIG_Py_Void(); 
15679 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSTCCursor(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15680   PyObject 
*resultobj 
= 0; 
15681   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15685   PyObject 
*swig_obj
[1] ; 
15687   if (!args
) SWIG_fail
; 
15688   swig_obj
[0] = args
; 
15689   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15690   if (!SWIG_IsOK(res1
)) { 
15691     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15693   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15695     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15696     result 
= (int)(arg1
)->GetSTCCursor(); 
15697     wxPyEndAllowThreads(__tstate
); 
15698     if (PyErr_Occurred()) SWIG_fail
; 
15700   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15707 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetControlCharSymbol(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15708   PyObject 
*resultobj 
= 0; 
15709   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15715   PyObject 
* obj0 
= 0 ; 
15716   PyObject 
* obj1 
= 0 ; 
15717   char *  kwnames
[] = { 
15718     (char *) "self",(char *) "symbol", NULL 
 
15721   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetControlCharSymbol",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15722   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15723   if (!SWIG_IsOK(res1
)) { 
15724     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15726   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15727   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15728   if (!SWIG_IsOK(ecode2
)) { 
15729     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "2"" of type '" "int""'"); 
15731   arg2 
= static_cast< int >(val2
); 
15733     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15734     (arg1
)->SetControlCharSymbol(arg2
); 
15735     wxPyEndAllowThreads(__tstate
); 
15736     if (PyErr_Occurred()) SWIG_fail
; 
15738   resultobj 
= SWIG_Py_Void(); 
15745 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetControlCharSymbol(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15746   PyObject 
*resultobj 
= 0; 
15747   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15751   PyObject 
*swig_obj
[1] ; 
15753   if (!args
) SWIG_fail
; 
15754   swig_obj
[0] = args
; 
15755   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15756   if (!SWIG_IsOK(res1
)) { 
15757     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15759   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15761     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15762     result 
= (int)(arg1
)->GetControlCharSymbol(); 
15763     wxPyEndAllowThreads(__tstate
); 
15764     if (PyErr_Occurred()) SWIG_fail
; 
15766   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
15773 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordPartLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15774   PyObject 
*resultobj 
= 0; 
15775   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15778   PyObject 
*swig_obj
[1] ; 
15780   if (!args
) SWIG_fail
; 
15781   swig_obj
[0] = args
; 
15782   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15783   if (!SWIG_IsOK(res1
)) { 
15784     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15786   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15788     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15789     (arg1
)->WordPartLeft(); 
15790     wxPyEndAllowThreads(__tstate
); 
15791     if (PyErr_Occurred()) SWIG_fail
; 
15793   resultobj 
= SWIG_Py_Void(); 
15800 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordPartLeftExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15801   PyObject 
*resultobj 
= 0; 
15802   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15805   PyObject 
*swig_obj
[1] ; 
15807   if (!args
) SWIG_fail
; 
15808   swig_obj
[0] = args
; 
15809   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15810   if (!SWIG_IsOK(res1
)) { 
15811     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15813   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15815     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15816     (arg1
)->WordPartLeftExtend(); 
15817     wxPyEndAllowThreads(__tstate
); 
15818     if (PyErr_Occurred()) SWIG_fail
; 
15820   resultobj 
= SWIG_Py_Void(); 
15827 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordPartRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15828   PyObject 
*resultobj 
= 0; 
15829   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15832   PyObject 
*swig_obj
[1] ; 
15834   if (!args
) SWIG_fail
; 
15835   swig_obj
[0] = args
; 
15836   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15837   if (!SWIG_IsOK(res1
)) { 
15838     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15840   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15842     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15843     (arg1
)->WordPartRight(); 
15844     wxPyEndAllowThreads(__tstate
); 
15845     if (PyErr_Occurred()) SWIG_fail
; 
15847   resultobj 
= SWIG_Py_Void(); 
15854 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordPartRightExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15855   PyObject 
*resultobj 
= 0; 
15856   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15859   PyObject 
*swig_obj
[1] ; 
15861   if (!args
) SWIG_fail
; 
15862   swig_obj
[0] = args
; 
15863   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15864   if (!SWIG_IsOK(res1
)) { 
15865     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15867   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15869     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15870     (arg1
)->WordPartRightExtend(); 
15871     wxPyEndAllowThreads(__tstate
); 
15872     if (PyErr_Occurred()) SWIG_fail
; 
15874   resultobj 
= SWIG_Py_Void(); 
15881 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetVisiblePolicy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15882   PyObject 
*resultobj 
= 0; 
15883   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15892   PyObject 
* obj0 
= 0 ; 
15893   PyObject 
* obj1 
= 0 ; 
15894   PyObject 
* obj2 
= 0 ; 
15895   char *  kwnames
[] = { 
15896     (char *) "self",(char *) "visiblePolicy",(char *) "visibleSlop", NULL 
 
15899   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetVisiblePolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
15900   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15901   if (!SWIG_IsOK(res1
)) { 
15902     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15904   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15905   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
15906   if (!SWIG_IsOK(ecode2
)) { 
15907     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "2"" of type '" "int""'"); 
15909   arg2 
= static_cast< int >(val2
); 
15910   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
15911   if (!SWIG_IsOK(ecode3
)) { 
15912     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "3"" of type '" "int""'"); 
15914   arg3 
= static_cast< int >(val3
); 
15916     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15917     (arg1
)->SetVisiblePolicy(arg2
,arg3
); 
15918     wxPyEndAllowThreads(__tstate
); 
15919     if (PyErr_Occurred()) SWIG_fail
; 
15921   resultobj 
= SWIG_Py_Void(); 
15928 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DelLineLeft(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15929   PyObject 
*resultobj 
= 0; 
15930   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15933   PyObject 
*swig_obj
[1] ; 
15935   if (!args
) SWIG_fail
; 
15936   swig_obj
[0] = args
; 
15937   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15938   if (!SWIG_IsOK(res1
)) { 
15939     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15941   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15943     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15944     (arg1
)->DelLineLeft(); 
15945     wxPyEndAllowThreads(__tstate
); 
15946     if (PyErr_Occurred()) SWIG_fail
; 
15948   resultobj 
= SWIG_Py_Void(); 
15955 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DelLineRight(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
15956   PyObject 
*resultobj 
= 0; 
15957   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15960   PyObject 
*swig_obj
[1] ; 
15962   if (!args
) SWIG_fail
; 
15963   swig_obj
[0] = args
; 
15964   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15965   if (!SWIG_IsOK(res1
)) { 
15966     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
15968   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
15970     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
15971     (arg1
)->DelLineRight(); 
15972     wxPyEndAllowThreads(__tstate
); 
15973     if (PyErr_Occurred()) SWIG_fail
; 
15975   resultobj 
= SWIG_Py_Void(); 
15982 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetXOffset(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
15983   PyObject 
*resultobj 
= 0; 
15984   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
15990   PyObject 
* obj0 
= 0 ; 
15991   PyObject 
* obj1 
= 0 ; 
15992   char *  kwnames
[] = { 
15993     (char *) "self",(char *) "newOffset", NULL 
 
15996   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetXOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
15997   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
15998   if (!SWIG_IsOK(res1
)) { 
15999     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16001   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16002   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16003   if (!SWIG_IsOK(ecode2
)) { 
16004     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "2"" of type '" "int""'"); 
16006   arg2 
= static_cast< int >(val2
); 
16008     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16009     (arg1
)->SetXOffset(arg2
); 
16010     wxPyEndAllowThreads(__tstate
); 
16011     if (PyErr_Occurred()) SWIG_fail
; 
16013   resultobj 
= SWIG_Py_Void(); 
16020 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetXOffset(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16021   PyObject 
*resultobj 
= 0; 
16022   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16026   PyObject 
*swig_obj
[1] ; 
16028   if (!args
) SWIG_fail
; 
16029   swig_obj
[0] = args
; 
16030   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16031   if (!SWIG_IsOK(res1
)) { 
16032     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16034   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16036     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16037     result 
= (int)(arg1
)->GetXOffset(); 
16038     wxPyEndAllowThreads(__tstate
); 
16039     if (PyErr_Occurred()) SWIG_fail
; 
16041   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16048 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ChooseCaretX(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16049   PyObject 
*resultobj 
= 0; 
16050   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16053   PyObject 
*swig_obj
[1] ; 
16055   if (!args
) SWIG_fail
; 
16056   swig_obj
[0] = args
; 
16057   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16058   if (!SWIG_IsOK(res1
)) { 
16059     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ChooseCaretX" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16061   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16063     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16064     (arg1
)->ChooseCaretX(); 
16065     wxPyEndAllowThreads(__tstate
); 
16066     if (PyErr_Occurred()) SWIG_fail
; 
16068   resultobj 
= SWIG_Py_Void(); 
16075 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetXCaretPolicy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16076   PyObject 
*resultobj 
= 0; 
16077   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16086   PyObject 
* obj0 
= 0 ; 
16087   PyObject 
* obj1 
= 0 ; 
16088   PyObject 
* obj2 
= 0 ; 
16089   char *  kwnames
[] = { 
16090     (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL 
 
16093   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetXCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16094   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16095   if (!SWIG_IsOK(res1
)) { 
16096     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16098   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16099   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16100   if (!SWIG_IsOK(ecode2
)) { 
16101     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "2"" of type '" "int""'"); 
16103   arg2 
= static_cast< int >(val2
); 
16104   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
16105   if (!SWIG_IsOK(ecode3
)) { 
16106     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "3"" of type '" "int""'"); 
16108   arg3 
= static_cast< int >(val3
); 
16110     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16111     (arg1
)->SetXCaretPolicy(arg2
,arg3
); 
16112     wxPyEndAllowThreads(__tstate
); 
16113     if (PyErr_Occurred()) SWIG_fail
; 
16115   resultobj 
= SWIG_Py_Void(); 
16122 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetYCaretPolicy(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16123   PyObject 
*resultobj 
= 0; 
16124   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16133   PyObject 
* obj0 
= 0 ; 
16134   PyObject 
* obj1 
= 0 ; 
16135   PyObject 
* obj2 
= 0 ; 
16136   char *  kwnames
[] = { 
16137     (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL 
 
16140   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetYCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16141   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16142   if (!SWIG_IsOK(res1
)) { 
16143     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16145   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16146   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16147   if (!SWIG_IsOK(ecode2
)) { 
16148     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "2"" of type '" "int""'"); 
16150   arg2 
= static_cast< int >(val2
); 
16151   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
16152   if (!SWIG_IsOK(ecode3
)) { 
16153     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "3"" of type '" "int""'"); 
16155   arg3 
= static_cast< int >(val3
); 
16157     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16158     (arg1
)->SetYCaretPolicy(arg2
,arg3
); 
16159     wxPyEndAllowThreads(__tstate
); 
16160     if (PyErr_Occurred()) SWIG_fail
; 
16162   resultobj 
= SWIG_Py_Void(); 
16169 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetPrintWrapMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16170   PyObject 
*resultobj 
= 0; 
16171   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16177   PyObject 
* obj0 
= 0 ; 
16178   PyObject 
* obj1 
= 0 ; 
16179   char *  kwnames
[] = { 
16180     (char *) "self",(char *) "mode", NULL 
 
16183   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16184   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16185   if (!SWIG_IsOK(res1
)) { 
16186     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16188   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16189   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16190   if (!SWIG_IsOK(ecode2
)) { 
16191     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "2"" of type '" "int""'"); 
16193   arg2 
= static_cast< int >(val2
); 
16195     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16196     (arg1
)->SetPrintWrapMode(arg2
); 
16197     wxPyEndAllowThreads(__tstate
); 
16198     if (PyErr_Occurred()) SWIG_fail
; 
16200   resultobj 
= SWIG_Py_Void(); 
16207 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPrintWrapMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16208   PyObject 
*resultobj 
= 0; 
16209   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16213   PyObject 
*swig_obj
[1] ; 
16215   if (!args
) SWIG_fail
; 
16216   swig_obj
[0] = args
; 
16217   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16218   if (!SWIG_IsOK(res1
)) { 
16219     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16221   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16223     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16224     result 
= (int)(arg1
)->GetPrintWrapMode(); 
16225     wxPyEndAllowThreads(__tstate
); 
16226     if (PyErr_Occurred()) SWIG_fail
; 
16228   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16235 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHotspotActiveForeground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16236   PyObject 
*resultobj 
= 0; 
16237   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16239   wxColour 
*arg3 
= 0 ; 
16245   PyObject 
* obj0 
= 0 ; 
16246   PyObject 
* obj1 
= 0 ; 
16247   PyObject 
* obj2 
= 0 ; 
16248   char *  kwnames
[] = { 
16249     (char *) "self",(char *) "useSetting",(char *) "fore", NULL 
 
16252   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16253   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16254   if (!SWIG_IsOK(res1
)) { 
16255     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16257   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16258   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
16259   if (!SWIG_IsOK(ecode2
)) { 
16260     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "2"" of type '" "bool""'"); 
16262   arg2 
= static_cast< bool >(val2
); 
16265     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
16268     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16269     (arg1
)->SetHotspotActiveForeground(arg2
,(wxColour 
const &)*arg3
); 
16270     wxPyEndAllowThreads(__tstate
); 
16271     if (PyErr_Occurred()) SWIG_fail
; 
16273   resultobj 
= SWIG_Py_Void(); 
16280 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHotspotActiveBackground(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16281   PyObject 
*resultobj 
= 0; 
16282   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16284   wxColour 
*arg3 
= 0 ; 
16290   PyObject 
* obj0 
= 0 ; 
16291   PyObject 
* obj1 
= 0 ; 
16292   PyObject 
* obj2 
= 0 ; 
16293   char *  kwnames
[] = { 
16294     (char *) "self",(char *) "useSetting",(char *) "back", NULL 
 
16297   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16298   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16299   if (!SWIG_IsOK(res1
)) { 
16300     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16302   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16303   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
16304   if (!SWIG_IsOK(ecode2
)) { 
16305     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "2"" of type '" "bool""'"); 
16307   arg2 
= static_cast< bool >(val2
); 
16310     if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
; 
16313     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16314     (arg1
)->SetHotspotActiveBackground(arg2
,(wxColour 
const &)*arg3
); 
16315     wxPyEndAllowThreads(__tstate
); 
16316     if (PyErr_Occurred()) SWIG_fail
; 
16318   resultobj 
= SWIG_Py_Void(); 
16325 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHotspotActiveUnderline(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16326   PyObject 
*resultobj 
= 0; 
16327   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16333   PyObject 
* obj0 
= 0 ; 
16334   PyObject 
* obj1 
= 0 ; 
16335   char *  kwnames
[] = { 
16336     (char *) "self",(char *) "underline", NULL 
 
16339   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotActiveUnderline",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16340   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16341   if (!SWIG_IsOK(res1
)) { 
16342     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16344   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16345   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
16346   if (!SWIG_IsOK(ecode2
)) { 
16347     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "2"" of type '" "bool""'"); 
16349   arg2 
= static_cast< bool >(val2
); 
16351     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16352     (arg1
)->SetHotspotActiveUnderline(arg2
); 
16353     wxPyEndAllowThreads(__tstate
); 
16354     if (PyErr_Occurred()) SWIG_fail
; 
16356   resultobj 
= SWIG_Py_Void(); 
16363 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHotspotSingleLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16364   PyObject 
*resultobj 
= 0; 
16365   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16371   PyObject 
* obj0 
= 0 ; 
16372   PyObject 
* obj1 
= 0 ; 
16373   char *  kwnames
[] = { 
16374     (char *) "self",(char *) "singleLine", NULL 
 
16377   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotSingleLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16378   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16379   if (!SWIG_IsOK(res1
)) { 
16380     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16382   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16383   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
16384   if (!SWIG_IsOK(ecode2
)) { 
16385     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "2"" of type '" "bool""'"); 
16387   arg2 
= static_cast< bool >(val2
); 
16389     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16390     (arg1
)->SetHotspotSingleLine(arg2
); 
16391     wxPyEndAllowThreads(__tstate
); 
16392     if (PyErr_Occurred()) SWIG_fail
; 
16394   resultobj 
= SWIG_Py_Void(); 
16401 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ParaDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16402   PyObject 
*resultobj 
= 0; 
16403   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16406   PyObject 
*swig_obj
[1] ; 
16408   if (!args
) SWIG_fail
; 
16409   swig_obj
[0] = args
; 
16410   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16411   if (!SWIG_IsOK(res1
)) { 
16412     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16414   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16416     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16417     (arg1
)->ParaDown(); 
16418     wxPyEndAllowThreads(__tstate
); 
16419     if (PyErr_Occurred()) SWIG_fail
; 
16421   resultobj 
= SWIG_Py_Void(); 
16428 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ParaDownExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16429   PyObject 
*resultobj 
= 0; 
16430   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16433   PyObject 
*swig_obj
[1] ; 
16435   if (!args
) SWIG_fail
; 
16436   swig_obj
[0] = args
; 
16437   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16438   if (!SWIG_IsOK(res1
)) { 
16439     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16441   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16443     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16444     (arg1
)->ParaDownExtend(); 
16445     wxPyEndAllowThreads(__tstate
); 
16446     if (PyErr_Occurred()) SWIG_fail
; 
16448   resultobj 
= SWIG_Py_Void(); 
16455 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ParaUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16456   PyObject 
*resultobj 
= 0; 
16457   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16460   PyObject 
*swig_obj
[1] ; 
16462   if (!args
) SWIG_fail
; 
16463   swig_obj
[0] = args
; 
16464   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16465   if (!SWIG_IsOK(res1
)) { 
16466     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16468   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16470     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16472     wxPyEndAllowThreads(__tstate
); 
16473     if (PyErr_Occurred()) SWIG_fail
; 
16475   resultobj 
= SWIG_Py_Void(); 
16482 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ParaUpExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16483   PyObject 
*resultobj 
= 0; 
16484   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16487   PyObject 
*swig_obj
[1] ; 
16489   if (!args
) SWIG_fail
; 
16490   swig_obj
[0] = args
; 
16491   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16492   if (!SWIG_IsOK(res1
)) { 
16493     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16495   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16497     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16498     (arg1
)->ParaUpExtend(); 
16499     wxPyEndAllowThreads(__tstate
); 
16500     if (PyErr_Occurred()) SWIG_fail
; 
16502   resultobj 
= SWIG_Py_Void(); 
16509 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PositionBefore(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16510   PyObject 
*resultobj 
= 0; 
16511   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16518   PyObject 
* obj0 
= 0 ; 
16519   PyObject 
* obj1 
= 0 ; 
16520   char *  kwnames
[] = { 
16521     (char *) "self",(char *) "pos", NULL 
 
16524   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionBefore",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16525   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16526   if (!SWIG_IsOK(res1
)) { 
16527     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16529   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16530   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16531   if (!SWIG_IsOK(ecode2
)) { 
16532     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "2"" of type '" "int""'"); 
16534   arg2 
= static_cast< int >(val2
); 
16536     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16537     result 
= (int)(arg1
)->PositionBefore(arg2
); 
16538     wxPyEndAllowThreads(__tstate
); 
16539     if (PyErr_Occurred()) SWIG_fail
; 
16541   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16548 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PositionAfter(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16549   PyObject 
*resultobj 
= 0; 
16550   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16557   PyObject 
* obj0 
= 0 ; 
16558   PyObject 
* obj1 
= 0 ; 
16559   char *  kwnames
[] = { 
16560     (char *) "self",(char *) "pos", NULL 
 
16563   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionAfter",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16564   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16565   if (!SWIG_IsOK(res1
)) { 
16566     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16568   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16569   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16570   if (!SWIG_IsOK(ecode2
)) { 
16571     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "2"" of type '" "int""'"); 
16573   arg2 
= static_cast< int >(val2
); 
16575     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16576     result 
= (int)(arg1
)->PositionAfter(arg2
); 
16577     wxPyEndAllowThreads(__tstate
); 
16578     if (PyErr_Occurred()) SWIG_fail
; 
16580   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16587 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CopyRange(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16588   PyObject 
*resultobj 
= 0; 
16589   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16598   PyObject 
* obj0 
= 0 ; 
16599   PyObject 
* obj1 
= 0 ; 
16600   PyObject 
* obj2 
= 0 ; 
16601   char *  kwnames
[] = { 
16602     (char *) "self",(char *) "start",(char *) "end", NULL 
 
16605   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16606   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16607   if (!SWIG_IsOK(res1
)) { 
16608     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16610   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16611   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16612   if (!SWIG_IsOK(ecode2
)) { 
16613     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "2"" of type '" "int""'"); 
16615   arg2 
= static_cast< int >(val2
); 
16616   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
16617   if (!SWIG_IsOK(ecode3
)) { 
16618     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "3"" of type '" "int""'"); 
16620   arg3 
= static_cast< int >(val3
); 
16622     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16623     (arg1
)->CopyRange(arg2
,arg3
); 
16624     wxPyEndAllowThreads(__tstate
); 
16625     if (PyErr_Occurred()) SWIG_fail
; 
16627   resultobj 
= SWIG_Py_Void(); 
16634 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CopyText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16635   PyObject 
*resultobj 
= 0; 
16636   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16638   wxString 
*arg3 
= 0 ; 
16643   bool temp3 
= false ; 
16644   PyObject 
* obj0 
= 0 ; 
16645   PyObject 
* obj1 
= 0 ; 
16646   PyObject 
* obj2 
= 0 ; 
16647   char *  kwnames
[] = { 
16648     (char *) "self",(char *) "length",(char *) "text", NULL 
 
16651   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
16652   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16653   if (!SWIG_IsOK(res1
)) { 
16654     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16656   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16657   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16658   if (!SWIG_IsOK(ecode2
)) { 
16659     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "2"" of type '" "int""'"); 
16661   arg2 
= static_cast< int >(val2
); 
16663     arg3 
= wxString_in_helper(obj2
); 
16664     if (arg3 
== NULL
) SWIG_fail
; 
16668     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16669     (arg1
)->CopyText(arg2
,(wxString 
const &)*arg3
); 
16670     wxPyEndAllowThreads(__tstate
); 
16671     if (PyErr_Occurred()) SWIG_fail
; 
16673   resultobj 
= SWIG_Py_Void(); 
16688 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetSelectionMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16689   PyObject 
*resultobj 
= 0; 
16690   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16696   PyObject 
* obj0 
= 0 ; 
16697   PyObject 
* obj1 
= 0 ; 
16698   char *  kwnames
[] = { 
16699     (char *) "self",(char *) "mode", NULL 
 
16702   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16703   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16704   if (!SWIG_IsOK(res1
)) { 
16705     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16707   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16708   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16709   if (!SWIG_IsOK(ecode2
)) { 
16710     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "2"" of type '" "int""'"); 
16712   arg2 
= static_cast< int >(val2
); 
16714     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16715     (arg1
)->SetSelectionMode(arg2
); 
16716     wxPyEndAllowThreads(__tstate
); 
16717     if (PyErr_Occurred()) SWIG_fail
; 
16719   resultobj 
= SWIG_Py_Void(); 
16726 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelectionMode(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16727   PyObject 
*resultobj 
= 0; 
16728   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16732   PyObject 
*swig_obj
[1] ; 
16734   if (!args
) SWIG_fail
; 
16735   swig_obj
[0] = args
; 
16736   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16737   if (!SWIG_IsOK(res1
)) { 
16738     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16740   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16742     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16743     result 
= (int)(arg1
)->GetSelectionMode(); 
16744     wxPyEndAllowThreads(__tstate
); 
16745     if (PyErr_Occurred()) SWIG_fail
; 
16747   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16754 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineSelStartPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16755   PyObject 
*resultobj 
= 0; 
16756   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16763   PyObject 
* obj0 
= 0 ; 
16764   PyObject 
* obj1 
= 0 ; 
16765   char *  kwnames
[] = { 
16766     (char *) "self",(char *) "line", NULL 
 
16769   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelStartPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16770   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16771   if (!SWIG_IsOK(res1
)) { 
16772     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16774   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16775   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16776   if (!SWIG_IsOK(ecode2
)) { 
16777     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "2"" of type '" "int""'"); 
16779   arg2 
= static_cast< int >(val2
); 
16781     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16782     result 
= (int)(arg1
)->GetLineSelStartPosition(arg2
); 
16783     wxPyEndAllowThreads(__tstate
); 
16784     if (PyErr_Occurred()) SWIG_fail
; 
16786   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16793 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineSelEndPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
16794   PyObject 
*resultobj 
= 0; 
16795   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16802   PyObject 
* obj0 
= 0 ; 
16803   PyObject 
* obj1 
= 0 ; 
16804   char *  kwnames
[] = { 
16805     (char *) "self",(char *) "line", NULL 
 
16808   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
16809   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16810   if (!SWIG_IsOK(res1
)) { 
16811     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16813   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16814   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
16815   if (!SWIG_IsOK(ecode2
)) { 
16816     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "2"" of type '" "int""'"); 
16818   arg2 
= static_cast< int >(val2
); 
16820     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16821     result 
= (int)(arg1
)->GetLineSelEndPosition(arg2
); 
16822     wxPyEndAllowThreads(__tstate
); 
16823     if (PyErr_Occurred()) SWIG_fail
; 
16825   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
16832 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineDownRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16833   PyObject 
*resultobj 
= 0; 
16834   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16837   PyObject 
*swig_obj
[1] ; 
16839   if (!args
) SWIG_fail
; 
16840   swig_obj
[0] = args
; 
16841   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16842   if (!SWIG_IsOK(res1
)) { 
16843     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16845   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16847     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16848     (arg1
)->LineDownRectExtend(); 
16849     wxPyEndAllowThreads(__tstate
); 
16850     if (PyErr_Occurred()) SWIG_fail
; 
16852   resultobj 
= SWIG_Py_Void(); 
16859 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineUpRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16860   PyObject 
*resultobj 
= 0; 
16861   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16864   PyObject 
*swig_obj
[1] ; 
16866   if (!args
) SWIG_fail
; 
16867   swig_obj
[0] = args
; 
16868   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16869   if (!SWIG_IsOK(res1
)) { 
16870     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16872   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16874     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16875     (arg1
)->LineUpRectExtend(); 
16876     wxPyEndAllowThreads(__tstate
); 
16877     if (PyErr_Occurred()) SWIG_fail
; 
16879   resultobj 
= SWIG_Py_Void(); 
16886 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharLeftRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16887   PyObject 
*resultobj 
= 0; 
16888   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16891   PyObject 
*swig_obj
[1] ; 
16893   if (!args
) SWIG_fail
; 
16894   swig_obj
[0] = args
; 
16895   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16896   if (!SWIG_IsOK(res1
)) { 
16897     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16899   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16901     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16902     (arg1
)->CharLeftRectExtend(); 
16903     wxPyEndAllowThreads(__tstate
); 
16904     if (PyErr_Occurred()) SWIG_fail
; 
16906   resultobj 
= SWIG_Py_Void(); 
16913 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CharRightRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16914   PyObject 
*resultobj 
= 0; 
16915   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16918   PyObject 
*swig_obj
[1] ; 
16920   if (!args
) SWIG_fail
; 
16921   swig_obj
[0] = args
; 
16922   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16923   if (!SWIG_IsOK(res1
)) { 
16924     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16926   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16928     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16929     (arg1
)->CharRightRectExtend(); 
16930     wxPyEndAllowThreads(__tstate
); 
16931     if (PyErr_Occurred()) SWIG_fail
; 
16933   resultobj 
= SWIG_Py_Void(); 
16940 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_HomeRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16941   PyObject 
*resultobj 
= 0; 
16942   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16945   PyObject 
*swig_obj
[1] ; 
16947   if (!args
) SWIG_fail
; 
16948   swig_obj
[0] = args
; 
16949   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16950   if (!SWIG_IsOK(res1
)) { 
16951     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16953   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16955     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16956     (arg1
)->HomeRectExtend(); 
16957     wxPyEndAllowThreads(__tstate
); 
16958     if (PyErr_Occurred()) SWIG_fail
; 
16960   resultobj 
= SWIG_Py_Void(); 
16967 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_VCHomeRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16968   PyObject 
*resultobj 
= 0; 
16969   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16972   PyObject 
*swig_obj
[1] ; 
16974   if (!args
) SWIG_fail
; 
16975   swig_obj
[0] = args
; 
16976   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
16977   if (!SWIG_IsOK(res1
)) { 
16978     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
16980   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
16982     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
16983     (arg1
)->VCHomeRectExtend(); 
16984     wxPyEndAllowThreads(__tstate
); 
16985     if (PyErr_Occurred()) SWIG_fail
; 
16987   resultobj 
= SWIG_Py_Void(); 
16994 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LineEndRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
16995   PyObject 
*resultobj 
= 0; 
16996   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
16999   PyObject 
*swig_obj
[1] ; 
17001   if (!args
) SWIG_fail
; 
17002   swig_obj
[0] = args
; 
17003   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17004   if (!SWIG_IsOK(res1
)) { 
17005     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17007   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17009     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17010     (arg1
)->LineEndRectExtend(); 
17011     wxPyEndAllowThreads(__tstate
); 
17012     if (PyErr_Occurred()) SWIG_fail
; 
17014   resultobj 
= SWIG_Py_Void(); 
17021 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageUpRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17022   PyObject 
*resultobj 
= 0; 
17023   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17026   PyObject 
*swig_obj
[1] ; 
17028   if (!args
) SWIG_fail
; 
17029   swig_obj
[0] = args
; 
17030   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17031   if (!SWIG_IsOK(res1
)) { 
17032     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17034   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17036     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17037     (arg1
)->PageUpRectExtend(); 
17038     wxPyEndAllowThreads(__tstate
); 
17039     if (PyErr_Occurred()) SWIG_fail
; 
17041   resultobj 
= SWIG_Py_Void(); 
17048 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PageDownRectExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17049   PyObject 
*resultobj 
= 0; 
17050   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17053   PyObject 
*swig_obj
[1] ; 
17055   if (!args
) SWIG_fail
; 
17056   swig_obj
[0] = args
; 
17057   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17058   if (!SWIG_IsOK(res1
)) { 
17059     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17061   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17063     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17064     (arg1
)->PageDownRectExtend(); 
17065     wxPyEndAllowThreads(__tstate
); 
17066     if (PyErr_Occurred()) SWIG_fail
; 
17068   resultobj 
= SWIG_Py_Void(); 
17075 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StutteredPageUp(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17076   PyObject 
*resultobj 
= 0; 
17077   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17080   PyObject 
*swig_obj
[1] ; 
17082   if (!args
) SWIG_fail
; 
17083   swig_obj
[0] = args
; 
17084   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17085   if (!SWIG_IsOK(res1
)) { 
17086     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17088   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17090     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17091     (arg1
)->StutteredPageUp(); 
17092     wxPyEndAllowThreads(__tstate
); 
17093     if (PyErr_Occurred()) SWIG_fail
; 
17095   resultobj 
= SWIG_Py_Void(); 
17102 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StutteredPageUpExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17103   PyObject 
*resultobj 
= 0; 
17104   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17107   PyObject 
*swig_obj
[1] ; 
17109   if (!args
) SWIG_fail
; 
17110   swig_obj
[0] = args
; 
17111   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17112   if (!SWIG_IsOK(res1
)) { 
17113     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17115   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17117     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17118     (arg1
)->StutteredPageUpExtend(); 
17119     wxPyEndAllowThreads(__tstate
); 
17120     if (PyErr_Occurred()) SWIG_fail
; 
17122   resultobj 
= SWIG_Py_Void(); 
17129 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StutteredPageDown(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17130   PyObject 
*resultobj 
= 0; 
17131   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17134   PyObject 
*swig_obj
[1] ; 
17136   if (!args
) SWIG_fail
; 
17137   swig_obj
[0] = args
; 
17138   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17139   if (!SWIG_IsOK(res1
)) { 
17140     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17142   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17144     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17145     (arg1
)->StutteredPageDown(); 
17146     wxPyEndAllowThreads(__tstate
); 
17147     if (PyErr_Occurred()) SWIG_fail
; 
17149   resultobj 
= SWIG_Py_Void(); 
17156 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StutteredPageDownExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17157   PyObject 
*resultobj 
= 0; 
17158   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17161   PyObject 
*swig_obj
[1] ; 
17163   if (!args
) SWIG_fail
; 
17164   swig_obj
[0] = args
; 
17165   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17166   if (!SWIG_IsOK(res1
)) { 
17167     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17169   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17171     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17172     (arg1
)->StutteredPageDownExtend(); 
17173     wxPyEndAllowThreads(__tstate
); 
17174     if (PyErr_Occurred()) SWIG_fail
; 
17176   resultobj 
= SWIG_Py_Void(); 
17183 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordLeftEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17184   PyObject 
*resultobj 
= 0; 
17185   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17188   PyObject 
*swig_obj
[1] ; 
17190   if (!args
) SWIG_fail
; 
17191   swig_obj
[0] = args
; 
17192   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17193   if (!SWIG_IsOK(res1
)) { 
17194     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17196   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17198     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17199     (arg1
)->WordLeftEnd(); 
17200     wxPyEndAllowThreads(__tstate
); 
17201     if (PyErr_Occurred()) SWIG_fail
; 
17203   resultobj 
= SWIG_Py_Void(); 
17210 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordLeftEndExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17211   PyObject 
*resultobj 
= 0; 
17212   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17215   PyObject 
*swig_obj
[1] ; 
17217   if (!args
) SWIG_fail
; 
17218   swig_obj
[0] = args
; 
17219   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17220   if (!SWIG_IsOK(res1
)) { 
17221     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17223   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17225     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17226     (arg1
)->WordLeftEndExtend(); 
17227     wxPyEndAllowThreads(__tstate
); 
17228     if (PyErr_Occurred()) SWIG_fail
; 
17230   resultobj 
= SWIG_Py_Void(); 
17237 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordRightEnd(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17238   PyObject 
*resultobj 
= 0; 
17239   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17242   PyObject 
*swig_obj
[1] ; 
17244   if (!args
) SWIG_fail
; 
17245   swig_obj
[0] = args
; 
17246   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17247   if (!SWIG_IsOK(res1
)) { 
17248     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17250   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17252     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17253     (arg1
)->WordRightEnd(); 
17254     wxPyEndAllowThreads(__tstate
); 
17255     if (PyErr_Occurred()) SWIG_fail
; 
17257   resultobj 
= SWIG_Py_Void(); 
17264 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_WordRightEndExtend(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17265   PyObject 
*resultobj 
= 0; 
17266   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17269   PyObject 
*swig_obj
[1] ; 
17271   if (!args
) SWIG_fail
; 
17272   swig_obj
[0] = args
; 
17273   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17274   if (!SWIG_IsOK(res1
)) { 
17275     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17277   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17279     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17280     (arg1
)->WordRightEndExtend(); 
17281     wxPyEndAllowThreads(__tstate
); 
17282     if (PyErr_Occurred()) SWIG_fail
; 
17284   resultobj 
= SWIG_Py_Void(); 
17291 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetWhitespaceChars(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17292   PyObject 
*resultobj 
= 0; 
17293   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17294   wxString 
*arg2 
= 0 ; 
17297   bool temp2 
= false ; 
17298   PyObject 
* obj0 
= 0 ; 
17299   PyObject 
* obj1 
= 0 ; 
17300   char *  kwnames
[] = { 
17301     (char *) "self",(char *) "characters", NULL 
 
17304   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWhitespaceChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17305   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17306   if (!SWIG_IsOK(res1
)) { 
17307     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17309   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17311     arg2 
= wxString_in_helper(obj1
); 
17312     if (arg2 
== NULL
) SWIG_fail
; 
17316     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17317     (arg1
)->SetWhitespaceChars((wxString 
const &)*arg2
); 
17318     wxPyEndAllowThreads(__tstate
); 
17319     if (PyErr_Occurred()) SWIG_fail
; 
17321   resultobj 
= SWIG_Py_Void(); 
17336 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCharsDefault(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17337   PyObject 
*resultobj 
= 0; 
17338   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17341   PyObject 
*swig_obj
[1] ; 
17343   if (!args
) SWIG_fail
; 
17344   swig_obj
[0] = args
; 
17345   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17346   if (!SWIG_IsOK(res1
)) { 
17347     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCharsDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17349   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17351     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17352     (arg1
)->SetCharsDefault(); 
17353     wxPyEndAllowThreads(__tstate
); 
17354     if (PyErr_Occurred()) SWIG_fail
; 
17356   resultobj 
= SWIG_Py_Void(); 
17363 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AutoCompGetCurrent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17364   PyObject 
*resultobj 
= 0; 
17365   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17369   PyObject 
*swig_obj
[1] ; 
17371   if (!args
) SWIG_fail
; 
17372   swig_obj
[0] = args
; 
17373   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17374   if (!SWIG_IsOK(res1
)) { 
17375     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCurrent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17377   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17379     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17380     result 
= (int)(arg1
)->AutoCompGetCurrent(); 
17381     wxPyEndAllowThreads(__tstate
); 
17382     if (PyErr_Occurred()) SWIG_fail
; 
17384   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
17391 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Allocate(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17392   PyObject 
*resultobj 
= 0; 
17393   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17399   PyObject 
* obj0 
= 0 ; 
17400   PyObject 
* obj1 
= 0 ; 
17401   char *  kwnames
[] = { 
17402     (char *) "self",(char *) "bytes", NULL 
 
17405   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_Allocate",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17406   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17407   if (!SWIG_IsOK(res1
)) { 
17408     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17410   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17411   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17412   if (!SWIG_IsOK(ecode2
)) { 
17413     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "2"" of type '" "int""'"); 
17415   arg2 
= static_cast< int >(val2
); 
17417     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17418     (arg1
)->Allocate(arg2
); 
17419     wxPyEndAllowThreads(__tstate
); 
17420     if (PyErr_Occurred()) SWIG_fail
; 
17422   resultobj 
= SWIG_Py_Void(); 
17429 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_FindColumn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17430   PyObject 
*resultobj 
= 0; 
17431   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17441   PyObject 
* obj0 
= 0 ; 
17442   PyObject 
* obj1 
= 0 ; 
17443   PyObject 
* obj2 
= 0 ; 
17444   char *  kwnames
[] = { 
17445     (char *) "self",(char *) "line",(char *) "column", NULL 
 
17448   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_FindColumn",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
17449   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17450   if (!SWIG_IsOK(res1
)) { 
17451     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17453   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17454   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17455   if (!SWIG_IsOK(ecode2
)) { 
17456     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "2"" of type '" "int""'"); 
17458   arg2 
= static_cast< int >(val2
); 
17459   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
17460   if (!SWIG_IsOK(ecode3
)) { 
17461     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "3"" of type '" "int""'"); 
17463   arg3 
= static_cast< int >(val3
); 
17465     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17466     result 
= (int)(arg1
)->FindColumn(arg2
,arg3
); 
17467     wxPyEndAllowThreads(__tstate
); 
17468     if (PyErr_Occurred()) SWIG_fail
; 
17470   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
17477 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretSticky(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17478   PyObject 
*resultobj 
= 0; 
17479   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17483   PyObject 
*swig_obj
[1] ; 
17485   if (!args
) SWIG_fail
; 
17486   swig_obj
[0] = args
; 
17487   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17488   if (!SWIG_IsOK(res1
)) { 
17489     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17491   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17493     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17494     result 
= (bool)(arg1
)->GetCaretSticky(); 
17495     wxPyEndAllowThreads(__tstate
); 
17496     if (PyErr_Occurred()) SWIG_fail
; 
17499     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17507 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretSticky(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17508   PyObject 
*resultobj 
= 0; 
17509   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17515   PyObject 
* obj0 
= 0 ; 
17516   PyObject 
* obj1 
= 0 ; 
17517   char *  kwnames
[] = { 
17518     (char *) "self",(char *) "useCaretStickyBehaviour", NULL 
 
17521   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretSticky",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17522   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17523   if (!SWIG_IsOK(res1
)) { 
17524     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17526   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17527   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17528   if (!SWIG_IsOK(ecode2
)) { 
17529     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "2"" of type '" "bool""'"); 
17531   arg2 
= static_cast< bool >(val2
); 
17533     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17534     (arg1
)->SetCaretSticky(arg2
); 
17535     wxPyEndAllowThreads(__tstate
); 
17536     if (PyErr_Occurred()) SWIG_fail
; 
17538   resultobj 
= SWIG_Py_Void(); 
17545 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ToggleCaretSticky(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17546   PyObject 
*resultobj 
= 0; 
17547   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17550   PyObject 
*swig_obj
[1] ; 
17552   if (!args
) SWIG_fail
; 
17553   swig_obj
[0] = args
; 
17554   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17555   if (!SWIG_IsOK(res1
)) { 
17556     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17558   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17560     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17561     (arg1
)->ToggleCaretSticky(); 
17562     wxPyEndAllowThreads(__tstate
); 
17563     if (PyErr_Occurred()) SWIG_fail
; 
17565   resultobj 
= SWIG_Py_Void(); 
17572 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetPasteConvertEndings(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17573   PyObject 
*resultobj 
= 0; 
17574   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17580   PyObject 
* obj0 
= 0 ; 
17581   PyObject 
* obj1 
= 0 ; 
17582   char *  kwnames
[] = { 
17583     (char *) "self",(char *) "convert", NULL 
 
17586   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPasteConvertEndings",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17587   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17588   if (!SWIG_IsOK(res1
)) { 
17589     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17591   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17592   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
17593   if (!SWIG_IsOK(ecode2
)) { 
17594     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "2"" of type '" "bool""'"); 
17596   arg2 
= static_cast< bool >(val2
); 
17598     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17599     (arg1
)->SetPasteConvertEndings(arg2
); 
17600     wxPyEndAllowThreads(__tstate
); 
17601     if (PyErr_Occurred()) SWIG_fail
; 
17603   resultobj 
= SWIG_Py_Void(); 
17610 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPasteConvertEndings(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17611   PyObject 
*resultobj 
= 0; 
17612   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17616   PyObject 
*swig_obj
[1] ; 
17618   if (!args
) SWIG_fail
; 
17619   swig_obj
[0] = args
; 
17620   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17621   if (!SWIG_IsOK(res1
)) { 
17622     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17624   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17626     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17627     result 
= (bool)(arg1
)->GetPasteConvertEndings(); 
17628     wxPyEndAllowThreads(__tstate
); 
17629     if (PyErr_Occurred()) SWIG_fail
; 
17632     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
17640 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SelectionDuplicate(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17641   PyObject 
*resultobj 
= 0; 
17642   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17645   PyObject 
*swig_obj
[1] ; 
17647   if (!args
) SWIG_fail
; 
17648   swig_obj
[0] = args
; 
17649   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17650   if (!SWIG_IsOK(res1
)) { 
17651     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17653   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17655     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17656     (arg1
)->SelectionDuplicate(); 
17657     wxPyEndAllowThreads(__tstate
); 
17658     if (PyErr_Occurred()) SWIG_fail
; 
17660   resultobj 
= SWIG_Py_Void(); 
17667 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetCaretLineBackAlpha(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17668   PyObject 
*resultobj 
= 0; 
17669   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17675   PyObject 
* obj0 
= 0 ; 
17676   PyObject 
* obj1 
= 0 ; 
17677   char *  kwnames
[] = { 
17678     (char *) "self",(char *) "alpha", NULL 
 
17681   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineBackAlpha",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17682   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17683   if (!SWIG_IsOK(res1
)) { 
17684     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineBackAlpha" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17686   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17687   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17688   if (!SWIG_IsOK(ecode2
)) { 
17689     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretLineBackAlpha" "', expected argument " "2"" of type '" "int""'"); 
17691   arg2 
= static_cast< int >(val2
); 
17693     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17694     (arg1
)->SetCaretLineBackAlpha(arg2
); 
17695     wxPyEndAllowThreads(__tstate
); 
17696     if (PyErr_Occurred()) SWIG_fail
; 
17698   resultobj 
= SWIG_Py_Void(); 
17705 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCaretLineBackAlpha(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17706   PyObject 
*resultobj 
= 0; 
17707   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17711   PyObject 
*swig_obj
[1] ; 
17713   if (!args
) SWIG_fail
; 
17714   swig_obj
[0] = args
; 
17715   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17716   if (!SWIG_IsOK(res1
)) { 
17717     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineBackAlpha" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17719   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17721     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17722     result 
= (int)(arg1
)->GetCaretLineBackAlpha(); 
17723     wxPyEndAllowThreads(__tstate
); 
17724     if (PyErr_Occurred()) SWIG_fail
; 
17726   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
17733 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StartRecord(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17734   PyObject 
*resultobj 
= 0; 
17735   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17738   PyObject 
*swig_obj
[1] ; 
17740   if (!args
) SWIG_fail
; 
17741   swig_obj
[0] = args
; 
17742   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17743   if (!SWIG_IsOK(res1
)) { 
17744     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17746   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17748     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17749     (arg1
)->StartRecord(); 
17750     wxPyEndAllowThreads(__tstate
); 
17751     if (PyErr_Occurred()) SWIG_fail
; 
17753   resultobj 
= SWIG_Py_Void(); 
17760 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StopRecord(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17761   PyObject 
*resultobj 
= 0; 
17762   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17765   PyObject 
*swig_obj
[1] ; 
17767   if (!args
) SWIG_fail
; 
17768   swig_obj
[0] = args
; 
17769   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17770   if (!SWIG_IsOK(res1
)) { 
17771     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StopRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17773   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17775     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17776     (arg1
)->StopRecord(); 
17777     wxPyEndAllowThreads(__tstate
); 
17778     if (PyErr_Occurred()) SWIG_fail
; 
17780   resultobj 
= SWIG_Py_Void(); 
17787 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLexer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17788   PyObject 
*resultobj 
= 0; 
17789   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17795   PyObject 
* obj0 
= 0 ; 
17796   PyObject 
* obj1 
= 0 ; 
17797   char *  kwnames
[] = { 
17798     (char *) "self",(char *) "lexer", NULL 
 
17801   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexer",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
17802   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17803   if (!SWIG_IsOK(res1
)) { 
17804     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17806   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17807   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17808   if (!SWIG_IsOK(ecode2
)) { 
17809     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "2"" of type '" "int""'"); 
17811   arg2 
= static_cast< int >(val2
); 
17813     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17814     (arg1
)->SetLexer(arg2
); 
17815     wxPyEndAllowThreads(__tstate
); 
17816     if (PyErr_Occurred()) SWIG_fail
; 
17818   resultobj 
= SWIG_Py_Void(); 
17825 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLexer(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
17826   PyObject 
*resultobj 
= 0; 
17827   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17831   PyObject 
*swig_obj
[1] ; 
17833   if (!args
) SWIG_fail
; 
17834   swig_obj
[0] = args
; 
17835   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17836   if (!SWIG_IsOK(res1
)) { 
17837     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17839   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17841     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17842     result 
= (int)(arg1
)->GetLexer(); 
17843     wxPyEndAllowThreads(__tstate
); 
17844     if (PyErr_Occurred()) SWIG_fail
; 
17846   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
17853 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_Colourise(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17854   PyObject 
*resultobj 
= 0; 
17855   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17864   PyObject 
* obj0 
= 0 ; 
17865   PyObject 
* obj1 
= 0 ; 
17866   PyObject 
* obj2 
= 0 ; 
17867   char *  kwnames
[] = { 
17868     (char *) "self",(char *) "start",(char *) "end", NULL 
 
17871   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_Colourise",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
17872   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17873   if (!SWIG_IsOK(res1
)) { 
17874     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17876   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17877   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17878   if (!SWIG_IsOK(ecode2
)) { 
17879     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "2"" of type '" "int""'"); 
17881   arg2 
= static_cast< int >(val2
); 
17882   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
17883   if (!SWIG_IsOK(ecode3
)) { 
17884     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "3"" of type '" "int""'"); 
17886   arg3 
= static_cast< int >(val3
); 
17888     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17889     (arg1
)->Colourise(arg2
,arg3
); 
17890     wxPyEndAllowThreads(__tstate
); 
17891     if (PyErr_Occurred()) SWIG_fail
; 
17893   resultobj 
= SWIG_Py_Void(); 
17900 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetProperty(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17901   PyObject 
*resultobj 
= 0; 
17902   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17903   wxString 
*arg2 
= 0 ; 
17904   wxString 
*arg3 
= 0 ; 
17907   bool temp2 
= false ; 
17908   bool temp3 
= false ; 
17909   PyObject 
* obj0 
= 0 ; 
17910   PyObject 
* obj1 
= 0 ; 
17911   PyObject 
* obj2 
= 0 ; 
17912   char *  kwnames
[] = { 
17913     (char *) "self",(char *) "key",(char *) "value", NULL 
 
17916   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetProperty",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
17917   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17918   if (!SWIG_IsOK(res1
)) { 
17919     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17921   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17923     arg2 
= wxString_in_helper(obj1
); 
17924     if (arg2 
== NULL
) SWIG_fail
; 
17928     arg3 
= wxString_in_helper(obj2
); 
17929     if (arg3 
== NULL
) SWIG_fail
; 
17933     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17934     (arg1
)->SetProperty((wxString 
const &)*arg2
,(wxString 
const &)*arg3
); 
17935     wxPyEndAllowThreads(__tstate
); 
17936     if (PyErr_Occurred()) SWIG_fail
; 
17938   resultobj 
= SWIG_Py_Void(); 
17961 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetKeyWords(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
17962   PyObject 
*resultobj 
= 0; 
17963   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
17965   wxString 
*arg3 
= 0 ; 
17970   bool temp3 
= false ; 
17971   PyObject 
* obj0 
= 0 ; 
17972   PyObject 
* obj1 
= 0 ; 
17973   PyObject 
* obj2 
= 0 ; 
17974   char *  kwnames
[] = { 
17975     (char *) "self",(char *) "keywordSet",(char *) "keyWords", NULL 
 
17978   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetKeyWords",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
17979   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
17980   if (!SWIG_IsOK(res1
)) { 
17981     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
17983   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
17984   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
17985   if (!SWIG_IsOK(ecode2
)) { 
17986     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "2"" of type '" "int""'"); 
17988   arg2 
= static_cast< int >(val2
); 
17990     arg3 
= wxString_in_helper(obj2
); 
17991     if (arg3 
== NULL
) SWIG_fail
; 
17995     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
17996     (arg1
)->SetKeyWords(arg2
,(wxString 
const &)*arg3
); 
17997     wxPyEndAllowThreads(__tstate
); 
17998     if (PyErr_Occurred()) SWIG_fail
; 
18000   resultobj 
= SWIG_Py_Void(); 
18015 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLexerLanguage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18016   PyObject 
*resultobj 
= 0; 
18017   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18018   wxString 
*arg2 
= 0 ; 
18021   bool temp2 
= false ; 
18022   PyObject 
* obj0 
= 0 ; 
18023   PyObject 
* obj1 
= 0 ; 
18024   char *  kwnames
[] = { 
18025     (char *) "self",(char *) "language", NULL 
 
18028   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexerLanguage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18029   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18030   if (!SWIG_IsOK(res1
)) { 
18031     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexerLanguage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18033   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18035     arg2 
= wxString_in_helper(obj1
); 
18036     if (arg2 
== NULL
) SWIG_fail
; 
18040     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18041     (arg1
)->SetLexerLanguage((wxString 
const &)*arg2
); 
18042     wxPyEndAllowThreads(__tstate
); 
18043     if (PyErr_Occurred()) SWIG_fail
; 
18045   resultobj 
= SWIG_Py_Void(); 
18060 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetProperty(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18061   PyObject 
*resultobj 
= 0; 
18062   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18063   wxString 
*arg2 
= 0 ; 
18067   bool temp2 
= false ; 
18068   PyObject 
* obj0 
= 0 ; 
18069   PyObject 
* obj1 
= 0 ; 
18070   char *  kwnames
[] = { 
18071     (char *) "self",(char *) "key", NULL 
 
18074   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetProperty",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18075   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18076   if (!SWIG_IsOK(res1
)) { 
18077     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18079   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18081     arg2 
= wxString_in_helper(obj1
); 
18082     if (arg2 
== NULL
) SWIG_fail
; 
18086     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18087     result 
= (arg1
)->GetProperty((wxString 
const &)*arg2
); 
18088     wxPyEndAllowThreads(__tstate
); 
18089     if (PyErr_Occurred()) SWIG_fail
; 
18093     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
18095     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
18112 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPropertyExpanded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18113   PyObject 
*resultobj 
= 0; 
18114   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18115   wxString 
*arg2 
= 0 ; 
18119   bool temp2 
= false ; 
18120   PyObject 
* obj0 
= 0 ; 
18121   PyObject 
* obj1 
= 0 ; 
18122   char *  kwnames
[] = { 
18123     (char *) "self",(char *) "key", NULL 
 
18126   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18127   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18128   if (!SWIG_IsOK(res1
)) { 
18129     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18131   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18133     arg2 
= wxString_in_helper(obj1
); 
18134     if (arg2 
== NULL
) SWIG_fail
; 
18138     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18139     result 
= (arg1
)->GetPropertyExpanded((wxString 
const &)*arg2
); 
18140     wxPyEndAllowThreads(__tstate
); 
18141     if (PyErr_Occurred()) SWIG_fail
; 
18145     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
18147     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
18164 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetPropertyInt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18165   PyObject 
*resultobj 
= 0; 
18166   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18167   wxString 
*arg2 
= 0 ; 
18171   bool temp2 
= false ; 
18172   PyObject 
* obj0 
= 0 ; 
18173   PyObject 
* obj1 
= 0 ; 
18174   char *  kwnames
[] = { 
18175     (char *) "self",(char *) "key", NULL 
 
18178   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyInt",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18179   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18180   if (!SWIG_IsOK(res1
)) { 
18181     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyInt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18183   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18185     arg2 
= wxString_in_helper(obj1
); 
18186     if (arg2 
== NULL
) SWIG_fail
; 
18190     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18191     result 
= (int)(arg1
)->GetPropertyInt((wxString 
const &)*arg2
); 
18192     wxPyEndAllowThreads(__tstate
); 
18193     if (PyErr_Occurred()) SWIG_fail
; 
18195   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
18210 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetStyleBitsNeeded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18211   PyObject 
*resultobj 
= 0; 
18212   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18216   PyObject 
*swig_obj
[1] ; 
18218   if (!args
) SWIG_fail
; 
18219   swig_obj
[0] = args
; 
18220   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18221   if (!SWIG_IsOK(res1
)) { 
18222     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBitsNeeded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18224   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18226     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18227     result 
= (int)(arg1
)->GetStyleBitsNeeded(); 
18228     wxPyEndAllowThreads(__tstate
); 
18229     if (PyErr_Occurred()) SWIG_fail
; 
18231   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
18238 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCurrentLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18239   PyObject 
*resultobj 
= 0; 
18240   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18244   PyObject 
*swig_obj
[1] ; 
18246   if (!args
) SWIG_fail
; 
18247   swig_obj
[0] = args
; 
18248   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18249   if (!SWIG_IsOK(res1
)) { 
18250     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18252   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18254     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18255     result 
= (int)(arg1
)->GetCurrentLine(); 
18256     wxPyEndAllowThreads(__tstate
); 
18257     if (PyErr_Occurred()) SWIG_fail
; 
18259   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
18266 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetSpec(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18267   PyObject 
*resultobj 
= 0; 
18268   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18270   wxString 
*arg3 
= 0 ; 
18275   bool temp3 
= false ; 
18276   PyObject 
* obj0 
= 0 ; 
18277   PyObject 
* obj1 
= 0 ; 
18278   PyObject 
* obj2 
= 0 ; 
18279   char *  kwnames
[] = { 
18280     (char *) "self",(char *) "styleNum",(char *) "spec", NULL 
 
18283   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSpec",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18284   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18285   if (!SWIG_IsOK(res1
)) { 
18286     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18288   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18289   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18290   if (!SWIG_IsOK(ecode2
)) { 
18291     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "2"" of type '" "int""'"); 
18293   arg2 
= static_cast< int >(val2
); 
18295     arg3 
= wxString_in_helper(obj2
); 
18296     if (arg3 
== NULL
) SWIG_fail
; 
18300     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18301     (arg1
)->StyleSetSpec(arg2
,(wxString 
const &)*arg3
); 
18302     wxPyEndAllowThreads(__tstate
); 
18303     if (PyErr_Occurred()) SWIG_fail
; 
18305   resultobj 
= SWIG_Py_Void(); 
18320 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetFont(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18321   PyObject 
*resultobj 
= 0; 
18322   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18331   PyObject 
* obj0 
= 0 ; 
18332   PyObject 
* obj1 
= 0 ; 
18333   PyObject 
* obj2 
= 0 ; 
18334   char *  kwnames
[] = { 
18335     (char *) "self",(char *) "styleNum",(char *) "font", NULL 
 
18338   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18339   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18340   if (!SWIG_IsOK(res1
)) { 
18341     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18343   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18344   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18345   if (!SWIG_IsOK(ecode2
)) { 
18346     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "2"" of type '" "int""'"); 
18348   arg2 
= static_cast< int >(val2
); 
18349   res3 
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
,  0 ); 
18350   if (!SWIG_IsOK(res3
)) { 
18351     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");  
18354     SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");  
18356   arg3 
= reinterpret_cast< wxFont 
* >(argp3
); 
18358     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18359     (arg1
)->StyleSetFont(arg2
,*arg3
); 
18360     wxPyEndAllowThreads(__tstate
); 
18361     if (PyErr_Occurred()) SWIG_fail
; 
18363   resultobj 
= SWIG_Py_Void(); 
18370 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetFontAttr(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18371   PyObject 
*resultobj 
= 0; 
18372   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18375   wxString 
*arg4 
= 0 ; 
18379   wxFontEncoding arg8 
= (wxFontEncoding
) wxFONTENCODING_DEFAULT 
; 
18386   bool temp4 
= false ; 
18395   PyObject 
* obj0 
= 0 ; 
18396   PyObject 
* obj1 
= 0 ; 
18397   PyObject 
* obj2 
= 0 ; 
18398   PyObject 
* obj3 
= 0 ; 
18399   PyObject 
* obj4 
= 0 ; 
18400   PyObject 
* obj5 
= 0 ; 
18401   PyObject 
* obj6 
= 0 ; 
18402   PyObject 
* obj7 
= 0 ; 
18403   char *  kwnames
[] = { 
18404     (char *) "self",(char *) "styleNum",(char *) "size",(char *) "faceName",(char *) "bold",(char *) "italic",(char *) "underline",(char *) "encoding", NULL 
 
18407   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO|O:StyledTextCtrl_StyleSetFontAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
; 
18408   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18409   if (!SWIG_IsOK(res1
)) { 
18410     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18412   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18413   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18414   if (!SWIG_IsOK(ecode2
)) { 
18415     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "2"" of type '" "int""'"); 
18417   arg2 
= static_cast< int >(val2
); 
18418   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
18419   if (!SWIG_IsOK(ecode3
)) { 
18420     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "3"" of type '" "int""'"); 
18422   arg3 
= static_cast< int >(val3
); 
18424     arg4 
= wxString_in_helper(obj3
); 
18425     if (arg4 
== NULL
) SWIG_fail
; 
18428   ecode5 
= SWIG_AsVal_bool(obj4
, &val5
); 
18429   if (!SWIG_IsOK(ecode5
)) { 
18430     SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "5"" of type '" "bool""'"); 
18432   arg5 
= static_cast< bool >(val5
); 
18433   ecode6 
= SWIG_AsVal_bool(obj5
, &val6
); 
18434   if (!SWIG_IsOK(ecode6
)) { 
18435     SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "6"" of type '" "bool""'"); 
18437   arg6 
= static_cast< bool >(val6
); 
18438   ecode7 
= SWIG_AsVal_bool(obj6
, &val7
); 
18439   if (!SWIG_IsOK(ecode7
)) { 
18440     SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "7"" of type '" "bool""'"); 
18442   arg7 
= static_cast< bool >(val7
); 
18444     ecode8 
= SWIG_AsVal_int(obj7
, &val8
); 
18445     if (!SWIG_IsOK(ecode8
)) { 
18446       SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "8"" of type '" "wxFontEncoding""'"); 
18448     arg8 
= static_cast< wxFontEncoding 
>(val8
); 
18451     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18452     (arg1
)->StyleSetFontAttr(arg2
,arg3
,(wxString 
const &)*arg4
,arg5
,arg6
,arg7
,arg8
); 
18453     wxPyEndAllowThreads(__tstate
); 
18454     if (PyErr_Occurred()) SWIG_fail
; 
18456   resultobj 
= SWIG_Py_Void(); 
18471 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetCharacterSet(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18472   PyObject 
*resultobj 
= 0; 
18473   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18482   PyObject 
* obj0 
= 0 ; 
18483   PyObject 
* obj1 
= 0 ; 
18484   PyObject 
* obj2 
= 0 ; 
18485   char *  kwnames
[] = { 
18486     (char *) "self",(char *) "style",(char *) "characterSet", NULL 
 
18489   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCharacterSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18490   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18491   if (!SWIG_IsOK(res1
)) { 
18492     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18494   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18495   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18496   if (!SWIG_IsOK(ecode2
)) { 
18497     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "2"" of type '" "int""'"); 
18499   arg2 
= static_cast< int >(val2
); 
18500   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
18501   if (!SWIG_IsOK(ecode3
)) { 
18502     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "3"" of type '" "int""'"); 
18504   arg3 
= static_cast< int >(val3
); 
18506     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18507     (arg1
)->StyleSetCharacterSet(arg2
,arg3
); 
18508     wxPyEndAllowThreads(__tstate
); 
18509     if (PyErr_Occurred()) SWIG_fail
; 
18511   resultobj 
= SWIG_Py_Void(); 
18518 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_StyleSetFontEncoding(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18519   PyObject 
*resultobj 
= 0; 
18520   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18522   wxFontEncoding arg3 
; 
18529   PyObject 
* obj0 
= 0 ; 
18530   PyObject 
* obj1 
= 0 ; 
18531   PyObject 
* obj2 
= 0 ; 
18532   char *  kwnames
[] = { 
18533     (char *) "self",(char *) "style",(char *) "encoding", NULL 
 
18536   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFontEncoding",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18537   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18538   if (!SWIG_IsOK(res1
)) { 
18539     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18541   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18542   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18543   if (!SWIG_IsOK(ecode2
)) { 
18544     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "2"" of type '" "int""'"); 
18546   arg2 
= static_cast< int >(val2
); 
18547   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
18548   if (!SWIG_IsOK(ecode3
)) { 
18549     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "3"" of type '" "wxFontEncoding""'"); 
18551   arg3 
= static_cast< wxFontEncoding 
>(val3
); 
18553     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18554     (arg1
)->StyleSetFontEncoding(arg2
,arg3
); 
18555     wxPyEndAllowThreads(__tstate
); 
18556     if (PyErr_Occurred()) SWIG_fail
; 
18558   resultobj 
= SWIG_Py_Void(); 
18565 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_CmdKeyExecute(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18566   PyObject 
*resultobj 
= 0; 
18567   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18573   PyObject 
* obj0 
= 0 ; 
18574   PyObject 
* obj1 
= 0 ; 
18575   char *  kwnames
[] = { 
18576     (char *) "self",(char *) "cmd", NULL 
 
18579   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CmdKeyExecute",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18580   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18581   if (!SWIG_IsOK(res1
)) { 
18582     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18584   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18585   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18586   if (!SWIG_IsOK(ecode2
)) { 
18587     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "2"" of type '" "int""'"); 
18589   arg2 
= static_cast< int >(val2
); 
18591     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18592     (arg1
)->CmdKeyExecute(arg2
); 
18593     wxPyEndAllowThreads(__tstate
); 
18594     if (PyErr_Occurred()) SWIG_fail
; 
18596   resultobj 
= SWIG_Py_Void(); 
18603 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetMargins(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18604   PyObject 
*resultobj 
= 0; 
18605   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18614   PyObject 
* obj0 
= 0 ; 
18615   PyObject 
* obj1 
= 0 ; 
18616   PyObject 
* obj2 
= 0 ; 
18617   char *  kwnames
[] = { 
18618     (char *) "self",(char *) "left",(char *) "right", NULL 
 
18621   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
18622   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18623   if (!SWIG_IsOK(res1
)) { 
18624     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18626   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18627   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18628   if (!SWIG_IsOK(ecode2
)) { 
18629     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "2"" of type '" "int""'"); 
18631   arg2 
= static_cast< int >(val2
); 
18632   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
18633   if (!SWIG_IsOK(ecode3
)) { 
18634     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "3"" of type '" "int""'"); 
18636   arg3 
= static_cast< int >(val3
); 
18638     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18639     (arg1
)->SetMargins(arg2
,arg3
); 
18640     wxPyEndAllowThreads(__tstate
); 
18641     if (PyErr_Occurred()) SWIG_fail
; 
18643   resultobj 
= SWIG_Py_Void(); 
18650 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelection(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18651   PyObject 
*resultobj 
= 0; 
18652   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18653   int *arg2 
= (int *) 0 ; 
18654   int *arg3 
= (int *) 0 ; 
18658   int res2 
= SWIG_TMPOBJ 
; 
18660   int res3 
= SWIG_TMPOBJ 
; 
18661   PyObject 
*swig_obj
[1] ; 
18665   if (!args
) SWIG_fail
; 
18666   swig_obj
[0] = args
; 
18667   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18668   if (!SWIG_IsOK(res1
)) { 
18669     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18671   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18673     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18674     (arg1
)->GetSelection(arg2
,arg3
); 
18675     wxPyEndAllowThreads(__tstate
); 
18676     if (PyErr_Occurred()) SWIG_fail
; 
18678   resultobj 
= SWIG_Py_Void(); 
18679   if (SWIG_IsTmpObj(res2
)) { 
18680     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
))); 
18682     int new_flags 
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN 
|  0 ) :  0 ; 
18683     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
)); 
18685   if (SWIG_IsTmpObj(res3
)) { 
18686     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
))); 
18688     int new_flags 
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN 
|  0 ) :  0 ; 
18689     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
)); 
18697 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_PointFromPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18698   PyObject 
*resultobj 
= 0; 
18699   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18706   PyObject 
* obj0 
= 0 ; 
18707   PyObject 
* obj1 
= 0 ; 
18708   char *  kwnames
[] = { 
18709     (char *) "self",(char *) "pos", NULL 
 
18712   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PointFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18713   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18714   if (!SWIG_IsOK(res1
)) { 
18715     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18717   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18718   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18719   if (!SWIG_IsOK(ecode2
)) { 
18720     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "2"" of type '" "int""'"); 
18722   arg2 
= static_cast< int >(val2
); 
18724     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18725     result 
= (arg1
)->PointFromPosition(arg2
); 
18726     wxPyEndAllowThreads(__tstate
); 
18727     if (PyErr_Occurred()) SWIG_fail
; 
18729   resultobj 
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN 
|  0 ); 
18736 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ScrollToLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18737   PyObject 
*resultobj 
= 0; 
18738   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18744   PyObject 
* obj0 
= 0 ; 
18745   PyObject 
* obj1 
= 0 ; 
18746   char *  kwnames
[] = { 
18747     (char *) "self",(char *) "line", NULL 
 
18750   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18751   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18752   if (!SWIG_IsOK(res1
)) { 
18753     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18755   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18756   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18757   if (!SWIG_IsOK(ecode2
)) { 
18758     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "2"" of type '" "int""'"); 
18760   arg2 
= static_cast< int >(val2
); 
18762     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18763     (arg1
)->ScrollToLine(arg2
); 
18764     wxPyEndAllowThreads(__tstate
); 
18765     if (PyErr_Occurred()) SWIG_fail
; 
18767   resultobj 
= SWIG_Py_Void(); 
18774 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_ScrollToColumn(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18775   PyObject 
*resultobj 
= 0; 
18776   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18782   PyObject 
* obj0 
= 0 ; 
18783   PyObject 
* obj1 
= 0 ; 
18784   char *  kwnames
[] = { 
18785     (char *) "self",(char *) "column", NULL 
 
18788   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18789   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18790   if (!SWIG_IsOK(res1
)) { 
18791     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18793   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18794   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18795   if (!SWIG_IsOK(ecode2
)) { 
18796     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "2"" of type '" "int""'"); 
18798   arg2 
= static_cast< int >(val2
); 
18800     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18801     (arg1
)->ScrollToColumn(arg2
); 
18802     wxPyEndAllowThreads(__tstate
); 
18803     if (PyErr_Occurred()) SWIG_fail
; 
18805   resultobj 
= SWIG_Py_Void(); 
18812 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SendMsg(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18813   PyObject 
*resultobj 
= 0; 
18814   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18816   long arg3 
= (long) 0 ; 
18817   long arg4 
= (long) 0 ; 
18827   PyObject 
* obj0 
= 0 ; 
18828   PyObject 
* obj1 
= 0 ; 
18829   PyObject 
* obj2 
= 0 ; 
18830   PyObject 
* obj3 
= 0 ; 
18831   char *  kwnames
[] = { 
18832     (char *) "self",(char *) "msg",(char *) "wp",(char *) "lp", NULL 
 
18835   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:StyledTextCtrl_SendMsg",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
18836   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18837   if (!SWIG_IsOK(res1
)) { 
18838     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18840   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18841   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
18842   if (!SWIG_IsOK(ecode2
)) { 
18843     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "2"" of type '" "int""'"); 
18845   arg2 
= static_cast< int >(val2
); 
18847     ecode3 
= SWIG_AsVal_long(obj2
, &val3
); 
18848     if (!SWIG_IsOK(ecode3
)) { 
18849       SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "3"" of type '" "long""'"); 
18851     arg3 
= static_cast< long >(val3
); 
18854     ecode4 
= SWIG_AsVal_long(obj3
, &val4
); 
18855     if (!SWIG_IsOK(ecode4
)) { 
18856       SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "4"" of type '" "long""'"); 
18858     arg4 
= static_cast< long >(val4
); 
18861     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18862     result 
= (long)(arg1
)->SendMsg(arg2
,arg3
,arg4
); 
18863     wxPyEndAllowThreads(__tstate
); 
18864     if (PyErr_Occurred()) SWIG_fail
; 
18866   resultobj 
= SWIG_From_long(static_cast< long >(result
)); 
18873 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetVScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18874   PyObject 
*resultobj 
= 0; 
18875   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18876   wxScrollBar 
*arg2 
= (wxScrollBar 
*) 0 ; 
18881   PyObject 
* obj0 
= 0 ; 
18882   PyObject 
* obj1 
= 0 ; 
18883   char *  kwnames
[] = { 
18884     (char *) "self",(char *) "bar", NULL 
 
18887   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetVScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18888   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18889   if (!SWIG_IsOK(res1
)) { 
18890     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18892   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18893   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 |  0 ); 
18894   if (!SWIG_IsOK(res2
)) { 
18895     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");  
18897   arg2 
= reinterpret_cast< wxScrollBar 
* >(argp2
); 
18899     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18900     (arg1
)->SetVScrollBar(arg2
); 
18901     wxPyEndAllowThreads(__tstate
); 
18902     if (PyErr_Occurred()) SWIG_fail
; 
18904   resultobj 
= SWIG_Py_Void(); 
18911 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetHScrollBar(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18912   PyObject 
*resultobj 
= 0; 
18913   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18914   wxScrollBar 
*arg2 
= (wxScrollBar 
*) 0 ; 
18919   PyObject 
* obj0 
= 0 ; 
18920   PyObject 
* obj1 
= 0 ; 
18921   char *  kwnames
[] = { 
18922     (char *) "self",(char *) "bar", NULL 
 
18925   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18926   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18927   if (!SWIG_IsOK(res1
)) { 
18928     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18930   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18931   res2 
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 |  0 ); 
18932   if (!SWIG_IsOK(res2
)) { 
18933     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");  
18935   arg2 
= reinterpret_cast< wxScrollBar 
* >(argp2
); 
18937     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18938     (arg1
)->SetHScrollBar(arg2
); 
18939     wxPyEndAllowThreads(__tstate
); 
18940     if (PyErr_Occurred()) SWIG_fail
; 
18942   resultobj 
= SWIG_Py_Void(); 
18949 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLastKeydownProcessed(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
18950   PyObject 
*resultobj 
= 0; 
18951   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18955   PyObject 
*swig_obj
[1] ; 
18957   if (!args
) SWIG_fail
; 
18958   swig_obj
[0] = args
; 
18959   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18960   if (!SWIG_IsOK(res1
)) { 
18961     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18963   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18965     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
18966     result 
= (bool)(arg1
)->GetLastKeydownProcessed(); 
18967     wxPyEndAllowThreads(__tstate
); 
18968     if (PyErr_Occurred()) SWIG_fail
; 
18971     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
18979 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetLastKeydownProcessed(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
18980   PyObject 
*resultobj 
= 0; 
18981   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
18987   PyObject 
* obj0 
= 0 ; 
18988   PyObject 
* obj1 
= 0 ; 
18989   char *  kwnames
[] = { 
18990     (char *) "self",(char *) "val", NULL 
 
18993   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLastKeydownProcessed",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
18994   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
18995   if (!SWIG_IsOK(res1
)) { 
18996     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
18998   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
18999   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
19000   if (!SWIG_IsOK(ecode2
)) { 
19001     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "2"" of type '" "bool""'"); 
19003   arg2 
= static_cast< bool >(val2
); 
19005     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19006     (arg1
)->SetLastKeydownProcessed(arg2
); 
19007     wxPyEndAllowThreads(__tstate
); 
19008     if (PyErr_Occurred()) SWIG_fail
; 
19010   resultobj 
= SWIG_Py_Void(); 
19017 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SaveFile(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19018   PyObject 
*resultobj 
= 0; 
19019   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19020   wxString 
*arg2 
= 0 ; 
19024   bool temp2 
= false ; 
19025   PyObject 
* obj0 
= 0 ; 
19026   PyObject 
* obj1 
= 0 ; 
19027   char *  kwnames
[] = { 
19028     (char *) "self",(char *) "filename", NULL 
 
19031   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19032   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19033   if (!SWIG_IsOK(res1
)) { 
19034     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SaveFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19036   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19038     arg2 
= wxString_in_helper(obj1
); 
19039     if (arg2 
== NULL
) SWIG_fail
; 
19043     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19044     result 
= (bool)(arg1
)->SaveFile((wxString 
const &)*arg2
); 
19045     wxPyEndAllowThreads(__tstate
); 
19046     if (PyErr_Occurred()) SWIG_fail
; 
19049     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19065 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_LoadFile(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19066   PyObject 
*resultobj 
= 0; 
19067   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19068   wxString 
*arg2 
= 0 ; 
19072   bool temp2 
= false ; 
19073   PyObject 
* obj0 
= 0 ; 
19074   PyObject 
* obj1 
= 0 ; 
19075   char *  kwnames
[] = { 
19076     (char *) "self",(char *) "filename", NULL 
 
19079   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19080   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19081   if (!SWIG_IsOK(res1
)) { 
19082     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LoadFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19084   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19086     arg2 
= wxString_in_helper(obj1
); 
19087     if (arg2 
== NULL
) SWIG_fail
; 
19091     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19092     result 
= (bool)(arg1
)->LoadFile((wxString 
const &)*arg2
); 
19093     wxPyEndAllowThreads(__tstate
); 
19094     if (PyErr_Occurred()) SWIG_fail
; 
19097     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19113 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DoDragOver(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19114   PyObject 
*resultobj 
= 0; 
19115   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19118   wxDragResult arg4 
; 
19119   wxDragResult result
; 
19128   PyObject 
* obj0 
= 0 ; 
19129   PyObject 
* obj1 
= 0 ; 
19130   PyObject 
* obj2 
= 0 ; 
19131   PyObject 
* obj3 
= 0 ; 
19132   char *  kwnames
[] = { 
19133     (char *) "self",(char *) "x",(char *) "y",(char *) "def", NULL 
 
19136   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
19137   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19138   if (!SWIG_IsOK(res1
)) { 
19139     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19141   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19142   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19143   if (!SWIG_IsOK(ecode2
)) { 
19144     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "2"" of type '" "int""'"); 
19146   arg2 
= static_cast< int >(val2
); 
19147   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
19148   if (!SWIG_IsOK(ecode3
)) { 
19149     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "3"" of type '" "int""'"); 
19151   arg3 
= static_cast< int >(val3
); 
19152   ecode4 
= SWIG_AsVal_int(obj3
, &val4
); 
19153   if (!SWIG_IsOK(ecode4
)) { 
19154     SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "4"" of type '" "wxDragResult""'"); 
19156   arg4 
= static_cast< wxDragResult 
>(val4
); 
19158     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19159     result 
= (wxDragResult
)(arg1
)->DoDragOver(arg2
,arg3
,arg4
); 
19160     wxPyEndAllowThreads(__tstate
); 
19161     if (PyErr_Occurred()) SWIG_fail
; 
19163   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
19170 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_DoDropText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19171   PyObject 
*resultobj 
= 0; 
19172   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19175   wxString 
*arg4 
= 0 ; 
19183   bool temp4 
= false ; 
19184   PyObject 
* obj0 
= 0 ; 
19185   PyObject 
* obj1 
= 0 ; 
19186   PyObject 
* obj2 
= 0 ; 
19187   PyObject 
* obj3 
= 0 ; 
19188   char *  kwnames
[] = { 
19189     (char *) "self",(char *) "x",(char *) "y",(char *) "data", NULL 
 
19192   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDropText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
; 
19193   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19194   if (!SWIG_IsOK(res1
)) { 
19195     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19197   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19198   ecode2 
= SWIG_AsVal_long(obj1
, &val2
); 
19199   if (!SWIG_IsOK(ecode2
)) { 
19200     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "2"" of type '" "long""'"); 
19202   arg2 
= static_cast< long >(val2
); 
19203   ecode3 
= SWIG_AsVal_long(obj2
, &val3
); 
19204   if (!SWIG_IsOK(ecode3
)) { 
19205     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "3"" of type '" "long""'"); 
19207   arg3 
= static_cast< long >(val3
); 
19209     arg4 
= wxString_in_helper(obj3
); 
19210     if (arg4 
== NULL
) SWIG_fail
; 
19214     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19215     result 
= (bool)(arg1
)->DoDropText(arg2
,arg3
,(wxString 
const &)*arg4
); 
19216     wxPyEndAllowThreads(__tstate
); 
19217     if (PyErr_Occurred()) SWIG_fail
; 
19220     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19236 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetUseAntiAliasing(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19237   PyObject 
*resultobj 
= 0; 
19238   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19244   PyObject 
* obj0 
= 0 ; 
19245   PyObject 
* obj1 
= 0 ; 
19246   char *  kwnames
[] = { 
19247     (char *) "self",(char *) "useAA", NULL 
 
19250   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseAntiAliasing",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19251   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19252   if (!SWIG_IsOK(res1
)) { 
19253     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19255   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19256   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
19257   if (!SWIG_IsOK(ecode2
)) { 
19258     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "2"" of type '" "bool""'"); 
19260   arg2 
= static_cast< bool >(val2
); 
19262     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19263     (arg1
)->SetUseAntiAliasing(arg2
); 
19264     wxPyEndAllowThreads(__tstate
); 
19265     if (PyErr_Occurred()) SWIG_fail
; 
19267   resultobj 
= SWIG_Py_Void(); 
19274 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetUseAntiAliasing(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19275   PyObject 
*resultobj 
= 0; 
19276   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19280   PyObject 
*swig_obj
[1] ; 
19282   if (!args
) SWIG_fail
; 
19283   swig_obj
[0] = args
; 
19284   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19285   if (!SWIG_IsOK(res1
)) { 
19286     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19288   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19290     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19291     result 
= (bool)(arg1
)->GetUseAntiAliasing(); 
19292     wxPyEndAllowThreads(__tstate
); 
19293     if (PyErr_Occurred()) SWIG_fail
; 
19296     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
19304 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AddTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19305   PyObject 
*resultobj 
= 0; 
19306   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19307   char *arg2 
= (char *) 0 ; 
19313   PyObject 
* obj0 
= 0 ; 
19314   PyObject 
* obj1 
= 0 ; 
19315   char *  kwnames
[] = { 
19316     (char *) "self",(char *) "text", NULL 
 
19319   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19320   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19321   if (!SWIG_IsOK(res1
)) { 
19322     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19324   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19325   res2 
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
); 
19326   if (!SWIG_IsOK(res2
)) { 
19327     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "2"" of type '" "char const *""'"); 
19331     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19332     (arg1
)->AddTextRaw((char const *)arg2
); 
19333     wxPyEndAllowThreads(__tstate
); 
19334     if (PyErr_Occurred()) SWIG_fail
; 
19336   resultobj 
= SWIG_Py_Void(); 
19337   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19340   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19345 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_InsertTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19346   PyObject 
*resultobj 
= 0; 
19347   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19349   char *arg3 
= (char *) 0 ; 
19357   PyObject 
* obj0 
= 0 ; 
19358   PyObject 
* obj1 
= 0 ; 
19359   PyObject 
* obj2 
= 0 ; 
19360   char *  kwnames
[] = { 
19361     (char *) "self",(char *) "pos",(char *) "text", NULL 
 
19364   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertTextRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
19365   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19366   if (!SWIG_IsOK(res1
)) { 
19367     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19369   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19370   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19371   if (!SWIG_IsOK(ecode2
)) { 
19372     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "2"" of type '" "int""'"); 
19374   arg2 
= static_cast< int >(val2
); 
19375   res3 
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
); 
19376   if (!SWIG_IsOK(res3
)) { 
19377     SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "3"" of type '" "char const *""'"); 
19381     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19382     (arg1
)->InsertTextRaw(arg2
,(char const *)arg3
); 
19383     wxPyEndAllowThreads(__tstate
); 
19384     if (PyErr_Occurred()) SWIG_fail
; 
19386   resultobj 
= SWIG_Py_Void(); 
19387   if (alloc3 
== SWIG_NEWOBJ
) delete[] buf3
; 
19390   if (alloc3 
== SWIG_NEWOBJ
) delete[] buf3
; 
19395 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetCurLineRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19396   PyObject 
*resultobj 
= 0; 
19397   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19398   int *arg2 
= (int *) 0 ; 
19399   wxCharBuffer result
; 
19403   int res2 
= SWIG_TMPOBJ 
; 
19404   PyObject 
*swig_obj
[1] ; 
19407   if (!args
) SWIG_fail
; 
19408   swig_obj
[0] = args
; 
19409   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19410   if (!SWIG_IsOK(res1
)) { 
19411     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19413   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19415     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19416     result 
= (arg1
)->GetCurLineRaw(arg2
); 
19417     wxPyEndAllowThreads(__tstate
); 
19418     if (PyErr_Occurred()) SWIG_fail
; 
19421     resultobj 
= PyString_FromString((char*)(&result
)->data()); 
19423   if (SWIG_IsTmpObj(res2
)) { 
19424     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
))); 
19426     int new_flags 
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN 
|  0 ) :  0 ; 
19427     resultobj 
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
)); 
19435 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetLineRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19436   PyObject 
*resultobj 
= 0; 
19437   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19439   wxCharBuffer result
; 
19444   PyObject 
* obj0 
= 0 ; 
19445   PyObject 
* obj1 
= 0 ; 
19446   char *  kwnames
[] = { 
19447     (char *) "self",(char *) "line", NULL 
 
19450   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19451   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19452   if (!SWIG_IsOK(res1
)) { 
19453     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19455   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19456   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19457   if (!SWIG_IsOK(ecode2
)) { 
19458     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "2"" of type '" "int""'"); 
19460   arg2 
= static_cast< int >(val2
); 
19462     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19463     result 
= (arg1
)->GetLineRaw(arg2
); 
19464     wxPyEndAllowThreads(__tstate
); 
19465     if (PyErr_Occurred()) SWIG_fail
; 
19468     resultobj 
= PyString_FromString((char*)(&result
)->data()); 
19476 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetSelectedTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19477   PyObject 
*resultobj 
= 0; 
19478   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19479   wxCharBuffer result
; 
19482   PyObject 
*swig_obj
[1] ; 
19484   if (!args
) SWIG_fail
; 
19485   swig_obj
[0] = args
; 
19486   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19487   if (!SWIG_IsOK(res1
)) { 
19488     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19490   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19492     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19493     result 
= (arg1
)->GetSelectedTextRaw(); 
19494     wxPyEndAllowThreads(__tstate
); 
19495     if (PyErr_Occurred()) SWIG_fail
; 
19498     resultobj 
= PyString_FromString((char*)(&result
)->data()); 
19506 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTextRangeRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19507   PyObject 
*resultobj 
= 0; 
19508   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19511   wxCharBuffer result
; 
19518   PyObject 
* obj0 
= 0 ; 
19519   PyObject 
* obj1 
= 0 ; 
19520   PyObject 
* obj2 
= 0 ; 
19521   char *  kwnames
[] = { 
19522     (char *) "self",(char *) "startPos",(char *) "endPos", NULL 
 
19525   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRangeRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
; 
19526   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19527   if (!SWIG_IsOK(res1
)) { 
19528     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19530   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19531   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19532   if (!SWIG_IsOK(ecode2
)) { 
19533     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "2"" of type '" "int""'"); 
19535   arg2 
= static_cast< int >(val2
); 
19536   ecode3 
= SWIG_AsVal_int(obj2
, &val3
); 
19537   if (!SWIG_IsOK(ecode3
)) { 
19538     SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "3"" of type '" "int""'"); 
19540   arg3 
= static_cast< int >(val3
); 
19542     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19543     result 
= (arg1
)->GetTextRangeRaw(arg2
,arg3
); 
19544     wxPyEndAllowThreads(__tstate
); 
19545     if (PyErr_Occurred()) SWIG_fail
; 
19548     resultobj 
= PyString_FromString((char*)(&result
)->data()); 
19556 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_SetTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19557   PyObject 
*resultobj 
= 0; 
19558   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19559   char *arg2 
= (char *) 0 ; 
19565   PyObject 
* obj0 
= 0 ; 
19566   PyObject 
* obj1 
= 0 ; 
19567   char *  kwnames
[] = { 
19568     (char *) "self",(char *) "text", NULL 
 
19571   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19572   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19573   if (!SWIG_IsOK(res1
)) { 
19574     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19576   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19577   res2 
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
); 
19578   if (!SWIG_IsOK(res2
)) { 
19579     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "2"" of type '" "char const *""'"); 
19583     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19584     (arg1
)->SetTextRaw((char const *)arg2
); 
19585     wxPyEndAllowThreads(__tstate
); 
19586     if (PyErr_Occurred()) SWIG_fail
; 
19588   resultobj 
= SWIG_Py_Void(); 
19589   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19592   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19597 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_GetTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19598   PyObject 
*resultobj 
= 0; 
19599   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19600   wxCharBuffer result
; 
19603   PyObject 
*swig_obj
[1] ; 
19605   if (!args
) SWIG_fail
; 
19606   swig_obj
[0] = args
; 
19607   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19608   if (!SWIG_IsOK(res1
)) { 
19609     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19611   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19613     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19614     result 
= (arg1
)->GetTextRaw(); 
19615     wxPyEndAllowThreads(__tstate
); 
19616     if (PyErr_Occurred()) SWIG_fail
; 
19619     resultobj 
= PyString_FromString((char*)(&result
)->data()); 
19627 SWIGINTERN PyObject 
*_wrap_StyledTextCtrl_AppendTextRaw(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19628   PyObject 
*resultobj 
= 0; 
19629   wxStyledTextCtrl 
*arg1 
= (wxStyledTextCtrl 
*) 0 ; 
19630   char *arg2 
= (char *) 0 ; 
19636   PyObject 
* obj0 
= 0 ; 
19637   PyObject 
* obj1 
= 0 ; 
19638   char *  kwnames
[] = { 
19639     (char *) "self",(char *) "text", NULL 
 
19642   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19643   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 |  0 ); 
19644   if (!SWIG_IsOK(res1
)) { 
19645     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");  
19647   arg1 
= reinterpret_cast< wxStyledTextCtrl 
* >(argp1
); 
19648   res2 
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
); 
19649   if (!SWIG_IsOK(res2
)) { 
19650     SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "2"" of type '" "char const *""'"); 
19654     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19655     (arg1
)->AppendTextRaw((char const *)arg2
); 
19656     wxPyEndAllowThreads(__tstate
); 
19657     if (PyErr_Occurred()) SWIG_fail
; 
19659   resultobj 
= SWIG_Py_Void(); 
19660   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19663   if (alloc2 
== SWIG_NEWOBJ
) delete[] buf2
; 
19668 SWIGINTERN PyObject 
*StyledTextCtrl_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19670   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
19671   SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextCtrl
, SWIG_NewClientData(obj
)); 
19672   return SWIG_Py_Void(); 
19675 SWIGINTERN PyObject 
*StyledTextCtrl_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19676   return SWIG_Python_InitShadowInstance(args
); 
19679 SWIGINTERN PyObject 
*_wrap_new_StyledTextEvent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19680   PyObject 
*resultobj 
= 0; 
19681   wxEventType arg1 
= (wxEventType
) 0 ; 
19682   int arg2 
= (int) 0 ; 
19683   wxStyledTextEvent 
*result 
= 0 ; 
19688   PyObject 
* obj0 
= 0 ; 
19689   PyObject 
* obj1 
= 0 ; 
19690   char *  kwnames
[] = { 
19691     (char *) "commandType",(char *) "id", NULL 
 
19694   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_StyledTextEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19696     ecode1 
= SWIG_AsVal_int(obj0
, &val1
); 
19697     if (!SWIG_IsOK(ecode1
)) { 
19698       SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_StyledTextEvent" "', expected argument " "1"" of type '" "wxEventType""'"); 
19700     arg1 
= static_cast< wxEventType 
>(val1
); 
19703     ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19704     if (!SWIG_IsOK(ecode2
)) { 
19705       SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextEvent" "', expected argument " "2"" of type '" "int""'"); 
19707     arg2 
= static_cast< int >(val2
); 
19710     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19711     result 
= (wxStyledTextEvent 
*)new wxStyledTextEvent(arg1
,arg2
); 
19712     wxPyEndAllowThreads(__tstate
); 
19713     if (PyErr_Occurred()) SWIG_fail
; 
19715   resultobj 
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_NEW 
|  0 ); 
19722 SWIGINTERN PyObject 
*_wrap_delete_StyledTextEvent(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
19723   PyObject 
*resultobj 
= 0; 
19724   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19727   PyObject 
*swig_obj
[1] ; 
19729   if (!args
) SWIG_fail
; 
19730   swig_obj
[0] = args
; 
19731   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_DISOWN 
|  0 ); 
19732   if (!SWIG_IsOK(res1
)) { 
19733     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_StyledTextEvent" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19735   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19737     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19740     wxPyEndAllowThreads(__tstate
); 
19741     if (PyErr_Occurred()) SWIG_fail
; 
19743   resultobj 
= SWIG_Py_Void(); 
19750 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19751   PyObject 
*resultobj 
= 0; 
19752   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19758   PyObject 
* obj0 
= 0 ; 
19759   PyObject 
* obj1 
= 0 ; 
19760   char *  kwnames
[] = { 
19761     (char *) "self",(char *) "pos", NULL 
 
19764   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19765   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19766   if (!SWIG_IsOK(res1
)) { 
19767     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19769   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19770   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19771   if (!SWIG_IsOK(ecode2
)) { 
19772     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "2"" of type '" "int""'"); 
19774   arg2 
= static_cast< int >(val2
); 
19776     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19777     (arg1
)->SetPosition(arg2
); 
19778     wxPyEndAllowThreads(__tstate
); 
19779     if (PyErr_Occurred()) SWIG_fail
; 
19781   resultobj 
= SWIG_Py_Void(); 
19788 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetKey(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19789   PyObject 
*resultobj 
= 0; 
19790   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19796   PyObject 
* obj0 
= 0 ; 
19797   PyObject 
* obj1 
= 0 ; 
19798   char *  kwnames
[] = { 
19799     (char *) "self",(char *) "k", NULL 
 
19802   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetKey",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19803   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19804   if (!SWIG_IsOK(res1
)) { 
19805     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19807   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19808   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19809   if (!SWIG_IsOK(ecode2
)) { 
19810     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "2"" of type '" "int""'"); 
19812   arg2 
= static_cast< int >(val2
); 
19814     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19815     (arg1
)->SetKey(arg2
); 
19816     wxPyEndAllowThreads(__tstate
); 
19817     if (PyErr_Occurred()) SWIG_fail
; 
19819   resultobj 
= SWIG_Py_Void(); 
19826 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetModifiers(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19827   PyObject 
*resultobj 
= 0; 
19828   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19834   PyObject 
* obj0 
= 0 ; 
19835   PyObject 
* obj1 
= 0 ; 
19836   char *  kwnames
[] = { 
19837     (char *) "self",(char *) "m", NULL 
 
19840   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModifiers",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19841   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19842   if (!SWIG_IsOK(res1
)) { 
19843     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19845   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19846   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19847   if (!SWIG_IsOK(ecode2
)) { 
19848     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "2"" of type '" "int""'"); 
19850   arg2 
= static_cast< int >(val2
); 
19852     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19853     (arg1
)->SetModifiers(arg2
); 
19854     wxPyEndAllowThreads(__tstate
); 
19855     if (PyErr_Occurred()) SWIG_fail
; 
19857   resultobj 
= SWIG_Py_Void(); 
19864 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetModificationType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19865   PyObject 
*resultobj 
= 0; 
19866   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19872   PyObject 
* obj0 
= 0 ; 
19873   PyObject 
* obj1 
= 0 ; 
19874   char *  kwnames
[] = { 
19875     (char *) "self",(char *) "t", NULL 
 
19878   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModificationType",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19879   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19880   if (!SWIG_IsOK(res1
)) { 
19881     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19883   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19884   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19885   if (!SWIG_IsOK(ecode2
)) { 
19886     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "2"" of type '" "int""'"); 
19888   arg2 
= static_cast< int >(val2
); 
19890     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19891     (arg1
)->SetModificationType(arg2
); 
19892     wxPyEndAllowThreads(__tstate
); 
19893     if (PyErr_Occurred()) SWIG_fail
; 
19895   resultobj 
= SWIG_Py_Void(); 
19902 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19903   PyObject 
*resultobj 
= 0; 
19904   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19905   wxString 
*arg2 
= 0 ; 
19908   bool temp2 
= false ; 
19909   PyObject 
* obj0 
= 0 ; 
19910   PyObject 
* obj1 
= 0 ; 
19911   char *  kwnames
[] = { 
19912     (char *) "self",(char *) "t", NULL 
 
19915   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19916   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19917   if (!SWIG_IsOK(res1
)) { 
19918     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19920   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19922     arg2 
= wxString_in_helper(obj1
); 
19923     if (arg2 
== NULL
) SWIG_fail
; 
19927     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19928     (arg1
)->SetText((wxString 
const &)*arg2
); 
19929     wxPyEndAllowThreads(__tstate
); 
19930     if (PyErr_Occurred()) SWIG_fail
; 
19932   resultobj 
= SWIG_Py_Void(); 
19947 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetLength(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19948   PyObject 
*resultobj 
= 0; 
19949   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19955   PyObject 
* obj0 
= 0 ; 
19956   PyObject 
* obj1 
= 0 ; 
19957   char *  kwnames
[] = { 
19958     (char *) "self",(char *) "len", NULL 
 
19961   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
19962   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
19963   if (!SWIG_IsOK(res1
)) { 
19964     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
19966   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
19967   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
19968   if (!SWIG_IsOK(ecode2
)) { 
19969     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "2"" of type '" "int""'"); 
19971   arg2 
= static_cast< int >(val2
); 
19973     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
19974     (arg1
)->SetLength(arg2
); 
19975     wxPyEndAllowThreads(__tstate
); 
19976     if (PyErr_Occurred()) SWIG_fail
; 
19978   resultobj 
= SWIG_Py_Void(); 
19985 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetLinesAdded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
19986   PyObject 
*resultobj 
= 0; 
19987   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
19993   PyObject 
* obj0 
= 0 ; 
19994   PyObject 
* obj1 
= 0 ; 
19995   char *  kwnames
[] = { 
19996     (char *) "self",(char *) "num", NULL 
 
19999   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLinesAdded",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20000   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20001   if (!SWIG_IsOK(res1
)) { 
20002     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20004   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20005   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20006   if (!SWIG_IsOK(ecode2
)) { 
20007     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "2"" of type '" "int""'"); 
20009   arg2 
= static_cast< int >(val2
); 
20011     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20012     (arg1
)->SetLinesAdded(arg2
); 
20013     wxPyEndAllowThreads(__tstate
); 
20014     if (PyErr_Occurred()) SWIG_fail
; 
20016   resultobj 
= SWIG_Py_Void(); 
20023 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20024   PyObject 
*resultobj 
= 0; 
20025   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20031   PyObject 
* obj0 
= 0 ; 
20032   PyObject 
* obj1 
= 0 ; 
20033   char *  kwnames
[] = { 
20034     (char *) "self",(char *) "val", NULL 
 
20037   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20038   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20039   if (!SWIG_IsOK(res1
)) { 
20040     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20042   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20043   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20044   if (!SWIG_IsOK(ecode2
)) { 
20045     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "2"" of type '" "int""'"); 
20047   arg2 
= static_cast< int >(val2
); 
20049     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20050     (arg1
)->SetLine(arg2
); 
20051     wxPyEndAllowThreads(__tstate
); 
20052     if (PyErr_Occurred()) SWIG_fail
; 
20054   resultobj 
= SWIG_Py_Void(); 
20061 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetFoldLevelNow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20062   PyObject 
*resultobj 
= 0; 
20063   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20069   PyObject 
* obj0 
= 0 ; 
20070   PyObject 
* obj1 
= 0 ; 
20071   char *  kwnames
[] = { 
20072     (char *) "self",(char *) "val", NULL 
 
20075   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelNow",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20076   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20077   if (!SWIG_IsOK(res1
)) { 
20078     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20080   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20081   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20082   if (!SWIG_IsOK(ecode2
)) { 
20083     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "2"" of type '" "int""'"); 
20085   arg2 
= static_cast< int >(val2
); 
20087     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20088     (arg1
)->SetFoldLevelNow(arg2
); 
20089     wxPyEndAllowThreads(__tstate
); 
20090     if (PyErr_Occurred()) SWIG_fail
; 
20092   resultobj 
= SWIG_Py_Void(); 
20099 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetFoldLevelPrev(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20100   PyObject 
*resultobj 
= 0; 
20101   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20107   PyObject 
* obj0 
= 0 ; 
20108   PyObject 
* obj1 
= 0 ; 
20109   char *  kwnames
[] = { 
20110     (char *) "self",(char *) "val", NULL 
 
20113   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelPrev",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20114   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20115   if (!SWIG_IsOK(res1
)) { 
20116     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20118   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20119   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20120   if (!SWIG_IsOK(ecode2
)) { 
20121     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "2"" of type '" "int""'"); 
20123   arg2 
= static_cast< int >(val2
); 
20125     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20126     (arg1
)->SetFoldLevelPrev(arg2
); 
20127     wxPyEndAllowThreads(__tstate
); 
20128     if (PyErr_Occurred()) SWIG_fail
; 
20130   resultobj 
= SWIG_Py_Void(); 
20137 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetMargin(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20138   PyObject 
*resultobj 
= 0; 
20139   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20145   PyObject 
* obj0 
= 0 ; 
20146   PyObject 
* obj1 
= 0 ; 
20147   char *  kwnames
[] = { 
20148     (char *) "self",(char *) "val", NULL 
 
20151   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20152   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20153   if (!SWIG_IsOK(res1
)) { 
20154     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20156   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20157   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20158   if (!SWIG_IsOK(ecode2
)) { 
20159     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "2"" of type '" "int""'"); 
20161   arg2 
= static_cast< int >(val2
); 
20163     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20164     (arg1
)->SetMargin(arg2
); 
20165     wxPyEndAllowThreads(__tstate
); 
20166     if (PyErr_Occurred()) SWIG_fail
; 
20168   resultobj 
= SWIG_Py_Void(); 
20175 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetMessage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20176   PyObject 
*resultobj 
= 0; 
20177   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20183   PyObject 
* obj0 
= 0 ; 
20184   PyObject 
* obj1 
= 0 ; 
20185   char *  kwnames
[] = { 
20186     (char *) "self",(char *) "val", NULL 
 
20189   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20190   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20191   if (!SWIG_IsOK(res1
)) { 
20192     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20194   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20195   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20196   if (!SWIG_IsOK(ecode2
)) { 
20197     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "2"" of type '" "int""'"); 
20199   arg2 
= static_cast< int >(val2
); 
20201     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20202     (arg1
)->SetMessage(arg2
); 
20203     wxPyEndAllowThreads(__tstate
); 
20204     if (PyErr_Occurred()) SWIG_fail
; 
20206   resultobj 
= SWIG_Py_Void(); 
20213 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetWParam(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20214   PyObject 
*resultobj 
= 0; 
20215   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20221   PyObject 
* obj0 
= 0 ; 
20222   PyObject 
* obj1 
= 0 ; 
20223   char *  kwnames
[] = { 
20224     (char *) "self",(char *) "val", NULL 
 
20227   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetWParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20228   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20229   if (!SWIG_IsOK(res1
)) { 
20230     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20232   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20233   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20234   if (!SWIG_IsOK(ecode2
)) { 
20235     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "2"" of type '" "int""'"); 
20237   arg2 
= static_cast< int >(val2
); 
20239     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20240     (arg1
)->SetWParam(arg2
); 
20241     wxPyEndAllowThreads(__tstate
); 
20242     if (PyErr_Occurred()) SWIG_fail
; 
20244   resultobj 
= SWIG_Py_Void(); 
20251 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetLParam(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20252   PyObject 
*resultobj 
= 0; 
20253   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20259   PyObject 
* obj0 
= 0 ; 
20260   PyObject 
* obj1 
= 0 ; 
20261   char *  kwnames
[] = { 
20262     (char *) "self",(char *) "val", NULL 
 
20265   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20266   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20267   if (!SWIG_IsOK(res1
)) { 
20268     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20270   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20271   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20272   if (!SWIG_IsOK(ecode2
)) { 
20273     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "2"" of type '" "int""'"); 
20275   arg2 
= static_cast< int >(val2
); 
20277     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20278     (arg1
)->SetLParam(arg2
); 
20279     wxPyEndAllowThreads(__tstate
); 
20280     if (PyErr_Occurred()) SWIG_fail
; 
20282   resultobj 
= SWIG_Py_Void(); 
20289 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetListType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20290   PyObject 
*resultobj 
= 0; 
20291   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20297   PyObject 
* obj0 
= 0 ; 
20298   PyObject 
* obj1 
= 0 ; 
20299   char *  kwnames
[] = { 
20300     (char *) "self",(char *) "val", NULL 
 
20303   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetListType",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20304   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20305   if (!SWIG_IsOK(res1
)) { 
20306     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20308   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20309   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20310   if (!SWIG_IsOK(ecode2
)) { 
20311     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "2"" of type '" "int""'"); 
20313   arg2 
= static_cast< int >(val2
); 
20315     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20316     (arg1
)->SetListType(arg2
); 
20317     wxPyEndAllowThreads(__tstate
); 
20318     if (PyErr_Occurred()) SWIG_fail
; 
20320   resultobj 
= SWIG_Py_Void(); 
20327 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetX(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20328   PyObject 
*resultobj 
= 0; 
20329   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20335   PyObject 
* obj0 
= 0 ; 
20336   PyObject 
* obj1 
= 0 ; 
20337   char *  kwnames
[] = { 
20338     (char *) "self",(char *) "val", NULL 
 
20341   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetX",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20342   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20343   if (!SWIG_IsOK(res1
)) { 
20344     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetX" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20346   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20347   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20348   if (!SWIG_IsOK(ecode2
)) { 
20349     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetX" "', expected argument " "2"" of type '" "int""'"); 
20351   arg2 
= static_cast< int >(val2
); 
20353     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20354     (arg1
)->SetX(arg2
); 
20355     wxPyEndAllowThreads(__tstate
); 
20356     if (PyErr_Occurred()) SWIG_fail
; 
20358   resultobj 
= SWIG_Py_Void(); 
20365 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetY(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20366   PyObject 
*resultobj 
= 0; 
20367   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20373   PyObject 
* obj0 
= 0 ; 
20374   PyObject 
* obj1 
= 0 ; 
20375   char *  kwnames
[] = { 
20376     (char *) "self",(char *) "val", NULL 
 
20379   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetY",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20380   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20381   if (!SWIG_IsOK(res1
)) { 
20382     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetY" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20384   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20385   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20386   if (!SWIG_IsOK(ecode2
)) { 
20387     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetY" "', expected argument " "2"" of type '" "int""'"); 
20389   arg2 
= static_cast< int >(val2
); 
20391     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20392     (arg1
)->SetY(arg2
); 
20393     wxPyEndAllowThreads(__tstate
); 
20394     if (PyErr_Occurred()) SWIG_fail
; 
20396   resultobj 
= SWIG_Py_Void(); 
20403 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetDragText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20404   PyObject 
*resultobj 
= 0; 
20405   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20406   wxString 
*arg2 
= 0 ; 
20409   bool temp2 
= false ; 
20410   PyObject 
* obj0 
= 0 ; 
20411   PyObject 
* obj1 
= 0 ; 
20412   char *  kwnames
[] = { 
20413     (char *) "self",(char *) "val", NULL 
 
20416   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragText",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20417   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20418   if (!SWIG_IsOK(res1
)) { 
20419     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20421   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20423     arg2 
= wxString_in_helper(obj1
); 
20424     if (arg2 
== NULL
) SWIG_fail
; 
20428     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20429     (arg1
)->SetDragText((wxString 
const &)*arg2
); 
20430     wxPyEndAllowThreads(__tstate
); 
20431     if (PyErr_Occurred()) SWIG_fail
; 
20433   resultobj 
= SWIG_Py_Void(); 
20448 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetDragAllowMove(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20449   PyObject 
*resultobj 
= 0; 
20450   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20456   PyObject 
* obj0 
= 0 ; 
20457   PyObject 
* obj1 
= 0 ; 
20458   char *  kwnames
[] = { 
20459     (char *) "self",(char *) "val", NULL 
 
20462   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragAllowMove",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20463   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20464   if (!SWIG_IsOK(res1
)) { 
20465     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20467   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20468   ecode2 
= SWIG_AsVal_bool(obj1
, &val2
); 
20469   if (!SWIG_IsOK(ecode2
)) { 
20470     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "2"" of type '" "bool""'"); 
20472   arg2 
= static_cast< bool >(val2
); 
20474     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20475     (arg1
)->SetDragAllowMove(arg2
); 
20476     wxPyEndAllowThreads(__tstate
); 
20477     if (PyErr_Occurred()) SWIG_fail
; 
20479   resultobj 
= SWIG_Py_Void(); 
20486 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_SetDragResult(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
, PyObject 
*kwargs
) { 
20487   PyObject 
*resultobj 
= 0; 
20488   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20489   wxDragResult arg2 
; 
20494   PyObject 
* obj0 
= 0 ; 
20495   PyObject 
* obj1 
= 0 ; 
20496   char *  kwnames
[] = { 
20497     (char *) "self",(char *) "val", NULL 
 
20500   if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragResult",kwnames
,&obj0
,&obj1
)) SWIG_fail
; 
20501   res1 
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20502   if (!SWIG_IsOK(res1
)) { 
20503     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
20505   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20506   ecode2 
= SWIG_AsVal_int(obj1
, &val2
); 
20507   if (!SWIG_IsOK(ecode2
)) { 
20508     SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "2"" of type '" "wxDragResult""'"); 
20510   arg2 
= static_cast< wxDragResult 
>(val2
); 
20512     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20513     (arg1
)->SetDragResult(arg2
); 
20514     wxPyEndAllowThreads(__tstate
); 
20515     if (PyErr_Occurred()) SWIG_fail
; 
20517   resultobj 
= SWIG_Py_Void(); 
20524 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetPosition(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20525   PyObject 
*resultobj 
= 0; 
20526   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20530   PyObject 
*swig_obj
[1] ; 
20532   if (!args
) SWIG_fail
; 
20533   swig_obj
[0] = args
; 
20534   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20535   if (!SWIG_IsOK(res1
)) { 
20536     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20538   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20540     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20541     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetPosition(); 
20542     wxPyEndAllowThreads(__tstate
); 
20543     if (PyErr_Occurred()) SWIG_fail
; 
20545   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20552 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetKey(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20553   PyObject 
*resultobj 
= 0; 
20554   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20558   PyObject 
*swig_obj
[1] ; 
20560   if (!args
) SWIG_fail
; 
20561   swig_obj
[0] = args
; 
20562   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20563   if (!SWIG_IsOK(res1
)) { 
20564     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20566   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20568     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20569     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetKey(); 
20570     wxPyEndAllowThreads(__tstate
); 
20571     if (PyErr_Occurred()) SWIG_fail
; 
20573   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20580 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetModifiers(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20581   PyObject 
*resultobj 
= 0; 
20582   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20586   PyObject 
*swig_obj
[1] ; 
20588   if (!args
) SWIG_fail
; 
20589   swig_obj
[0] = args
; 
20590   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20591   if (!SWIG_IsOK(res1
)) { 
20592     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20594   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20596     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20597     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetModifiers(); 
20598     wxPyEndAllowThreads(__tstate
); 
20599     if (PyErr_Occurred()) SWIG_fail
; 
20601   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20608 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetModificationType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20609   PyObject 
*resultobj 
= 0; 
20610   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20614   PyObject 
*swig_obj
[1] ; 
20616   if (!args
) SWIG_fail
; 
20617   swig_obj
[0] = args
; 
20618   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20619   if (!SWIG_IsOK(res1
)) { 
20620     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20622   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20624     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20625     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetModificationType(); 
20626     wxPyEndAllowThreads(__tstate
); 
20627     if (PyErr_Occurred()) SWIG_fail
; 
20629   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20636 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20637   PyObject 
*resultobj 
= 0; 
20638   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20642   PyObject 
*swig_obj
[1] ; 
20644   if (!args
) SWIG_fail
; 
20645   swig_obj
[0] = args
; 
20646   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20647   if (!SWIG_IsOK(res1
)) { 
20648     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetText" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20650   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20652     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20653     result 
= ((wxStyledTextEvent 
const *)arg1
)->GetText(); 
20654     wxPyEndAllowThreads(__tstate
); 
20655     if (PyErr_Occurred()) SWIG_fail
; 
20659     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
20661     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
20670 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetLength(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20671   PyObject 
*resultobj 
= 0; 
20672   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20676   PyObject 
*swig_obj
[1] ; 
20678   if (!args
) SWIG_fail
; 
20679   swig_obj
[0] = args
; 
20680   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20681   if (!SWIG_IsOK(res1
)) { 
20682     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20684   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20686     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20687     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetLength(); 
20688     wxPyEndAllowThreads(__tstate
); 
20689     if (PyErr_Occurred()) SWIG_fail
; 
20691   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20698 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetLinesAdded(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20699   PyObject 
*resultobj 
= 0; 
20700   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20704   PyObject 
*swig_obj
[1] ; 
20706   if (!args
) SWIG_fail
; 
20707   swig_obj
[0] = args
; 
20708   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20709   if (!SWIG_IsOK(res1
)) { 
20710     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20712   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20714     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20715     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetLinesAdded(); 
20716     wxPyEndAllowThreads(__tstate
); 
20717     if (PyErr_Occurred()) SWIG_fail
; 
20719   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20726 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetLine(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20727   PyObject 
*resultobj 
= 0; 
20728   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20732   PyObject 
*swig_obj
[1] ; 
20734   if (!args
) SWIG_fail
; 
20735   swig_obj
[0] = args
; 
20736   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20737   if (!SWIG_IsOK(res1
)) { 
20738     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20740   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20742     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20743     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetLine(); 
20744     wxPyEndAllowThreads(__tstate
); 
20745     if (PyErr_Occurred()) SWIG_fail
; 
20747   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20754 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetFoldLevelNow(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20755   PyObject 
*resultobj 
= 0; 
20756   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20760   PyObject 
*swig_obj
[1] ; 
20762   if (!args
) SWIG_fail
; 
20763   swig_obj
[0] = args
; 
20764   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20765   if (!SWIG_IsOK(res1
)) { 
20766     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20768   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20770     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20771     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetFoldLevelNow(); 
20772     wxPyEndAllowThreads(__tstate
); 
20773     if (PyErr_Occurred()) SWIG_fail
; 
20775   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20782 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetFoldLevelPrev(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20783   PyObject 
*resultobj 
= 0; 
20784   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20788   PyObject 
*swig_obj
[1] ; 
20790   if (!args
) SWIG_fail
; 
20791   swig_obj
[0] = args
; 
20792   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20793   if (!SWIG_IsOK(res1
)) { 
20794     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20796   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20798     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20799     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetFoldLevelPrev(); 
20800     wxPyEndAllowThreads(__tstate
); 
20801     if (PyErr_Occurred()) SWIG_fail
; 
20803   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20810 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetMargin(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20811   PyObject 
*resultobj 
= 0; 
20812   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20816   PyObject 
*swig_obj
[1] ; 
20818   if (!args
) SWIG_fail
; 
20819   swig_obj
[0] = args
; 
20820   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20821   if (!SWIG_IsOK(res1
)) { 
20822     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20824   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20826     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20827     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetMargin(); 
20828     wxPyEndAllowThreads(__tstate
); 
20829     if (PyErr_Occurred()) SWIG_fail
; 
20831   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20838 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetMessage(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20839   PyObject 
*resultobj 
= 0; 
20840   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20844   PyObject 
*swig_obj
[1] ; 
20846   if (!args
) SWIG_fail
; 
20847   swig_obj
[0] = args
; 
20848   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20849   if (!SWIG_IsOK(res1
)) { 
20850     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20852   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20854     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20855     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetMessage(); 
20856     wxPyEndAllowThreads(__tstate
); 
20857     if (PyErr_Occurred()) SWIG_fail
; 
20859   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20866 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetWParam(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20867   PyObject 
*resultobj 
= 0; 
20868   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20872   PyObject 
*swig_obj
[1] ; 
20874   if (!args
) SWIG_fail
; 
20875   swig_obj
[0] = args
; 
20876   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20877   if (!SWIG_IsOK(res1
)) { 
20878     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20880   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20882     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20883     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetWParam(); 
20884     wxPyEndAllowThreads(__tstate
); 
20885     if (PyErr_Occurred()) SWIG_fail
; 
20887   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20894 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetLParam(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20895   PyObject 
*resultobj 
= 0; 
20896   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20900   PyObject 
*swig_obj
[1] ; 
20902   if (!args
) SWIG_fail
; 
20903   swig_obj
[0] = args
; 
20904   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20905   if (!SWIG_IsOK(res1
)) { 
20906     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20908   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20910     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20911     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetLParam(); 
20912     wxPyEndAllowThreads(__tstate
); 
20913     if (PyErr_Occurred()) SWIG_fail
; 
20915   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20922 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetListType(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20923   PyObject 
*resultobj 
= 0; 
20924   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20928   PyObject 
*swig_obj
[1] ; 
20930   if (!args
) SWIG_fail
; 
20931   swig_obj
[0] = args
; 
20932   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20933   if (!SWIG_IsOK(res1
)) { 
20934     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20936   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20938     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20939     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetListType(); 
20940     wxPyEndAllowThreads(__tstate
); 
20941     if (PyErr_Occurred()) SWIG_fail
; 
20943   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20950 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetX(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20951   PyObject 
*resultobj 
= 0; 
20952   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20956   PyObject 
*swig_obj
[1] ; 
20958   if (!args
) SWIG_fail
; 
20959   swig_obj
[0] = args
; 
20960   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20961   if (!SWIG_IsOK(res1
)) { 
20962     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetX" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20964   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20966     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20967     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetX(); 
20968     wxPyEndAllowThreads(__tstate
); 
20969     if (PyErr_Occurred()) SWIG_fail
; 
20971   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
20978 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetY(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
20979   PyObject 
*resultobj 
= 0; 
20980   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
20984   PyObject 
*swig_obj
[1] ; 
20986   if (!args
) SWIG_fail
; 
20987   swig_obj
[0] = args
; 
20988   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
20989   if (!SWIG_IsOK(res1
)) { 
20990     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetY" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
20992   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
20994     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
20995     result 
= (int)((wxStyledTextEvent 
const *)arg1
)->GetY(); 
20996     wxPyEndAllowThreads(__tstate
); 
20997     if (PyErr_Occurred()) SWIG_fail
; 
20999   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
21006 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetDragText(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21007   PyObject 
*resultobj 
= 0; 
21008   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21012   PyObject 
*swig_obj
[1] ; 
21014   if (!args
) SWIG_fail
; 
21015   swig_obj
[0] = args
; 
21016   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21017   if (!SWIG_IsOK(res1
)) { 
21018     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
21020   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21022     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21023     result 
= (arg1
)->GetDragText(); 
21024     wxPyEndAllowThreads(__tstate
); 
21025     if (PyErr_Occurred()) SWIG_fail
; 
21029     resultobj 
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len()); 
21031     resultobj 
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len()); 
21040 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetDragAllowMove(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21041   PyObject 
*resultobj 
= 0; 
21042   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21046   PyObject 
*swig_obj
[1] ; 
21048   if (!args
) SWIG_fail
; 
21049   swig_obj
[0] = args
; 
21050   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21051   if (!SWIG_IsOK(res1
)) { 
21052     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
21054   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21056     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21057     result 
= (bool)(arg1
)->GetDragAllowMove(); 
21058     wxPyEndAllowThreads(__tstate
); 
21059     if (PyErr_Occurred()) SWIG_fail
; 
21062     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
21070 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetDragResult(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21071   PyObject 
*resultobj 
= 0; 
21072   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21073   wxDragResult result
; 
21076   PyObject 
*swig_obj
[1] ; 
21078   if (!args
) SWIG_fail
; 
21079   swig_obj
[0] = args
; 
21080   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21081   if (!SWIG_IsOK(res1
)) { 
21082     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");  
21084   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21086     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21087     result 
= (wxDragResult
)(arg1
)->GetDragResult(); 
21088     wxPyEndAllowThreads(__tstate
); 
21089     if (PyErr_Occurred()) SWIG_fail
; 
21091   resultobj 
= SWIG_From_int(static_cast< int >(result
)); 
21098 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetShift(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21099   PyObject 
*resultobj 
= 0; 
21100   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21104   PyObject 
*swig_obj
[1] ; 
21106   if (!args
) SWIG_fail
; 
21107   swig_obj
[0] = args
; 
21108   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21109   if (!SWIG_IsOK(res1
)) { 
21110     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetShift" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
21112   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21114     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21115     result 
= (bool)((wxStyledTextEvent 
const *)arg1
)->GetShift(); 
21116     wxPyEndAllowThreads(__tstate
); 
21117     if (PyErr_Occurred()) SWIG_fail
; 
21120     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
21128 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetControl(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21129   PyObject 
*resultobj 
= 0; 
21130   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21134   PyObject 
*swig_obj
[1] ; 
21136   if (!args
) SWIG_fail
; 
21137   swig_obj
[0] = args
; 
21138   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21139   if (!SWIG_IsOK(res1
)) { 
21140     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetControl" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
21142   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21144     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21145     result 
= (bool)((wxStyledTextEvent 
const *)arg1
)->GetControl(); 
21146     wxPyEndAllowThreads(__tstate
); 
21147     if (PyErr_Occurred()) SWIG_fail
; 
21150     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
21158 SWIGINTERN PyObject 
*_wrap_StyledTextEvent_GetAlt(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21159   PyObject 
*resultobj 
= 0; 
21160   wxStyledTextEvent 
*arg1 
= (wxStyledTextEvent 
*) 0 ; 
21164   PyObject 
*swig_obj
[1] ; 
21166   if (!args
) SWIG_fail
; 
21167   swig_obj
[0] = args
; 
21168   res1 
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 |  0 ); 
21169   if (!SWIG_IsOK(res1
)) { 
21170     SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetAlt" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");  
21172   arg1 
= reinterpret_cast< wxStyledTextEvent 
* >(argp1
); 
21174     PyThreadState
* __tstate 
= wxPyBeginAllowThreads(); 
21175     result 
= (bool)((wxStyledTextEvent 
const *)arg1
)->GetAlt(); 
21176     wxPyEndAllowThreads(__tstate
); 
21177     if (PyErr_Occurred()) SWIG_fail
; 
21180     resultobj 
= result 
? Py_True 
: Py_False
; Py_INCREF(resultobj
); 
21188 SWIGINTERN PyObject 
*StyledTextEvent_swigregister(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21190   if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
; 
21191   SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextEvent
, SWIG_NewClientData(obj
)); 
21192   return SWIG_Py_Void(); 
21195 SWIGINTERN PyObject 
*StyledTextEvent_swiginit(PyObject 
*SWIGUNUSEDPARM(self
), PyObject 
*args
) { 
21196   return SWIG_Python_InitShadowInstance(args
); 
21199 static PyMethodDef SwigMethods
[] = { 
21200          { (char *)"new_StyledTextCtrl", (PyCFunction
) _wrap_new_StyledTextCtrl
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21201          { (char *)"new_PreStyledTextCtrl", (PyCFunction
)_wrap_new_PreStyledTextCtrl
, METH_NOARGS
, NULL
}, 
21202          { (char *)"StyledTextCtrl_Create", (PyCFunction
) _wrap_StyledTextCtrl_Create
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21203          { (char *)"StyledTextCtrl_AddText", (PyCFunction
) _wrap_StyledTextCtrl_AddText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21204          { (char *)"StyledTextCtrl_AddStyledText", (PyCFunction
) _wrap_StyledTextCtrl_AddStyledText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21205          { (char *)"StyledTextCtrl_InsertText", (PyCFunction
) _wrap_StyledTextCtrl_InsertText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21206          { (char *)"StyledTextCtrl_ClearAll", (PyCFunction
)_wrap_StyledTextCtrl_ClearAll
, METH_O
, NULL
}, 
21207          { (char *)"StyledTextCtrl_ClearDocumentStyle", (PyCFunction
)_wrap_StyledTextCtrl_ClearDocumentStyle
, METH_O
, NULL
}, 
21208          { (char *)"StyledTextCtrl_GetLength", (PyCFunction
)_wrap_StyledTextCtrl_GetLength
, METH_O
, NULL
}, 
21209          { (char *)"StyledTextCtrl_GetCharAt", (PyCFunction
) _wrap_StyledTextCtrl_GetCharAt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21210          { (char *)"StyledTextCtrl_GetCurrentPos", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentPos
, METH_O
, NULL
}, 
21211          { (char *)"StyledTextCtrl_GetAnchor", (PyCFunction
)_wrap_StyledTextCtrl_GetAnchor
, METH_O
, NULL
}, 
21212          { (char *)"StyledTextCtrl_GetStyleAt", (PyCFunction
) _wrap_StyledTextCtrl_GetStyleAt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21213          { (char *)"StyledTextCtrl_Redo", (PyCFunction
)_wrap_StyledTextCtrl_Redo
, METH_O
, NULL
}, 
21214          { (char *)"StyledTextCtrl_SetUndoCollection", (PyCFunction
) _wrap_StyledTextCtrl_SetUndoCollection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21215          { (char *)"StyledTextCtrl_SelectAll", (PyCFunction
)_wrap_StyledTextCtrl_SelectAll
, METH_O
, NULL
}, 
21216          { (char *)"StyledTextCtrl_SetSavePoint", (PyCFunction
)_wrap_StyledTextCtrl_SetSavePoint
, METH_O
, NULL
}, 
21217          { (char *)"StyledTextCtrl_GetStyledText", (PyCFunction
) _wrap_StyledTextCtrl_GetStyledText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21218          { (char *)"StyledTextCtrl_CanRedo", (PyCFunction
)_wrap_StyledTextCtrl_CanRedo
, METH_O
, NULL
}, 
21219          { (char *)"StyledTextCtrl_MarkerLineFromHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerLineFromHandle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21220          { (char *)"StyledTextCtrl_MarkerDeleteHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteHandle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21221          { (char *)"StyledTextCtrl_GetUndoCollection", (PyCFunction
)_wrap_StyledTextCtrl_GetUndoCollection
, METH_O
, NULL
}, 
21222          { (char *)"StyledTextCtrl_GetViewWhiteSpace", (PyCFunction
)_wrap_StyledTextCtrl_GetViewWhiteSpace
, METH_O
, NULL
}, 
21223          { (char *)"StyledTextCtrl_SetViewWhiteSpace", (PyCFunction
) _wrap_StyledTextCtrl_SetViewWhiteSpace
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21224          { (char *)"StyledTextCtrl_PositionFromPoint", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPoint
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21225          { (char *)"StyledTextCtrl_PositionFromPointClose", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPointClose
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21226          { (char *)"StyledTextCtrl_GotoLine", (PyCFunction
) _wrap_StyledTextCtrl_GotoLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21227          { (char *)"StyledTextCtrl_GotoPos", (PyCFunction
) _wrap_StyledTextCtrl_GotoPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21228          { (char *)"StyledTextCtrl_SetAnchor", (PyCFunction
) _wrap_StyledTextCtrl_SetAnchor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21229          { (char *)"StyledTextCtrl_GetCurLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLine
, METH_O
, NULL
}, 
21230          { (char *)"StyledTextCtrl_GetEndStyled", (PyCFunction
)_wrap_StyledTextCtrl_GetEndStyled
, METH_O
, NULL
}, 
21231          { (char *)"StyledTextCtrl_ConvertEOLs", (PyCFunction
) _wrap_StyledTextCtrl_ConvertEOLs
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21232          { (char *)"StyledTextCtrl_GetEOLMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEOLMode
, METH_O
, NULL
}, 
21233          { (char *)"StyledTextCtrl_SetEOLMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEOLMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21234          { (char *)"StyledTextCtrl_StartStyling", (PyCFunction
) _wrap_StyledTextCtrl_StartStyling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21235          { (char *)"StyledTextCtrl_SetStyling", (PyCFunction
) _wrap_StyledTextCtrl_SetStyling
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21236          { (char *)"StyledTextCtrl_GetBufferedDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetBufferedDraw
, METH_O
, NULL
}, 
21237          { (char *)"StyledTextCtrl_SetBufferedDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetBufferedDraw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21238          { (char *)"StyledTextCtrl_SetTabWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetTabWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21239          { (char *)"StyledTextCtrl_GetTabWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetTabWidth
, METH_O
, NULL
}, 
21240          { (char *)"StyledTextCtrl_SetCodePage", (PyCFunction
) _wrap_StyledTextCtrl_SetCodePage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21241          { (char *)"StyledTextCtrl_MarkerDefine", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21242          { (char *)"StyledTextCtrl_MarkerSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21243          { (char *)"StyledTextCtrl_MarkerSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21244          { (char *)"StyledTextCtrl_MarkerAdd", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAdd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21245          { (char *)"StyledTextCtrl_MarkerDelete", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDelete
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21246          { (char *)"StyledTextCtrl_MarkerDeleteAll", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteAll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21247          { (char *)"StyledTextCtrl_MarkerGet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerGet
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21248          { (char *)"StyledTextCtrl_MarkerNext", (PyCFunction
) _wrap_StyledTextCtrl_MarkerNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21249          { (char *)"StyledTextCtrl_MarkerPrevious", (PyCFunction
) _wrap_StyledTextCtrl_MarkerPrevious
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21250          { (char *)"StyledTextCtrl_MarkerDefineBitmap", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefineBitmap
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21251          { (char *)"StyledTextCtrl_MarkerAddSet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAddSet
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21252          { (char *)"StyledTextCtrl_MarkerSetAlpha", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetAlpha
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21253          { (char *)"StyledTextCtrl_SetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginType
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21254          { (char *)"StyledTextCtrl_GetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginType
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21255          { (char *)"StyledTextCtrl_SetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21256          { (char *)"StyledTextCtrl_GetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21257          { (char *)"StyledTextCtrl_SetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginMask
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21258          { (char *)"StyledTextCtrl_GetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginMask
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21259          { (char *)"StyledTextCtrl_SetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginSensitive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21260          { (char *)"StyledTextCtrl_GetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginSensitive
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21261          { (char *)"StyledTextCtrl_StyleClearAll", (PyCFunction
)_wrap_StyledTextCtrl_StyleClearAll
, METH_O
, NULL
}, 
21262          { (char *)"StyledTextCtrl_StyleSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21263          { (char *)"StyledTextCtrl_StyleSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21264          { (char *)"StyledTextCtrl_StyleSetBold", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21265          { (char *)"StyledTextCtrl_StyleSetItalic", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetItalic
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21266          { (char *)"StyledTextCtrl_StyleSetSize", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSize
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21267          { (char *)"StyledTextCtrl_StyleSetFaceName", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFaceName
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21268          { (char *)"StyledTextCtrl_StyleSetEOLFilled", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetEOLFilled
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21269          { (char *)"StyledTextCtrl_StyleResetDefault", (PyCFunction
)_wrap_StyledTextCtrl_StyleResetDefault
, METH_O
, NULL
}, 
21270          { (char *)"StyledTextCtrl_StyleSetUnderline", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetUnderline
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21271          { (char *)"StyledTextCtrl_StyleSetCase", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCase
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21272          { (char *)"StyledTextCtrl_StyleSetHotSpot", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetHotSpot
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21273          { (char *)"StyledTextCtrl_SetSelForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21274          { (char *)"StyledTextCtrl_SetSelBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21275          { (char *)"StyledTextCtrl_GetSelAlpha", (PyCFunction
)_wrap_StyledTextCtrl_GetSelAlpha
, METH_O
, NULL
}, 
21276          { (char *)"StyledTextCtrl_SetSelAlpha", (PyCFunction
) _wrap_StyledTextCtrl_SetSelAlpha
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21277          { (char *)"StyledTextCtrl_SetCaretForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21278          { (char *)"StyledTextCtrl_CmdKeyAssign", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyAssign
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21279          { (char *)"StyledTextCtrl_CmdKeyClear", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyClear
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21280          { (char *)"StyledTextCtrl_CmdKeyClearAll", (PyCFunction
)_wrap_StyledTextCtrl_CmdKeyClearAll
, METH_O
, NULL
}, 
21281          { (char *)"StyledTextCtrl_SetStyleBytes", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBytes
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21282          { (char *)"StyledTextCtrl_StyleSetVisible", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21283          { (char *)"StyledTextCtrl_GetCaretPeriod", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretPeriod
, METH_O
, NULL
}, 
21284          { (char *)"StyledTextCtrl_SetCaretPeriod", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretPeriod
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21285          { (char *)"StyledTextCtrl_SetWordChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWordChars
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21286          { (char *)"StyledTextCtrl_BeginUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_BeginUndoAction
, METH_O
, NULL
}, 
21287          { (char *)"StyledTextCtrl_EndUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_EndUndoAction
, METH_O
, NULL
}, 
21288          { (char *)"StyledTextCtrl_IndicatorSetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21289          { (char *)"StyledTextCtrl_IndicatorGetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21290          { (char *)"StyledTextCtrl_IndicatorSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21291          { (char *)"StyledTextCtrl_IndicatorGetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21292          { (char *)"StyledTextCtrl_SetWhitespaceForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21293          { (char *)"StyledTextCtrl_SetWhitespaceBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21294          { (char *)"StyledTextCtrl_SetStyleBits", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBits
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21295          { (char *)"StyledTextCtrl_GetStyleBits", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBits
, METH_O
, NULL
}, 
21296          { (char *)"StyledTextCtrl_SetLineState", (PyCFunction
) _wrap_StyledTextCtrl_SetLineState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21297          { (char *)"StyledTextCtrl_GetLineState", (PyCFunction
) _wrap_StyledTextCtrl_GetLineState
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21298          { (char *)"StyledTextCtrl_GetMaxLineState", (PyCFunction
)_wrap_StyledTextCtrl_GetMaxLineState
, METH_O
, NULL
}, 
21299          { (char *)"StyledTextCtrl_GetCaretLineVisible", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineVisible
, METH_O
, NULL
}, 
21300          { (char *)"StyledTextCtrl_SetCaretLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21301          { (char *)"StyledTextCtrl_GetCaretLineBack", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineBack
, METH_O
, NULL
}, 
21302          { (char *)"StyledTextCtrl_SetCaretLineBack", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineBack
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21303          { (char *)"StyledTextCtrl_StyleSetChangeable", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetChangeable
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21304          { (char *)"StyledTextCtrl_AutoCompShow", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompShow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21305          { (char *)"StyledTextCtrl_AutoCompCancel", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompCancel
, METH_O
, NULL
}, 
21306          { (char *)"StyledTextCtrl_AutoCompActive", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompActive
, METH_O
, NULL
}, 
21307          { (char *)"StyledTextCtrl_AutoCompPosStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompPosStart
, METH_O
, NULL
}, 
21308          { (char *)"StyledTextCtrl_AutoCompComplete", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompComplete
, METH_O
, NULL
}, 
21309          { (char *)"StyledTextCtrl_AutoCompStops", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompStops
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21310          { (char *)"StyledTextCtrl_AutoCompSetSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetSeparator
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21311          { (char *)"StyledTextCtrl_AutoCompGetSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetSeparator
, METH_O
, NULL
}, 
21312          { (char *)"StyledTextCtrl_AutoCompSelect", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSelect
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21313          { (char *)"StyledTextCtrl_AutoCompSetCancelAtStart", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetCancelAtStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21314          { (char *)"StyledTextCtrl_AutoCompGetCancelAtStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCancelAtStart
, METH_O
, NULL
}, 
21315          { (char *)"StyledTextCtrl_AutoCompSetFillUps", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetFillUps
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21316          { (char *)"StyledTextCtrl_AutoCompSetChooseSingle", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetChooseSingle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21317          { (char *)"StyledTextCtrl_AutoCompGetChooseSingle", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetChooseSingle
, METH_O
, NULL
}, 
21318          { (char *)"StyledTextCtrl_AutoCompSetIgnoreCase", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetIgnoreCase
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21319          { (char *)"StyledTextCtrl_AutoCompGetIgnoreCase", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetIgnoreCase
, METH_O
, NULL
}, 
21320          { (char *)"StyledTextCtrl_UserListShow", (PyCFunction
) _wrap_StyledTextCtrl_UserListShow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21321          { (char *)"StyledTextCtrl_AutoCompSetAutoHide", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetAutoHide
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21322          { (char *)"StyledTextCtrl_AutoCompGetAutoHide", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetAutoHide
, METH_O
, NULL
}, 
21323          { (char *)"StyledTextCtrl_AutoCompSetDropRestOfWord", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetDropRestOfWord
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21324          { (char *)"StyledTextCtrl_AutoCompGetDropRestOfWord", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord
, METH_O
, NULL
}, 
21325          { (char *)"StyledTextCtrl_RegisterImage", (PyCFunction
) _wrap_StyledTextCtrl_RegisterImage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21326          { (char *)"StyledTextCtrl_ClearRegisteredImages", (PyCFunction
)_wrap_StyledTextCtrl_ClearRegisteredImages
, METH_O
, NULL
}, 
21327          { (char *)"StyledTextCtrl_AutoCompGetTypeSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetTypeSeparator
, METH_O
, NULL
}, 
21328          { (char *)"StyledTextCtrl_AutoCompSetTypeSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetTypeSeparator
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21329          { (char *)"StyledTextCtrl_AutoCompSetMaxWidth", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21330          { (char *)"StyledTextCtrl_AutoCompGetMaxWidth", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxWidth
, METH_O
, NULL
}, 
21331          { (char *)"StyledTextCtrl_AutoCompSetMaxHeight", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21332          { (char *)"StyledTextCtrl_AutoCompGetMaxHeight", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxHeight
, METH_O
, NULL
}, 
21333          { (char *)"StyledTextCtrl_SetIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21334          { (char *)"StyledTextCtrl_GetIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetIndent
, METH_O
, NULL
}, 
21335          { (char *)"StyledTextCtrl_SetUseTabs", (PyCFunction
) _wrap_StyledTextCtrl_SetUseTabs
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21336          { (char *)"StyledTextCtrl_GetUseTabs", (PyCFunction
)_wrap_StyledTextCtrl_GetUseTabs
, METH_O
, NULL
}, 
21337          { (char *)"StyledTextCtrl_SetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_SetLineIndentation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21338          { (char *)"StyledTextCtrl_GetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21339          { (char *)"StyledTextCtrl_GetLineIndentPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21340          { (char *)"StyledTextCtrl_GetColumn", (PyCFunction
) _wrap_StyledTextCtrl_GetColumn
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21341          { (char *)"StyledTextCtrl_SetUseHorizontalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseHorizontalScrollBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21342          { (char *)"StyledTextCtrl_GetUseHorizontalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseHorizontalScrollBar
, METH_O
, NULL
}, 
21343          { (char *)"StyledTextCtrl_SetIndentationGuides", (PyCFunction
) _wrap_StyledTextCtrl_SetIndentationGuides
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21344          { (char *)"StyledTextCtrl_GetIndentationGuides", (PyCFunction
)_wrap_StyledTextCtrl_GetIndentationGuides
, METH_O
, NULL
}, 
21345          { (char *)"StyledTextCtrl_SetHighlightGuide", (PyCFunction
) _wrap_StyledTextCtrl_SetHighlightGuide
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21346          { (char *)"StyledTextCtrl_GetHighlightGuide", (PyCFunction
)_wrap_StyledTextCtrl_GetHighlightGuide
, METH_O
, NULL
}, 
21347          { (char *)"StyledTextCtrl_GetLineEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineEndPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21348          { (char *)"StyledTextCtrl_GetCodePage", (PyCFunction
)_wrap_StyledTextCtrl_GetCodePage
, METH_O
, NULL
}, 
21349          { (char *)"StyledTextCtrl_GetCaretForeground", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretForeground
, METH_O
, NULL
}, 
21350          { (char *)"StyledTextCtrl_GetReadOnly", (PyCFunction
)_wrap_StyledTextCtrl_GetReadOnly
, METH_O
, NULL
}, 
21351          { (char *)"StyledTextCtrl_SetCurrentPos", (PyCFunction
) _wrap_StyledTextCtrl_SetCurrentPos
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21352          { (char *)"StyledTextCtrl_SetSelectionStart", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21353          { (char *)"StyledTextCtrl_GetSelectionStart", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionStart
, METH_O
, NULL
}, 
21354          { (char *)"StyledTextCtrl_SetSelectionEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21355          { (char *)"StyledTextCtrl_GetSelectionEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionEnd
, METH_O
, NULL
}, 
21356          { (char *)"StyledTextCtrl_SetPrintMagnification", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintMagnification
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21357          { (char *)"StyledTextCtrl_GetPrintMagnification", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintMagnification
, METH_O
, NULL
}, 
21358          { (char *)"StyledTextCtrl_SetPrintColourMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintColourMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21359          { (char *)"StyledTextCtrl_GetPrintColourMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintColourMode
, METH_O
, NULL
}, 
21360          { (char *)"StyledTextCtrl_FindText", (PyCFunction
) _wrap_StyledTextCtrl_FindText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21361          { (char *)"StyledTextCtrl_FormatRange", (PyCFunction
) _wrap_StyledTextCtrl_FormatRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21362          { (char *)"StyledTextCtrl_GetFirstVisibleLine", (PyCFunction
)_wrap_StyledTextCtrl_GetFirstVisibleLine
, METH_O
, NULL
}, 
21363          { (char *)"StyledTextCtrl_GetLine", (PyCFunction
) _wrap_StyledTextCtrl_GetLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21364          { (char *)"StyledTextCtrl_GetLineCount", (PyCFunction
)_wrap_StyledTextCtrl_GetLineCount
, METH_O
, NULL
}, 
21365          { (char *)"StyledTextCtrl_SetMarginLeft", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginLeft
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21366          { (char *)"StyledTextCtrl_GetMarginLeft", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginLeft
, METH_O
, NULL
}, 
21367          { (char *)"StyledTextCtrl_SetMarginRight", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginRight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21368          { (char *)"StyledTextCtrl_GetMarginRight", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginRight
, METH_O
, NULL
}, 
21369          { (char *)"StyledTextCtrl_GetModify", (PyCFunction
)_wrap_StyledTextCtrl_GetModify
, METH_O
, NULL
}, 
21370          { (char *)"StyledTextCtrl_SetSelection", (PyCFunction
) _wrap_StyledTextCtrl_SetSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21371          { (char *)"StyledTextCtrl_GetSelectedText", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedText
, METH_O
, NULL
}, 
21372          { (char *)"StyledTextCtrl_GetTextRange", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21373          { (char *)"StyledTextCtrl_HideSelection", (PyCFunction
) _wrap_StyledTextCtrl_HideSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21374          { (char *)"StyledTextCtrl_LineFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_LineFromPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21375          { (char *)"StyledTextCtrl_PositionFromLine", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21376          { (char *)"StyledTextCtrl_LineScroll", (PyCFunction
) _wrap_StyledTextCtrl_LineScroll
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21377          { (char *)"StyledTextCtrl_EnsureCaretVisible", (PyCFunction
)_wrap_StyledTextCtrl_EnsureCaretVisible
, METH_O
, NULL
}, 
21378          { (char *)"StyledTextCtrl_ReplaceSelection", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceSelection
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21379          { (char *)"StyledTextCtrl_SetReadOnly", (PyCFunction
) _wrap_StyledTextCtrl_SetReadOnly
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21380          { (char *)"StyledTextCtrl_CanPaste", (PyCFunction
)_wrap_StyledTextCtrl_CanPaste
, METH_O
, NULL
}, 
21381          { (char *)"StyledTextCtrl_CanUndo", (PyCFunction
)_wrap_StyledTextCtrl_CanUndo
, METH_O
, NULL
}, 
21382          { (char *)"StyledTextCtrl_EmptyUndoBuffer", (PyCFunction
)_wrap_StyledTextCtrl_EmptyUndoBuffer
, METH_O
, NULL
}, 
21383          { (char *)"StyledTextCtrl_Undo", (PyCFunction
)_wrap_StyledTextCtrl_Undo
, METH_O
, NULL
}, 
21384          { (char *)"StyledTextCtrl_Cut", (PyCFunction
)_wrap_StyledTextCtrl_Cut
, METH_O
, NULL
}, 
21385          { (char *)"StyledTextCtrl_Copy", (PyCFunction
)_wrap_StyledTextCtrl_Copy
, METH_O
, NULL
}, 
21386          { (char *)"StyledTextCtrl_Paste", (PyCFunction
)_wrap_StyledTextCtrl_Paste
, METH_O
, NULL
}, 
21387          { (char *)"StyledTextCtrl_Clear", (PyCFunction
)_wrap_StyledTextCtrl_Clear
, METH_O
, NULL
}, 
21388          { (char *)"StyledTextCtrl_SetText", (PyCFunction
) _wrap_StyledTextCtrl_SetText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21389          { (char *)"StyledTextCtrl_GetText", (PyCFunction
)_wrap_StyledTextCtrl_GetText
, METH_O
, NULL
}, 
21390          { (char *)"StyledTextCtrl_GetTextLength", (PyCFunction
)_wrap_StyledTextCtrl_GetTextLength
, METH_O
, NULL
}, 
21391          { (char *)"StyledTextCtrl_SetOvertype", (PyCFunction
) _wrap_StyledTextCtrl_SetOvertype
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21392          { (char *)"StyledTextCtrl_GetOvertype", (PyCFunction
)_wrap_StyledTextCtrl_GetOvertype
, METH_O
, NULL
}, 
21393          { (char *)"StyledTextCtrl_SetCaretWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21394          { (char *)"StyledTextCtrl_GetCaretWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretWidth
, METH_O
, NULL
}, 
21395          { (char *)"StyledTextCtrl_SetTargetStart", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetStart
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21396          { (char *)"StyledTextCtrl_GetTargetStart", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetStart
, METH_O
, NULL
}, 
21397          { (char *)"StyledTextCtrl_SetTargetEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetEnd
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21398          { (char *)"StyledTextCtrl_GetTargetEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetEnd
, METH_O
, NULL
}, 
21399          { (char *)"StyledTextCtrl_ReplaceTarget", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTarget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21400          { (char *)"StyledTextCtrl_ReplaceTargetRE", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTargetRE
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21401          { (char *)"StyledTextCtrl_SearchInTarget", (PyCFunction
) _wrap_StyledTextCtrl_SearchInTarget
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21402          { (char *)"StyledTextCtrl_SetSearchFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetSearchFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21403          { (char *)"StyledTextCtrl_GetSearchFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetSearchFlags
, METH_O
, NULL
}, 
21404          { (char *)"StyledTextCtrl_CallTipShow", (PyCFunction
) _wrap_StyledTextCtrl_CallTipShow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21405          { (char *)"StyledTextCtrl_CallTipCancel", (PyCFunction
)_wrap_StyledTextCtrl_CallTipCancel
, METH_O
, NULL
}, 
21406          { (char *)"StyledTextCtrl_CallTipActive", (PyCFunction
)_wrap_StyledTextCtrl_CallTipActive
, METH_O
, NULL
}, 
21407          { (char *)"StyledTextCtrl_CallTipPosAtStart", (PyCFunction
)_wrap_StyledTextCtrl_CallTipPosAtStart
, METH_O
, NULL
}, 
21408          { (char *)"StyledTextCtrl_CallTipSetHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetHighlight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21409          { (char *)"StyledTextCtrl_CallTipSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21410          { (char *)"StyledTextCtrl_CallTipSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21411          { (char *)"StyledTextCtrl_CallTipSetForegroundHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForegroundHighlight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21412          { (char *)"StyledTextCtrl_CallTipUseStyle", (PyCFunction
) _wrap_StyledTextCtrl_CallTipUseStyle
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21413          { (char *)"StyledTextCtrl_VisibleFromDocLine", (PyCFunction
) _wrap_StyledTextCtrl_VisibleFromDocLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21414          { (char *)"StyledTextCtrl_DocLineFromVisible", (PyCFunction
) _wrap_StyledTextCtrl_DocLineFromVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21415          { (char *)"StyledTextCtrl_WrapCount", (PyCFunction
) _wrap_StyledTextCtrl_WrapCount
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21416          { (char *)"StyledTextCtrl_SetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldLevel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21417          { (char *)"StyledTextCtrl_GetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldLevel
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21418          { (char *)"StyledTextCtrl_GetLastChild", (PyCFunction
) _wrap_StyledTextCtrl_GetLastChild
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21419          { (char *)"StyledTextCtrl_GetFoldParent", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldParent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21420          { (char *)"StyledTextCtrl_ShowLines", (PyCFunction
) _wrap_StyledTextCtrl_ShowLines
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21421          { (char *)"StyledTextCtrl_HideLines", (PyCFunction
) _wrap_StyledTextCtrl_HideLines
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21422          { (char *)"StyledTextCtrl_GetLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_GetLineVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21423          { (char *)"StyledTextCtrl_SetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldExpanded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21424          { (char *)"StyledTextCtrl_GetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldExpanded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21425          { (char *)"StyledTextCtrl_ToggleFold", (PyCFunction
) _wrap_StyledTextCtrl_ToggleFold
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21426          { (char *)"StyledTextCtrl_EnsureVisible", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisible
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21427          { (char *)"StyledTextCtrl_SetFoldFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21428          { (char *)"StyledTextCtrl_EnsureVisibleEnforcePolicy", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21429          { (char *)"StyledTextCtrl_SetTabIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetTabIndents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21430          { (char *)"StyledTextCtrl_GetTabIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetTabIndents
, METH_O
, NULL
}, 
21431          { (char *)"StyledTextCtrl_SetBackSpaceUnIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetBackSpaceUnIndents
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21432          { (char *)"StyledTextCtrl_GetBackSpaceUnIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetBackSpaceUnIndents
, METH_O
, NULL
}, 
21433          { (char *)"StyledTextCtrl_SetMouseDwellTime", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDwellTime
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21434          { (char *)"StyledTextCtrl_GetMouseDwellTime", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDwellTime
, METH_O
, NULL
}, 
21435          { (char *)"StyledTextCtrl_WordStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordStartPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21436          { (char *)"StyledTextCtrl_WordEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordEndPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21437          { (char *)"StyledTextCtrl_SetWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21438          { (char *)"StyledTextCtrl_GetWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapMode
, METH_O
, NULL
}, 
21439          { (char *)"StyledTextCtrl_SetWrapVisualFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlags
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21440          { (char *)"StyledTextCtrl_GetWrapVisualFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlags
, METH_O
, NULL
}, 
21441          { (char *)"StyledTextCtrl_SetWrapVisualFlagsLocation", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlagsLocation
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21442          { (char *)"StyledTextCtrl_GetWrapVisualFlagsLocation", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation
, METH_O
, NULL
}, 
21443          { (char *)"StyledTextCtrl_SetWrapStartIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapStartIndent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21444          { (char *)"StyledTextCtrl_GetWrapStartIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapStartIndent
, METH_O
, NULL
}, 
21445          { (char *)"StyledTextCtrl_SetLayoutCache", (PyCFunction
) _wrap_StyledTextCtrl_SetLayoutCache
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21446          { (char *)"StyledTextCtrl_GetLayoutCache", (PyCFunction
)_wrap_StyledTextCtrl_GetLayoutCache
, METH_O
, NULL
}, 
21447          { (char *)"StyledTextCtrl_SetScrollWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetScrollWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21448          { (char *)"StyledTextCtrl_GetScrollWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetScrollWidth
, METH_O
, NULL
}, 
21449          { (char *)"StyledTextCtrl_TextWidth", (PyCFunction
) _wrap_StyledTextCtrl_TextWidth
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21450          { (char *)"StyledTextCtrl_SetEndAtLastLine", (PyCFunction
) _wrap_StyledTextCtrl_SetEndAtLastLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21451          { (char *)"StyledTextCtrl_GetEndAtLastLine", (PyCFunction
)_wrap_StyledTextCtrl_GetEndAtLastLine
, METH_O
, NULL
}, 
21452          { (char *)"StyledTextCtrl_TextHeight", (PyCFunction
) _wrap_StyledTextCtrl_TextHeight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21453          { (char *)"StyledTextCtrl_SetUseVerticalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseVerticalScrollBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21454          { (char *)"StyledTextCtrl_GetUseVerticalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseVerticalScrollBar
, METH_O
, NULL
}, 
21455          { (char *)"StyledTextCtrl_AppendText", (PyCFunction
) _wrap_StyledTextCtrl_AppendText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21456          { (char *)"StyledTextCtrl_GetTwoPhaseDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetTwoPhaseDraw
, METH_O
, NULL
}, 
21457          { (char *)"StyledTextCtrl_SetTwoPhaseDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetTwoPhaseDraw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21458          { (char *)"StyledTextCtrl_TargetFromSelection", (PyCFunction
)_wrap_StyledTextCtrl_TargetFromSelection
, METH_O
, NULL
}, 
21459          { (char *)"StyledTextCtrl_LinesJoin", (PyCFunction
)_wrap_StyledTextCtrl_LinesJoin
, METH_O
, NULL
}, 
21460          { (char *)"StyledTextCtrl_LinesSplit", (PyCFunction
) _wrap_StyledTextCtrl_LinesSplit
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21461          { (char *)"StyledTextCtrl_SetFoldMarginColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21462          { (char *)"StyledTextCtrl_SetFoldMarginHiColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginHiColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21463          { (char *)"StyledTextCtrl_LineDown", (PyCFunction
)_wrap_StyledTextCtrl_LineDown
, METH_O
, NULL
}, 
21464          { (char *)"StyledTextCtrl_LineDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownExtend
, METH_O
, NULL
}, 
21465          { (char *)"StyledTextCtrl_LineUp", (PyCFunction
)_wrap_StyledTextCtrl_LineUp
, METH_O
, NULL
}, 
21466          { (char *)"StyledTextCtrl_LineUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpExtend
, METH_O
, NULL
}, 
21467          { (char *)"StyledTextCtrl_CharLeft", (PyCFunction
)_wrap_StyledTextCtrl_CharLeft
, METH_O
, NULL
}, 
21468          { (char *)"StyledTextCtrl_CharLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftExtend
, METH_O
, NULL
}, 
21469          { (char *)"StyledTextCtrl_CharRight", (PyCFunction
)_wrap_StyledTextCtrl_CharRight
, METH_O
, NULL
}, 
21470          { (char *)"StyledTextCtrl_CharRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightExtend
, METH_O
, NULL
}, 
21471          { (char *)"StyledTextCtrl_WordLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordLeft
, METH_O
, NULL
}, 
21472          { (char *)"StyledTextCtrl_WordLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftExtend
, METH_O
, NULL
}, 
21473          { (char *)"StyledTextCtrl_WordRight", (PyCFunction
)_wrap_StyledTextCtrl_WordRight
, METH_O
, NULL
}, 
21474          { (char *)"StyledTextCtrl_WordRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightExtend
, METH_O
, NULL
}, 
21475          { (char *)"StyledTextCtrl_Home", (PyCFunction
)_wrap_StyledTextCtrl_Home
, METH_O
, NULL
}, 
21476          { (char *)"StyledTextCtrl_HomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeExtend
, METH_O
, NULL
}, 
21477          { (char *)"StyledTextCtrl_LineEnd", (PyCFunction
)_wrap_StyledTextCtrl_LineEnd
, METH_O
, NULL
}, 
21478          { (char *)"StyledTextCtrl_LineEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndExtend
, METH_O
, NULL
}, 
21479          { (char *)"StyledTextCtrl_DocumentStart", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStart
, METH_O
, NULL
}, 
21480          { (char *)"StyledTextCtrl_DocumentStartExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStartExtend
, METH_O
, NULL
}, 
21481          { (char *)"StyledTextCtrl_DocumentEnd", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEnd
, METH_O
, NULL
}, 
21482          { (char *)"StyledTextCtrl_DocumentEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEndExtend
, METH_O
, NULL
}, 
21483          { (char *)"StyledTextCtrl_PageUp", (PyCFunction
)_wrap_StyledTextCtrl_PageUp
, METH_O
, NULL
}, 
21484          { (char *)"StyledTextCtrl_PageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpExtend
, METH_O
, NULL
}, 
21485          { (char *)"StyledTextCtrl_PageDown", (PyCFunction
)_wrap_StyledTextCtrl_PageDown
, METH_O
, NULL
}, 
21486          { (char *)"StyledTextCtrl_PageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownExtend
, METH_O
, NULL
}, 
21487          { (char *)"StyledTextCtrl_EditToggleOvertype", (PyCFunction
)_wrap_StyledTextCtrl_EditToggleOvertype
, METH_O
, NULL
}, 
21488          { (char *)"StyledTextCtrl_Cancel", (PyCFunction
)_wrap_StyledTextCtrl_Cancel
, METH_O
, NULL
}, 
21489          { (char *)"StyledTextCtrl_DeleteBack", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBack
, METH_O
, NULL
}, 
21490          { (char *)"StyledTextCtrl_Tab", (PyCFunction
)_wrap_StyledTextCtrl_Tab
, METH_O
, NULL
}, 
21491          { (char *)"StyledTextCtrl_BackTab", (PyCFunction
)_wrap_StyledTextCtrl_BackTab
, METH_O
, NULL
}, 
21492          { (char *)"StyledTextCtrl_NewLine", (PyCFunction
)_wrap_StyledTextCtrl_NewLine
, METH_O
, NULL
}, 
21493          { (char *)"StyledTextCtrl_FormFeed", (PyCFunction
)_wrap_StyledTextCtrl_FormFeed
, METH_O
, NULL
}, 
21494          { (char *)"StyledTextCtrl_VCHome", (PyCFunction
)_wrap_StyledTextCtrl_VCHome
, METH_O
, NULL
}, 
21495          { (char *)"StyledTextCtrl_VCHomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeExtend
, METH_O
, NULL
}, 
21496          { (char *)"StyledTextCtrl_ZoomIn", (PyCFunction
)_wrap_StyledTextCtrl_ZoomIn
, METH_O
, NULL
}, 
21497          { (char *)"StyledTextCtrl_ZoomOut", (PyCFunction
)_wrap_StyledTextCtrl_ZoomOut
, METH_O
, NULL
}, 
21498          { (char *)"StyledTextCtrl_DelWordLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelWordLeft
, METH_O
, NULL
}, 
21499          { (char *)"StyledTextCtrl_DelWordRight", (PyCFunction
)_wrap_StyledTextCtrl_DelWordRight
, METH_O
, NULL
}, 
21500          { (char *)"StyledTextCtrl_LineCut", (PyCFunction
)_wrap_StyledTextCtrl_LineCut
, METH_O
, NULL
}, 
21501          { (char *)"StyledTextCtrl_LineDelete", (PyCFunction
)_wrap_StyledTextCtrl_LineDelete
, METH_O
, NULL
}, 
21502          { (char *)"StyledTextCtrl_LineTranspose", (PyCFunction
)_wrap_StyledTextCtrl_LineTranspose
, METH_O
, NULL
}, 
21503          { (char *)"StyledTextCtrl_LineDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_LineDuplicate
, METH_O
, NULL
}, 
21504          { (char *)"StyledTextCtrl_LowerCase", (PyCFunction
)_wrap_StyledTextCtrl_LowerCase
, METH_O
, NULL
}, 
21505          { (char *)"StyledTextCtrl_UpperCase", (PyCFunction
)_wrap_StyledTextCtrl_UpperCase
, METH_O
, NULL
}, 
21506          { (char *)"StyledTextCtrl_LineScrollDown", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollDown
, METH_O
, NULL
}, 
21507          { (char *)"StyledTextCtrl_LineScrollUp", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollUp
, METH_O
, NULL
}, 
21508          { (char *)"StyledTextCtrl_DeleteBackNotLine", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBackNotLine
, METH_O
, NULL
}, 
21509          { (char *)"StyledTextCtrl_HomeDisplay", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplay
, METH_O
, NULL
}, 
21510          { (char *)"StyledTextCtrl_HomeDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplayExtend
, METH_O
, NULL
}, 
21511          { (char *)"StyledTextCtrl_LineEndDisplay", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplay
, METH_O
, NULL
}, 
21512          { (char *)"StyledTextCtrl_LineEndDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplayExtend
, METH_O
, NULL
}, 
21513          { (char *)"StyledTextCtrl_HomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrap
, METH_O
, NULL
}, 
21514          { (char *)"StyledTextCtrl_HomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrapExtend
, METH_O
, NULL
}, 
21515          { (char *)"StyledTextCtrl_LineEndWrap", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrap
, METH_O
, NULL
}, 
21516          { (char *)"StyledTextCtrl_LineEndWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrapExtend
, METH_O
, NULL
}, 
21517          { (char *)"StyledTextCtrl_VCHomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrap
, METH_O
, NULL
}, 
21518          { (char *)"StyledTextCtrl_VCHomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrapExtend
, METH_O
, NULL
}, 
21519          { (char *)"StyledTextCtrl_LineCopy", (PyCFunction
)_wrap_StyledTextCtrl_LineCopy
, METH_O
, NULL
}, 
21520          { (char *)"StyledTextCtrl_MoveCaretInsideView", (PyCFunction
)_wrap_StyledTextCtrl_MoveCaretInsideView
, METH_O
, NULL
}, 
21521          { (char *)"StyledTextCtrl_LineLength", (PyCFunction
) _wrap_StyledTextCtrl_LineLength
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21522          { (char *)"StyledTextCtrl_BraceHighlight", (PyCFunction
) _wrap_StyledTextCtrl_BraceHighlight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21523          { (char *)"StyledTextCtrl_BraceBadLight", (PyCFunction
) _wrap_StyledTextCtrl_BraceBadLight
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21524          { (char *)"StyledTextCtrl_BraceMatch", (PyCFunction
) _wrap_StyledTextCtrl_BraceMatch
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21525          { (char *)"StyledTextCtrl_GetViewEOL", (PyCFunction
)_wrap_StyledTextCtrl_GetViewEOL
, METH_O
, NULL
}, 
21526          { (char *)"StyledTextCtrl_SetViewEOL", (PyCFunction
) _wrap_StyledTextCtrl_SetViewEOL
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21527          { (char *)"StyledTextCtrl_GetDocPointer", (PyCFunction
)_wrap_StyledTextCtrl_GetDocPointer
, METH_O
, NULL
}, 
21528          { (char *)"StyledTextCtrl_SetDocPointer", (PyCFunction
) _wrap_StyledTextCtrl_SetDocPointer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21529          { (char *)"StyledTextCtrl_SetModEventMask", (PyCFunction
) _wrap_StyledTextCtrl_SetModEventMask
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21530          { (char *)"StyledTextCtrl_GetEdgeColumn", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColumn
, METH_O
, NULL
}, 
21531          { (char *)"StyledTextCtrl_SetEdgeColumn", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColumn
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21532          { (char *)"StyledTextCtrl_GetEdgeMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeMode
, METH_O
, NULL
}, 
21533          { (char *)"StyledTextCtrl_SetEdgeMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21534          { (char *)"StyledTextCtrl_GetEdgeColour", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColour
, METH_O
, NULL
}, 
21535          { (char *)"StyledTextCtrl_SetEdgeColour", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColour
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21536          { (char *)"StyledTextCtrl_SearchAnchor", (PyCFunction
)_wrap_StyledTextCtrl_SearchAnchor
, METH_O
, NULL
}, 
21537          { (char *)"StyledTextCtrl_SearchNext", (PyCFunction
) _wrap_StyledTextCtrl_SearchNext
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21538          { (char *)"StyledTextCtrl_SearchPrev", (PyCFunction
) _wrap_StyledTextCtrl_SearchPrev
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21539          { (char *)"StyledTextCtrl_LinesOnScreen", (PyCFunction
)_wrap_StyledTextCtrl_LinesOnScreen
, METH_O
, NULL
}, 
21540          { (char *)"StyledTextCtrl_UsePopUp", (PyCFunction
) _wrap_StyledTextCtrl_UsePopUp
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21541          { (char *)"StyledTextCtrl_SelectionIsRectangle", (PyCFunction
)_wrap_StyledTextCtrl_SelectionIsRectangle
, METH_O
, NULL
}, 
21542          { (char *)"StyledTextCtrl_SetZoom", (PyCFunction
) _wrap_StyledTextCtrl_SetZoom
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21543          { (char *)"StyledTextCtrl_GetZoom", (PyCFunction
)_wrap_StyledTextCtrl_GetZoom
, METH_O
, NULL
}, 
21544          { (char *)"StyledTextCtrl_CreateDocument", (PyCFunction
)_wrap_StyledTextCtrl_CreateDocument
, METH_O
, NULL
}, 
21545          { (char *)"StyledTextCtrl_AddRefDocument", (PyCFunction
) _wrap_StyledTextCtrl_AddRefDocument
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21546          { (char *)"StyledTextCtrl_ReleaseDocument", (PyCFunction
) _wrap_StyledTextCtrl_ReleaseDocument
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21547          { (char *)"StyledTextCtrl_GetModEventMask", (PyCFunction
)_wrap_StyledTextCtrl_GetModEventMask
, METH_O
, NULL
}, 
21548          { (char *)"StyledTextCtrl_SetSTCFocus", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCFocus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21549          { (char *)"StyledTextCtrl_GetSTCFocus", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCFocus
, METH_O
, NULL
}, 
21550          { (char *)"StyledTextCtrl_SetStatus", (PyCFunction
) _wrap_StyledTextCtrl_SetStatus
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21551          { (char *)"StyledTextCtrl_GetStatus", (PyCFunction
)_wrap_StyledTextCtrl_GetStatus
, METH_O
, NULL
}, 
21552          { (char *)"StyledTextCtrl_SetMouseDownCaptures", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDownCaptures
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21553          { (char *)"StyledTextCtrl_GetMouseDownCaptures", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDownCaptures
, METH_O
, NULL
}, 
21554          { (char *)"StyledTextCtrl_SetSTCCursor", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCCursor
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21555          { (char *)"StyledTextCtrl_GetSTCCursor", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCCursor
, METH_O
, NULL
}, 
21556          { (char *)"StyledTextCtrl_SetControlCharSymbol", (PyCFunction
) _wrap_StyledTextCtrl_SetControlCharSymbol
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21557          { (char *)"StyledTextCtrl_GetControlCharSymbol", (PyCFunction
)_wrap_StyledTextCtrl_GetControlCharSymbol
, METH_O
, NULL
}, 
21558          { (char *)"StyledTextCtrl_WordPartLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeft
, METH_O
, NULL
}, 
21559          { (char *)"StyledTextCtrl_WordPartLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeftExtend
, METH_O
, NULL
}, 
21560          { (char *)"StyledTextCtrl_WordPartRight", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRight
, METH_O
, NULL
}, 
21561          { (char *)"StyledTextCtrl_WordPartRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRightExtend
, METH_O
, NULL
}, 
21562          { (char *)"StyledTextCtrl_SetVisiblePolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetVisiblePolicy
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21563          { (char *)"StyledTextCtrl_DelLineLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelLineLeft
, METH_O
, NULL
}, 
21564          { (char *)"StyledTextCtrl_DelLineRight", (PyCFunction
)_wrap_StyledTextCtrl_DelLineRight
, METH_O
, NULL
}, 
21565          { (char *)"StyledTextCtrl_SetXOffset", (PyCFunction
) _wrap_StyledTextCtrl_SetXOffset
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21566          { (char *)"StyledTextCtrl_GetXOffset", (PyCFunction
)_wrap_StyledTextCtrl_GetXOffset
, METH_O
, NULL
}, 
21567          { (char *)"StyledTextCtrl_ChooseCaretX", (PyCFunction
)_wrap_StyledTextCtrl_ChooseCaretX
, METH_O
, NULL
}, 
21568          { (char *)"StyledTextCtrl_SetXCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetXCaretPolicy
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21569          { (char *)"StyledTextCtrl_SetYCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetYCaretPolicy
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21570          { (char *)"StyledTextCtrl_SetPrintWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintWrapMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21571          { (char *)"StyledTextCtrl_GetPrintWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintWrapMode
, METH_O
, NULL
}, 
21572          { (char *)"StyledTextCtrl_SetHotspotActiveForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveForeground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21573          { (char *)"StyledTextCtrl_SetHotspotActiveBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveBackground
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21574          { (char *)"StyledTextCtrl_SetHotspotActiveUnderline", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveUnderline
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21575          { (char *)"StyledTextCtrl_SetHotspotSingleLine", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotSingleLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21576          { (char *)"StyledTextCtrl_ParaDown", (PyCFunction
)_wrap_StyledTextCtrl_ParaDown
, METH_O
, NULL
}, 
21577          { (char *)"StyledTextCtrl_ParaDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaDownExtend
, METH_O
, NULL
}, 
21578          { (char *)"StyledTextCtrl_ParaUp", (PyCFunction
)_wrap_StyledTextCtrl_ParaUp
, METH_O
, NULL
}, 
21579          { (char *)"StyledTextCtrl_ParaUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaUpExtend
, METH_O
, NULL
}, 
21580          { (char *)"StyledTextCtrl_PositionBefore", (PyCFunction
) _wrap_StyledTextCtrl_PositionBefore
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21581          { (char *)"StyledTextCtrl_PositionAfter", (PyCFunction
) _wrap_StyledTextCtrl_PositionAfter
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21582          { (char *)"StyledTextCtrl_CopyRange", (PyCFunction
) _wrap_StyledTextCtrl_CopyRange
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21583          { (char *)"StyledTextCtrl_CopyText", (PyCFunction
) _wrap_StyledTextCtrl_CopyText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21584          { (char *)"StyledTextCtrl_SetSelectionMode", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionMode
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21585          { (char *)"StyledTextCtrl_GetSelectionMode", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionMode
, METH_O
, NULL
}, 
21586          { (char *)"StyledTextCtrl_GetLineSelStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelStartPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21587          { (char *)"StyledTextCtrl_GetLineSelEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelEndPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21588          { (char *)"StyledTextCtrl_LineDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownRectExtend
, METH_O
, NULL
}, 
21589          { (char *)"StyledTextCtrl_LineUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpRectExtend
, METH_O
, NULL
}, 
21590          { (char *)"StyledTextCtrl_CharLeftRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftRectExtend
, METH_O
, NULL
}, 
21591          { (char *)"StyledTextCtrl_CharRightRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightRectExtend
, METH_O
, NULL
}, 
21592          { (char *)"StyledTextCtrl_HomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeRectExtend
, METH_O
, NULL
}, 
21593          { (char *)"StyledTextCtrl_VCHomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeRectExtend
, METH_O
, NULL
}, 
21594          { (char *)"StyledTextCtrl_LineEndRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndRectExtend
, METH_O
, NULL
}, 
21595          { (char *)"StyledTextCtrl_PageUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpRectExtend
, METH_O
, NULL
}, 
21596          { (char *)"StyledTextCtrl_PageDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownRectExtend
, METH_O
, NULL
}, 
21597          { (char *)"StyledTextCtrl_StutteredPageUp", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUp
, METH_O
, NULL
}, 
21598          { (char *)"StyledTextCtrl_StutteredPageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUpExtend
, METH_O
, NULL
}, 
21599          { (char *)"StyledTextCtrl_StutteredPageDown", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDown
, METH_O
, NULL
}, 
21600          { (char *)"StyledTextCtrl_StutteredPageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDownExtend
, METH_O
, NULL
}, 
21601          { (char *)"StyledTextCtrl_WordLeftEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEnd
, METH_O
, NULL
}, 
21602          { (char *)"StyledTextCtrl_WordLeftEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEndExtend
, METH_O
, NULL
}, 
21603          { (char *)"StyledTextCtrl_WordRightEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEnd
, METH_O
, NULL
}, 
21604          { (char *)"StyledTextCtrl_WordRightEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEndExtend
, METH_O
, NULL
}, 
21605          { (char *)"StyledTextCtrl_SetWhitespaceChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceChars
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21606          { (char *)"StyledTextCtrl_SetCharsDefault", (PyCFunction
)_wrap_StyledTextCtrl_SetCharsDefault
, METH_O
, NULL
}, 
21607          { (char *)"StyledTextCtrl_AutoCompGetCurrent", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCurrent
, METH_O
, NULL
}, 
21608          { (char *)"StyledTextCtrl_Allocate", (PyCFunction
) _wrap_StyledTextCtrl_Allocate
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21609          { (char *)"StyledTextCtrl_FindColumn", (PyCFunction
) _wrap_StyledTextCtrl_FindColumn
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21610          { (char *)"StyledTextCtrl_GetCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretSticky
, METH_O
, NULL
}, 
21611          { (char *)"StyledTextCtrl_SetCaretSticky", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretSticky
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21612          { (char *)"StyledTextCtrl_ToggleCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_ToggleCaretSticky
, METH_O
, NULL
}, 
21613          { (char *)"StyledTextCtrl_SetPasteConvertEndings", (PyCFunction
) _wrap_StyledTextCtrl_SetPasteConvertEndings
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21614          { (char *)"StyledTextCtrl_GetPasteConvertEndings", (PyCFunction
)_wrap_StyledTextCtrl_GetPasteConvertEndings
, METH_O
, NULL
}, 
21615          { (char *)"StyledTextCtrl_SelectionDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_SelectionDuplicate
, METH_O
, NULL
}, 
21616          { (char *)"StyledTextCtrl_SetCaretLineBackAlpha", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineBackAlpha
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21617          { (char *)"StyledTextCtrl_GetCaretLineBackAlpha", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineBackAlpha
, METH_O
, NULL
}, 
21618          { (char *)"StyledTextCtrl_StartRecord", (PyCFunction
)_wrap_StyledTextCtrl_StartRecord
, METH_O
, NULL
}, 
21619          { (char *)"StyledTextCtrl_StopRecord", (PyCFunction
)_wrap_StyledTextCtrl_StopRecord
, METH_O
, NULL
}, 
21620          { (char *)"StyledTextCtrl_SetLexer", (PyCFunction
) _wrap_StyledTextCtrl_SetLexer
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21621          { (char *)"StyledTextCtrl_GetLexer", (PyCFunction
)_wrap_StyledTextCtrl_GetLexer
, METH_O
, NULL
}, 
21622          { (char *)"StyledTextCtrl_Colourise", (PyCFunction
) _wrap_StyledTextCtrl_Colourise
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21623          { (char *)"StyledTextCtrl_SetProperty", (PyCFunction
) _wrap_StyledTextCtrl_SetProperty
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21624          { (char *)"StyledTextCtrl_SetKeyWords", (PyCFunction
) _wrap_StyledTextCtrl_SetKeyWords
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21625          { (char *)"StyledTextCtrl_SetLexerLanguage", (PyCFunction
) _wrap_StyledTextCtrl_SetLexerLanguage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21626          { (char *)"StyledTextCtrl_GetProperty", (PyCFunction
) _wrap_StyledTextCtrl_GetProperty
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21627          { (char *)"StyledTextCtrl_GetPropertyExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyExpanded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21628          { (char *)"StyledTextCtrl_GetPropertyInt", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyInt
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21629          { (char *)"StyledTextCtrl_GetStyleBitsNeeded", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBitsNeeded
, METH_O
, NULL
}, 
21630          { (char *)"StyledTextCtrl_GetCurrentLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentLine
, METH_O
, NULL
}, 
21631          { (char *)"StyledTextCtrl_StyleSetSpec", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSpec
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21632          { (char *)"StyledTextCtrl_StyleSetFont", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFont
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21633          { (char *)"StyledTextCtrl_StyleSetFontAttr", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontAttr
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21634          { (char *)"StyledTextCtrl_StyleSetCharacterSet", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCharacterSet
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21635          { (char *)"StyledTextCtrl_StyleSetFontEncoding", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontEncoding
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21636          { (char *)"StyledTextCtrl_CmdKeyExecute", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyExecute
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21637          { (char *)"StyledTextCtrl_SetMargins", (PyCFunction
) _wrap_StyledTextCtrl_SetMargins
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21638          { (char *)"StyledTextCtrl_GetSelection", (PyCFunction
)_wrap_StyledTextCtrl_GetSelection
, METH_O
, NULL
}, 
21639          { (char *)"StyledTextCtrl_PointFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_PointFromPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21640          { (char *)"StyledTextCtrl_ScrollToLine", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21641          { (char *)"StyledTextCtrl_ScrollToColumn", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToColumn
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21642          { (char *)"StyledTextCtrl_SendMsg", (PyCFunction
) _wrap_StyledTextCtrl_SendMsg
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21643          { (char *)"StyledTextCtrl_SetVScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetVScrollBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21644          { (char *)"StyledTextCtrl_SetHScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetHScrollBar
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21645          { (char *)"StyledTextCtrl_GetLastKeydownProcessed", (PyCFunction
)_wrap_StyledTextCtrl_GetLastKeydownProcessed
, METH_O
, NULL
}, 
21646          { (char *)"StyledTextCtrl_SetLastKeydownProcessed", (PyCFunction
) _wrap_StyledTextCtrl_SetLastKeydownProcessed
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21647          { (char *)"StyledTextCtrl_SaveFile", (PyCFunction
) _wrap_StyledTextCtrl_SaveFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21648          { (char *)"StyledTextCtrl_LoadFile", (PyCFunction
) _wrap_StyledTextCtrl_LoadFile
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21649          { (char *)"StyledTextCtrl_DoDragOver", (PyCFunction
) _wrap_StyledTextCtrl_DoDragOver
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21650          { (char *)"StyledTextCtrl_DoDropText", (PyCFunction
) _wrap_StyledTextCtrl_DoDropText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21651          { (char *)"StyledTextCtrl_SetUseAntiAliasing", (PyCFunction
) _wrap_StyledTextCtrl_SetUseAntiAliasing
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21652          { (char *)"StyledTextCtrl_GetUseAntiAliasing", (PyCFunction
)_wrap_StyledTextCtrl_GetUseAntiAliasing
, METH_O
, NULL
}, 
21653          { (char *)"StyledTextCtrl_AddTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AddTextRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21654          { (char *)"StyledTextCtrl_InsertTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_InsertTextRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21655          { (char *)"StyledTextCtrl_GetCurLineRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLineRaw
, METH_O
, NULL
}, 
21656          { (char *)"StyledTextCtrl_GetLineRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetLineRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21657          { (char *)"StyledTextCtrl_GetSelectedTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedTextRaw
, METH_O
, NULL
}, 
21658          { (char *)"StyledTextCtrl_GetTextRangeRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRangeRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21659          { (char *)"StyledTextCtrl_SetTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_SetTextRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21660          { (char *)"StyledTextCtrl_GetTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetTextRaw
, METH_O
, NULL
}, 
21661          { (char *)"StyledTextCtrl_AppendTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AppendTextRaw
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21662          { (char *)"StyledTextCtrl_swigregister", StyledTextCtrl_swigregister
, METH_VARARGS
, NULL
}, 
21663          { (char *)"StyledTextCtrl_swiginit", StyledTextCtrl_swiginit
, METH_VARARGS
, NULL
}, 
21664          { (char *)"new_StyledTextEvent", (PyCFunction
) _wrap_new_StyledTextEvent
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21665          { (char *)"delete_StyledTextEvent", (PyCFunction
)_wrap_delete_StyledTextEvent
, METH_O
, NULL
}, 
21666          { (char *)"StyledTextEvent_SetPosition", (PyCFunction
) _wrap_StyledTextEvent_SetPosition
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21667          { (char *)"StyledTextEvent_SetKey", (PyCFunction
) _wrap_StyledTextEvent_SetKey
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21668          { (char *)"StyledTextEvent_SetModifiers", (PyCFunction
) _wrap_StyledTextEvent_SetModifiers
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21669          { (char *)"StyledTextEvent_SetModificationType", (PyCFunction
) _wrap_StyledTextEvent_SetModificationType
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21670          { (char *)"StyledTextEvent_SetText", (PyCFunction
) _wrap_StyledTextEvent_SetText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21671          { (char *)"StyledTextEvent_SetLength", (PyCFunction
) _wrap_StyledTextEvent_SetLength
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21672          { (char *)"StyledTextEvent_SetLinesAdded", (PyCFunction
) _wrap_StyledTextEvent_SetLinesAdded
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21673          { (char *)"StyledTextEvent_SetLine", (PyCFunction
) _wrap_StyledTextEvent_SetLine
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21674          { (char *)"StyledTextEvent_SetFoldLevelNow", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelNow
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21675          { (char *)"StyledTextEvent_SetFoldLevelPrev", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelPrev
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21676          { (char *)"StyledTextEvent_SetMargin", (PyCFunction
) _wrap_StyledTextEvent_SetMargin
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21677          { (char *)"StyledTextEvent_SetMessage", (PyCFunction
) _wrap_StyledTextEvent_SetMessage
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21678          { (char *)"StyledTextEvent_SetWParam", (PyCFunction
) _wrap_StyledTextEvent_SetWParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21679          { (char *)"StyledTextEvent_SetLParam", (PyCFunction
) _wrap_StyledTextEvent_SetLParam
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21680          { (char *)"StyledTextEvent_SetListType", (PyCFunction
) _wrap_StyledTextEvent_SetListType
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21681          { (char *)"StyledTextEvent_SetX", (PyCFunction
) _wrap_StyledTextEvent_SetX
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21682          { (char *)"StyledTextEvent_SetY", (PyCFunction
) _wrap_StyledTextEvent_SetY
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21683          { (char *)"StyledTextEvent_SetDragText", (PyCFunction
) _wrap_StyledTextEvent_SetDragText
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21684          { (char *)"StyledTextEvent_SetDragAllowMove", (PyCFunction
) _wrap_StyledTextEvent_SetDragAllowMove
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21685          { (char *)"StyledTextEvent_SetDragResult", (PyCFunction
) _wrap_StyledTextEvent_SetDragResult
, METH_VARARGS 
| METH_KEYWORDS
, NULL
}, 
21686          { (char *)"StyledTextEvent_GetPosition", (PyCFunction
)_wrap_StyledTextEvent_GetPosition
, METH_O
, NULL
}, 
21687          { (char *)"StyledTextEvent_GetKey", (PyCFunction
)_wrap_StyledTextEvent_GetKey
, METH_O
, NULL
}, 
21688          { (char *)"StyledTextEvent_GetModifiers", (PyCFunction
)_wrap_StyledTextEvent_GetModifiers
, METH_O
, NULL
}, 
21689          { (char *)"StyledTextEvent_GetModificationType", (PyCFunction
)_wrap_StyledTextEvent_GetModificationType
, METH_O
, NULL
}, 
21690          { (char *)"StyledTextEvent_GetText", (PyCFunction
)_wrap_StyledTextEvent_GetText
, METH_O
, NULL
}, 
21691          { (char *)"StyledTextEvent_GetLength", (PyCFunction
)_wrap_StyledTextEvent_GetLength
, METH_O
, NULL
}, 
21692          { (char *)"StyledTextEvent_GetLinesAdded", (PyCFunction
)_wrap_StyledTextEvent_GetLinesAdded
, METH_O
, NULL
}, 
21693          { (char *)"StyledTextEvent_GetLine", (PyCFunction
)_wrap_StyledTextEvent_GetLine
, METH_O
, NULL
}, 
21694          { (char *)"StyledTextEvent_GetFoldLevelNow", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelNow
, METH_O
, NULL
}, 
21695          { (char *)"StyledTextEvent_GetFoldLevelPrev", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelPrev
, METH_O
, NULL
}, 
21696          { (char *)"StyledTextEvent_GetMargin", (PyCFunction
)_wrap_StyledTextEvent_GetMargin
, METH_O
, NULL
}, 
21697          { (char *)"StyledTextEvent_GetMessage", (PyCFunction
)_wrap_StyledTextEvent_GetMessage
, METH_O
, NULL
}, 
21698          { (char *)"StyledTextEvent_GetWParam", (PyCFunction
)_wrap_StyledTextEvent_GetWParam
, METH_O
, NULL
}, 
21699          { (char *)"StyledTextEvent_GetLParam", (PyCFunction
)_wrap_StyledTextEvent_GetLParam
, METH_O
, NULL
}, 
21700          { (char *)"StyledTextEvent_GetListType", (PyCFunction
)_wrap_StyledTextEvent_GetListType
, METH_O
, NULL
}, 
21701          { (char *)"StyledTextEvent_GetX", (PyCFunction
)_wrap_StyledTextEvent_GetX
, METH_O
, NULL
}, 
21702          { (char *)"StyledTextEvent_GetY", (PyCFunction
)_wrap_StyledTextEvent_GetY
, METH_O
, NULL
}, 
21703          { (char *)"StyledTextEvent_GetDragText", (PyCFunction
)_wrap_StyledTextEvent_GetDragText
, METH_O
, NULL
}, 
21704          { (char *)"StyledTextEvent_GetDragAllowMove", (PyCFunction
)_wrap_StyledTextEvent_GetDragAllowMove
, METH_O
, NULL
}, 
21705          { (char *)"StyledTextEvent_GetDragResult", (PyCFunction
)_wrap_StyledTextEvent_GetDragResult
, METH_O
, NULL
}, 
21706          { (char *)"StyledTextEvent_GetShift", (PyCFunction
)_wrap_StyledTextEvent_GetShift
, METH_O
, NULL
}, 
21707          { (char *)"StyledTextEvent_GetControl", (PyCFunction
)_wrap_StyledTextEvent_GetControl
, METH_O
, NULL
}, 
21708          { (char *)"StyledTextEvent_GetAlt", (PyCFunction
)_wrap_StyledTextEvent_GetAlt
, METH_O
, NULL
}, 
21709          { (char *)"StyledTextEvent_swigregister", StyledTextEvent_swigregister
, METH_VARARGS
, NULL
}, 
21710          { (char *)"StyledTextEvent_swiginit", StyledTextEvent_swiginit
, METH_VARARGS
, NULL
}, 
21711          { NULL
, NULL
, 0, NULL 
} 
21715 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */ 
21717 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) { 
21718     return (void *)((wxObject 
*)  ((wxLayoutConstraints 
*) x
)); 
21720 static void *_p_wxSizerItemTo_p_wxObject(void *x
) { 
21721     return (void *)((wxObject 
*)  ((wxSizerItem 
*) x
)); 
21723 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) { 
21724     return (void *)((wxObject 
*) (wxSizerItem 
*) ((wxGBSizerItem 
*) x
)); 
21726 static void *_p_wxScrollEventTo_p_wxObject(void *x
) { 
21727     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
21729 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) { 
21730     return (void *)((wxObject 
*)  ((wxIndividualLayoutConstraint 
*) x
)); 
21732 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) { 
21733     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStaticBoxSizer 
*) x
)); 
21735 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) { 
21736     return (void *)((wxObject 
*) (wxSizer 
*) ((wxBoxSizer 
*) x
)); 
21738 static void *_p_wxSizerTo_p_wxObject(void *x
) { 
21739     return (void *)((wxObject 
*)  ((wxSizer 
*) x
)); 
21741 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) { 
21742     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*)(wxFlexGridSizer 
*) ((wxGridBagSizer 
*) x
)); 
21744 static void *_p_wxFileHistoryTo_p_wxObject(void *x
) { 
21745     return (void *)((wxObject 
*)  ((wxFileHistory 
*) x
)); 
21747 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) { 
21748     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
21750 static void *_p_wxEventTo_p_wxObject(void *x
) { 
21751     return (void *)((wxObject 
*)  ((wxEvent 
*) x
)); 
21753 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) { 
21754     return (void *)((wxObject 
*) (wxSizer 
*)(wxGridSizer 
*) ((wxFlexGridSizer 
*) x
)); 
21756 static void *_p_wxGridSizerTo_p_wxObject(void *x
) { 
21757     return (void *)((wxObject 
*) (wxSizer 
*) ((wxGridSizer 
*) x
)); 
21759 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) { 
21760     return (void *)((wxObject 
*) (wxEvent 
*) ((wxInitDialogEvent 
*) x
)); 
21762 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) { 
21763     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxClipboardTextEvent 
*) x
)); 
21765 static void *_p_wxPaintEventTo_p_wxObject(void *x
) { 
21766     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaintEvent 
*) x
)); 
21768 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) { 
21769     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNcPaintEvent 
*) x
)); 
21771 static void *_p_wxStyledTextEventTo_p_wxObject(void *x
) { 
21772     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxStyledTextEvent 
*) x
)); 
21774 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) { 
21775     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPaletteChangedEvent 
*) x
)); 
21777 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) { 
21778     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDisplayChangedEvent 
*) x
)); 
21780 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) { 
21781     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureChangedEvent 
*) x
)); 
21783 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) { 
21784     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSysColourChangedEvent 
*) x
)); 
21786 static void *_p_wxControlTo_p_wxObject(void *x
) { 
21787     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxControl 
*) x
)); 
21789 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) { 
21790     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSetCursorEvent 
*) x
)); 
21792 static void *_p_wxTimerEventTo_p_wxObject(void *x
) { 
21793     return (void *)((wxObject 
*) (wxEvent 
*) ((wxTimerEvent 
*) x
)); 
21795 static void *_p_wxPowerEventTo_p_wxObject(void *x
) { 
21796     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPowerEvent 
*) x
)); 
21798 static void *_p_wxFSFileTo_p_wxObject(void *x
) { 
21799     return (void *)((wxObject 
*)  ((wxFSFile 
*) x
)); 
21801 static void *_p_wxClipboardTo_p_wxObject(void *x
) { 
21802     return (void *)((wxObject 
*)  ((wxClipboard 
*) x
)); 
21804 static void *_p_wxPySizerTo_p_wxObject(void *x
) { 
21805     return (void *)((wxObject 
*) (wxSizer 
*) ((wxPySizer 
*) x
)); 
21807 static void *_p_wxStyledTextCtrlTo_p_wxObject(void *x
) { 
21808     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxStyledTextCtrl 
*) x
)); 
21810 static void *_p_wxPyEventTo_p_wxObject(void *x
) { 
21811     return (void *)((wxObject 
*) (wxEvent 
*) ((wxPyEvent 
*) x
)); 
21813 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) { 
21814     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
21816 static void *_p_wxShowEventTo_p_wxObject(void *x
) { 
21817     return (void *)((wxObject 
*) (wxEvent 
*) ((wxShowEvent 
*) x
)); 
21819 static void *_p_wxToolTipTo_p_wxObject(void *x
) { 
21820     return (void *)((wxObject 
*)  ((wxToolTip 
*) x
)); 
21822 static void *_p_wxMenuItemTo_p_wxObject(void *x
) { 
21823     return (void *)((wxObject 
*)  ((wxMenuItem 
*) x
)); 
21825 static void *_p_wxDateEventTo_p_wxObject(void *x
) { 
21826     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
21828 static void *_p_wxIdleEventTo_p_wxObject(void *x
) { 
21829     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIdleEvent 
*) x
)); 
21831 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) { 
21832     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
21834 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) { 
21835     return (void *)((wxObject 
*) (wxEvent 
*) ((wxQueryNewPaletteEvent 
*) x
)); 
21837 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) { 
21838     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMaximizeEvent 
*) x
)); 
21840 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) { 
21841     return (void *)((wxObject 
*) (wxEvent 
*) ((wxIconizeEvent 
*) x
)); 
21843 static void *_p_wxSizeEventTo_p_wxObject(void *x
) { 
21844     return (void *)((wxObject 
*) (wxEvent 
*) ((wxSizeEvent 
*) x
)); 
21846 static void *_p_wxMoveEventTo_p_wxObject(void *x
) { 
21847     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMoveEvent 
*) x
)); 
21849 static void *_p_wxActivateEventTo_p_wxObject(void *x
) { 
21850     return (void *)((wxObject 
*) (wxEvent 
*) ((wxActivateEvent 
*) x
)); 
21852 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) { 
21853     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNMHandler 
*) x
)); 
21855 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) { 
21856     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxJPEGHandler 
*) x
)); 
21858 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) { 
21859     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPCXHandler 
*) x
)); 
21861 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) { 
21862     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxGIFHandler 
*) x
)); 
21864 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) { 
21865     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPNGHandler 
*) x
)); 
21867 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) { 
21868     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*)(wxCURHandler 
*) ((wxANIHandler 
*) x
)); 
21870 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) { 
21871     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*)(wxICOHandler 
*) ((wxCURHandler 
*) x
)); 
21873 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) { 
21874     return (void *)((wxObject 
*) (wxImageHandler 
*)(wxBMPHandler 
*) ((wxICOHandler 
*) x
)); 
21876 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) { 
21877     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxBMPHandler 
*) x
)); 
21879 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) { 
21880     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxPyImageHandler 
*) x
)); 
21882 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) { 
21883     return (void *)((wxObject 
*)  ((wxImageHandler 
*) x
)); 
21885 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) { 
21886     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxXPMHandler 
*) x
)); 
21888 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) { 
21889     return (void *)((wxObject 
*) (wxImageHandler 
*) ((wxTIFFHandler 
*) x
)); 
21891 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) { 
21892     return (void *)((wxObject 
*)  ((wxEvtHandler 
*) x
)); 
21894 static void *_p_wxMouseCaptureLostEventTo_p_wxObject(void *x
) { 
21895     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseCaptureLostEvent 
*) x
)); 
21897 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) { 
21898     return (void *)((wxObject 
*) (wxSizer 
*)(wxBoxSizer 
*) ((wxStdDialogButtonSizer 
*) x
)); 
21900 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) { 
21901     return (void *)((wxObject 
*)  ((wxAcceleratorTable 
*) x
)); 
21903 static void *_p_wxImageTo_p_wxObject(void *x
) { 
21904     return (void *)((wxObject 
*)  ((wxImage 
*) x
)); 
21906 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) { 
21907     return (void *)((wxObject 
*) (wxEvent 
*) ((wxScrollWinEvent 
*) x
)); 
21909 static void *_p_wxSystemOptionsTo_p_wxObject(void *x
) { 
21910     return (void *)((wxObject 
*)  ((wxSystemOptions 
*) x
)); 
21912 static void *_p_wxJoystickEventTo_p_wxObject(void *x
) { 
21913     return (void *)((wxObject 
*) (wxEvent 
*) ((wxJoystickEvent 
*) x
)); 
21915 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) { 
21916     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
21918 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) { 
21919     return (void *)((wxObject 
*) (wxEvent 
*) ((wxNavigationKeyEvent 
*) x
)); 
21921 static void *_p_wxKeyEventTo_p_wxObject(void *x
) { 
21922     return (void *)((wxObject 
*) (wxEvent 
*) ((wxKeyEvent 
*) x
)); 
21924 static void *_p_wxWindowTo_p_wxObject(void *x
) { 
21925     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxWindow 
*) x
)); 
21927 static void *_p_wxMenuTo_p_wxObject(void *x
) { 
21928     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxMenu 
*) x
)); 
21930 static void *_p_wxMenuBarTo_p_wxObject(void *x
) { 
21931     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*) ((wxMenuBar 
*) x
)); 
21933 static void *_p_wxPyProcessTo_p_wxObject(void *x
) { 
21934     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyProcess 
*) x
)); 
21936 static void *_p_wxFileSystemTo_p_wxObject(void *x
) { 
21937     return (void *)((wxObject 
*)  ((wxFileSystem 
*) x
)); 
21939 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) { 
21940     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
21942 static void *_p_wxMenuEventTo_p_wxObject(void *x
) { 
21943     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMenuEvent 
*) x
)); 
21945 static void *_p_wxPyAppTo_p_wxObject(void *x
) { 
21946     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyApp 
*) x
)); 
21948 static void *_p_wxCloseEventTo_p_wxObject(void *x
) { 
21949     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCloseEvent 
*) x
)); 
21951 static void *_p_wxMouseEventTo_p_wxObject(void *x
) { 
21952     return (void *)((wxObject 
*) (wxEvent 
*) ((wxMouseEvent 
*) x
)); 
21954 static void *_p_wxEraseEventTo_p_wxObject(void *x
) { 
21955     return (void *)((wxObject 
*) (wxEvent 
*) ((wxEraseEvent 
*) x
)); 
21957 static void *_p_wxBusyInfoTo_p_wxObject(void *x
) { 
21958     return (void *)((wxObject 
*)  ((wxBusyInfo 
*) x
)); 
21960 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) { 
21961     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
21963 static void *_p_wxCommandEventTo_p_wxObject(void *x
) { 
21964     return (void *)((wxObject 
*) (wxEvent 
*) ((wxCommandEvent 
*) x
)); 
21966 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) { 
21967     return (void *)((wxObject 
*) (wxEvent 
*) ((wxDropFilesEvent 
*) x
)); 
21969 static void *_p_wxFocusEventTo_p_wxObject(void *x
) { 
21970     return (void *)((wxObject 
*) (wxEvent 
*) ((wxFocusEvent 
*) x
)); 
21972 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) { 
21973     return (void *)((wxObject 
*) (wxEvent 
*)(wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
21975 static void *_p_wxProcessEventTo_p_wxObject(void *x
) { 
21976     return (void *)((wxObject 
*) (wxEvent 
*) ((wxProcessEvent 
*) x
)); 
21978 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) { 
21979     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
21981 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) { 
21982     return (void *)((wxObject 
*) (wxEvtHandler 
*)(wxValidator 
*) ((wxPyValidator 
*) x
)); 
21984 static void *_p_wxValidatorTo_p_wxObject(void *x
) { 
21985     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxValidator 
*) x
)); 
21987 static void *_p_wxPyTimerTo_p_wxObject(void *x
) { 
21988     return (void *)((wxObject 
*) (wxEvtHandler 
*) ((wxPyTimer 
*) x
)); 
21990 static void *_p_wxControlTo_p_wxWindow(void *x
) { 
21991     return (void *)((wxWindow 
*)  ((wxControl 
*) x
)); 
21993 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) { 
21994     return (void *)((wxWindow 
*) (wxControl 
*) ((wxControlWithItems 
*) x
)); 
21996 static void *_p_wxStyledTextCtrlTo_p_wxWindow(void *x
) { 
21997     return (void *)((wxWindow 
*) (wxControl 
*) ((wxStyledTextCtrl 
*) x
)); 
21999 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) { 
22000     return (void *)((wxWindow 
*)  ((wxMenuBar 
*) x
)); 
22002 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) { 
22003     return (void *)((wxCommandEvent 
*)  ((wxChildFocusEvent 
*) x
)); 
22005 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) { 
22006     return (void *)((wxCommandEvent 
*)  ((wxScrollEvent 
*) x
)); 
22008 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) { 
22009     return (void *)((wxCommandEvent 
*)  ((wxWindowCreateEvent 
*) x
)); 
22011 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) { 
22012     return (void *)((wxCommandEvent 
*)  ((wxDateEvent 
*) x
)); 
22014 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) { 
22015     return (void *)((wxCommandEvent 
*)  ((wxUpdateUIEvent 
*) x
)); 
22017 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) { 
22018     return (void *)((wxCommandEvent 
*)  ((wxClipboardTextEvent 
*) x
)); 
22020 static void *_p_wxStyledTextEventTo_p_wxCommandEvent(void *x
) { 
22021     return (void *)((wxCommandEvent 
*)  ((wxStyledTextEvent 
*) x
)); 
22023 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) { 
22024     return (void *)((wxCommandEvent 
*)  ((wxWindowDestroyEvent 
*) x
)); 
22026 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) { 
22027     return (void *)((wxCommandEvent 
*)  ((wxContextMenuEvent 
*) x
)); 
22029 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) { 
22030     return (void *)((wxCommandEvent 
*)  ((wxNotifyEvent 
*) x
)); 
22032 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) { 
22033     return (void *)((wxCommandEvent 
*)  ((wxPyCommandEvent 
*) x
)); 
22035 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) { 
22036     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxControl 
*) x
)); 
22038 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) { 
22039     return (void *)((wxEvtHandler 
*)  ((wxWindow 
*) x
)); 
22041 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) { 
22042     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxControlWithItems 
*) x
)); 
22044 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) { 
22045     return (void *)((wxEvtHandler 
*)  ((wxPyApp 
*) x
)); 
22047 static void *_p_wxPyTimerTo_p_wxEvtHandler(void *x
) { 
22048     return (void *)((wxEvtHandler 
*)  ((wxPyTimer 
*) x
)); 
22050 static void *_p_wxStyledTextCtrlTo_p_wxEvtHandler(void *x
) { 
22051     return (void *)((wxEvtHandler 
*) (wxWindow 
*)(wxControl 
*) ((wxStyledTextCtrl 
*) x
)); 
22053 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) { 
22054     return (void *)((wxEvtHandler 
*)  ((wxValidator 
*) x
)); 
22056 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) { 
22057     return (void *)((wxEvtHandler 
*) (wxValidator 
*) ((wxPyValidator 
*) x
)); 
22059 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) { 
22060     return (void *)((wxEvtHandler 
*) (wxWindow 
*) ((wxMenuBar 
*) x
)); 
22062 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) { 
22063     return (void *)((wxEvtHandler 
*)  ((wxMenu 
*) x
)); 
22065 static void *_p_wxPyProcessTo_p_wxEvtHandler(void *x
) { 
22066     return (void *)((wxEvtHandler 
*)  ((wxPyProcess 
*) x
)); 
22068 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) { 
22069     return (void *)((wxControl 
*)  ((wxControlWithItems 
*) x
)); 
22071 static void *_p_wxStyledTextCtrlTo_p_wxControl(void *x
) { 
22072     return (void *)((wxControl 
*)  ((wxStyledTextCtrl 
*) x
)); 
22074 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) { 
22075     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxContextMenuEvent 
*) x
)); 
22077 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) { 
22078     return (void *)((wxEvent 
*)  ((wxMenuEvent 
*) x
)); 
22080 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) { 
22081     return (void *)((wxEvent 
*)  ((wxCloseEvent 
*) x
)); 
22083 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) { 
22084     return (void *)((wxEvent 
*)  ((wxMouseEvent 
*) x
)); 
22086 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) { 
22087     return (void *)((wxEvent 
*)  ((wxEraseEvent 
*) x
)); 
22089 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) { 
22090     return (void *)((wxEvent 
*)  ((wxSetCursorEvent 
*) x
)); 
22092 static void *_p_wxTimerEventTo_p_wxEvent(void *x
) { 
22093     return (void *)((wxEvent 
*)  ((wxTimerEvent 
*) x
)); 
22095 static void *_p_wxPowerEventTo_p_wxEvent(void *x
) { 
22096     return (void *)((wxEvent 
*)  ((wxPowerEvent 
*) x
)); 
22098 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) { 
22099     return (void *)((wxEvent 
*)  ((wxInitDialogEvent 
*) x
)); 
22101 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) { 
22102     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxScrollEvent 
*) x
)); 
22104 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) { 
22105     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxNotifyEvent 
*) x
)); 
22107 static void *_p_wxMouseCaptureLostEventTo_p_wxEvent(void *x
) { 
22108     return (void *)((wxEvent 
*)  ((wxMouseCaptureLostEvent 
*) x
)); 
22110 static void *_p_wxPyEventTo_p_wxEvent(void *x
) { 
22111     return (void *)((wxEvent 
*)  ((wxPyEvent 
*) x
)); 
22113 static void *_p_wxJoystickEventTo_p_wxEvent(void *x
) { 
22114     return (void *)((wxEvent 
*)  ((wxJoystickEvent 
*) x
)); 
22116 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) { 
22117     return (void *)((wxEvent 
*)  ((wxIdleEvent 
*) x
)); 
22119 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) { 
22120     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowCreateEvent 
*) x
)); 
22122 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) { 
22123     return (void *)((wxEvent 
*)  ((wxQueryNewPaletteEvent 
*) x
)); 
22125 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) { 
22126     return (void *)((wxEvent 
*)  ((wxMaximizeEvent 
*) x
)); 
22128 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) { 
22129     return (void *)((wxEvent 
*)  ((wxIconizeEvent 
*) x
)); 
22131 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) { 
22132     return (void *)((wxEvent 
*)  ((wxActivateEvent 
*) x
)); 
22134 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) { 
22135     return (void *)((wxEvent 
*)  ((wxSizeEvent 
*) x
)); 
22137 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) { 
22138     return (void *)((wxEvent 
*)  ((wxMoveEvent 
*) x
)); 
22140 static void *_p_wxDateEventTo_p_wxEvent(void *x
) { 
22141     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxDateEvent 
*) x
)); 
22143 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) { 
22144     return (void *)((wxEvent 
*)  ((wxPaintEvent 
*) x
)); 
22146 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) { 
22147     return (void *)((wxEvent 
*)  ((wxNcPaintEvent 
*) x
)); 
22149 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) { 
22150     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxClipboardTextEvent 
*) x
)); 
22152 static void *_p_wxStyledTextEventTo_p_wxEvent(void *x
) { 
22153     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxStyledTextEvent 
*) x
)); 
22155 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) { 
22156     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxUpdateUIEvent 
*) x
)); 
22158 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) { 
22159     return (void *)((wxEvent 
*)  ((wxPaletteChangedEvent 
*) x
)); 
22161 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) { 
22162     return (void *)((wxEvent 
*)  ((wxDisplayChangedEvent 
*) x
)); 
22164 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) { 
22165     return (void *)((wxEvent 
*)  ((wxMouseCaptureChangedEvent 
*) x
)); 
22167 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) { 
22168     return (void *)((wxEvent 
*)  ((wxSysColourChangedEvent 
*) x
)); 
22170 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) { 
22171     return (void *)((wxEvent 
*)  ((wxDropFilesEvent 
*) x
)); 
22173 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) { 
22174     return (void *)((wxEvent 
*)  ((wxFocusEvent 
*) x
)); 
22176 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) { 
22177     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxChildFocusEvent 
*) x
)); 
22179 static void *_p_wxProcessEventTo_p_wxEvent(void *x
) { 
22180     return (void *)((wxEvent 
*)  ((wxProcessEvent 
*) x
)); 
22182 static void *_p_wxShowEventTo_p_wxEvent(void *x
) { 
22183     return (void *)((wxEvent 
*)  ((wxShowEvent 
*) x
)); 
22185 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) { 
22186     return (void *)((wxEvent 
*)  ((wxCommandEvent 
*) x
)); 
22188 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) { 
22189     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxPyCommandEvent 
*) x
)); 
22191 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) { 
22192     return (void *)((wxEvent 
*) (wxCommandEvent 
*) ((wxWindowDestroyEvent 
*) x
)); 
22194 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) { 
22195     return (void *)((wxEvent 
*)  ((wxNavigationKeyEvent 
*) x
)); 
22197 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) { 
22198     return (void *)((wxEvent 
*)  ((wxKeyEvent 
*) x
)); 
22200 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) { 
22201     return (void *)((wxEvent 
*)  ((wxScrollWinEvent 
*) x
)); 
22203 static swig_type_info _swigt__p_char 
= {"_p_char", "char *", 0, 0, (void*)0, 0}; 
22204 static swig_type_info _swigt__p_form_ops_t 
= {"_p_form_ops_t", "enum form_ops_t *|form_ops_t *", 0, 0, (void*)0, 0}; 
22205 static swig_type_info _swigt__p_int 
= {"_p_int", "int *", 0, 0, (void*)0, 0}; 
22206 static swig_type_info _swigt__p_unsigned_char 
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0}; 
22207 static swig_type_info _swigt__p_unsigned_int 
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0}; 
22208 static swig_type_info _swigt__p_unsigned_long 
= {"_p_unsigned_long", "unsigned long *|wxLogLevel *", 0, 0, (void*)0, 0}; 
22209 static swig_type_info _swigt__p_void 
= {"_p_void", "void *", 0, 0, (void*)0, 0}; 
22210 static swig_type_info _swigt__p_wxBitmap 
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0}; 
22211 static swig_type_info _swigt__p_wxColour 
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0}; 
22212 static swig_type_info _swigt__p_wxCommandEvent 
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0}; 
22213 static swig_type_info _swigt__p_wxChildFocusEvent 
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0}; 
22214 static swig_type_info _swigt__p_wxScrollEvent 
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0}; 
22215 static swig_type_info _swigt__p_wxWindowCreateEvent 
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0}; 
22216 static swig_type_info _swigt__p_wxDateEvent 
= {"_p_wxDateEvent", 0, 0, 0, 0, 0}; 
22217 static swig_type_info _swigt__p_wxUpdateUIEvent 
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0}; 
22218 static swig_type_info _swigt__p_wxClipboardTextEvent 
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0}; 
22219 static swig_type_info _swigt__p_wxWindowDestroyEvent 
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0}; 
22220 static swig_type_info _swigt__p_wxContextMenuEvent 
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0}; 
22221 static swig_type_info _swigt__p_wxNotifyEvent 
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0}; 
22222 static swig_type_info _swigt__p_wxPyCommandEvent 
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0}; 
22223 static swig_type_info _swigt__p_wxControl 
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0}; 
22224 static swig_type_info _swigt__p_wxControlWithItems 
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0}; 
22225 static swig_type_info _swigt__p_wxDC 
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0}; 
22226 static swig_type_info _swigt__p_wxDuplexMode 
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0}; 
22227 static swig_type_info _swigt__p_wxEvent 
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0}; 
22228 static swig_type_info _swigt__p_wxMenuEvent 
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0}; 
22229 static swig_type_info _swigt__p_wxCloseEvent 
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0}; 
22230 static swig_type_info _swigt__p_wxMouseEvent 
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0}; 
22231 static swig_type_info _swigt__p_wxEraseEvent 
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0}; 
22232 static swig_type_info _swigt__p_wxSetCursorEvent 
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0}; 
22233 static swig_type_info _swigt__p_wxTimerEvent 
= {"_p_wxTimerEvent", 0, 0, 0, 0, 0}; 
22234 static swig_type_info _swigt__p_wxPowerEvent 
= {"_p_wxPowerEvent", 0, 0, 0, 0, 0}; 
22235 static swig_type_info _swigt__p_wxInitDialogEvent 
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0}; 
22236 static swig_type_info _swigt__p_wxPyEvent 
= {"_p_wxPyEvent", 0, 0, 0, 0, 0}; 
22237 static swig_type_info _swigt__p_wxMouseCaptureLostEvent 
= {"_p_wxMouseCaptureLostEvent", 0, 0, 0, 0, 0}; 
22238 static swig_type_info _swigt__p_wxJoystickEvent 
= {"_p_wxJoystickEvent", 0, 0, 0, 0, 0}; 
22239 static swig_type_info _swigt__p_wxIdleEvent 
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0}; 
22240 static swig_type_info _swigt__p_wxQueryNewPaletteEvent 
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0}; 
22241 static swig_type_info _swigt__p_wxMaximizeEvent 
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0}; 
22242 static swig_type_info _swigt__p_wxIconizeEvent 
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0}; 
22243 static swig_type_info _swigt__p_wxActivateEvent 
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0}; 
22244 static swig_type_info _swigt__p_wxSizeEvent 
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0}; 
22245 static swig_type_info _swigt__p_wxMoveEvent 
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0}; 
22246 static swig_type_info _swigt__p_wxPaintEvent 
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0}; 
22247 static swig_type_info _swigt__p_wxNcPaintEvent 
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0}; 
22248 static swig_type_info _swigt__p_wxPaletteChangedEvent 
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0}; 
22249 static swig_type_info _swigt__p_wxDisplayChangedEvent 
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0}; 
22250 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent 
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0}; 
22251 static swig_type_info _swigt__p_wxSysColourChangedEvent 
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0}; 
22252 static swig_type_info _swigt__p_wxDropFilesEvent 
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0}; 
22253 static swig_type_info _swigt__p_wxFocusEvent 
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0}; 
22254 static swig_type_info _swigt__p_wxProcessEvent 
= {"_p_wxProcessEvent", 0, 0, 0, 0, 0}; 
22255 static swig_type_info _swigt__p_wxShowEvent 
= {"_p_wxShowEvent", 0, 0, 0, 0, 0}; 
22256 static swig_type_info _swigt__p_wxNavigationKeyEvent 
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0}; 
22257 static swig_type_info _swigt__p_wxKeyEvent 
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0}; 
22258 static swig_type_info _swigt__p_wxScrollWinEvent 
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0}; 
22259 static swig_type_info _swigt__p_wxEvtHandler 
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0}; 
22260 static swig_type_info _swigt__p_wxPyApp 
= {"_p_wxPyApp", 0, 0, 0, 0, 0}; 
22261 static swig_type_info _swigt__p_wxPyTimer 
= {"_p_wxPyTimer", 0, 0, 0, 0, 0}; 
22262 static swig_type_info _swigt__p_wxMenuBar 
= {"_p_wxMenuBar", 0, 0, 0, 0, 0}; 
22263 static swig_type_info _swigt__p_wxValidator 
= {"_p_wxValidator", 0, 0, 0, 0, 0}; 
22264 static swig_type_info _swigt__p_wxPyValidator 
= {"_p_wxPyValidator", 0, 0, 0, 0, 0}; 
22265 static swig_type_info _swigt__p_wxMenu 
= {"_p_wxMenu", 0, 0, 0, 0, 0}; 
22266 static swig_type_info _swigt__p_wxPyProcess 
= {"_p_wxPyProcess", 0, 0, 0, 0, 0}; 
22267 static swig_type_info _swigt__p_wxFont 
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0}; 
22268 static swig_type_info _swigt__p_wxMemoryBuffer 
= {"_p_wxMemoryBuffer", "wxMemoryBuffer *", 0, 0, (void*)0, 0}; 
22269 static swig_type_info _swigt__p_wxObject 
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0}; 
22270 static swig_type_info _swigt__p_wxLayoutConstraints 
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0}; 
22271 static swig_type_info _swigt__p_wxSizerItem 
= {"_p_wxSizerItem", 0, 0, 0, 0, 0}; 
22272 static swig_type_info _swigt__p_wxGBSizerItem 
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0}; 
22273 static swig_type_info _swigt__p_wxIndividualLayoutConstraint 
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0}; 
22274 static swig_type_info _swigt__p_wxStaticBoxSizer 
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0}; 
22275 static swig_type_info _swigt__p_wxBoxSizer 
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0}; 
22276 static swig_type_info _swigt__p_wxSizer 
= {"_p_wxSizer", 0, 0, 0, 0, 0}; 
22277 static swig_type_info _swigt__p_wxGridBagSizer 
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0}; 
22278 static swig_type_info _swigt__p_wxFileHistory 
= {"_p_wxFileHistory", 0, 0, 0, 0, 0}; 
22279 static swig_type_info _swigt__p_wxGridSizer 
= {"_p_wxGridSizer", 0, 0, 0, 0, 0}; 
22280 static swig_type_info _swigt__p_wxFlexGridSizer 
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0}; 
22281 static swig_type_info _swigt__p_wxFSFile 
= {"_p_wxFSFile", 0, 0, 0, 0, 0}; 
22282 static swig_type_info _swigt__p_wxClipboard 
= {"_p_wxClipboard", 0, 0, 0, 0, 0}; 
22283 static swig_type_info _swigt__p_wxPySizer 
= {"_p_wxPySizer", 0, 0, 0, 0, 0}; 
22284 static swig_type_info _swigt__p_wxToolTip 
= {"_p_wxToolTip", 0, 0, 0, 0, 0}; 
22285 static swig_type_info _swigt__p_wxMenuItem 
= {"_p_wxMenuItem", 0, 0, 0, 0, 0}; 
22286 static swig_type_info _swigt__p_wxTIFFHandler 
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0}; 
22287 static swig_type_info _swigt__p_wxXPMHandler 
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0}; 
22288 static swig_type_info _swigt__p_wxImageHandler 
= {"_p_wxImageHandler", 0, 0, 0, 0, 0}; 
22289 static swig_type_info _swigt__p_wxPyImageHandler 
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0}; 
22290 static swig_type_info _swigt__p_wxBMPHandler 
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0}; 
22291 static swig_type_info _swigt__p_wxICOHandler 
= {"_p_wxICOHandler", 0, 0, 0, 0, 0}; 
22292 static swig_type_info _swigt__p_wxCURHandler 
= {"_p_wxCURHandler", 0, 0, 0, 0, 0}; 
22293 static swig_type_info _swigt__p_wxANIHandler 
= {"_p_wxANIHandler", 0, 0, 0, 0, 0}; 
22294 static swig_type_info _swigt__p_wxPNGHandler 
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0}; 
22295 static swig_type_info _swigt__p_wxGIFHandler 
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0}; 
22296 static swig_type_info _swigt__p_wxPCXHandler 
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0}; 
22297 static swig_type_info _swigt__p_wxJPEGHandler 
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0}; 
22298 static swig_type_info _swigt__p_wxPNMHandler 
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0}; 
22299 static swig_type_info _swigt__p_wxStdDialogButtonSizer 
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0}; 
22300 static swig_type_info _swigt__p_wxAcceleratorTable 
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0}; 
22301 static swig_type_info _swigt__p_wxImage 
= {"_p_wxImage", 0, 0, 0, 0, 0}; 
22302 static swig_type_info _swigt__p_wxSystemOptions 
= {"_p_wxSystemOptions", 0, 0, 0, 0, 0}; 
22303 static swig_type_info _swigt__p_wxFileSystem 
= {"_p_wxFileSystem", 0, 0, 0, 0, 0}; 
22304 static swig_type_info _swigt__p_wxBusyInfo 
= {"_p_wxBusyInfo", 0, 0, 0, 0, 0}; 
22305 static swig_type_info _swigt__p_wxPaperSize 
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0}; 
22306 static swig_type_info _swigt__p_wxPoint 
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0}; 
22307 static swig_type_info _swigt__p_wxRect 
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0}; 
22308 static swig_type_info _swigt__p_wxScrollBar 
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, (void*)0, 0}; 
22309 static swig_type_info _swigt__p_wxStyledTextCtrl 
= {"_p_wxStyledTextCtrl", "wxStyledTextCtrl *", 0, 0, (void*)0, 0}; 
22310 static swig_type_info _swigt__p_wxStyledTextEvent 
= {"_p_wxStyledTextEvent", "wxStyledTextEvent *", 0, 0, (void*)0, 0}; 
22311 static swig_type_info _swigt__p_wxWindow 
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0}; 
22313 static swig_type_info 
*swig_type_initial
[] = { 
22315   &_swigt__p_form_ops_t
, 
22317   &_swigt__p_unsigned_char
, 
22318   &_swigt__p_unsigned_int
, 
22319   &_swigt__p_unsigned_long
, 
22321   &_swigt__p_wxANIHandler
, 
22322   &_swigt__p_wxAcceleratorTable
, 
22323   &_swigt__p_wxActivateEvent
, 
22324   &_swigt__p_wxBMPHandler
, 
22325   &_swigt__p_wxBitmap
, 
22326   &_swigt__p_wxBoxSizer
, 
22327   &_swigt__p_wxBusyInfo
, 
22328   &_swigt__p_wxCURHandler
, 
22329   &_swigt__p_wxChildFocusEvent
, 
22330   &_swigt__p_wxClipboard
, 
22331   &_swigt__p_wxClipboardTextEvent
, 
22332   &_swigt__p_wxCloseEvent
, 
22333   &_swigt__p_wxColour
, 
22334   &_swigt__p_wxCommandEvent
, 
22335   &_swigt__p_wxContextMenuEvent
, 
22336   &_swigt__p_wxControl
, 
22337   &_swigt__p_wxControlWithItems
, 
22339   &_swigt__p_wxDateEvent
, 
22340   &_swigt__p_wxDisplayChangedEvent
, 
22341   &_swigt__p_wxDropFilesEvent
, 
22342   &_swigt__p_wxDuplexMode
, 
22343   &_swigt__p_wxEraseEvent
, 
22344   &_swigt__p_wxEvent
, 
22345   &_swigt__p_wxEvtHandler
, 
22346   &_swigt__p_wxFSFile
, 
22347   &_swigt__p_wxFileHistory
, 
22348   &_swigt__p_wxFileSystem
, 
22349   &_swigt__p_wxFlexGridSizer
, 
22350   &_swigt__p_wxFocusEvent
, 
22352   &_swigt__p_wxGBSizerItem
, 
22353   &_swigt__p_wxGIFHandler
, 
22354   &_swigt__p_wxGridBagSizer
, 
22355   &_swigt__p_wxGridSizer
, 
22356   &_swigt__p_wxICOHandler
, 
22357   &_swigt__p_wxIconizeEvent
, 
22358   &_swigt__p_wxIdleEvent
, 
22359   &_swigt__p_wxImage
, 
22360   &_swigt__p_wxImageHandler
, 
22361   &_swigt__p_wxIndividualLayoutConstraint
, 
22362   &_swigt__p_wxInitDialogEvent
, 
22363   &_swigt__p_wxJPEGHandler
, 
22364   &_swigt__p_wxJoystickEvent
, 
22365   &_swigt__p_wxKeyEvent
, 
22366   &_swigt__p_wxLayoutConstraints
, 
22367   &_swigt__p_wxMaximizeEvent
, 
22368   &_swigt__p_wxMemoryBuffer
, 
22370   &_swigt__p_wxMenuBar
, 
22371   &_swigt__p_wxMenuEvent
, 
22372   &_swigt__p_wxMenuItem
, 
22373   &_swigt__p_wxMouseCaptureChangedEvent
, 
22374   &_swigt__p_wxMouseCaptureLostEvent
, 
22375   &_swigt__p_wxMouseEvent
, 
22376   &_swigt__p_wxMoveEvent
, 
22377   &_swigt__p_wxNavigationKeyEvent
, 
22378   &_swigt__p_wxNcPaintEvent
, 
22379   &_swigt__p_wxNotifyEvent
, 
22380   &_swigt__p_wxObject
, 
22381   &_swigt__p_wxPCXHandler
, 
22382   &_swigt__p_wxPNGHandler
, 
22383   &_swigt__p_wxPNMHandler
, 
22384   &_swigt__p_wxPaintEvent
, 
22385   &_swigt__p_wxPaletteChangedEvent
, 
22386   &_swigt__p_wxPaperSize
, 
22387   &_swigt__p_wxPoint
, 
22388   &_swigt__p_wxPowerEvent
, 
22389   &_swigt__p_wxProcessEvent
, 
22390   &_swigt__p_wxPyApp
, 
22391   &_swigt__p_wxPyCommandEvent
, 
22392   &_swigt__p_wxPyEvent
, 
22393   &_swigt__p_wxPyImageHandler
, 
22394   &_swigt__p_wxPyProcess
, 
22395   &_swigt__p_wxPySizer
, 
22396   &_swigt__p_wxPyTimer
, 
22397   &_swigt__p_wxPyValidator
, 
22398   &_swigt__p_wxQueryNewPaletteEvent
, 
22400   &_swigt__p_wxScrollBar
, 
22401   &_swigt__p_wxScrollEvent
, 
22402   &_swigt__p_wxScrollWinEvent
, 
22403   &_swigt__p_wxSetCursorEvent
, 
22404   &_swigt__p_wxShowEvent
, 
22405   &_swigt__p_wxSizeEvent
, 
22406   &_swigt__p_wxSizer
, 
22407   &_swigt__p_wxSizerItem
, 
22408   &_swigt__p_wxStaticBoxSizer
, 
22409   &_swigt__p_wxStdDialogButtonSizer
, 
22410   &_swigt__p_wxStyledTextCtrl
, 
22411   &_swigt__p_wxStyledTextEvent
, 
22412   &_swigt__p_wxSysColourChangedEvent
, 
22413   &_swigt__p_wxSystemOptions
, 
22414   &_swigt__p_wxTIFFHandler
, 
22415   &_swigt__p_wxTimerEvent
, 
22416   &_swigt__p_wxToolTip
, 
22417   &_swigt__p_wxUpdateUIEvent
, 
22418   &_swigt__p_wxValidator
, 
22419   &_swigt__p_wxWindow
, 
22420   &_swigt__p_wxWindowCreateEvent
, 
22421   &_swigt__p_wxWindowDestroyEvent
, 
22422   &_swigt__p_wxXPMHandler
, 
22425 static swig_cast_info _swigc__p_char
[] = {  {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}}; 
22426 static swig_cast_info _swigc__p_form_ops_t
[] = {  {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}}; 
22427 static swig_cast_info _swigc__p_int
[] = {  {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}}; 
22428 static swig_cast_info _swigc__p_unsigned_char
[] = {  {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}}; 
22429 static swig_cast_info _swigc__p_unsigned_int
[] = {  {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}}; 
22430 static swig_cast_info _swigc__p_unsigned_long
[] = {  {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}}; 
22431 static swig_cast_info _swigc__p_void
[] = {  {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}}; 
22432 static swig_cast_info _swigc__p_wxBitmap
[] = {  {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}}; 
22433 static swig_cast_info _swigc__p_wxColour
[] = {  {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}}; 
22434 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22435 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22436 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22437 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22438 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22439 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22440 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22441 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22442 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22443 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22444 static swig_cast_info _swigc__p_wxCommandEvent
[] = {  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxStyledTextEvent
, _p_wxStyledTextEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxCommandEvent
, 0, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}}; 
22445 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}}; 
22446 static swig_cast_info _swigc__p_wxControl
[] = {  {&_swigt__p_wxControl
, 0, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxControl
, 0, 0},  {&_swigt__p_wxStyledTextCtrl
, _p_wxStyledTextCtrlTo_p_wxControl
, 0, 0},{0, 0, 0, 0}}; 
22447 static swig_cast_info _swigc__p_wxDC
[] = {  {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}}; 
22448 static swig_cast_info _swigc__p_wxDuplexMode
[] = {  {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}}; 
22449 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22450 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22451 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22452 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22453 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22454 static swig_cast_info _swigc__p_wxTimerEvent
[] = {{&_swigt__p_wxTimerEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22455 static swig_cast_info _swigc__p_wxPowerEvent
[] = {{&_swigt__p_wxPowerEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22456 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22457 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22458 static swig_cast_info _swigc__p_wxMouseCaptureLostEvent
[] = {{&_swigt__p_wxMouseCaptureLostEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22459 static swig_cast_info _swigc__p_wxJoystickEvent
[] = {{&_swigt__p_wxJoystickEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22460 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22461 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22462 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22463 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22464 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22465 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22466 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22467 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22468 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22469 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22470 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22471 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22472 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22473 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22474 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22475 static swig_cast_info _swigc__p_wxProcessEvent
[] = {{&_swigt__p_wxProcessEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22476 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22477 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22478 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22479 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22480 static swig_cast_info _swigc__p_wxEvent
[] = {  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxTimerEvent
, _p_wxTimerEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPowerEvent
, _p_wxPowerEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxJoystickEvent
, _p_wxJoystickEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxEvent
, 0, 0, 0},  {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxStyledTextEvent
, _p_wxStyledTextEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxEvent
, 0, 0},  {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxEvent
, 0, 0},{0, 0, 0, 0}}; 
22481 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}}; 
22482 static swig_cast_info _swigc__p_wxPyTimer
[] = {{&_swigt__p_wxPyTimer
, 0, 0, 0},{0, 0, 0, 0}}; 
22483 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}}; 
22484 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}}; 
22485 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}}; 
22486 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}}; 
22487 static swig_cast_info _swigc__p_wxPyProcess
[] = {{&_swigt__p_wxPyProcess
, 0, 0, 0},{0, 0, 0, 0}}; 
22488 static swig_cast_info _swigc__p_wxEvtHandler
[] = {  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxEvtHandler
, 0, 0, 0},  {&_swigt__p_wxStyledTextCtrl
, _p_wxStyledTextCtrlTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyTimer
, _p_wxPyTimerTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxEvtHandler
, 0, 0},  {&_swigt__p_wxPyProcess
, _p_wxPyProcessTo_p_wxEvtHandler
, 0, 0},{0, 0, 0, 0}}; 
22489 static swig_cast_info _swigc__p_wxFont
[] = {  {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}}; 
22490 static swig_cast_info _swigc__p_wxMemoryBuffer
[] = {  {&_swigt__p_wxMemoryBuffer
, 0, 0, 0},{0, 0, 0, 0}}; 
22491 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}}; 
22492 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}}; 
22493 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}}; 
22494 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}}; 
22495 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22496 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22497 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22498 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22499 static swig_cast_info _swigc__p_wxFileHistory
[] = {{&_swigt__p_wxFileHistory
, 0, 0, 0},{0, 0, 0, 0}}; 
22500 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22501 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22502 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}}; 
22503 static swig_cast_info _swigc__p_wxClipboard
[] = {{&_swigt__p_wxClipboard
, 0, 0, 0},{0, 0, 0, 0}}; 
22504 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22505 static swig_cast_info _swigc__p_wxToolTip
[] = {{&_swigt__p_wxToolTip
, 0, 0, 0},{0, 0, 0, 0}}; 
22506 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}}; 
22507 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22508 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22509 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22510 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22511 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22512 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22513 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22514 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22515 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22516 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22517 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22518 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22519 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}}; 
22520 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}}; 
22521 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}}; 
22522 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}}; 
22523 static swig_cast_info _swigc__p_wxSystemOptions
[] = {{&_swigt__p_wxSystemOptions
, 0, 0, 0},{0, 0, 0, 0}}; 
22524 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}}; 
22525 static swig_cast_info _swigc__p_wxBusyInfo
[] = {{&_swigt__p_wxBusyInfo
, 0, 0, 0},{0, 0, 0, 0}}; 
22526 static swig_cast_info _swigc__p_wxObject
[] = {  {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIndividualLayoutConstraint
, _p_wxIndividualLayoutConstraintTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStaticBoxSizer
, _p_wxStaticBoxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxBoxSizer
, _p_wxBoxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizer
, _p_wxSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGridBagSizer
, _p_wxGridBagSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFileHistory
, _p_wxFileHistoryTo_p_wxObject
, 0, 0},  {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenu
, _p_wxMenuTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEvent
, _p_wxEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGridSizer
, _p_wxGridSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFlexGridSizer
, _p_wxFlexGridSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPaintEvent
, _p_wxPaintEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNcPaintEvent
, _p_wxNcPaintEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStyledTextEvent
, _p_wxStyledTextEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPaletteChangedEvent
, _p_wxPaletteChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDisplayChangedEvent
, _p_wxDisplayChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseCaptureChangedEvent
, _p_wxMouseCaptureChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSysColourChangedEvent
, _p_wxSysColourChangedEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTimerEvent
, _p_wxTimerEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPowerEvent
, _p_wxPowerEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0},  {&_swigt__p_wxClipboard
, _p_wxClipboardTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStyledTextCtrl
, _p_wxStyledTextCtrlTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxToolTip
, _p_wxToolTipTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMoveEvent
, _p_wxMoveEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSizeEvent
, _p_wxSizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxActivateEvent
, _p_wxActivateEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxIconizeEvent
, _p_wxIconizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMaximizeEvent
, _p_wxMaximizeEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxQueryNewPaletteEvent
, _p_wxQueryNewPaletteEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseCaptureLostEvent
, _p_wxMouseCaptureLostEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0},  {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0},  {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0},  {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxSystemOptions
, _p_wxSystemOptionsTo_p_wxObject
, 0, 0},  {&_swigt__p_wxJoystickEvent
, _p_wxJoystickEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxObject
, 0, 0, 0},  {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyProcess
, _p_wxPyProcessTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0},  {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxBusyInfo
, _p_wxBusyInfoTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyValidator
, _p_wxPyValidatorTo_p_wxObject
, 0, 0},  {&_swigt__p_wxValidator
, _p_wxValidatorTo_p_wxObject
, 0, 0},  {&_swigt__p_wxPyTimer
, _p_wxPyTimerTo_p_wxObject
, 0, 0},{0, 0, 0, 0}}; 
22527 static swig_cast_info _swigc__p_wxPaperSize
[] = {  {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}}; 
22528 static swig_cast_info _swigc__p_wxPoint
[] = {  {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}}; 
22529 static swig_cast_info _swigc__p_wxRect
[] = {  {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}}; 
22530 static swig_cast_info _swigc__p_wxScrollBar
[] = {  {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}}; 
22531 static swig_cast_info _swigc__p_wxStyledTextCtrl
[] = {  {&_swigt__p_wxStyledTextCtrl
, 0, 0, 0},{0, 0, 0, 0}}; 
22532 static swig_cast_info _swigc__p_wxStyledTextEvent
[] = {  {&_swigt__p_wxStyledTextEvent
, 0, 0, 0},{0, 0, 0, 0}}; 
22533 static swig_cast_info _swigc__p_wxWindow
[] = {  {&_swigt__p_wxControl
, _p_wxControlTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxWindow
, 0, 0, 0},  {&_swigt__p_wxControlWithItems
, _p_wxControlWithItemsTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxStyledTextCtrl
, _p_wxStyledTextCtrlTo_p_wxWindow
, 0, 0},  {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxWindow
, 0, 0},{0, 0, 0, 0}}; 
22535 static swig_cast_info 
*swig_cast_initial
[] = { 
22537   _swigc__p_form_ops_t
, 
22539   _swigc__p_unsigned_char
, 
22540   _swigc__p_unsigned_int
, 
22541   _swigc__p_unsigned_long
, 
22543   _swigc__p_wxANIHandler
, 
22544   _swigc__p_wxAcceleratorTable
, 
22545   _swigc__p_wxActivateEvent
, 
22546   _swigc__p_wxBMPHandler
, 
22547   _swigc__p_wxBitmap
, 
22548   _swigc__p_wxBoxSizer
, 
22549   _swigc__p_wxBusyInfo
, 
22550   _swigc__p_wxCURHandler
, 
22551   _swigc__p_wxChildFocusEvent
, 
22552   _swigc__p_wxClipboard
, 
22553   _swigc__p_wxClipboardTextEvent
, 
22554   _swigc__p_wxCloseEvent
, 
22555   _swigc__p_wxColour
, 
22556   _swigc__p_wxCommandEvent
, 
22557   _swigc__p_wxContextMenuEvent
, 
22558   _swigc__p_wxControl
, 
22559   _swigc__p_wxControlWithItems
, 
22561   _swigc__p_wxDateEvent
, 
22562   _swigc__p_wxDisplayChangedEvent
, 
22563   _swigc__p_wxDropFilesEvent
, 
22564   _swigc__p_wxDuplexMode
, 
22565   _swigc__p_wxEraseEvent
, 
22567   _swigc__p_wxEvtHandler
, 
22568   _swigc__p_wxFSFile
, 
22569   _swigc__p_wxFileHistory
, 
22570   _swigc__p_wxFileSystem
, 
22571   _swigc__p_wxFlexGridSizer
, 
22572   _swigc__p_wxFocusEvent
, 
22574   _swigc__p_wxGBSizerItem
, 
22575   _swigc__p_wxGIFHandler
, 
22576   _swigc__p_wxGridBagSizer
, 
22577   _swigc__p_wxGridSizer
, 
22578   _swigc__p_wxICOHandler
, 
22579   _swigc__p_wxIconizeEvent
, 
22580   _swigc__p_wxIdleEvent
, 
22582   _swigc__p_wxImageHandler
, 
22583   _swigc__p_wxIndividualLayoutConstraint
, 
22584   _swigc__p_wxInitDialogEvent
, 
22585   _swigc__p_wxJPEGHandler
, 
22586   _swigc__p_wxJoystickEvent
, 
22587   _swigc__p_wxKeyEvent
, 
22588   _swigc__p_wxLayoutConstraints
, 
22589   _swigc__p_wxMaximizeEvent
, 
22590   _swigc__p_wxMemoryBuffer
, 
22592   _swigc__p_wxMenuBar
, 
22593   _swigc__p_wxMenuEvent
, 
22594   _swigc__p_wxMenuItem
, 
22595   _swigc__p_wxMouseCaptureChangedEvent
, 
22596   _swigc__p_wxMouseCaptureLostEvent
, 
22597   _swigc__p_wxMouseEvent
, 
22598   _swigc__p_wxMoveEvent
, 
22599   _swigc__p_wxNavigationKeyEvent
, 
22600   _swigc__p_wxNcPaintEvent
, 
22601   _swigc__p_wxNotifyEvent
, 
22602   _swigc__p_wxObject
, 
22603   _swigc__p_wxPCXHandler
, 
22604   _swigc__p_wxPNGHandler
, 
22605   _swigc__p_wxPNMHandler
, 
22606   _swigc__p_wxPaintEvent
, 
22607   _swigc__p_wxPaletteChangedEvent
, 
22608   _swigc__p_wxPaperSize
, 
22610   _swigc__p_wxPowerEvent
, 
22611   _swigc__p_wxProcessEvent
, 
22613   _swigc__p_wxPyCommandEvent
, 
22614   _swigc__p_wxPyEvent
, 
22615   _swigc__p_wxPyImageHandler
, 
22616   _swigc__p_wxPyProcess
, 
22617   _swigc__p_wxPySizer
, 
22618   _swigc__p_wxPyTimer
, 
22619   _swigc__p_wxPyValidator
, 
22620   _swigc__p_wxQueryNewPaletteEvent
, 
22622   _swigc__p_wxScrollBar
, 
22623   _swigc__p_wxScrollEvent
, 
22624   _swigc__p_wxScrollWinEvent
, 
22625   _swigc__p_wxSetCursorEvent
, 
22626   _swigc__p_wxShowEvent
, 
22627   _swigc__p_wxSizeEvent
, 
22629   _swigc__p_wxSizerItem
, 
22630   _swigc__p_wxStaticBoxSizer
, 
22631   _swigc__p_wxStdDialogButtonSizer
, 
22632   _swigc__p_wxStyledTextCtrl
, 
22633   _swigc__p_wxStyledTextEvent
, 
22634   _swigc__p_wxSysColourChangedEvent
, 
22635   _swigc__p_wxSystemOptions
, 
22636   _swigc__p_wxTIFFHandler
, 
22637   _swigc__p_wxTimerEvent
, 
22638   _swigc__p_wxToolTip
, 
22639   _swigc__p_wxUpdateUIEvent
, 
22640   _swigc__p_wxValidator
, 
22641   _swigc__p_wxWindow
, 
22642   _swigc__p_wxWindowCreateEvent
, 
22643   _swigc__p_wxWindowDestroyEvent
, 
22644   _swigc__p_wxXPMHandler
, 
22648 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */ 
22650 static swig_const_info swig_const_table
[] = { 
22651 {0, 0, 0, 0.0, 0, 0}}; 
22656 /* ----------------------------------------------------------------------------- 
22657  * Type initialization: 
22658  * This problem is tough by the requirement that no dynamic  
22659  * memory is used. Also, since swig_type_info structures store pointers to  
22660  * swig_cast_info structures and swig_cast_info structures store pointers back 
22661  * to swig_type_info structures, we need some lookup code at initialization.  
22662  * The idea is that swig generates all the structures that are needed.  
22663  * The runtime then collects these partially filled structures.  
22664  * The SWIG_InitializeModule function takes these initial arrays out of  
22665  * swig_module, and does all the lookup, filling in the swig_module.types 
22666  * array with the correct data and linking the correct swig_cast_info 
22667  * structures together. 
22669  * The generated swig_type_info structures are assigned staticly to an initial  
22670  * array. We just loop though that array, and handle each type individually. 
22671  * First we lookup if this type has been already loaded, and if so, use the 
22672  * loaded structure instead of the generated one. Then we have to fill in the 
22673  * cast linked list. The cast data is initially stored in something like a 
22674  * two-dimensional array. Each row corresponds to a type (there are the same 
22675  * number of rows as there are in the swig_type_initial array). Each entry in 
22676  * a column is one of the swig_cast_info structures for that type. 
22677  * The cast_initial array is actually an array of arrays, because each row has 
22678  * a variable number of columns. So to actually build the cast linked list, 
22679  * we find the array of casts associated with the type, and loop through it  
22680  * adding the casts to the list. The one last trick we need to do is making 
22681  * sure the type pointer in the swig_cast_info struct is correct. 
22683  * First off, we lookup the cast->type name to see if it is already loaded.  
22684  * There are three cases to handle: 
22685  *  1) If the cast->type has already been loaded AND the type we are adding 
22686  *     casting info to has not been loaded (it is in this module), THEN we 
22687  *     replace the cast->type pointer with the type pointer that has already 
22689  *  2) If BOTH types (the one we are adding casting info to, and the  
22690  *     cast->type) are loaded, THEN the cast info has already been loaded by 
22691  *     the previous module so we just ignore it. 
22692  *  3) Finally, if cast->type has not already been loaded, then we add that 
22693  *     swig_cast_info to the linked list (because the cast->type) pointer will 
22695  * ----------------------------------------------------------------------------- */ 
22705 #define SWIGRUNTIME_DEBUG 
22709 SWIG_InitializeModule(void *clientdata
) { 
22711   swig_module_info 
*module_head
; 
22712   static int init_run 
= 0; 
22714   clientdata 
= clientdata
; 
22716   if (init_run
) return; 
22719   /* Initialize the swig_module */ 
22720   swig_module
.type_initial 
= swig_type_initial
; 
22721   swig_module
.cast_initial 
= swig_cast_initial
; 
22723   /* Try and load any already created modules */ 
22724   module_head 
= SWIG_GetModule(clientdata
); 
22726     swig_module
.next 
= module_head
->next
; 
22727     module_head
->next 
= &swig_module
; 
22729     /* This is the first module loaded */ 
22730     swig_module
.next 
= &swig_module
; 
22731     SWIG_SetModule(clientdata
, &swig_module
); 
22734   /* Now work on filling in swig_module.types */ 
22735 #ifdef SWIGRUNTIME_DEBUG 
22736   printf("SWIG_InitializeModule: size %d\n", swig_module
.size
); 
22738   for (i 
= 0; i 
< swig_module
.size
; ++i
) { 
22739     swig_type_info 
*type 
= 0; 
22740     swig_type_info 
*ret
; 
22741     swig_cast_info 
*cast
; 
22743 #ifdef SWIGRUNTIME_DEBUG 
22744     printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
); 
22747     /* if there is another module already loaded */ 
22748     if (swig_module
.next 
!= &swig_module
) { 
22749       type 
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
); 
22752       /* Overwrite clientdata field */ 
22753 #ifdef SWIGRUNTIME_DEBUG 
22754       printf("SWIG_InitializeModule: found type %s\n", type
->name
); 
22756       if (swig_module
.type_initial
[i
]->clientdata
) { 
22757         type
->clientdata 
= swig_module
.type_initial
[i
]->clientdata
; 
22758 #ifdef SWIGRUNTIME_DEBUG 
22759         printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
); 
22763       type 
= swig_module
.type_initial
[i
]; 
22766     /* Insert casting types */ 
22767     cast 
= swig_module
.cast_initial
[i
]; 
22768     while (cast
->type
) { 
22769       /* Don't need to add information already in the list */ 
22771 #ifdef SWIGRUNTIME_DEBUG 
22772       printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
); 
22774       if (swig_module
.next 
!= &swig_module
) { 
22775         ret 
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
); 
22776 #ifdef SWIGRUNTIME_DEBUG 
22777         if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
); 
22781         if (type 
== swig_module
.type_initial
[i
]) { 
22782 #ifdef SWIGRUNTIME_DEBUG 
22783           printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
); 
22788           /* Check for casting already in the list */ 
22789           swig_cast_info 
*ocast 
= SWIG_TypeCheck(ret
->name
, type
); 
22790 #ifdef SWIGRUNTIME_DEBUG 
22791           if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
); 
22793           if (!ocast
) ret 
= 0; 
22798 #ifdef SWIGRUNTIME_DEBUG 
22799         printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
); 
22802           type
->cast
->prev 
= cast
; 
22803           cast
->next 
= type
->cast
; 
22809     /* Set entry in modules->types array equal to the type */ 
22810     swig_module
.types
[i
] = type
; 
22812   swig_module
.types
[i
] = 0; 
22814 #ifdef SWIGRUNTIME_DEBUG 
22815   printf("**** SWIG_InitializeModule: Cast List ******\n"); 
22816   for (i 
= 0; i 
< swig_module
.size
; ++i
) { 
22818     swig_cast_info 
*cast 
= swig_module
.cast_initial
[i
]; 
22819     printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
); 
22820     while (cast
->type
) { 
22821       printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
); 
22825     printf("---- Total casts: %d\n",j
); 
22827   printf("**** SWIG_InitializeModule: Cast List ******\n"); 
22831 /* This function will propagate the clientdata field of type to 
22832 * any new swig_type_info structures that have been added into the list 
22833 * of equivalent types.  It is like calling 
22834 * SWIG_TypeClientData(type, clientdata) a second time. 
22837 SWIG_PropagateClientData(void) { 
22839   swig_cast_info 
*equiv
; 
22840   static int init_run 
= 0; 
22842   if (init_run
) return; 
22845   for (i 
= 0; i 
< swig_module
.size
; i
++) { 
22846     if (swig_module
.types
[i
]->clientdata
) { 
22847       equiv 
= swig_module
.types
[i
]->cast
; 
22849         if (!equiv
->converter
) { 
22850           if (equiv
->type 
&& !equiv
->type
->clientdata
) 
22851           SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
); 
22853         equiv 
= equiv
->next
; 
22873   /* Python-specific SWIG API */ 
22874 #define SWIG_newvarlink()                             SWIG_Python_newvarlink() 
22875 #define SWIG_addvarlink(p, name, get_attr, set_attr)  SWIG_Python_addvarlink(p, name, get_attr, set_attr) 
22876 #define SWIG_InstallConstants(d, constants)           SWIG_Python_InstallConstants(d, constants) 
22878   /* ----------------------------------------------------------------------------- 
22879    * global variable support code. 
22880    * ----------------------------------------------------------------------------- */ 
22882   typedef struct swig_globalvar 
{ 
22883     char       *name
;                  /* Name of global variable */ 
22884     PyObject 
*(*get_attr
)(void);       /* Return the current value */ 
22885     int       (*set_attr
)(PyObject 
*); /* Set the value */ 
22886     struct swig_globalvar 
*next
; 
22889   typedef struct swig_varlinkobject 
{ 
22891     swig_globalvar 
*vars
; 
22892   } swig_varlinkobject
; 
22894   SWIGINTERN PyObject 
* 
22895   swig_varlink_repr(swig_varlinkobject 
*SWIGUNUSEDPARM(v
)) { 
22896     return PyString_FromString("<Swig global variables>"); 
22899   SWIGINTERN PyObject 
* 
22900   swig_varlink_str(swig_varlinkobject 
*v
) { 
22901     PyObject 
*str 
= PyString_FromString("("); 
22902     swig_globalvar  
*var
; 
22903     for (var 
= v
->vars
; var
; var
=var
->next
) { 
22904       PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
)); 
22905       if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", ")); 
22907     PyString_ConcatAndDel(&str
,PyString_FromString(")")); 
22912   swig_varlink_print(swig_varlinkobject 
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) { 
22913     PyObject 
*str 
= swig_varlink_str(v
); 
22914     fprintf(fp
,"Swig global variables "); 
22915     fprintf(fp
,"%s\n", PyString_AsString(str
)); 
22921   swig_varlink_dealloc(swig_varlinkobject 
*v
) { 
22922     swig_globalvar 
*var 
= v
->vars
; 
22924       swig_globalvar 
*n 
= var
->next
; 
22931   SWIGINTERN PyObject 
* 
22932   swig_varlink_getattr(swig_varlinkobject 
*v
, char *n
) { 
22933     PyObject 
*res 
= NULL
; 
22934     swig_globalvar 
*var 
= v
->vars
; 
22936       if (strcmp(var
->name
,n
) == 0) { 
22937         res 
= (*var
->get_attr
)(); 
22942     if (res 
== NULL 
&& !PyErr_Occurred()) { 
22943       PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
22949   swig_varlink_setattr(swig_varlinkobject 
*v
, char *n
, PyObject 
*p
) { 
22951     swig_globalvar 
*var 
= v
->vars
; 
22953       if (strcmp(var
->name
,n
) == 0) { 
22954         res 
= (*var
->set_attr
)(p
); 
22959     if (res 
== 1 && !PyErr_Occurred()) { 
22960       PyErr_SetString(PyExc_NameError
,"Unknown C global variable"); 
22965   SWIGINTERN PyTypeObject
* 
22966   swig_varlink_type(void) { 
22967     static char varlink__doc__
[] = "Swig var link object"; 
22968     static PyTypeObject varlink_type
; 
22969     static int type_init 
= 0;   
22971       const PyTypeObject tmp
 
22973         PyObject_HEAD_INIT(NULL
) 
22974         0,                                  /* Number of items in variable part (ob_size) */ 
22975         (char *)"swigvarlink",              /* Type name (tp_name) */ 
22976         sizeof(swig_varlinkobject
),         /* Basic size (tp_basicsize) */ 
22977         0,                                  /* Itemsize (tp_itemsize) */ 
22978         (destructor
) swig_varlink_dealloc
,   /* Deallocator (tp_dealloc) */  
22979         (printfunc
) swig_varlink_print
,     /* Print (tp_print) */ 
22980         (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */ 
22981         (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */ 
22982         0,                                  /* tp_compare */ 
22983         (reprfunc
) swig_varlink_repr
,       /* tp_repr */ 
22984         0,                                  /* tp_as_number */ 
22985         0,                                  /* tp_as_sequence */ 
22986         0,                                  /* tp_as_mapping */ 
22989         (reprfunc
)swig_varlink_str
,        /* tp_str */ 
22990         0,                                  /* tp_getattro */ 
22991         0,                                  /* tp_setattro */ 
22992         0,                                  /* tp_as_buffer */ 
22994         varlink__doc__
,                     /* tp_doc */ 
22995         0,                                  /* tp_traverse */ 
22997         0,                                  /* tp_richcompare */ 
22998         0,                                  /* tp_weaklistoffset */ 
22999 #if PY_VERSION_HEX >= 0x02020000 
23000         0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */ 
23002 #if PY_VERSION_HEX >= 0x02030000 
23005 #ifdef COUNT_ALLOCS 
23006         0,0,0,0                             /* tp_alloc -> tp_next */ 
23009       varlink_type 
= tmp
; 
23010       varlink_type
.ob_type 
= &PyType_Type
; 
23013     return &varlink_type
; 
23016   /* Create a variable linking object for use later */ 
23017   SWIGINTERN PyObject 
* 
23018   SWIG_Python_newvarlink(void) { 
23019     swig_varlinkobject 
*result 
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type()); 
23023     return ((PyObject
*) result
); 
23027   SWIG_Python_addvarlink(PyObject 
*p
, char *name
, PyObject 
*(*get_attr
)(void), int (*set_attr
)(PyObject 
*p
)) { 
23028     swig_varlinkobject 
*v 
= (swig_varlinkobject 
*) p
; 
23029     swig_globalvar 
*gv 
= (swig_globalvar 
*) malloc(sizeof(swig_globalvar
)); 
23031       size_t size 
= strlen(name
)+1; 
23032       gv
->name 
= (char *)malloc(size
); 
23034         strncpy(gv
->name
,name
,size
); 
23035         gv
->get_attr 
= get_attr
; 
23036         gv
->set_attr 
= set_attr
; 
23037         gv
->next 
= v
->vars
; 
23043   SWIGINTERN PyObject 
* 
23045     static PyObject 
*_SWIG_globals 
= 0;  
23046     if (!_SWIG_globals
) _SWIG_globals 
= SWIG_newvarlink();   
23047     return _SWIG_globals
; 
23050   /* ----------------------------------------------------------------------------- 
23051    * constants/methods manipulation 
23052    * ----------------------------------------------------------------------------- */ 
23054   /* Install Constants */ 
23056   SWIG_Python_InstallConstants(PyObject 
*d
, swig_const_info constants
[]) { 
23059     for (i 
= 0; constants
[i
].type
; ++i
) { 
23060       switch(constants
[i
].type
) { 
23061       case SWIG_PY_POINTER
: 
23062         obj 
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0); 
23064       case SWIG_PY_BINARY
: 
23065         obj 
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
)); 
23072         PyDict_SetItemString(d
, constants
[i
].name
, obj
); 
23078   /* -----------------------------------------------------------------------------*/ 
23079   /* Fix SwigMethods to carry the callback ptrs when needed */ 
23080   /* -----------------------------------------------------------------------------*/ 
23083   SWIG_Python_FixMethods(PyMethodDef 
*methods
, 
23084     swig_const_info 
*const_table
, 
23085     swig_type_info 
**types
, 
23086     swig_type_info 
**types_initial
) { 
23088     for (i 
= 0; methods
[i
].ml_name
; ++i
) { 
23089       const char *c 
= methods
[i
].ml_doc
; 
23090       if (c 
&& (c 
= strstr(c
, "swig_ptr: "))) { 
23092         swig_const_info 
*ci 
= 0; 
23093         const char *name 
= c 
+ 10; 
23094         for (j 
= 0; const_table
[j
].type
; ++j
) { 
23095           if (strncmp(const_table
[j
].name
, name
,  
23096               strlen(const_table
[j
].name
)) == 0) { 
23097             ci 
= &(const_table
[j
]); 
23102           size_t shift 
= (ci
->ptype
) - types
; 
23103           swig_type_info 
*ty 
= types_initial
[shift
]; 
23104           size_t ldoc 
= (c 
- methods
[i
].ml_doc
); 
23105           size_t lptr 
= strlen(ty
->name
)+2*sizeof(void*)+2; 
23106           char *ndoc 
= (char*)malloc(ldoc 
+ lptr 
+ 10); 
23109             void *ptr 
= (ci
->type 
== SWIG_PY_POINTER
) ? ci
->pvalue 
: 0; 
23111               strncpy(buff
, methods
[i
].ml_doc
, ldoc
); 
23113               strncpy(buff
, "swig_ptr: ", 10); 
23115               SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
); 
23116               methods
[i
].ml_doc 
= ndoc
; 
23128 /* -----------------------------------------------------------------------------* 
23129  *  Partial Init method 
23130  * -----------------------------------------------------------------------------*/ 
23135 SWIGEXPORT 
void SWIG_init(void) { 
23138   /* Fix SwigMethods to carry the callback ptrs when needed */ 
23139   SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
); 
23141   m 
= Py_InitModule((char *) SWIG_name
, SwigMethods
); 
23142   d 
= PyModule_GetDict(m
); 
23144   SWIG_InitializeModule(0); 
23145   SWIG_InstallConstants(d
,swig_const_table
); 
23148   PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals()); 
23149   SWIG_addvarlink(SWIG_globals(),(char*)"STCNameStr",STCNameStr_get
, STCNameStr_set
); 
23150   SWIG_Python_SetConstant(d
, "STC_USE_DND",SWIG_From_int(static_cast< int >(1))); 
23151   SWIG_Python_SetConstant(d
, "STC_USE_POPUP",SWIG_From_int(static_cast< int >(1))); 
23152   SWIG_Python_SetConstant(d
, "STC_INVALID_POSITION",SWIG_From_int(static_cast< int >(-1))); 
23153   SWIG_Python_SetConstant(d
, "STC_START",SWIG_From_int(static_cast< int >(2000))); 
23154   SWIG_Python_SetConstant(d
, "STC_OPTIONAL_START",SWIG_From_int(static_cast< int >(3000))); 
23155   SWIG_Python_SetConstant(d
, "STC_LEXER_START",SWIG_From_int(static_cast< int >(4000))); 
23156   SWIG_Python_SetConstant(d
, "STC_WS_INVISIBLE",SWIG_From_int(static_cast< int >(0))); 
23157   SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEALWAYS",SWIG_From_int(static_cast< int >(1))); 
23158   SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEAFTERINDENT",SWIG_From_int(static_cast< int >(2))); 
23159   SWIG_Python_SetConstant(d
, "STC_EOL_CRLF",SWIG_From_int(static_cast< int >(0))); 
23160   SWIG_Python_SetConstant(d
, "STC_EOL_CR",SWIG_From_int(static_cast< int >(1))); 
23161   SWIG_Python_SetConstant(d
, "STC_EOL_LF",SWIG_From_int(static_cast< int >(2))); 
23162   SWIG_Python_SetConstant(d
, "STC_CP_UTF8",SWIG_From_int(static_cast< int >(65001))); 
23163   SWIG_Python_SetConstant(d
, "STC_CP_DBCS",SWIG_From_int(static_cast< int >(1))); 
23164   SWIG_Python_SetConstant(d
, "STC_MARKER_MAX",SWIG_From_int(static_cast< int >(31))); 
23165   SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLE",SWIG_From_int(static_cast< int >(0))); 
23166   SWIG_Python_SetConstant(d
, "STC_MARK_ROUNDRECT",SWIG_From_int(static_cast< int >(1))); 
23167   SWIG_Python_SetConstant(d
, "STC_MARK_ARROW",SWIG_From_int(static_cast< int >(2))); 
23168   SWIG_Python_SetConstant(d
, "STC_MARK_SMALLRECT",SWIG_From_int(static_cast< int >(3))); 
23169   SWIG_Python_SetConstant(d
, "STC_MARK_SHORTARROW",SWIG_From_int(static_cast< int >(4))); 
23170   SWIG_Python_SetConstant(d
, "STC_MARK_EMPTY",SWIG_From_int(static_cast< int >(5))); 
23171   SWIG_Python_SetConstant(d
, "STC_MARK_ARROWDOWN",SWIG_From_int(static_cast< int >(6))); 
23172   SWIG_Python_SetConstant(d
, "STC_MARK_MINUS",SWIG_From_int(static_cast< int >(7))); 
23173   SWIG_Python_SetConstant(d
, "STC_MARK_PLUS",SWIG_From_int(static_cast< int >(8))); 
23174   SWIG_Python_SetConstant(d
, "STC_MARK_VLINE",SWIG_From_int(static_cast< int >(9))); 
23175   SWIG_Python_SetConstant(d
, "STC_MARK_LCORNER",SWIG_From_int(static_cast< int >(10))); 
23176   SWIG_Python_SetConstant(d
, "STC_MARK_TCORNER",SWIG_From_int(static_cast< int >(11))); 
23177   SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUS",SWIG_From_int(static_cast< int >(12))); 
23178   SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUSCONNECTED",SWIG_From_int(static_cast< int >(13))); 
23179   SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUS",SWIG_From_int(static_cast< int >(14))); 
23180   SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUSCONNECTED",SWIG_From_int(static_cast< int >(15))); 
23181   SWIG_Python_SetConstant(d
, "STC_MARK_LCORNERCURVE",SWIG_From_int(static_cast< int >(16))); 
23182   SWIG_Python_SetConstant(d
, "STC_MARK_TCORNERCURVE",SWIG_From_int(static_cast< int >(17))); 
23183   SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUS",SWIG_From_int(static_cast< int >(18))); 
23184   SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUSCONNECTED",SWIG_From_int(static_cast< int >(19))); 
23185   SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUS",SWIG_From_int(static_cast< int >(20))); 
23186   SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUSCONNECTED",SWIG_From_int(static_cast< int >(21))); 
23187   SWIG_Python_SetConstant(d
, "STC_MARK_BACKGROUND",SWIG_From_int(static_cast< int >(22))); 
23188   SWIG_Python_SetConstant(d
, "STC_MARK_DOTDOTDOT",SWIG_From_int(static_cast< int >(23))); 
23189   SWIG_Python_SetConstant(d
, "STC_MARK_ARROWS",SWIG_From_int(static_cast< int >(24))); 
23190   SWIG_Python_SetConstant(d
, "STC_MARK_PIXMAP",SWIG_From_int(static_cast< int >(25))); 
23191   SWIG_Python_SetConstant(d
, "STC_MARK_FULLRECT",SWIG_From_int(static_cast< int >(26))); 
23192   SWIG_Python_SetConstant(d
, "STC_MARK_CHARACTER",SWIG_From_int(static_cast< int >(10000))); 
23193   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEREND",SWIG_From_int(static_cast< int >(25))); 
23194   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPENMID",SWIG_From_int(static_cast< int >(26))); 
23195   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERMIDTAIL",SWIG_From_int(static_cast< int >(27))); 
23196   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERTAIL",SWIG_From_int(static_cast< int >(28))); 
23197   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERSUB",SWIG_From_int(static_cast< int >(29))); 
23198   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDER",SWIG_From_int(static_cast< int >(30))); 
23199   SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPEN",SWIG_From_int(static_cast< int >(31))); 
23200   SWIG_Python_SetConstant(d
, "STC_MASK_FOLDERS",SWIG_From_int(static_cast< int >(0xFE000000))); 
23201   SWIG_Python_SetConstant(d
, "STC_MARGIN_SYMBOL",SWIG_From_int(static_cast< int >(0))); 
23202   SWIG_Python_SetConstant(d
, "STC_MARGIN_NUMBER",SWIG_From_int(static_cast< int >(1))); 
23203   SWIG_Python_SetConstant(d
, "STC_MARGIN_BACK",SWIG_From_int(static_cast< int >(2))); 
23204   SWIG_Python_SetConstant(d
, "STC_MARGIN_FORE",SWIG_From_int(static_cast< int >(3))); 
23205   SWIG_Python_SetConstant(d
, "STC_STYLE_DEFAULT",SWIG_From_int(static_cast< int >(32))); 
23206   SWIG_Python_SetConstant(d
, "STC_STYLE_LINENUMBER",SWIG_From_int(static_cast< int >(33))); 
23207   SWIG_Python_SetConstant(d
, "STC_STYLE_BRACELIGHT",SWIG_From_int(static_cast< int >(34))); 
23208   SWIG_Python_SetConstant(d
, "STC_STYLE_BRACEBAD",SWIG_From_int(static_cast< int >(35))); 
23209   SWIG_Python_SetConstant(d
, "STC_STYLE_CONTROLCHAR",SWIG_From_int(static_cast< int >(36))); 
23210   SWIG_Python_SetConstant(d
, "STC_STYLE_INDENTGUIDE",SWIG_From_int(static_cast< int >(37))); 
23211   SWIG_Python_SetConstant(d
, "STC_STYLE_CALLTIP",SWIG_From_int(static_cast< int >(38))); 
23212   SWIG_Python_SetConstant(d
, "STC_STYLE_LASTPREDEFINED",SWIG_From_int(static_cast< int >(39))); 
23213   SWIG_Python_SetConstant(d
, "STC_STYLE_MAX",SWIG_From_int(static_cast< int >(127))); 
23214   SWIG_Python_SetConstant(d
, "STC_CHARSET_ANSI",SWIG_From_int(static_cast< int >(0))); 
23215   SWIG_Python_SetConstant(d
, "STC_CHARSET_DEFAULT",SWIG_From_int(static_cast< int >(1))); 
23216   SWIG_Python_SetConstant(d
, "STC_CHARSET_BALTIC",SWIG_From_int(static_cast< int >(186))); 
23217   SWIG_Python_SetConstant(d
, "STC_CHARSET_CHINESEBIG5",SWIG_From_int(static_cast< int >(136))); 
23218   SWIG_Python_SetConstant(d
, "STC_CHARSET_EASTEUROPE",SWIG_From_int(static_cast< int >(238))); 
23219   SWIG_Python_SetConstant(d
, "STC_CHARSET_GB2312",SWIG_From_int(static_cast< int >(134))); 
23220   SWIG_Python_SetConstant(d
, "STC_CHARSET_GREEK",SWIG_From_int(static_cast< int >(161))); 
23221   SWIG_Python_SetConstant(d
, "STC_CHARSET_HANGUL",SWIG_From_int(static_cast< int >(129))); 
23222   SWIG_Python_SetConstant(d
, "STC_CHARSET_MAC",SWIG_From_int(static_cast< int >(77))); 
23223   SWIG_Python_SetConstant(d
, "STC_CHARSET_OEM",SWIG_From_int(static_cast< int >(255))); 
23224   SWIG_Python_SetConstant(d
, "STC_CHARSET_RUSSIAN",SWIG_From_int(static_cast< int >(204))); 
23225   SWIG_Python_SetConstant(d
, "STC_CHARSET_CYRILLIC",SWIG_From_int(static_cast< int >(1251))); 
23226   SWIG_Python_SetConstant(d
, "STC_CHARSET_SHIFTJIS",SWIG_From_int(static_cast< int >(128))); 
23227   SWIG_Python_SetConstant(d
, "STC_CHARSET_SYMBOL",SWIG_From_int(static_cast< int >(2))); 
23228   SWIG_Python_SetConstant(d
, "STC_CHARSET_TURKISH",SWIG_From_int(static_cast< int >(162))); 
23229   SWIG_Python_SetConstant(d
, "STC_CHARSET_JOHAB",SWIG_From_int(static_cast< int >(130))); 
23230   SWIG_Python_SetConstant(d
, "STC_CHARSET_HEBREW",SWIG_From_int(static_cast< int >(177))); 
23231   SWIG_Python_SetConstant(d
, "STC_CHARSET_ARABIC",SWIG_From_int(static_cast< int >(178))); 
23232   SWIG_Python_SetConstant(d
, "STC_CHARSET_VIETNAMESE",SWIG_From_int(static_cast< int >(163))); 
23233   SWIG_Python_SetConstant(d
, "STC_CHARSET_THAI",SWIG_From_int(static_cast< int >(222))); 
23234   SWIG_Python_SetConstant(d
, "STC_CHARSET_8859_15",SWIG_From_int(static_cast< int >(1000))); 
23235   SWIG_Python_SetConstant(d
, "STC_CASE_MIXED",SWIG_From_int(static_cast< int >(0))); 
23236   SWIG_Python_SetConstant(d
, "STC_CASE_UPPER",SWIG_From_int(static_cast< int >(1))); 
23237   SWIG_Python_SetConstant(d
, "STC_CASE_LOWER",SWIG_From_int(static_cast< int >(2))); 
23238   SWIG_Python_SetConstant(d
, "STC_INDIC_MAX",SWIG_From_int(static_cast< int >(7))); 
23239   SWIG_Python_SetConstant(d
, "STC_INDIC_PLAIN",SWIG_From_int(static_cast< int >(0))); 
23240   SWIG_Python_SetConstant(d
, "STC_INDIC_SQUIGGLE",SWIG_From_int(static_cast< int >(1))); 
23241   SWIG_Python_SetConstant(d
, "STC_INDIC_TT",SWIG_From_int(static_cast< int >(2))); 
23242   SWIG_Python_SetConstant(d
, "STC_INDIC_DIAGONAL",SWIG_From_int(static_cast< int >(3))); 
23243   SWIG_Python_SetConstant(d
, "STC_INDIC_STRIKE",SWIG_From_int(static_cast< int >(4))); 
23244   SWIG_Python_SetConstant(d
, "STC_INDIC_HIDDEN",SWIG_From_int(static_cast< int >(5))); 
23245   SWIG_Python_SetConstant(d
, "STC_INDIC_BOX",SWIG_From_int(static_cast< int >(6))); 
23246   SWIG_Python_SetConstant(d
, "STC_INDIC_ROUNDBOX",SWIG_From_int(static_cast< int >(7))); 
23247   SWIG_Python_SetConstant(d
, "STC_INDIC0_MASK",SWIG_From_int(static_cast< int >(0x20))); 
23248   SWIG_Python_SetConstant(d
, "STC_INDIC1_MASK",SWIG_From_int(static_cast< int >(0x40))); 
23249   SWIG_Python_SetConstant(d
, "STC_INDIC2_MASK",SWIG_From_int(static_cast< int >(0x80))); 
23250   SWIG_Python_SetConstant(d
, "STC_INDICS_MASK",SWIG_From_int(static_cast< int >(0xE0))); 
23251   SWIG_Python_SetConstant(d
, "STC_PRINT_NORMAL",SWIG_From_int(static_cast< int >(0))); 
23252   SWIG_Python_SetConstant(d
, "STC_PRINT_INVERTLIGHT",SWIG_From_int(static_cast< int >(1))); 
23253   SWIG_Python_SetConstant(d
, "STC_PRINT_BLACKONWHITE",SWIG_From_int(static_cast< int >(2))); 
23254   SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITE",SWIG_From_int(static_cast< int >(3))); 
23255   SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITEDEFAULTBG",SWIG_From_int(static_cast< int >(4))); 
23256   SWIG_Python_SetConstant(d
, "STC_FIND_WHOLEWORD",SWIG_From_int(static_cast< int >(2))); 
23257   SWIG_Python_SetConstant(d
, "STC_FIND_MATCHCASE",SWIG_From_int(static_cast< int >(4))); 
23258   SWIG_Python_SetConstant(d
, "STC_FIND_WORDSTART",SWIG_From_int(static_cast< int >(0x00100000))); 
23259   SWIG_Python_SetConstant(d
, "STC_FIND_REGEXP",SWIG_From_int(static_cast< int >(0x00200000))); 
23260   SWIG_Python_SetConstant(d
, "STC_FIND_POSIX",SWIG_From_int(static_cast< int >(0x00400000))); 
23261   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBASE",SWIG_From_int(static_cast< int >(0x400))); 
23262   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELWHITEFLAG",SWIG_From_int(static_cast< int >(0x1000))); 
23263   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELHEADERFLAG",SWIG_From_int(static_cast< int >(0x2000))); 
23264   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXHEADERFLAG",SWIG_From_int(static_cast< int >(0x4000))); 
23265   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXFOOTERFLAG",SWIG_From_int(static_cast< int >(0x8000))); 
23266   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELCONTRACTED",SWIG_From_int(static_cast< int >(0x10000))); 
23267   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELUNINDENT",SWIG_From_int(static_cast< int >(0x20000))); 
23268   SWIG_Python_SetConstant(d
, "STC_FOLDLEVELNUMBERMASK",SWIG_From_int(static_cast< int >(0x0FFF))); 
23269   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_EXPANDED",SWIG_From_int(static_cast< int >(0x0002))); 
23270   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_CONTRACTED",SWIG_From_int(static_cast< int >(0x0004))); 
23271   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_EXPANDED",SWIG_From_int(static_cast< int >(0x0008))); 
23272   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_CONTRACTED",SWIG_From_int(static_cast< int >(0x0010))); 
23273   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LEVELNUMBERS",SWIG_From_int(static_cast< int >(0x0040))); 
23274   SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_BOX",SWIG_From_int(static_cast< int >(0x0001))); 
23275   SWIG_Python_SetConstant(d
, "STC_TIME_FOREVER",SWIG_From_int(static_cast< int >(10000000))); 
23276   SWIG_Python_SetConstant(d
, "STC_WRAP_NONE",SWIG_From_int(static_cast< int >(0))); 
23277   SWIG_Python_SetConstant(d
, "STC_WRAP_WORD",SWIG_From_int(static_cast< int >(1))); 
23278   SWIG_Python_SetConstant(d
, "STC_WRAP_CHAR",SWIG_From_int(static_cast< int >(2))); 
23279   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_NONE",SWIG_From_int(static_cast< int >(0x0000))); 
23280   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_END",SWIG_From_int(static_cast< int >(0x0001))); 
23281   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_START",SWIG_From_int(static_cast< int >(0x0002))); 
23282   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_DEFAULT",SWIG_From_int(static_cast< int >(0x0000))); 
23283   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_END_BY_TEXT",SWIG_From_int(static_cast< int >(0x0001))); 
23284   SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_START_BY_TEXT",SWIG_From_int(static_cast< int >(0x0002))); 
23285   SWIG_Python_SetConstant(d
, "STC_CACHE_NONE",SWIG_From_int(static_cast< int >(0))); 
23286   SWIG_Python_SetConstant(d
, "STC_CACHE_CARET",SWIG_From_int(static_cast< int >(1))); 
23287   SWIG_Python_SetConstant(d
, "STC_CACHE_PAGE",SWIG_From_int(static_cast< int >(2))); 
23288   SWIG_Python_SetConstant(d
, "STC_CACHE_DOCUMENT",SWIG_From_int(static_cast< int >(3))); 
23289   SWIG_Python_SetConstant(d
, "STC_EDGE_NONE",SWIG_From_int(static_cast< int >(0))); 
23290   SWIG_Python_SetConstant(d
, "STC_EDGE_LINE",SWIG_From_int(static_cast< int >(1))); 
23291   SWIG_Python_SetConstant(d
, "STC_EDGE_BACKGROUND",SWIG_From_int(static_cast< int >(2))); 
23292   SWIG_Python_SetConstant(d
, "STC_CURSORNORMAL",SWIG_From_int(static_cast< int >(-1))); 
23293   SWIG_Python_SetConstant(d
, "STC_CURSORWAIT",SWIG_From_int(static_cast< int >(4))); 
23294   SWIG_Python_SetConstant(d
, "STC_VISIBLE_SLOP",SWIG_From_int(static_cast< int >(0x01))); 
23295   SWIG_Python_SetConstant(d
, "STC_VISIBLE_STRICT",SWIG_From_int(static_cast< int >(0x04))); 
23296   SWIG_Python_SetConstant(d
, "STC_CARET_SLOP",SWIG_From_int(static_cast< int >(0x01))); 
23297   SWIG_Python_SetConstant(d
, "STC_CARET_STRICT",SWIG_From_int(static_cast< int >(0x04))); 
23298   SWIG_Python_SetConstant(d
, "STC_CARET_JUMPS",SWIG_From_int(static_cast< int >(0x10))); 
23299   SWIG_Python_SetConstant(d
, "STC_CARET_EVEN",SWIG_From_int(static_cast< int >(0x08))); 
23300   SWIG_Python_SetConstant(d
, "STC_SEL_STREAM",SWIG_From_int(static_cast< int >(0))); 
23301   SWIG_Python_SetConstant(d
, "STC_SEL_RECTANGLE",SWIG_From_int(static_cast< int >(1))); 
23302   SWIG_Python_SetConstant(d
, "STC_SEL_LINES",SWIG_From_int(static_cast< int >(2))); 
23303   SWIG_Python_SetConstant(d
, "STC_ALPHA_TRANSPARENT",SWIG_From_int(static_cast< int >(0))); 
23304   SWIG_Python_SetConstant(d
, "STC_ALPHA_OPAQUE",SWIG_From_int(static_cast< int >(255))); 
23305   SWIG_Python_SetConstant(d
, "STC_ALPHA_NOALPHA",SWIG_From_int(static_cast< int >(256))); 
23306   SWIG_Python_SetConstant(d
, "STC_KEYWORDSET_MAX",SWIG_From_int(static_cast< int >(8))); 
23307   SWIG_Python_SetConstant(d
, "STC_MOD_INSERTTEXT",SWIG_From_int(static_cast< int >(0x1))); 
23308   SWIG_Python_SetConstant(d
, "STC_MOD_DELETETEXT",SWIG_From_int(static_cast< int >(0x2))); 
23309   SWIG_Python_SetConstant(d
, "STC_MOD_CHANGESTYLE",SWIG_From_int(static_cast< int >(0x4))); 
23310   SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEFOLD",SWIG_From_int(static_cast< int >(0x8))); 
23311   SWIG_Python_SetConstant(d
, "STC_PERFORMED_USER",SWIG_From_int(static_cast< int >(0x10))); 
23312   SWIG_Python_SetConstant(d
, "STC_PERFORMED_UNDO",SWIG_From_int(static_cast< int >(0x20))); 
23313   SWIG_Python_SetConstant(d
, "STC_PERFORMED_REDO",SWIG_From_int(static_cast< int >(0x40))); 
23314   SWIG_Python_SetConstant(d
, "STC_MULTISTEPUNDOREDO",SWIG_From_int(static_cast< int >(0x80))); 
23315   SWIG_Python_SetConstant(d
, "STC_LASTSTEPINUNDOREDO",SWIG_From_int(static_cast< int >(0x100))); 
23316   SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEMARKER",SWIG_From_int(static_cast< int >(0x200))); 
23317   SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREINSERT",SWIG_From_int(static_cast< int >(0x400))); 
23318   SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREDELETE",SWIG_From_int(static_cast< int >(0x800))); 
23319   SWIG_Python_SetConstant(d
, "STC_MULTILINEUNDOREDO",SWIG_From_int(static_cast< int >(0x1000))); 
23320   SWIG_Python_SetConstant(d
, "STC_MODEVENTMASKALL",SWIG_From_int(static_cast< int >(0x1FFF))); 
23321   SWIG_Python_SetConstant(d
, "STC_KEY_DOWN",SWIG_From_int(static_cast< int >(300))); 
23322   SWIG_Python_SetConstant(d
, "STC_KEY_UP",SWIG_From_int(static_cast< int >(301))); 
23323   SWIG_Python_SetConstant(d
, "STC_KEY_LEFT",SWIG_From_int(static_cast< int >(302))); 
23324   SWIG_Python_SetConstant(d
, "STC_KEY_RIGHT",SWIG_From_int(static_cast< int >(303))); 
23325   SWIG_Python_SetConstant(d
, "STC_KEY_HOME",SWIG_From_int(static_cast< int >(304))); 
23326   SWIG_Python_SetConstant(d
, "STC_KEY_END",SWIG_From_int(static_cast< int >(305))); 
23327   SWIG_Python_SetConstant(d
, "STC_KEY_PRIOR",SWIG_From_int(static_cast< int >(306))); 
23328   SWIG_Python_SetConstant(d
, "STC_KEY_NEXT",SWIG_From_int(static_cast< int >(307))); 
23329   SWIG_Python_SetConstant(d
, "STC_KEY_DELETE",SWIG_From_int(static_cast< int >(308))); 
23330   SWIG_Python_SetConstant(d
, "STC_KEY_INSERT",SWIG_From_int(static_cast< int >(309))); 
23331   SWIG_Python_SetConstant(d
, "STC_KEY_ESCAPE",SWIG_From_int(static_cast< int >(7))); 
23332   SWIG_Python_SetConstant(d
, "STC_KEY_BACK",SWIG_From_int(static_cast< int >(8))); 
23333   SWIG_Python_SetConstant(d
, "STC_KEY_TAB",SWIG_From_int(static_cast< int >(9))); 
23334   SWIG_Python_SetConstant(d
, "STC_KEY_RETURN",SWIG_From_int(static_cast< int >(13))); 
23335   SWIG_Python_SetConstant(d
, "STC_KEY_ADD",SWIG_From_int(static_cast< int >(310))); 
23336   SWIG_Python_SetConstant(d
, "STC_KEY_SUBTRACT",SWIG_From_int(static_cast< int >(311))); 
23337   SWIG_Python_SetConstant(d
, "STC_KEY_DIVIDE",SWIG_From_int(static_cast< int >(312))); 
23338   SWIG_Python_SetConstant(d
, "STC_SCMOD_NORM",SWIG_From_int(static_cast< int >(0))); 
23339   SWIG_Python_SetConstant(d
, "STC_SCMOD_SHIFT",SWIG_From_int(static_cast< int >(1))); 
23340   SWIG_Python_SetConstant(d
, "STC_SCMOD_CTRL",SWIG_From_int(static_cast< int >(2))); 
23341   SWIG_Python_SetConstant(d
, "STC_SCMOD_ALT",SWIG_From_int(static_cast< int >(4))); 
23342   SWIG_Python_SetConstant(d
, "STC_LEX_CONTAINER",SWIG_From_int(static_cast< int >(0))); 
23343   SWIG_Python_SetConstant(d
, "STC_LEX_NULL",SWIG_From_int(static_cast< int >(1))); 
23344   SWIG_Python_SetConstant(d
, "STC_LEX_PYTHON",SWIG_From_int(static_cast< int >(2))); 
23345   SWIG_Python_SetConstant(d
, "STC_LEX_CPP",SWIG_From_int(static_cast< int >(3))); 
23346   SWIG_Python_SetConstant(d
, "STC_LEX_HTML",SWIG_From_int(static_cast< int >(4))); 
23347   SWIG_Python_SetConstant(d
, "STC_LEX_XML",SWIG_From_int(static_cast< int >(5))); 
23348   SWIG_Python_SetConstant(d
, "STC_LEX_PERL",SWIG_From_int(static_cast< int >(6))); 
23349   SWIG_Python_SetConstant(d
, "STC_LEX_SQL",SWIG_From_int(static_cast< int >(7))); 
23350   SWIG_Python_SetConstant(d
, "STC_LEX_VB",SWIG_From_int(static_cast< int >(8))); 
23351   SWIG_Python_SetConstant(d
, "STC_LEX_PROPERTIES",SWIG_From_int(static_cast< int >(9))); 
23352   SWIG_Python_SetConstant(d
, "STC_LEX_ERRORLIST",SWIG_From_int(static_cast< int >(10))); 
23353   SWIG_Python_SetConstant(d
, "STC_LEX_MAKEFILE",SWIG_From_int(static_cast< int >(11))); 
23354   SWIG_Python_SetConstant(d
, "STC_LEX_BATCH",SWIG_From_int(static_cast< int >(12))); 
23355   SWIG_Python_SetConstant(d
, "STC_LEX_XCODE",SWIG_From_int(static_cast< int >(13))); 
23356   SWIG_Python_SetConstant(d
, "STC_LEX_LATEX",SWIG_From_int(static_cast< int >(14))); 
23357   SWIG_Python_SetConstant(d
, "STC_LEX_LUA",SWIG_From_int(static_cast< int >(15))); 
23358   SWIG_Python_SetConstant(d
, "STC_LEX_DIFF",SWIG_From_int(static_cast< int >(16))); 
23359   SWIG_Python_SetConstant(d
, "STC_LEX_CONF",SWIG_From_int(static_cast< int >(17))); 
23360   SWIG_Python_SetConstant(d
, "STC_LEX_PASCAL",SWIG_From_int(static_cast< int >(18))); 
23361   SWIG_Python_SetConstant(d
, "STC_LEX_AVE",SWIG_From_int(static_cast< int >(19))); 
23362   SWIG_Python_SetConstant(d
, "STC_LEX_ADA",SWIG_From_int(static_cast< int >(20))); 
23363   SWIG_Python_SetConstant(d
, "STC_LEX_LISP",SWIG_From_int(static_cast< int >(21))); 
23364   SWIG_Python_SetConstant(d
, "STC_LEX_RUBY",SWIG_From_int(static_cast< int >(22))); 
23365   SWIG_Python_SetConstant(d
, "STC_LEX_EIFFEL",SWIG_From_int(static_cast< int >(23))); 
23366   SWIG_Python_SetConstant(d
, "STC_LEX_EIFFELKW",SWIG_From_int(static_cast< int >(24))); 
23367   SWIG_Python_SetConstant(d
, "STC_LEX_TCL",SWIG_From_int(static_cast< int >(25))); 
23368   SWIG_Python_SetConstant(d
, "STC_LEX_NNCRONTAB",SWIG_From_int(static_cast< int >(26))); 
23369   SWIG_Python_SetConstant(d
, "STC_LEX_BULLANT",SWIG_From_int(static_cast< int >(27))); 
23370   SWIG_Python_SetConstant(d
, "STC_LEX_VBSCRIPT",SWIG_From_int(static_cast< int >(28))); 
23371   SWIG_Python_SetConstant(d
, "STC_LEX_BAAN",SWIG_From_int(static_cast< int >(31))); 
23372   SWIG_Python_SetConstant(d
, "STC_LEX_MATLAB",SWIG_From_int(static_cast< int >(32))); 
23373   SWIG_Python_SetConstant(d
, "STC_LEX_SCRIPTOL",SWIG_From_int(static_cast< int >(33))); 
23374   SWIG_Python_SetConstant(d
, "STC_LEX_ASM",SWIG_From_int(static_cast< int >(34))); 
23375   SWIG_Python_SetConstant(d
, "STC_LEX_CPPNOCASE",SWIG_From_int(static_cast< int >(35))); 
23376   SWIG_Python_SetConstant(d
, "STC_LEX_FORTRAN",SWIG_From_int(static_cast< int >(36))); 
23377   SWIG_Python_SetConstant(d
, "STC_LEX_F77",SWIG_From_int(static_cast< int >(37))); 
23378   SWIG_Python_SetConstant(d
, "STC_LEX_CSS",SWIG_From_int(static_cast< int >(38))); 
23379   SWIG_Python_SetConstant(d
, "STC_LEX_POV",SWIG_From_int(static_cast< int >(39))); 
23380   SWIG_Python_SetConstant(d
, "STC_LEX_LOUT",SWIG_From_int(static_cast< int >(40))); 
23381   SWIG_Python_SetConstant(d
, "STC_LEX_ESCRIPT",SWIG_From_int(static_cast< int >(41))); 
23382   SWIG_Python_SetConstant(d
, "STC_LEX_PS",SWIG_From_int(static_cast< int >(42))); 
23383   SWIG_Python_SetConstant(d
, "STC_LEX_NSIS",SWIG_From_int(static_cast< int >(43))); 
23384   SWIG_Python_SetConstant(d
, "STC_LEX_MMIXAL",SWIG_From_int(static_cast< int >(44))); 
23385   SWIG_Python_SetConstant(d
, "STC_LEX_CLW",SWIG_From_int(static_cast< int >(45))); 
23386   SWIG_Python_SetConstant(d
, "STC_LEX_CLWNOCASE",SWIG_From_int(static_cast< int >(46))); 
23387   SWIG_Python_SetConstant(d
, "STC_LEX_LOT",SWIG_From_int(static_cast< int >(47))); 
23388   SWIG_Python_SetConstant(d
, "STC_LEX_YAML",SWIG_From_int(static_cast< int >(48))); 
23389   SWIG_Python_SetConstant(d
, "STC_LEX_TEX",SWIG_From_int(static_cast< int >(49))); 
23390   SWIG_Python_SetConstant(d
, "STC_LEX_METAPOST",SWIG_From_int(static_cast< int >(50))); 
23391   SWIG_Python_SetConstant(d
, "STC_LEX_POWERBASIC",SWIG_From_int(static_cast< int >(51))); 
23392   SWIG_Python_SetConstant(d
, "STC_LEX_FORTH",SWIG_From_int(static_cast< int >(52))); 
23393   SWIG_Python_SetConstant(d
, "STC_LEX_ERLANG",SWIG_From_int(static_cast< int >(53))); 
23394   SWIG_Python_SetConstant(d
, "STC_LEX_OCTAVE",SWIG_From_int(static_cast< int >(54))); 
23395   SWIG_Python_SetConstant(d
, "STC_LEX_MSSQL",SWIG_From_int(static_cast< int >(55))); 
23396   SWIG_Python_SetConstant(d
, "STC_LEX_VERILOG",SWIG_From_int(static_cast< int >(56))); 
23397   SWIG_Python_SetConstant(d
, "STC_LEX_KIX",SWIG_From_int(static_cast< int >(57))); 
23398   SWIG_Python_SetConstant(d
, "STC_LEX_GUI4CLI",SWIG_From_int(static_cast< int >(58))); 
23399   SWIG_Python_SetConstant(d
, "STC_LEX_SPECMAN",SWIG_From_int(static_cast< int >(59))); 
23400   SWIG_Python_SetConstant(d
, "STC_LEX_AU3",SWIG_From_int(static_cast< int >(60))); 
23401   SWIG_Python_SetConstant(d
, "STC_LEX_APDL",SWIG_From_int(static_cast< int >(61))); 
23402   SWIG_Python_SetConstant(d
, "STC_LEX_BASH",SWIG_From_int(static_cast< int >(62))); 
23403   SWIG_Python_SetConstant(d
, "STC_LEX_ASN1",SWIG_From_int(static_cast< int >(63))); 
23404   SWIG_Python_SetConstant(d
, "STC_LEX_VHDL",SWIG_From_int(static_cast< int >(64))); 
23405   SWIG_Python_SetConstant(d
, "STC_LEX_CAML",SWIG_From_int(static_cast< int >(65))); 
23406   SWIG_Python_SetConstant(d
, "STC_LEX_BLITZBASIC",SWIG_From_int(static_cast< int >(66))); 
23407   SWIG_Python_SetConstant(d
, "STC_LEX_PUREBASIC",SWIG_From_int(static_cast< int >(67))); 
23408   SWIG_Python_SetConstant(d
, "STC_LEX_HASKELL",SWIG_From_int(static_cast< int >(68))); 
23409   SWIG_Python_SetConstant(d
, "STC_LEX_PHPSCRIPT",SWIG_From_int(static_cast< int >(69))); 
23410   SWIG_Python_SetConstant(d
, "STC_LEX_TADS3",SWIG_From_int(static_cast< int >(70))); 
23411   SWIG_Python_SetConstant(d
, "STC_LEX_REBOL",SWIG_From_int(static_cast< int >(71))); 
23412   SWIG_Python_SetConstant(d
, "STC_LEX_SMALLTALK",SWIG_From_int(static_cast< int >(72))); 
23413   SWIG_Python_SetConstant(d
, "STC_LEX_FLAGSHIP",SWIG_From_int(static_cast< int >(73))); 
23414   SWIG_Python_SetConstant(d
, "STC_LEX_CSOUND",SWIG_From_int(static_cast< int >(74))); 
23415   SWIG_Python_SetConstant(d
, "STC_LEX_FREEBASIC",SWIG_From_int(static_cast< int >(75))); 
23416   SWIG_Python_SetConstant(d
, "STC_LEX_INNOSETUP",SWIG_From_int(static_cast< int >(76))); 
23417   SWIG_Python_SetConstant(d
, "STC_LEX_OPAL",SWIG_From_int(static_cast< int >(77))); 
23418   SWIG_Python_SetConstant(d
, "STC_LEX_SPICE",SWIG_From_int(static_cast< int >(78))); 
23419   SWIG_Python_SetConstant(d
, "STC_LEX_AUTOMATIC",SWIG_From_int(static_cast< int >(1000))); 
23420   SWIG_Python_SetConstant(d
, "STC_P_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23421   SWIG_Python_SetConstant(d
, "STC_P_COMMENTLINE",SWIG_From_int(static_cast< int >(1))); 
23422   SWIG_Python_SetConstant(d
, "STC_P_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23423   SWIG_Python_SetConstant(d
, "STC_P_STRING",SWIG_From_int(static_cast< int >(3))); 
23424   SWIG_Python_SetConstant(d
, "STC_P_CHARACTER",SWIG_From_int(static_cast< int >(4))); 
23425   SWIG_Python_SetConstant(d
, "STC_P_WORD",SWIG_From_int(static_cast< int >(5))); 
23426   SWIG_Python_SetConstant(d
, "STC_P_TRIPLE",SWIG_From_int(static_cast< int >(6))); 
23427   SWIG_Python_SetConstant(d
, "STC_P_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(7))); 
23428   SWIG_Python_SetConstant(d
, "STC_P_CLASSNAME",SWIG_From_int(static_cast< int >(8))); 
23429   SWIG_Python_SetConstant(d
, "STC_P_DEFNAME",SWIG_From_int(static_cast< int >(9))); 
23430   SWIG_Python_SetConstant(d
, "STC_P_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23431   SWIG_Python_SetConstant(d
, "STC_P_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
23432   SWIG_Python_SetConstant(d
, "STC_P_COMMENTBLOCK",SWIG_From_int(static_cast< int >(12))); 
23433   SWIG_Python_SetConstant(d
, "STC_P_STRINGEOL",SWIG_From_int(static_cast< int >(13))); 
23434   SWIG_Python_SetConstant(d
, "STC_P_WORD2",SWIG_From_int(static_cast< int >(14))); 
23435   SWIG_Python_SetConstant(d
, "STC_P_DECORATOR",SWIG_From_int(static_cast< int >(15))); 
23436   SWIG_Python_SetConstant(d
, "STC_C_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23437   SWIG_Python_SetConstant(d
, "STC_C_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23438   SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23439   SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOC",SWIG_From_int(static_cast< int >(3))); 
23440   SWIG_Python_SetConstant(d
, "STC_C_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23441   SWIG_Python_SetConstant(d
, "STC_C_WORD",SWIG_From_int(static_cast< int >(5))); 
23442   SWIG_Python_SetConstant(d
, "STC_C_STRING",SWIG_From_int(static_cast< int >(6))); 
23443   SWIG_Python_SetConstant(d
, "STC_C_CHARACTER",SWIG_From_int(static_cast< int >(7))); 
23444   SWIG_Python_SetConstant(d
, "STC_C_UUID",SWIG_From_int(static_cast< int >(8))); 
23445   SWIG_Python_SetConstant(d
, "STC_C_PREPROCESSOR",SWIG_From_int(static_cast< int >(9))); 
23446   SWIG_Python_SetConstant(d
, "STC_C_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23447   SWIG_Python_SetConstant(d
, "STC_C_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
23448   SWIG_Python_SetConstant(d
, "STC_C_STRINGEOL",SWIG_From_int(static_cast< int >(12))); 
23449   SWIG_Python_SetConstant(d
, "STC_C_VERBATIM",SWIG_From_int(static_cast< int >(13))); 
23450   SWIG_Python_SetConstant(d
, "STC_C_REGEX",SWIG_From_int(static_cast< int >(14))); 
23451   SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15))); 
23452   SWIG_Python_SetConstant(d
, "STC_C_WORD2",SWIG_From_int(static_cast< int >(16))); 
23453   SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17))); 
23454   SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18))); 
23455   SWIG_Python_SetConstant(d
, "STC_C_GLOBALCLASS",SWIG_From_int(static_cast< int >(19))); 
23456   SWIG_Python_SetConstant(d
, "STC_TCL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23457   SWIG_Python_SetConstant(d
, "STC_TCL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23458   SWIG_Python_SetConstant(d
, "STC_TCL_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23459   SWIG_Python_SetConstant(d
, "STC_TCL_NUMBER",SWIG_From_int(static_cast< int >(3))); 
23460   SWIG_Python_SetConstant(d
, "STC_TCL_WORD_IN_QUOTE",SWIG_From_int(static_cast< int >(4))); 
23461   SWIG_Python_SetConstant(d
, "STC_TCL_IN_QUOTE",SWIG_From_int(static_cast< int >(5))); 
23462   SWIG_Python_SetConstant(d
, "STC_TCL_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
23463   SWIG_Python_SetConstant(d
, "STC_TCL_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23464   SWIG_Python_SetConstant(d
, "STC_TCL_SUBSTITUTION",SWIG_From_int(static_cast< int >(8))); 
23465   SWIG_Python_SetConstant(d
, "STC_TCL_SUB_BRACE",SWIG_From_int(static_cast< int >(9))); 
23466   SWIG_Python_SetConstant(d
, "STC_TCL_MODIFIER",SWIG_From_int(static_cast< int >(10))); 
23467   SWIG_Python_SetConstant(d
, "STC_TCL_EXPAND",SWIG_From_int(static_cast< int >(11))); 
23468   SWIG_Python_SetConstant(d
, "STC_TCL_WORD",SWIG_From_int(static_cast< int >(12))); 
23469   SWIG_Python_SetConstant(d
, "STC_TCL_WORD2",SWIG_From_int(static_cast< int >(13))); 
23470   SWIG_Python_SetConstant(d
, "STC_TCL_WORD3",SWIG_From_int(static_cast< int >(14))); 
23471   SWIG_Python_SetConstant(d
, "STC_TCL_WORD4",SWIG_From_int(static_cast< int >(15))); 
23472   SWIG_Python_SetConstant(d
, "STC_TCL_WORD5",SWIG_From_int(static_cast< int >(16))); 
23473   SWIG_Python_SetConstant(d
, "STC_TCL_WORD6",SWIG_From_int(static_cast< int >(17))); 
23474   SWIG_Python_SetConstant(d
, "STC_TCL_WORD7",SWIG_From_int(static_cast< int >(18))); 
23475   SWIG_Python_SetConstant(d
, "STC_TCL_WORD8",SWIG_From_int(static_cast< int >(19))); 
23476   SWIG_Python_SetConstant(d
, "STC_TCL_COMMENT_BOX",SWIG_From_int(static_cast< int >(20))); 
23477   SWIG_Python_SetConstant(d
, "STC_TCL_BLOCK_COMMENT",SWIG_From_int(static_cast< int >(21))); 
23478   SWIG_Python_SetConstant(d
, "STC_H_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23479   SWIG_Python_SetConstant(d
, "STC_H_TAG",SWIG_From_int(static_cast< int >(1))); 
23480   SWIG_Python_SetConstant(d
, "STC_H_TAGUNKNOWN",SWIG_From_int(static_cast< int >(2))); 
23481   SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTE",SWIG_From_int(static_cast< int >(3))); 
23482   SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTEUNKNOWN",SWIG_From_int(static_cast< int >(4))); 
23483   SWIG_Python_SetConstant(d
, "STC_H_NUMBER",SWIG_From_int(static_cast< int >(5))); 
23484   SWIG_Python_SetConstant(d
, "STC_H_DOUBLESTRING",SWIG_From_int(static_cast< int >(6))); 
23485   SWIG_Python_SetConstant(d
, "STC_H_SINGLESTRING",SWIG_From_int(static_cast< int >(7))); 
23486   SWIG_Python_SetConstant(d
, "STC_H_OTHER",SWIG_From_int(static_cast< int >(8))); 
23487   SWIG_Python_SetConstant(d
, "STC_H_COMMENT",SWIG_From_int(static_cast< int >(9))); 
23488   SWIG_Python_SetConstant(d
, "STC_H_ENTITY",SWIG_From_int(static_cast< int >(10))); 
23489   SWIG_Python_SetConstant(d
, "STC_H_TAGEND",SWIG_From_int(static_cast< int >(11))); 
23490   SWIG_Python_SetConstant(d
, "STC_H_XMLSTART",SWIG_From_int(static_cast< int >(12))); 
23491   SWIG_Python_SetConstant(d
, "STC_H_XMLEND",SWIG_From_int(static_cast< int >(13))); 
23492   SWIG_Python_SetConstant(d
, "STC_H_SCRIPT",SWIG_From_int(static_cast< int >(14))); 
23493   SWIG_Python_SetConstant(d
, "STC_H_ASP",SWIG_From_int(static_cast< int >(15))); 
23494   SWIG_Python_SetConstant(d
, "STC_H_ASPAT",SWIG_From_int(static_cast< int >(16))); 
23495   SWIG_Python_SetConstant(d
, "STC_H_CDATA",SWIG_From_int(static_cast< int >(17))); 
23496   SWIG_Python_SetConstant(d
, "STC_H_QUESTION",SWIG_From_int(static_cast< int >(18))); 
23497   SWIG_Python_SetConstant(d
, "STC_H_VALUE",SWIG_From_int(static_cast< int >(19))); 
23498   SWIG_Python_SetConstant(d
, "STC_H_XCCOMMENT",SWIG_From_int(static_cast< int >(20))); 
23499   SWIG_Python_SetConstant(d
, "STC_H_SGML_DEFAULT",SWIG_From_int(static_cast< int >(21))); 
23500   SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMAND",SWIG_From_int(static_cast< int >(22))); 
23501   SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM",SWIG_From_int(static_cast< int >(23))); 
23502   SWIG_Python_SetConstant(d
, "STC_H_SGML_DOUBLESTRING",SWIG_From_int(static_cast< int >(24))); 
23503   SWIG_Python_SetConstant(d
, "STC_H_SGML_SIMPLESTRING",SWIG_From_int(static_cast< int >(25))); 
23504   SWIG_Python_SetConstant(d
, "STC_H_SGML_ERROR",SWIG_From_int(static_cast< int >(26))); 
23505   SWIG_Python_SetConstant(d
, "STC_H_SGML_SPECIAL",SWIG_From_int(static_cast< int >(27))); 
23506   SWIG_Python_SetConstant(d
, "STC_H_SGML_ENTITY",SWIG_From_int(static_cast< int >(28))); 
23507   SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMENT",SWIG_From_int(static_cast< int >(29))); 
23508   SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM_COMMENT",SWIG_From_int(static_cast< int >(30))); 
23509   SWIG_Python_SetConstant(d
, "STC_H_SGML_BLOCK_DEFAULT",SWIG_From_int(static_cast< int >(31))); 
23510   SWIG_Python_SetConstant(d
, "STC_HJ_START",SWIG_From_int(static_cast< int >(40))); 
23511   SWIG_Python_SetConstant(d
, "STC_HJ_DEFAULT",SWIG_From_int(static_cast< int >(41))); 
23512   SWIG_Python_SetConstant(d
, "STC_HJ_COMMENT",SWIG_From_int(static_cast< int >(42))); 
23513   SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTLINE",SWIG_From_int(static_cast< int >(43))); 
23514   SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTDOC",SWIG_From_int(static_cast< int >(44))); 
23515   SWIG_Python_SetConstant(d
, "STC_HJ_NUMBER",SWIG_From_int(static_cast< int >(45))); 
23516   SWIG_Python_SetConstant(d
, "STC_HJ_WORD",SWIG_From_int(static_cast< int >(46))); 
23517   SWIG_Python_SetConstant(d
, "STC_HJ_KEYWORD",SWIG_From_int(static_cast< int >(47))); 
23518   SWIG_Python_SetConstant(d
, "STC_HJ_DOUBLESTRING",SWIG_From_int(static_cast< int >(48))); 
23519   SWIG_Python_SetConstant(d
, "STC_HJ_SINGLESTRING",SWIG_From_int(static_cast< int >(49))); 
23520   SWIG_Python_SetConstant(d
, "STC_HJ_SYMBOLS",SWIG_From_int(static_cast< int >(50))); 
23521   SWIG_Python_SetConstant(d
, "STC_HJ_STRINGEOL",SWIG_From_int(static_cast< int >(51))); 
23522   SWIG_Python_SetConstant(d
, "STC_HJ_REGEX",SWIG_From_int(static_cast< int >(52))); 
23523   SWIG_Python_SetConstant(d
, "STC_HJA_START",SWIG_From_int(static_cast< int >(55))); 
23524   SWIG_Python_SetConstant(d
, "STC_HJA_DEFAULT",SWIG_From_int(static_cast< int >(56))); 
23525   SWIG_Python_SetConstant(d
, "STC_HJA_COMMENT",SWIG_From_int(static_cast< int >(57))); 
23526   SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTLINE",SWIG_From_int(static_cast< int >(58))); 
23527   SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTDOC",SWIG_From_int(static_cast< int >(59))); 
23528   SWIG_Python_SetConstant(d
, "STC_HJA_NUMBER",SWIG_From_int(static_cast< int >(60))); 
23529   SWIG_Python_SetConstant(d
, "STC_HJA_WORD",SWIG_From_int(static_cast< int >(61))); 
23530   SWIG_Python_SetConstant(d
, "STC_HJA_KEYWORD",SWIG_From_int(static_cast< int >(62))); 
23531   SWIG_Python_SetConstant(d
, "STC_HJA_DOUBLESTRING",SWIG_From_int(static_cast< int >(63))); 
23532   SWIG_Python_SetConstant(d
, "STC_HJA_SINGLESTRING",SWIG_From_int(static_cast< int >(64))); 
23533   SWIG_Python_SetConstant(d
, "STC_HJA_SYMBOLS",SWIG_From_int(static_cast< int >(65))); 
23534   SWIG_Python_SetConstant(d
, "STC_HJA_STRINGEOL",SWIG_From_int(static_cast< int >(66))); 
23535   SWIG_Python_SetConstant(d
, "STC_HJA_REGEX",SWIG_From_int(static_cast< int >(67))); 
23536   SWIG_Python_SetConstant(d
, "STC_HB_START",SWIG_From_int(static_cast< int >(70))); 
23537   SWIG_Python_SetConstant(d
, "STC_HB_DEFAULT",SWIG_From_int(static_cast< int >(71))); 
23538   SWIG_Python_SetConstant(d
, "STC_HB_COMMENTLINE",SWIG_From_int(static_cast< int >(72))); 
23539   SWIG_Python_SetConstant(d
, "STC_HB_NUMBER",SWIG_From_int(static_cast< int >(73))); 
23540   SWIG_Python_SetConstant(d
, "STC_HB_WORD",SWIG_From_int(static_cast< int >(74))); 
23541   SWIG_Python_SetConstant(d
, "STC_HB_STRING",SWIG_From_int(static_cast< int >(75))); 
23542   SWIG_Python_SetConstant(d
, "STC_HB_IDENTIFIER",SWIG_From_int(static_cast< int >(76))); 
23543   SWIG_Python_SetConstant(d
, "STC_HB_STRINGEOL",SWIG_From_int(static_cast< int >(77))); 
23544   SWIG_Python_SetConstant(d
, "STC_HBA_START",SWIG_From_int(static_cast< int >(80))); 
23545   SWIG_Python_SetConstant(d
, "STC_HBA_DEFAULT",SWIG_From_int(static_cast< int >(81))); 
23546   SWIG_Python_SetConstant(d
, "STC_HBA_COMMENTLINE",SWIG_From_int(static_cast< int >(82))); 
23547   SWIG_Python_SetConstant(d
, "STC_HBA_NUMBER",SWIG_From_int(static_cast< int >(83))); 
23548   SWIG_Python_SetConstant(d
, "STC_HBA_WORD",SWIG_From_int(static_cast< int >(84))); 
23549   SWIG_Python_SetConstant(d
, "STC_HBA_STRING",SWIG_From_int(static_cast< int >(85))); 
23550   SWIG_Python_SetConstant(d
, "STC_HBA_IDENTIFIER",SWIG_From_int(static_cast< int >(86))); 
23551   SWIG_Python_SetConstant(d
, "STC_HBA_STRINGEOL",SWIG_From_int(static_cast< int >(87))); 
23552   SWIG_Python_SetConstant(d
, "STC_HP_START",SWIG_From_int(static_cast< int >(90))); 
23553   SWIG_Python_SetConstant(d
, "STC_HP_DEFAULT",SWIG_From_int(static_cast< int >(91))); 
23554   SWIG_Python_SetConstant(d
, "STC_HP_COMMENTLINE",SWIG_From_int(static_cast< int >(92))); 
23555   SWIG_Python_SetConstant(d
, "STC_HP_NUMBER",SWIG_From_int(static_cast< int >(93))); 
23556   SWIG_Python_SetConstant(d
, "STC_HP_STRING",SWIG_From_int(static_cast< int >(94))); 
23557   SWIG_Python_SetConstant(d
, "STC_HP_CHARACTER",SWIG_From_int(static_cast< int >(95))); 
23558   SWIG_Python_SetConstant(d
, "STC_HP_WORD",SWIG_From_int(static_cast< int >(96))); 
23559   SWIG_Python_SetConstant(d
, "STC_HP_TRIPLE",SWIG_From_int(static_cast< int >(97))); 
23560   SWIG_Python_SetConstant(d
, "STC_HP_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(98))); 
23561   SWIG_Python_SetConstant(d
, "STC_HP_CLASSNAME",SWIG_From_int(static_cast< int >(99))); 
23562   SWIG_Python_SetConstant(d
, "STC_HP_DEFNAME",SWIG_From_int(static_cast< int >(100))); 
23563   SWIG_Python_SetConstant(d
, "STC_HP_OPERATOR",SWIG_From_int(static_cast< int >(101))); 
23564   SWIG_Python_SetConstant(d
, "STC_HP_IDENTIFIER",SWIG_From_int(static_cast< int >(102))); 
23565   SWIG_Python_SetConstant(d
, "STC_HPHP_COMPLEX_VARIABLE",SWIG_From_int(static_cast< int >(104))); 
23566   SWIG_Python_SetConstant(d
, "STC_HPA_START",SWIG_From_int(static_cast< int >(105))); 
23567   SWIG_Python_SetConstant(d
, "STC_HPA_DEFAULT",SWIG_From_int(static_cast< int >(106))); 
23568   SWIG_Python_SetConstant(d
, "STC_HPA_COMMENTLINE",SWIG_From_int(static_cast< int >(107))); 
23569   SWIG_Python_SetConstant(d
, "STC_HPA_NUMBER",SWIG_From_int(static_cast< int >(108))); 
23570   SWIG_Python_SetConstant(d
, "STC_HPA_STRING",SWIG_From_int(static_cast< int >(109))); 
23571   SWIG_Python_SetConstant(d
, "STC_HPA_CHARACTER",SWIG_From_int(static_cast< int >(110))); 
23572   SWIG_Python_SetConstant(d
, "STC_HPA_WORD",SWIG_From_int(static_cast< int >(111))); 
23573   SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLE",SWIG_From_int(static_cast< int >(112))); 
23574   SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(113))); 
23575   SWIG_Python_SetConstant(d
, "STC_HPA_CLASSNAME",SWIG_From_int(static_cast< int >(114))); 
23576   SWIG_Python_SetConstant(d
, "STC_HPA_DEFNAME",SWIG_From_int(static_cast< int >(115))); 
23577   SWIG_Python_SetConstant(d
, "STC_HPA_OPERATOR",SWIG_From_int(static_cast< int >(116))); 
23578   SWIG_Python_SetConstant(d
, "STC_HPA_IDENTIFIER",SWIG_From_int(static_cast< int >(117))); 
23579   SWIG_Python_SetConstant(d
, "STC_HPHP_DEFAULT",SWIG_From_int(static_cast< int >(118))); 
23580   SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING",SWIG_From_int(static_cast< int >(119))); 
23581   SWIG_Python_SetConstant(d
, "STC_HPHP_SIMPLESTRING",SWIG_From_int(static_cast< int >(120))); 
23582   SWIG_Python_SetConstant(d
, "STC_HPHP_WORD",SWIG_From_int(static_cast< int >(121))); 
23583   SWIG_Python_SetConstant(d
, "STC_HPHP_NUMBER",SWIG_From_int(static_cast< int >(122))); 
23584   SWIG_Python_SetConstant(d
, "STC_HPHP_VARIABLE",SWIG_From_int(static_cast< int >(123))); 
23585   SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENT",SWIG_From_int(static_cast< int >(124))); 
23586   SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENTLINE",SWIG_From_int(static_cast< int >(125))); 
23587   SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING_VARIABLE",SWIG_From_int(static_cast< int >(126))); 
23588   SWIG_Python_SetConstant(d
, "STC_HPHP_OPERATOR",SWIG_From_int(static_cast< int >(127))); 
23589   SWIG_Python_SetConstant(d
, "STC_PL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23590   SWIG_Python_SetConstant(d
, "STC_PL_ERROR",SWIG_From_int(static_cast< int >(1))); 
23591   SWIG_Python_SetConstant(d
, "STC_PL_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23592   SWIG_Python_SetConstant(d
, "STC_PL_POD",SWIG_From_int(static_cast< int >(3))); 
23593   SWIG_Python_SetConstant(d
, "STC_PL_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23594   SWIG_Python_SetConstant(d
, "STC_PL_WORD",SWIG_From_int(static_cast< int >(5))); 
23595   SWIG_Python_SetConstant(d
, "STC_PL_STRING",SWIG_From_int(static_cast< int >(6))); 
23596   SWIG_Python_SetConstant(d
, "STC_PL_CHARACTER",SWIG_From_int(static_cast< int >(7))); 
23597   SWIG_Python_SetConstant(d
, "STC_PL_PUNCTUATION",SWIG_From_int(static_cast< int >(8))); 
23598   SWIG_Python_SetConstant(d
, "STC_PL_PREPROCESSOR",SWIG_From_int(static_cast< int >(9))); 
23599   SWIG_Python_SetConstant(d
, "STC_PL_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23600   SWIG_Python_SetConstant(d
, "STC_PL_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
23601   SWIG_Python_SetConstant(d
, "STC_PL_SCALAR",SWIG_From_int(static_cast< int >(12))); 
23602   SWIG_Python_SetConstant(d
, "STC_PL_ARRAY",SWIG_From_int(static_cast< int >(13))); 
23603   SWIG_Python_SetConstant(d
, "STC_PL_HASH",SWIG_From_int(static_cast< int >(14))); 
23604   SWIG_Python_SetConstant(d
, "STC_PL_SYMBOLTABLE",SWIG_From_int(static_cast< int >(15))); 
23605   SWIG_Python_SetConstant(d
, "STC_PL_VARIABLE_INDEXER",SWIG_From_int(static_cast< int >(16))); 
23606   SWIG_Python_SetConstant(d
, "STC_PL_REGEX",SWIG_From_int(static_cast< int >(17))); 
23607   SWIG_Python_SetConstant(d
, "STC_PL_REGSUBST",SWIG_From_int(static_cast< int >(18))); 
23608   SWIG_Python_SetConstant(d
, "STC_PL_LONGQUOTE",SWIG_From_int(static_cast< int >(19))); 
23609   SWIG_Python_SetConstant(d
, "STC_PL_BACKTICKS",SWIG_From_int(static_cast< int >(20))); 
23610   SWIG_Python_SetConstant(d
, "STC_PL_DATASECTION",SWIG_From_int(static_cast< int >(21))); 
23611   SWIG_Python_SetConstant(d
, "STC_PL_HERE_DELIM",SWIG_From_int(static_cast< int >(22))); 
23612   SWIG_Python_SetConstant(d
, "STC_PL_HERE_Q",SWIG_From_int(static_cast< int >(23))); 
23613   SWIG_Python_SetConstant(d
, "STC_PL_HERE_QQ",SWIG_From_int(static_cast< int >(24))); 
23614   SWIG_Python_SetConstant(d
, "STC_PL_HERE_QX",SWIG_From_int(static_cast< int >(25))); 
23615   SWIG_Python_SetConstant(d
, "STC_PL_STRING_Q",SWIG_From_int(static_cast< int >(26))); 
23616   SWIG_Python_SetConstant(d
, "STC_PL_STRING_QQ",SWIG_From_int(static_cast< int >(27))); 
23617   SWIG_Python_SetConstant(d
, "STC_PL_STRING_QX",SWIG_From_int(static_cast< int >(28))); 
23618   SWIG_Python_SetConstant(d
, "STC_PL_STRING_QR",SWIG_From_int(static_cast< int >(29))); 
23619   SWIG_Python_SetConstant(d
, "STC_PL_STRING_QW",SWIG_From_int(static_cast< int >(30))); 
23620   SWIG_Python_SetConstant(d
, "STC_PL_POD_VERB",SWIG_From_int(static_cast< int >(31))); 
23621   SWIG_Python_SetConstant(d
, "STC_RB_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23622   SWIG_Python_SetConstant(d
, "STC_RB_ERROR",SWIG_From_int(static_cast< int >(1))); 
23623   SWIG_Python_SetConstant(d
, "STC_RB_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23624   SWIG_Python_SetConstant(d
, "STC_RB_POD",SWIG_From_int(static_cast< int >(3))); 
23625   SWIG_Python_SetConstant(d
, "STC_RB_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23626   SWIG_Python_SetConstant(d
, "STC_RB_WORD",SWIG_From_int(static_cast< int >(5))); 
23627   SWIG_Python_SetConstant(d
, "STC_RB_STRING",SWIG_From_int(static_cast< int >(6))); 
23628   SWIG_Python_SetConstant(d
, "STC_RB_CHARACTER",SWIG_From_int(static_cast< int >(7))); 
23629   SWIG_Python_SetConstant(d
, "STC_RB_CLASSNAME",SWIG_From_int(static_cast< int >(8))); 
23630   SWIG_Python_SetConstant(d
, "STC_RB_DEFNAME",SWIG_From_int(static_cast< int >(9))); 
23631   SWIG_Python_SetConstant(d
, "STC_RB_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23632   SWIG_Python_SetConstant(d
, "STC_RB_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
23633   SWIG_Python_SetConstant(d
, "STC_RB_REGEX",SWIG_From_int(static_cast< int >(12))); 
23634   SWIG_Python_SetConstant(d
, "STC_RB_GLOBAL",SWIG_From_int(static_cast< int >(13))); 
23635   SWIG_Python_SetConstant(d
, "STC_RB_SYMBOL",SWIG_From_int(static_cast< int >(14))); 
23636   SWIG_Python_SetConstant(d
, "STC_RB_MODULE_NAME",SWIG_From_int(static_cast< int >(15))); 
23637   SWIG_Python_SetConstant(d
, "STC_RB_INSTANCE_VAR",SWIG_From_int(static_cast< int >(16))); 
23638   SWIG_Python_SetConstant(d
, "STC_RB_CLASS_VAR",SWIG_From_int(static_cast< int >(17))); 
23639   SWIG_Python_SetConstant(d
, "STC_RB_BACKTICKS",SWIG_From_int(static_cast< int >(18))); 
23640   SWIG_Python_SetConstant(d
, "STC_RB_DATASECTION",SWIG_From_int(static_cast< int >(19))); 
23641   SWIG_Python_SetConstant(d
, "STC_RB_HERE_DELIM",SWIG_From_int(static_cast< int >(20))); 
23642   SWIG_Python_SetConstant(d
, "STC_RB_HERE_Q",SWIG_From_int(static_cast< int >(21))); 
23643   SWIG_Python_SetConstant(d
, "STC_RB_HERE_QQ",SWIG_From_int(static_cast< int >(22))); 
23644   SWIG_Python_SetConstant(d
, "STC_RB_HERE_QX",SWIG_From_int(static_cast< int >(23))); 
23645   SWIG_Python_SetConstant(d
, "STC_RB_STRING_Q",SWIG_From_int(static_cast< int >(24))); 
23646   SWIG_Python_SetConstant(d
, "STC_RB_STRING_QQ",SWIG_From_int(static_cast< int >(25))); 
23647   SWIG_Python_SetConstant(d
, "STC_RB_STRING_QX",SWIG_From_int(static_cast< int >(26))); 
23648   SWIG_Python_SetConstant(d
, "STC_RB_STRING_QR",SWIG_From_int(static_cast< int >(27))); 
23649   SWIG_Python_SetConstant(d
, "STC_RB_STRING_QW",SWIG_From_int(static_cast< int >(28))); 
23650   SWIG_Python_SetConstant(d
, "STC_RB_WORD_DEMOTED",SWIG_From_int(static_cast< int >(29))); 
23651   SWIG_Python_SetConstant(d
, "STC_RB_STDIN",SWIG_From_int(static_cast< int >(30))); 
23652   SWIG_Python_SetConstant(d
, "STC_RB_STDOUT",SWIG_From_int(static_cast< int >(31))); 
23653   SWIG_Python_SetConstant(d
, "STC_RB_STDERR",SWIG_From_int(static_cast< int >(40))); 
23654   SWIG_Python_SetConstant(d
, "STC_RB_UPPER_BOUND",SWIG_From_int(static_cast< int >(41))); 
23655   SWIG_Python_SetConstant(d
, "STC_B_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23656   SWIG_Python_SetConstant(d
, "STC_B_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23657   SWIG_Python_SetConstant(d
, "STC_B_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23658   SWIG_Python_SetConstant(d
, "STC_B_KEYWORD",SWIG_From_int(static_cast< int >(3))); 
23659   SWIG_Python_SetConstant(d
, "STC_B_STRING",SWIG_From_int(static_cast< int >(4))); 
23660   SWIG_Python_SetConstant(d
, "STC_B_PREPROCESSOR",SWIG_From_int(static_cast< int >(5))); 
23661   SWIG_Python_SetConstant(d
, "STC_B_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
23662   SWIG_Python_SetConstant(d
, "STC_B_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23663   SWIG_Python_SetConstant(d
, "STC_B_DATE",SWIG_From_int(static_cast< int >(8))); 
23664   SWIG_Python_SetConstant(d
, "STC_B_STRINGEOL",SWIG_From_int(static_cast< int >(9))); 
23665   SWIG_Python_SetConstant(d
, "STC_B_KEYWORD2",SWIG_From_int(static_cast< int >(10))); 
23666   SWIG_Python_SetConstant(d
, "STC_B_KEYWORD3",SWIG_From_int(static_cast< int >(11))); 
23667   SWIG_Python_SetConstant(d
, "STC_B_KEYWORD4",SWIG_From_int(static_cast< int >(12))); 
23668   SWIG_Python_SetConstant(d
, "STC_B_CONSTANT",SWIG_From_int(static_cast< int >(13))); 
23669   SWIG_Python_SetConstant(d
, "STC_B_ASM",SWIG_From_int(static_cast< int >(14))); 
23670   SWIG_Python_SetConstant(d
, "STC_B_LABEL",SWIG_From_int(static_cast< int >(15))); 
23671   SWIG_Python_SetConstant(d
, "STC_B_ERROR",SWIG_From_int(static_cast< int >(16))); 
23672   SWIG_Python_SetConstant(d
, "STC_B_HEXNUMBER",SWIG_From_int(static_cast< int >(17))); 
23673   SWIG_Python_SetConstant(d
, "STC_B_BINNUMBER",SWIG_From_int(static_cast< int >(18))); 
23674   SWIG_Python_SetConstant(d
, "STC_PROPS_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23675   SWIG_Python_SetConstant(d
, "STC_PROPS_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23676   SWIG_Python_SetConstant(d
, "STC_PROPS_SECTION",SWIG_From_int(static_cast< int >(2))); 
23677   SWIG_Python_SetConstant(d
, "STC_PROPS_ASSIGNMENT",SWIG_From_int(static_cast< int >(3))); 
23678   SWIG_Python_SetConstant(d
, "STC_PROPS_DEFVAL",SWIG_From_int(static_cast< int >(4))); 
23679   SWIG_Python_SetConstant(d
, "STC_PROPS_KEY",SWIG_From_int(static_cast< int >(5))); 
23680   SWIG_Python_SetConstant(d
, "STC_L_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23681   SWIG_Python_SetConstant(d
, "STC_L_COMMAND",SWIG_From_int(static_cast< int >(1))); 
23682   SWIG_Python_SetConstant(d
, "STC_L_TAG",SWIG_From_int(static_cast< int >(2))); 
23683   SWIG_Python_SetConstant(d
, "STC_L_MATH",SWIG_From_int(static_cast< int >(3))); 
23684   SWIG_Python_SetConstant(d
, "STC_L_COMMENT",SWIG_From_int(static_cast< int >(4))); 
23685   SWIG_Python_SetConstant(d
, "STC_LUA_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23686   SWIG_Python_SetConstant(d
, "STC_LUA_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23687   SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23688   SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTDOC",SWIG_From_int(static_cast< int >(3))); 
23689   SWIG_Python_SetConstant(d
, "STC_LUA_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23690   SWIG_Python_SetConstant(d
, "STC_LUA_WORD",SWIG_From_int(static_cast< int >(5))); 
23691   SWIG_Python_SetConstant(d
, "STC_LUA_STRING",SWIG_From_int(static_cast< int >(6))); 
23692   SWIG_Python_SetConstant(d
, "STC_LUA_CHARACTER",SWIG_From_int(static_cast< int >(7))); 
23693   SWIG_Python_SetConstant(d
, "STC_LUA_LITERALSTRING",SWIG_From_int(static_cast< int >(8))); 
23694   SWIG_Python_SetConstant(d
, "STC_LUA_PREPROCESSOR",SWIG_From_int(static_cast< int >(9))); 
23695   SWIG_Python_SetConstant(d
, "STC_LUA_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23696   SWIG_Python_SetConstant(d
, "STC_LUA_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
23697   SWIG_Python_SetConstant(d
, "STC_LUA_STRINGEOL",SWIG_From_int(static_cast< int >(12))); 
23698   SWIG_Python_SetConstant(d
, "STC_LUA_WORD2",SWIG_From_int(static_cast< int >(13))); 
23699   SWIG_Python_SetConstant(d
, "STC_LUA_WORD3",SWIG_From_int(static_cast< int >(14))); 
23700   SWIG_Python_SetConstant(d
, "STC_LUA_WORD4",SWIG_From_int(static_cast< int >(15))); 
23701   SWIG_Python_SetConstant(d
, "STC_LUA_WORD5",SWIG_From_int(static_cast< int >(16))); 
23702   SWIG_Python_SetConstant(d
, "STC_LUA_WORD6",SWIG_From_int(static_cast< int >(17))); 
23703   SWIG_Python_SetConstant(d
, "STC_LUA_WORD7",SWIG_From_int(static_cast< int >(18))); 
23704   SWIG_Python_SetConstant(d
, "STC_LUA_WORD8",SWIG_From_int(static_cast< int >(19))); 
23705   SWIG_Python_SetConstant(d
, "STC_ERR_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23706   SWIG_Python_SetConstant(d
, "STC_ERR_PYTHON",SWIG_From_int(static_cast< int >(1))); 
23707   SWIG_Python_SetConstant(d
, "STC_ERR_GCC",SWIG_From_int(static_cast< int >(2))); 
23708   SWIG_Python_SetConstant(d
, "STC_ERR_MS",SWIG_From_int(static_cast< int >(3))); 
23709   SWIG_Python_SetConstant(d
, "STC_ERR_CMD",SWIG_From_int(static_cast< int >(4))); 
23710   SWIG_Python_SetConstant(d
, "STC_ERR_BORLAND",SWIG_From_int(static_cast< int >(5))); 
23711   SWIG_Python_SetConstant(d
, "STC_ERR_PERL",SWIG_From_int(static_cast< int >(6))); 
23712   SWIG_Python_SetConstant(d
, "STC_ERR_NET",SWIG_From_int(static_cast< int >(7))); 
23713   SWIG_Python_SetConstant(d
, "STC_ERR_LUA",SWIG_From_int(static_cast< int >(8))); 
23714   SWIG_Python_SetConstant(d
, "STC_ERR_CTAG",SWIG_From_int(static_cast< int >(9))); 
23715   SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_CHANGED",SWIG_From_int(static_cast< int >(10))); 
23716   SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_ADDITION",SWIG_From_int(static_cast< int >(11))); 
23717   SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_DELETION",SWIG_From_int(static_cast< int >(12))); 
23718   SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_MESSAGE",SWIG_From_int(static_cast< int >(13))); 
23719   SWIG_Python_SetConstant(d
, "STC_ERR_PHP",SWIG_From_int(static_cast< int >(14))); 
23720   SWIG_Python_SetConstant(d
, "STC_ERR_ELF",SWIG_From_int(static_cast< int >(15))); 
23721   SWIG_Python_SetConstant(d
, "STC_ERR_IFC",SWIG_From_int(static_cast< int >(16))); 
23722   SWIG_Python_SetConstant(d
, "STC_ERR_IFORT",SWIG_From_int(static_cast< int >(17))); 
23723   SWIG_Python_SetConstant(d
, "STC_ERR_ABSF",SWIG_From_int(static_cast< int >(18))); 
23724   SWIG_Python_SetConstant(d
, "STC_ERR_TIDY",SWIG_From_int(static_cast< int >(19))); 
23725   SWIG_Python_SetConstant(d
, "STC_ERR_JAVA_STACK",SWIG_From_int(static_cast< int >(20))); 
23726   SWIG_Python_SetConstant(d
, "STC_BAT_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23727   SWIG_Python_SetConstant(d
, "STC_BAT_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23728   SWIG_Python_SetConstant(d
, "STC_BAT_WORD",SWIG_From_int(static_cast< int >(2))); 
23729   SWIG_Python_SetConstant(d
, "STC_BAT_LABEL",SWIG_From_int(static_cast< int >(3))); 
23730   SWIG_Python_SetConstant(d
, "STC_BAT_HIDE",SWIG_From_int(static_cast< int >(4))); 
23731   SWIG_Python_SetConstant(d
, "STC_BAT_COMMAND",SWIG_From_int(static_cast< int >(5))); 
23732   SWIG_Python_SetConstant(d
, "STC_BAT_IDENTIFIER",SWIG_From_int(static_cast< int >(6))); 
23733   SWIG_Python_SetConstant(d
, "STC_BAT_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
23734   SWIG_Python_SetConstant(d
, "STC_MAKE_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23735   SWIG_Python_SetConstant(d
, "STC_MAKE_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23736   SWIG_Python_SetConstant(d
, "STC_MAKE_PREPROCESSOR",SWIG_From_int(static_cast< int >(2))); 
23737   SWIG_Python_SetConstant(d
, "STC_MAKE_IDENTIFIER",SWIG_From_int(static_cast< int >(3))); 
23738   SWIG_Python_SetConstant(d
, "STC_MAKE_OPERATOR",SWIG_From_int(static_cast< int >(4))); 
23739   SWIG_Python_SetConstant(d
, "STC_MAKE_TARGET",SWIG_From_int(static_cast< int >(5))); 
23740   SWIG_Python_SetConstant(d
, "STC_MAKE_IDEOL",SWIG_From_int(static_cast< int >(9))); 
23741   SWIG_Python_SetConstant(d
, "STC_DIFF_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23742   SWIG_Python_SetConstant(d
, "STC_DIFF_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23743   SWIG_Python_SetConstant(d
, "STC_DIFF_COMMAND",SWIG_From_int(static_cast< int >(2))); 
23744   SWIG_Python_SetConstant(d
, "STC_DIFF_HEADER",SWIG_From_int(static_cast< int >(3))); 
23745   SWIG_Python_SetConstant(d
, "STC_DIFF_POSITION",SWIG_From_int(static_cast< int >(4))); 
23746   SWIG_Python_SetConstant(d
, "STC_DIFF_DELETED",SWIG_From_int(static_cast< int >(5))); 
23747   SWIG_Python_SetConstant(d
, "STC_DIFF_ADDED",SWIG_From_int(static_cast< int >(6))); 
23748   SWIG_Python_SetConstant(d
, "STC_CONF_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23749   SWIG_Python_SetConstant(d
, "STC_CONF_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23750   SWIG_Python_SetConstant(d
, "STC_CONF_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23751   SWIG_Python_SetConstant(d
, "STC_CONF_IDENTIFIER",SWIG_From_int(static_cast< int >(3))); 
23752   SWIG_Python_SetConstant(d
, "STC_CONF_EXTENSION",SWIG_From_int(static_cast< int >(4))); 
23753   SWIG_Python_SetConstant(d
, "STC_CONF_PARAMETER",SWIG_From_int(static_cast< int >(5))); 
23754   SWIG_Python_SetConstant(d
, "STC_CONF_STRING",SWIG_From_int(static_cast< int >(6))); 
23755   SWIG_Python_SetConstant(d
, "STC_CONF_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
23756   SWIG_Python_SetConstant(d
, "STC_CONF_IP",SWIG_From_int(static_cast< int >(8))); 
23757   SWIG_Python_SetConstant(d
, "STC_CONF_DIRECTIVE",SWIG_From_int(static_cast< int >(9))); 
23758   SWIG_Python_SetConstant(d
, "STC_AVE_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23759   SWIG_Python_SetConstant(d
, "STC_AVE_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23760   SWIG_Python_SetConstant(d
, "STC_AVE_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23761   SWIG_Python_SetConstant(d
, "STC_AVE_WORD",SWIG_From_int(static_cast< int >(3))); 
23762   SWIG_Python_SetConstant(d
, "STC_AVE_STRING",SWIG_From_int(static_cast< int >(6))); 
23763   SWIG_Python_SetConstant(d
, "STC_AVE_ENUM",SWIG_From_int(static_cast< int >(7))); 
23764   SWIG_Python_SetConstant(d
, "STC_AVE_STRINGEOL",SWIG_From_int(static_cast< int >(8))); 
23765   SWIG_Python_SetConstant(d
, "STC_AVE_IDENTIFIER",SWIG_From_int(static_cast< int >(9))); 
23766   SWIG_Python_SetConstant(d
, "STC_AVE_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23767   SWIG_Python_SetConstant(d
, "STC_AVE_WORD1",SWIG_From_int(static_cast< int >(11))); 
23768   SWIG_Python_SetConstant(d
, "STC_AVE_WORD2",SWIG_From_int(static_cast< int >(12))); 
23769   SWIG_Python_SetConstant(d
, "STC_AVE_WORD3",SWIG_From_int(static_cast< int >(13))); 
23770   SWIG_Python_SetConstant(d
, "STC_AVE_WORD4",SWIG_From_int(static_cast< int >(14))); 
23771   SWIG_Python_SetConstant(d
, "STC_AVE_WORD5",SWIG_From_int(static_cast< int >(15))); 
23772   SWIG_Python_SetConstant(d
, "STC_AVE_WORD6",SWIG_From_int(static_cast< int >(16))); 
23773   SWIG_Python_SetConstant(d
, "STC_ADA_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23774   SWIG_Python_SetConstant(d
, "STC_ADA_WORD",SWIG_From_int(static_cast< int >(1))); 
23775   SWIG_Python_SetConstant(d
, "STC_ADA_IDENTIFIER",SWIG_From_int(static_cast< int >(2))); 
23776   SWIG_Python_SetConstant(d
, "STC_ADA_NUMBER",SWIG_From_int(static_cast< int >(3))); 
23777   SWIG_Python_SetConstant(d
, "STC_ADA_DELIMITER",SWIG_From_int(static_cast< int >(4))); 
23778   SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTER",SWIG_From_int(static_cast< int >(5))); 
23779   SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTEREOL",SWIG_From_int(static_cast< int >(6))); 
23780   SWIG_Python_SetConstant(d
, "STC_ADA_STRING",SWIG_From_int(static_cast< int >(7))); 
23781   SWIG_Python_SetConstant(d
, "STC_ADA_STRINGEOL",SWIG_From_int(static_cast< int >(8))); 
23782   SWIG_Python_SetConstant(d
, "STC_ADA_LABEL",SWIG_From_int(static_cast< int >(9))); 
23783   SWIG_Python_SetConstant(d
, "STC_ADA_COMMENTLINE",SWIG_From_int(static_cast< int >(10))); 
23784   SWIG_Python_SetConstant(d
, "STC_ADA_ILLEGAL",SWIG_From_int(static_cast< int >(11))); 
23785   SWIG_Python_SetConstant(d
, "STC_BAAN_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23786   SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23787   SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENTDOC",SWIG_From_int(static_cast< int >(2))); 
23788   SWIG_Python_SetConstant(d
, "STC_BAAN_NUMBER",SWIG_From_int(static_cast< int >(3))); 
23789   SWIG_Python_SetConstant(d
, "STC_BAAN_WORD",SWIG_From_int(static_cast< int >(4))); 
23790   SWIG_Python_SetConstant(d
, "STC_BAAN_STRING",SWIG_From_int(static_cast< int >(5))); 
23791   SWIG_Python_SetConstant(d
, "STC_BAAN_PREPROCESSOR",SWIG_From_int(static_cast< int >(6))); 
23792   SWIG_Python_SetConstant(d
, "STC_BAAN_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
23793   SWIG_Python_SetConstant(d
, "STC_BAAN_IDENTIFIER",SWIG_From_int(static_cast< int >(8))); 
23794   SWIG_Python_SetConstant(d
, "STC_BAAN_STRINGEOL",SWIG_From_int(static_cast< int >(9))); 
23795   SWIG_Python_SetConstant(d
, "STC_BAAN_WORD2",SWIG_From_int(static_cast< int >(10))); 
23796   SWIG_Python_SetConstant(d
, "STC_LISP_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23797   SWIG_Python_SetConstant(d
, "STC_LISP_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23798   SWIG_Python_SetConstant(d
, "STC_LISP_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23799   SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD",SWIG_From_int(static_cast< int >(3))); 
23800   SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD_KW",SWIG_From_int(static_cast< int >(4))); 
23801   SWIG_Python_SetConstant(d
, "STC_LISP_SYMBOL",SWIG_From_int(static_cast< int >(5))); 
23802   SWIG_Python_SetConstant(d
, "STC_LISP_STRING",SWIG_From_int(static_cast< int >(6))); 
23803   SWIG_Python_SetConstant(d
, "STC_LISP_STRINGEOL",SWIG_From_int(static_cast< int >(8))); 
23804   SWIG_Python_SetConstant(d
, "STC_LISP_IDENTIFIER",SWIG_From_int(static_cast< int >(9))); 
23805   SWIG_Python_SetConstant(d
, "STC_LISP_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
23806   SWIG_Python_SetConstant(d
, "STC_LISP_SPECIAL",SWIG_From_int(static_cast< int >(11))); 
23807   SWIG_Python_SetConstant(d
, "STC_LISP_MULTI_COMMENT",SWIG_From_int(static_cast< int >(12))); 
23808   SWIG_Python_SetConstant(d
, "STC_EIFFEL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23809   SWIG_Python_SetConstant(d
, "STC_EIFFEL_COMMENTLINE",SWIG_From_int(static_cast< int >(1))); 
23810   SWIG_Python_SetConstant(d
, "STC_EIFFEL_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23811   SWIG_Python_SetConstant(d
, "STC_EIFFEL_WORD",SWIG_From_int(static_cast< int >(3))); 
23812   SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRING",SWIG_From_int(static_cast< int >(4))); 
23813   SWIG_Python_SetConstant(d
, "STC_EIFFEL_CHARACTER",SWIG_From_int(static_cast< int >(5))); 
23814   SWIG_Python_SetConstant(d
, "STC_EIFFEL_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
23815   SWIG_Python_SetConstant(d
, "STC_EIFFEL_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23816   SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRINGEOL",SWIG_From_int(static_cast< int >(8))); 
23817   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23818   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23819   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_TASK",SWIG_From_int(static_cast< int >(2))); 
23820   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_SECTION",SWIG_From_int(static_cast< int >(3))); 
23821   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_KEYWORD",SWIG_From_int(static_cast< int >(4))); 
23822   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_MODIFIER",SWIG_From_int(static_cast< int >(5))); 
23823   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ASTERISK",SWIG_From_int(static_cast< int >(6))); 
23824   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_NUMBER",SWIG_From_int(static_cast< int >(7))); 
23825   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_STRING",SWIG_From_int(static_cast< int >(8))); 
23826   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ENVIRONMENT",SWIG_From_int(static_cast< int >(9))); 
23827   SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_IDENTIFIER",SWIG_From_int(static_cast< int >(10))); 
23828   SWIG_Python_SetConstant(d
, "STC_FORTH_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23829   SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23830   SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT_ML",SWIG_From_int(static_cast< int >(2))); 
23831   SWIG_Python_SetConstant(d
, "STC_FORTH_IDENTIFIER",SWIG_From_int(static_cast< int >(3))); 
23832   SWIG_Python_SetConstant(d
, "STC_FORTH_CONTROL",SWIG_From_int(static_cast< int >(4))); 
23833   SWIG_Python_SetConstant(d
, "STC_FORTH_KEYWORD",SWIG_From_int(static_cast< int >(5))); 
23834   SWIG_Python_SetConstant(d
, "STC_FORTH_DEFWORD",SWIG_From_int(static_cast< int >(6))); 
23835   SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD1",SWIG_From_int(static_cast< int >(7))); 
23836   SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD2",SWIG_From_int(static_cast< int >(8))); 
23837   SWIG_Python_SetConstant(d
, "STC_FORTH_NUMBER",SWIG_From_int(static_cast< int >(9))); 
23838   SWIG_Python_SetConstant(d
, "STC_FORTH_STRING",SWIG_From_int(static_cast< int >(10))); 
23839   SWIG_Python_SetConstant(d
, "STC_FORTH_LOCALE",SWIG_From_int(static_cast< int >(11))); 
23840   SWIG_Python_SetConstant(d
, "STC_MATLAB_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23841   SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23842   SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMAND",SWIG_From_int(static_cast< int >(2))); 
23843   SWIG_Python_SetConstant(d
, "STC_MATLAB_NUMBER",SWIG_From_int(static_cast< int >(3))); 
23844   SWIG_Python_SetConstant(d
, "STC_MATLAB_KEYWORD",SWIG_From_int(static_cast< int >(4))); 
23845   SWIG_Python_SetConstant(d
, "STC_MATLAB_STRING",SWIG_From_int(static_cast< int >(5))); 
23846   SWIG_Python_SetConstant(d
, "STC_MATLAB_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
23847   SWIG_Python_SetConstant(d
, "STC_MATLAB_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23848   SWIG_Python_SetConstant(d
, "STC_MATLAB_DOUBLEQUOTESTRING",SWIG_From_int(static_cast< int >(8))); 
23849   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23850   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_WHITE",SWIG_From_int(static_cast< int >(1))); 
23851   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23852   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PERSISTENT",SWIG_From_int(static_cast< int >(3))); 
23853   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CSTYLE",SWIG_From_int(static_cast< int >(4))); 
23854   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(5))); 
23855   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_NUMBER",SWIG_From_int(static_cast< int >(6))); 
23856   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRING",SWIG_From_int(static_cast< int >(7))); 
23857   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CHARACTER",SWIG_From_int(static_cast< int >(8))); 
23858   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRINGEOL",SWIG_From_int(static_cast< int >(9))); 
23859   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_KEYWORD",SWIG_From_int(static_cast< int >(10))); 
23860   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_OPERATOR",SWIG_From_int(static_cast< int >(11))); 
23861   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_IDENTIFIER",SWIG_From_int(static_cast< int >(12))); 
23862   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_TRIPLE",SWIG_From_int(static_cast< int >(13))); 
23863   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CLASSNAME",SWIG_From_int(static_cast< int >(14))); 
23864   SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PREPROCESSOR",SWIG_From_int(static_cast< int >(15))); 
23865   SWIG_Python_SetConstant(d
, "STC_ASM_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23866   SWIG_Python_SetConstant(d
, "STC_ASM_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23867   SWIG_Python_SetConstant(d
, "STC_ASM_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23868   SWIG_Python_SetConstant(d
, "STC_ASM_STRING",SWIG_From_int(static_cast< int >(3))); 
23869   SWIG_Python_SetConstant(d
, "STC_ASM_OPERATOR",SWIG_From_int(static_cast< int >(4))); 
23870   SWIG_Python_SetConstant(d
, "STC_ASM_IDENTIFIER",SWIG_From_int(static_cast< int >(5))); 
23871   SWIG_Python_SetConstant(d
, "STC_ASM_CPUINSTRUCTION",SWIG_From_int(static_cast< int >(6))); 
23872   SWIG_Python_SetConstant(d
, "STC_ASM_MATHINSTRUCTION",SWIG_From_int(static_cast< int >(7))); 
23873   SWIG_Python_SetConstant(d
, "STC_ASM_REGISTER",SWIG_From_int(static_cast< int >(8))); 
23874   SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVE",SWIG_From_int(static_cast< int >(9))); 
23875   SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVEOPERAND",SWIG_From_int(static_cast< int >(10))); 
23876   SWIG_Python_SetConstant(d
, "STC_ASM_COMMENTBLOCK",SWIG_From_int(static_cast< int >(11))); 
23877   SWIG_Python_SetConstant(d
, "STC_ASM_CHARACTER",SWIG_From_int(static_cast< int >(12))); 
23878   SWIG_Python_SetConstant(d
, "STC_ASM_STRINGEOL",SWIG_From_int(static_cast< int >(13))); 
23879   SWIG_Python_SetConstant(d
, "STC_ASM_EXTINSTRUCTION",SWIG_From_int(static_cast< int >(14))); 
23880   SWIG_Python_SetConstant(d
, "STC_F_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23881   SWIG_Python_SetConstant(d
, "STC_F_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23882   SWIG_Python_SetConstant(d
, "STC_F_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23883   SWIG_Python_SetConstant(d
, "STC_F_STRING1",SWIG_From_int(static_cast< int >(3))); 
23884   SWIG_Python_SetConstant(d
, "STC_F_STRING2",SWIG_From_int(static_cast< int >(4))); 
23885   SWIG_Python_SetConstant(d
, "STC_F_STRINGEOL",SWIG_From_int(static_cast< int >(5))); 
23886   SWIG_Python_SetConstant(d
, "STC_F_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
23887   SWIG_Python_SetConstant(d
, "STC_F_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23888   SWIG_Python_SetConstant(d
, "STC_F_WORD",SWIG_From_int(static_cast< int >(8))); 
23889   SWIG_Python_SetConstant(d
, "STC_F_WORD2",SWIG_From_int(static_cast< int >(9))); 
23890   SWIG_Python_SetConstant(d
, "STC_F_WORD3",SWIG_From_int(static_cast< int >(10))); 
23891   SWIG_Python_SetConstant(d
, "STC_F_PREPROCESSOR",SWIG_From_int(static_cast< int >(11))); 
23892   SWIG_Python_SetConstant(d
, "STC_F_OPERATOR2",SWIG_From_int(static_cast< int >(12))); 
23893   SWIG_Python_SetConstant(d
, "STC_F_LABEL",SWIG_From_int(static_cast< int >(13))); 
23894   SWIG_Python_SetConstant(d
, "STC_F_CONTINUATION",SWIG_From_int(static_cast< int >(14))); 
23895   SWIG_Python_SetConstant(d
, "STC_CSS_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23896   SWIG_Python_SetConstant(d
, "STC_CSS_TAG",SWIG_From_int(static_cast< int >(1))); 
23897   SWIG_Python_SetConstant(d
, "STC_CSS_CLASS",SWIG_From_int(static_cast< int >(2))); 
23898   SWIG_Python_SetConstant(d
, "STC_CSS_PSEUDOCLASS",SWIG_From_int(static_cast< int >(3))); 
23899   SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_PSEUDOCLASS",SWIG_From_int(static_cast< int >(4))); 
23900   SWIG_Python_SetConstant(d
, "STC_CSS_OPERATOR",SWIG_From_int(static_cast< int >(5))); 
23901   SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER",SWIG_From_int(static_cast< int >(6))); 
23902   SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_IDENTIFIER",SWIG_From_int(static_cast< int >(7))); 
23903   SWIG_Python_SetConstant(d
, "STC_CSS_VALUE",SWIG_From_int(static_cast< int >(8))); 
23904   SWIG_Python_SetConstant(d
, "STC_CSS_COMMENT",SWIG_From_int(static_cast< int >(9))); 
23905   SWIG_Python_SetConstant(d
, "STC_CSS_ID",SWIG_From_int(static_cast< int >(10))); 
23906   SWIG_Python_SetConstant(d
, "STC_CSS_IMPORTANT",SWIG_From_int(static_cast< int >(11))); 
23907   SWIG_Python_SetConstant(d
, "STC_CSS_DIRECTIVE",SWIG_From_int(static_cast< int >(12))); 
23908   SWIG_Python_SetConstant(d
, "STC_CSS_DOUBLESTRING",SWIG_From_int(static_cast< int >(13))); 
23909   SWIG_Python_SetConstant(d
, "STC_CSS_SINGLESTRING",SWIG_From_int(static_cast< int >(14))); 
23910   SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER2",SWIG_From_int(static_cast< int >(15))); 
23911   SWIG_Python_SetConstant(d
, "STC_CSS_ATTRIBUTE",SWIG_From_int(static_cast< int >(16))); 
23912   SWIG_Python_SetConstant(d
, "STC_POV_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23913   SWIG_Python_SetConstant(d
, "STC_POV_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23914   SWIG_Python_SetConstant(d
, "STC_POV_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23915   SWIG_Python_SetConstant(d
, "STC_POV_NUMBER",SWIG_From_int(static_cast< int >(3))); 
23916   SWIG_Python_SetConstant(d
, "STC_POV_OPERATOR",SWIG_From_int(static_cast< int >(4))); 
23917   SWIG_Python_SetConstant(d
, "STC_POV_IDENTIFIER",SWIG_From_int(static_cast< int >(5))); 
23918   SWIG_Python_SetConstant(d
, "STC_POV_STRING",SWIG_From_int(static_cast< int >(6))); 
23919   SWIG_Python_SetConstant(d
, "STC_POV_STRINGEOL",SWIG_From_int(static_cast< int >(7))); 
23920   SWIG_Python_SetConstant(d
, "STC_POV_DIRECTIVE",SWIG_From_int(static_cast< int >(8))); 
23921   SWIG_Python_SetConstant(d
, "STC_POV_BADDIRECTIVE",SWIG_From_int(static_cast< int >(9))); 
23922   SWIG_Python_SetConstant(d
, "STC_POV_WORD2",SWIG_From_int(static_cast< int >(10))); 
23923   SWIG_Python_SetConstant(d
, "STC_POV_WORD3",SWIG_From_int(static_cast< int >(11))); 
23924   SWIG_Python_SetConstant(d
, "STC_POV_WORD4",SWIG_From_int(static_cast< int >(12))); 
23925   SWIG_Python_SetConstant(d
, "STC_POV_WORD5",SWIG_From_int(static_cast< int >(13))); 
23926   SWIG_Python_SetConstant(d
, "STC_POV_WORD6",SWIG_From_int(static_cast< int >(14))); 
23927   SWIG_Python_SetConstant(d
, "STC_POV_WORD7",SWIG_From_int(static_cast< int >(15))); 
23928   SWIG_Python_SetConstant(d
, "STC_POV_WORD8",SWIG_From_int(static_cast< int >(16))); 
23929   SWIG_Python_SetConstant(d
, "STC_LOUT_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23930   SWIG_Python_SetConstant(d
, "STC_LOUT_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23931   SWIG_Python_SetConstant(d
, "STC_LOUT_NUMBER",SWIG_From_int(static_cast< int >(2))); 
23932   SWIG_Python_SetConstant(d
, "STC_LOUT_WORD",SWIG_From_int(static_cast< int >(3))); 
23933   SWIG_Python_SetConstant(d
, "STC_LOUT_WORD2",SWIG_From_int(static_cast< int >(4))); 
23934   SWIG_Python_SetConstant(d
, "STC_LOUT_WORD3",SWIG_From_int(static_cast< int >(5))); 
23935   SWIG_Python_SetConstant(d
, "STC_LOUT_WORD4",SWIG_From_int(static_cast< int >(6))); 
23936   SWIG_Python_SetConstant(d
, "STC_LOUT_STRING",SWIG_From_int(static_cast< int >(7))); 
23937   SWIG_Python_SetConstant(d
, "STC_LOUT_OPERATOR",SWIG_From_int(static_cast< int >(8))); 
23938   SWIG_Python_SetConstant(d
, "STC_LOUT_IDENTIFIER",SWIG_From_int(static_cast< int >(9))); 
23939   SWIG_Python_SetConstant(d
, "STC_LOUT_STRINGEOL",SWIG_From_int(static_cast< int >(10))); 
23940   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23941   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23942   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
23943   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTDOC",SWIG_From_int(static_cast< int >(3))); 
23944   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23945   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD",SWIG_From_int(static_cast< int >(5))); 
23946   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_STRING",SWIG_From_int(static_cast< int >(6))); 
23947   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
23948   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_IDENTIFIER",SWIG_From_int(static_cast< int >(8))); 
23949   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_BRACE",SWIG_From_int(static_cast< int >(9))); 
23950   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD2",SWIG_From_int(static_cast< int >(10))); 
23951   SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD3",SWIG_From_int(static_cast< int >(11))); 
23952   SWIG_Python_SetConstant(d
, "STC_PS_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23953   SWIG_Python_SetConstant(d
, "STC_PS_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23954   SWIG_Python_SetConstant(d
, "STC_PS_DSC_COMMENT",SWIG_From_int(static_cast< int >(2))); 
23955   SWIG_Python_SetConstant(d
, "STC_PS_DSC_VALUE",SWIG_From_int(static_cast< int >(3))); 
23956   SWIG_Python_SetConstant(d
, "STC_PS_NUMBER",SWIG_From_int(static_cast< int >(4))); 
23957   SWIG_Python_SetConstant(d
, "STC_PS_NAME",SWIG_From_int(static_cast< int >(5))); 
23958   SWIG_Python_SetConstant(d
, "STC_PS_KEYWORD",SWIG_From_int(static_cast< int >(6))); 
23959   SWIG_Python_SetConstant(d
, "STC_PS_LITERAL",SWIG_From_int(static_cast< int >(7))); 
23960   SWIG_Python_SetConstant(d
, "STC_PS_IMMEVAL",SWIG_From_int(static_cast< int >(8))); 
23961   SWIG_Python_SetConstant(d
, "STC_PS_PAREN_ARRAY",SWIG_From_int(static_cast< int >(9))); 
23962   SWIG_Python_SetConstant(d
, "STC_PS_PAREN_DICT",SWIG_From_int(static_cast< int >(10))); 
23963   SWIG_Python_SetConstant(d
, "STC_PS_PAREN_PROC",SWIG_From_int(static_cast< int >(11))); 
23964   SWIG_Python_SetConstant(d
, "STC_PS_TEXT",SWIG_From_int(static_cast< int >(12))); 
23965   SWIG_Python_SetConstant(d
, "STC_PS_HEXSTRING",SWIG_From_int(static_cast< int >(13))); 
23966   SWIG_Python_SetConstant(d
, "STC_PS_BASE85STRING",SWIG_From_int(static_cast< int >(14))); 
23967   SWIG_Python_SetConstant(d
, "STC_PS_BADSTRINGCHAR",SWIG_From_int(static_cast< int >(15))); 
23968   SWIG_Python_SetConstant(d
, "STC_NSIS_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
23969   SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23970   SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGDQ",SWIG_From_int(static_cast< int >(2))); 
23971   SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGLQ",SWIG_From_int(static_cast< int >(3))); 
23972   SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGRQ",SWIG_From_int(static_cast< int >(4))); 
23973   SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTION",SWIG_From_int(static_cast< int >(5))); 
23974   SWIG_Python_SetConstant(d
, "STC_NSIS_VARIABLE",SWIG_From_int(static_cast< int >(6))); 
23975   SWIG_Python_SetConstant(d
, "STC_NSIS_LABEL",SWIG_From_int(static_cast< int >(7))); 
23976   SWIG_Python_SetConstant(d
, "STC_NSIS_USERDEFINED",SWIG_From_int(static_cast< int >(8))); 
23977   SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONDEF",SWIG_From_int(static_cast< int >(9))); 
23978   SWIG_Python_SetConstant(d
, "STC_NSIS_SUBSECTIONDEF",SWIG_From_int(static_cast< int >(10))); 
23979   SWIG_Python_SetConstant(d
, "STC_NSIS_IFDEFINEDEF",SWIG_From_int(static_cast< int >(11))); 
23980   SWIG_Python_SetConstant(d
, "STC_NSIS_MACRODEF",SWIG_From_int(static_cast< int >(12))); 
23981   SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGVAR",SWIG_From_int(static_cast< int >(13))); 
23982   SWIG_Python_SetConstant(d
, "STC_NSIS_NUMBER",SWIG_From_int(static_cast< int >(14))); 
23983   SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONGROUP",SWIG_From_int(static_cast< int >(15))); 
23984   SWIG_Python_SetConstant(d
, "STC_NSIS_PAGEEX",SWIG_From_int(static_cast< int >(16))); 
23985   SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTIONDEF",SWIG_From_int(static_cast< int >(17))); 
23986   SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENTBOX",SWIG_From_int(static_cast< int >(18))); 
23987   SWIG_Python_SetConstant(d
, "STC_MMIXAL_LEADWS",SWIG_From_int(static_cast< int >(0))); 
23988   SWIG_Python_SetConstant(d
, "STC_MMIXAL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
23989   SWIG_Python_SetConstant(d
, "STC_MMIXAL_LABEL",SWIG_From_int(static_cast< int >(2))); 
23990   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE",SWIG_From_int(static_cast< int >(3))); 
23991   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_PRE",SWIG_From_int(static_cast< int >(4))); 
23992   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_VALID",SWIG_From_int(static_cast< int >(5))); 
23993   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_UNKNOWN",SWIG_From_int(static_cast< int >(6))); 
23994   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_POST",SWIG_From_int(static_cast< int >(7))); 
23995   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERANDS",SWIG_From_int(static_cast< int >(8))); 
23996   SWIG_Python_SetConstant(d
, "STC_MMIXAL_NUMBER",SWIG_From_int(static_cast< int >(9))); 
23997   SWIG_Python_SetConstant(d
, "STC_MMIXAL_REF",SWIG_From_int(static_cast< int >(10))); 
23998   SWIG_Python_SetConstant(d
, "STC_MMIXAL_CHAR",SWIG_From_int(static_cast< int >(11))); 
23999   SWIG_Python_SetConstant(d
, "STC_MMIXAL_STRING",SWIG_From_int(static_cast< int >(12))); 
24000   SWIG_Python_SetConstant(d
, "STC_MMIXAL_REGISTER",SWIG_From_int(static_cast< int >(13))); 
24001   SWIG_Python_SetConstant(d
, "STC_MMIXAL_HEX",SWIG_From_int(static_cast< int >(14))); 
24002   SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERATOR",SWIG_From_int(static_cast< int >(15))); 
24003   SWIG_Python_SetConstant(d
, "STC_MMIXAL_SYMBOL",SWIG_From_int(static_cast< int >(16))); 
24004   SWIG_Python_SetConstant(d
, "STC_MMIXAL_INCLUDE",SWIG_From_int(static_cast< int >(17))); 
24005   SWIG_Python_SetConstant(d
, "STC_CLW_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24006   SWIG_Python_SetConstant(d
, "STC_CLW_LABEL",SWIG_From_int(static_cast< int >(1))); 
24007   SWIG_Python_SetConstant(d
, "STC_CLW_COMMENT",SWIG_From_int(static_cast< int >(2))); 
24008   SWIG_Python_SetConstant(d
, "STC_CLW_STRING",SWIG_From_int(static_cast< int >(3))); 
24009   SWIG_Python_SetConstant(d
, "STC_CLW_USER_IDENTIFIER",SWIG_From_int(static_cast< int >(4))); 
24010   SWIG_Python_SetConstant(d
, "STC_CLW_INTEGER_CONSTANT",SWIG_From_int(static_cast< int >(5))); 
24011   SWIG_Python_SetConstant(d
, "STC_CLW_REAL_CONSTANT",SWIG_From_int(static_cast< int >(6))); 
24012   SWIG_Python_SetConstant(d
, "STC_CLW_PICTURE_STRING",SWIG_From_int(static_cast< int >(7))); 
24013   SWIG_Python_SetConstant(d
, "STC_CLW_KEYWORD",SWIG_From_int(static_cast< int >(8))); 
24014   SWIG_Python_SetConstant(d
, "STC_CLW_COMPILER_DIRECTIVE",SWIG_From_int(static_cast< int >(9))); 
24015   SWIG_Python_SetConstant(d
, "STC_CLW_RUNTIME_EXPRESSIONS",SWIG_From_int(static_cast< int >(10))); 
24016   SWIG_Python_SetConstant(d
, "STC_CLW_BUILTIN_PROCEDURES_FUNCTION",SWIG_From_int(static_cast< int >(11))); 
24017   SWIG_Python_SetConstant(d
, "STC_CLW_STRUCTURE_DATA_TYPE",SWIG_From_int(static_cast< int >(12))); 
24018   SWIG_Python_SetConstant(d
, "STC_CLW_ATTRIBUTE",SWIG_From_int(static_cast< int >(13))); 
24019   SWIG_Python_SetConstant(d
, "STC_CLW_STANDARD_EQUATE",SWIG_From_int(static_cast< int >(14))); 
24020   SWIG_Python_SetConstant(d
, "STC_CLW_ERROR",SWIG_From_int(static_cast< int >(15))); 
24021   SWIG_Python_SetConstant(d
, "STC_CLW_DEPRECATED",SWIG_From_int(static_cast< int >(16))); 
24022   SWIG_Python_SetConstant(d
, "STC_LOT_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24023   SWIG_Python_SetConstant(d
, "STC_LOT_HEADER",SWIG_From_int(static_cast< int >(1))); 
24024   SWIG_Python_SetConstant(d
, "STC_LOT_BREAK",SWIG_From_int(static_cast< int >(2))); 
24025   SWIG_Python_SetConstant(d
, "STC_LOT_SET",SWIG_From_int(static_cast< int >(3))); 
24026   SWIG_Python_SetConstant(d
, "STC_LOT_PASS",SWIG_From_int(static_cast< int >(4))); 
24027   SWIG_Python_SetConstant(d
, "STC_LOT_FAIL",SWIG_From_int(static_cast< int >(5))); 
24028   SWIG_Python_SetConstant(d
, "STC_LOT_ABORT",SWIG_From_int(static_cast< int >(6))); 
24029   SWIG_Python_SetConstant(d
, "STC_YAML_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24030   SWIG_Python_SetConstant(d
, "STC_YAML_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24031   SWIG_Python_SetConstant(d
, "STC_YAML_IDENTIFIER",SWIG_From_int(static_cast< int >(2))); 
24032   SWIG_Python_SetConstant(d
, "STC_YAML_KEYWORD",SWIG_From_int(static_cast< int >(3))); 
24033   SWIG_Python_SetConstant(d
, "STC_YAML_NUMBER",SWIG_From_int(static_cast< int >(4))); 
24034   SWIG_Python_SetConstant(d
, "STC_YAML_REFERENCE",SWIG_From_int(static_cast< int >(5))); 
24035   SWIG_Python_SetConstant(d
, "STC_YAML_DOCUMENT",SWIG_From_int(static_cast< int >(6))); 
24036   SWIG_Python_SetConstant(d
, "STC_YAML_TEXT",SWIG_From_int(static_cast< int >(7))); 
24037   SWIG_Python_SetConstant(d
, "STC_YAML_ERROR",SWIG_From_int(static_cast< int >(8))); 
24038   SWIG_Python_SetConstant(d
, "STC_TEX_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24039   SWIG_Python_SetConstant(d
, "STC_TEX_SPECIAL",SWIG_From_int(static_cast< int >(1))); 
24040   SWIG_Python_SetConstant(d
, "STC_TEX_GROUP",SWIG_From_int(static_cast< int >(2))); 
24041   SWIG_Python_SetConstant(d
, "STC_TEX_SYMBOL",SWIG_From_int(static_cast< int >(3))); 
24042   SWIG_Python_SetConstant(d
, "STC_TEX_COMMAND",SWIG_From_int(static_cast< int >(4))); 
24043   SWIG_Python_SetConstant(d
, "STC_TEX_TEXT",SWIG_From_int(static_cast< int >(5))); 
24044   SWIG_Python_SetConstant(d
, "STC_METAPOST_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24045   SWIG_Python_SetConstant(d
, "STC_METAPOST_SPECIAL",SWIG_From_int(static_cast< int >(1))); 
24046   SWIG_Python_SetConstant(d
, "STC_METAPOST_GROUP",SWIG_From_int(static_cast< int >(2))); 
24047   SWIG_Python_SetConstant(d
, "STC_METAPOST_SYMBOL",SWIG_From_int(static_cast< int >(3))); 
24048   SWIG_Python_SetConstant(d
, "STC_METAPOST_COMMAND",SWIG_From_int(static_cast< int >(4))); 
24049   SWIG_Python_SetConstant(d
, "STC_METAPOST_TEXT",SWIG_From_int(static_cast< int >(5))); 
24050   SWIG_Python_SetConstant(d
, "STC_METAPOST_EXTRA",SWIG_From_int(static_cast< int >(6))); 
24051   SWIG_Python_SetConstant(d
, "STC_ERLANG_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24052   SWIG_Python_SetConstant(d
, "STC_ERLANG_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24053   SWIG_Python_SetConstant(d
, "STC_ERLANG_VARIABLE",SWIG_From_int(static_cast< int >(2))); 
24054   SWIG_Python_SetConstant(d
, "STC_ERLANG_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24055   SWIG_Python_SetConstant(d
, "STC_ERLANG_KEYWORD",SWIG_From_int(static_cast< int >(4))); 
24056   SWIG_Python_SetConstant(d
, "STC_ERLANG_STRING",SWIG_From_int(static_cast< int >(5))); 
24057   SWIG_Python_SetConstant(d
, "STC_ERLANG_OPERATOR",SWIG_From_int(static_cast< int >(6))); 
24058   SWIG_Python_SetConstant(d
, "STC_ERLANG_ATOM",SWIG_From_int(static_cast< int >(7))); 
24059   SWIG_Python_SetConstant(d
, "STC_ERLANG_FUNCTION_NAME",SWIG_From_int(static_cast< int >(8))); 
24060   SWIG_Python_SetConstant(d
, "STC_ERLANG_CHARACTER",SWIG_From_int(static_cast< int >(9))); 
24061   SWIG_Python_SetConstant(d
, "STC_ERLANG_MACRO",SWIG_From_int(static_cast< int >(10))); 
24062   SWIG_Python_SetConstant(d
, "STC_ERLANG_RECORD",SWIG_From_int(static_cast< int >(11))); 
24063   SWIG_Python_SetConstant(d
, "STC_ERLANG_SEPARATOR",SWIG_From_int(static_cast< int >(12))); 
24064   SWIG_Python_SetConstant(d
, "STC_ERLANG_NODE_NAME",SWIG_From_int(static_cast< int >(13))); 
24065   SWIG_Python_SetConstant(d
, "STC_ERLANG_UNKNOWN",SWIG_From_int(static_cast< int >(31))); 
24066   SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24067   SWIG_Python_SetConstant(d
, "STC_MSSQL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24068   SWIG_Python_SetConstant(d
, "STC_MSSQL_LINE_COMMENT",SWIG_From_int(static_cast< int >(2))); 
24069   SWIG_Python_SetConstant(d
, "STC_MSSQL_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24070   SWIG_Python_SetConstant(d
, "STC_MSSQL_STRING",SWIG_From_int(static_cast< int >(4))); 
24071   SWIG_Python_SetConstant(d
, "STC_MSSQL_OPERATOR",SWIG_From_int(static_cast< int >(5))); 
24072   SWIG_Python_SetConstant(d
, "STC_MSSQL_IDENTIFIER",SWIG_From_int(static_cast< int >(6))); 
24073   SWIG_Python_SetConstant(d
, "STC_MSSQL_VARIABLE",SWIG_From_int(static_cast< int >(7))); 
24074   SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME",SWIG_From_int(static_cast< int >(8))); 
24075   SWIG_Python_SetConstant(d
, "STC_MSSQL_STATEMENT",SWIG_From_int(static_cast< int >(9))); 
24076   SWIG_Python_SetConstant(d
, "STC_MSSQL_DATATYPE",SWIG_From_int(static_cast< int >(10))); 
24077   SWIG_Python_SetConstant(d
, "STC_MSSQL_SYSTABLE",SWIG_From_int(static_cast< int >(11))); 
24078   SWIG_Python_SetConstant(d
, "STC_MSSQL_GLOBAL_VARIABLE",SWIG_From_int(static_cast< int >(12))); 
24079   SWIG_Python_SetConstant(d
, "STC_MSSQL_FUNCTION",SWIG_From_int(static_cast< int >(13))); 
24080   SWIG_Python_SetConstant(d
, "STC_MSSQL_STORED_PROCEDURE",SWIG_From_int(static_cast< int >(14))); 
24081   SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT_PREF_DATATYPE",SWIG_From_int(static_cast< int >(15))); 
24082   SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME_2",SWIG_From_int(static_cast< int >(16))); 
24083   SWIG_Python_SetConstant(d
, "STC_V_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24084   SWIG_Python_SetConstant(d
, "STC_V_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24085   SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
24086   SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3))); 
24087   SWIG_Python_SetConstant(d
, "STC_V_NUMBER",SWIG_From_int(static_cast< int >(4))); 
24088   SWIG_Python_SetConstant(d
, "STC_V_WORD",SWIG_From_int(static_cast< int >(5))); 
24089   SWIG_Python_SetConstant(d
, "STC_V_STRING",SWIG_From_int(static_cast< int >(6))); 
24090   SWIG_Python_SetConstant(d
, "STC_V_WORD2",SWIG_From_int(static_cast< int >(7))); 
24091   SWIG_Python_SetConstant(d
, "STC_V_WORD3",SWIG_From_int(static_cast< int >(8))); 
24092   SWIG_Python_SetConstant(d
, "STC_V_PREPROCESSOR",SWIG_From_int(static_cast< int >(9))); 
24093   SWIG_Python_SetConstant(d
, "STC_V_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
24094   SWIG_Python_SetConstant(d
, "STC_V_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
24095   SWIG_Python_SetConstant(d
, "STC_V_STRINGEOL",SWIG_From_int(static_cast< int >(12))); 
24096   SWIG_Python_SetConstant(d
, "STC_V_USER",SWIG_From_int(static_cast< int >(19))); 
24097   SWIG_Python_SetConstant(d
, "STC_KIX_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24098   SWIG_Python_SetConstant(d
, "STC_KIX_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24099   SWIG_Python_SetConstant(d
, "STC_KIX_STRING1",SWIG_From_int(static_cast< int >(2))); 
24100   SWIG_Python_SetConstant(d
, "STC_KIX_STRING2",SWIG_From_int(static_cast< int >(3))); 
24101   SWIG_Python_SetConstant(d
, "STC_KIX_NUMBER",SWIG_From_int(static_cast< int >(4))); 
24102   SWIG_Python_SetConstant(d
, "STC_KIX_VAR",SWIG_From_int(static_cast< int >(5))); 
24103   SWIG_Python_SetConstant(d
, "STC_KIX_MACRO",SWIG_From_int(static_cast< int >(6))); 
24104   SWIG_Python_SetConstant(d
, "STC_KIX_KEYWORD",SWIG_From_int(static_cast< int >(7))); 
24105   SWIG_Python_SetConstant(d
, "STC_KIX_FUNCTIONS",SWIG_From_int(static_cast< int >(8))); 
24106   SWIG_Python_SetConstant(d
, "STC_KIX_OPERATOR",SWIG_From_int(static_cast< int >(9))); 
24107   SWIG_Python_SetConstant(d
, "STC_KIX_IDENTIFIER",SWIG_From_int(static_cast< int >(31))); 
24108   SWIG_Python_SetConstant(d
, "STC_GC_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24109   SWIG_Python_SetConstant(d
, "STC_GC_COMMENTLINE",SWIG_From_int(static_cast< int >(1))); 
24110   SWIG_Python_SetConstant(d
, "STC_GC_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2))); 
24111   SWIG_Python_SetConstant(d
, "STC_GC_GLOBAL",SWIG_From_int(static_cast< int >(3))); 
24112   SWIG_Python_SetConstant(d
, "STC_GC_EVENT",SWIG_From_int(static_cast< int >(4))); 
24113   SWIG_Python_SetConstant(d
, "STC_GC_ATTRIBUTE",SWIG_From_int(static_cast< int >(5))); 
24114   SWIG_Python_SetConstant(d
, "STC_GC_CONTROL",SWIG_From_int(static_cast< int >(6))); 
24115   SWIG_Python_SetConstant(d
, "STC_GC_COMMAND",SWIG_From_int(static_cast< int >(7))); 
24116   SWIG_Python_SetConstant(d
, "STC_GC_STRING",SWIG_From_int(static_cast< int >(8))); 
24117   SWIG_Python_SetConstant(d
, "STC_GC_OPERATOR",SWIG_From_int(static_cast< int >(9))); 
24118   SWIG_Python_SetConstant(d
, "STC_SN_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24119   SWIG_Python_SetConstant(d
, "STC_SN_CODE",SWIG_From_int(static_cast< int >(1))); 
24120   SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
24121   SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3))); 
24122   SWIG_Python_SetConstant(d
, "STC_SN_NUMBER",SWIG_From_int(static_cast< int >(4))); 
24123   SWIG_Python_SetConstant(d
, "STC_SN_WORD",SWIG_From_int(static_cast< int >(5))); 
24124   SWIG_Python_SetConstant(d
, "STC_SN_STRING",SWIG_From_int(static_cast< int >(6))); 
24125   SWIG_Python_SetConstant(d
, "STC_SN_WORD2",SWIG_From_int(static_cast< int >(7))); 
24126   SWIG_Python_SetConstant(d
, "STC_SN_WORD3",SWIG_From_int(static_cast< int >(8))); 
24127   SWIG_Python_SetConstant(d
, "STC_SN_PREPROCESSOR",SWIG_From_int(static_cast< int >(9))); 
24128   SWIG_Python_SetConstant(d
, "STC_SN_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
24129   SWIG_Python_SetConstant(d
, "STC_SN_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
24130   SWIG_Python_SetConstant(d
, "STC_SN_STRINGEOL",SWIG_From_int(static_cast< int >(12))); 
24131   SWIG_Python_SetConstant(d
, "STC_SN_REGEXTAG",SWIG_From_int(static_cast< int >(13))); 
24132   SWIG_Python_SetConstant(d
, "STC_SN_SIGNAL",SWIG_From_int(static_cast< int >(14))); 
24133   SWIG_Python_SetConstant(d
, "STC_SN_USER",SWIG_From_int(static_cast< int >(19))); 
24134   SWIG_Python_SetConstant(d
, "STC_AU3_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24135   SWIG_Python_SetConstant(d
, "STC_AU3_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24136   SWIG_Python_SetConstant(d
, "STC_AU3_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2))); 
24137   SWIG_Python_SetConstant(d
, "STC_AU3_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24138   SWIG_Python_SetConstant(d
, "STC_AU3_FUNCTION",SWIG_From_int(static_cast< int >(4))); 
24139   SWIG_Python_SetConstant(d
, "STC_AU3_KEYWORD",SWIG_From_int(static_cast< int >(5))); 
24140   SWIG_Python_SetConstant(d
, "STC_AU3_MACRO",SWIG_From_int(static_cast< int >(6))); 
24141   SWIG_Python_SetConstant(d
, "STC_AU3_STRING",SWIG_From_int(static_cast< int >(7))); 
24142   SWIG_Python_SetConstant(d
, "STC_AU3_OPERATOR",SWIG_From_int(static_cast< int >(8))); 
24143   SWIG_Python_SetConstant(d
, "STC_AU3_VARIABLE",SWIG_From_int(static_cast< int >(9))); 
24144   SWIG_Python_SetConstant(d
, "STC_AU3_SENT",SWIG_From_int(static_cast< int >(10))); 
24145   SWIG_Python_SetConstant(d
, "STC_AU3_PREPROCESSOR",SWIG_From_int(static_cast< int >(11))); 
24146   SWIG_Python_SetConstant(d
, "STC_AU3_SPECIAL",SWIG_From_int(static_cast< int >(12))); 
24147   SWIG_Python_SetConstant(d
, "STC_AU3_EXPAND",SWIG_From_int(static_cast< int >(13))); 
24148   SWIG_Python_SetConstant(d
, "STC_AU3_COMOBJ",SWIG_From_int(static_cast< int >(14))); 
24149   SWIG_Python_SetConstant(d
, "STC_AU3_UDF",SWIG_From_int(static_cast< int >(15))); 
24150   SWIG_Python_SetConstant(d
, "STC_APDL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24151   SWIG_Python_SetConstant(d
, "STC_APDL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24152   SWIG_Python_SetConstant(d
, "STC_APDL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2))); 
24153   SWIG_Python_SetConstant(d
, "STC_APDL_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24154   SWIG_Python_SetConstant(d
, "STC_APDL_STRING",SWIG_From_int(static_cast< int >(4))); 
24155   SWIG_Python_SetConstant(d
, "STC_APDL_OPERATOR",SWIG_From_int(static_cast< int >(5))); 
24156   SWIG_Python_SetConstant(d
, "STC_APDL_WORD",SWIG_From_int(static_cast< int >(6))); 
24157   SWIG_Python_SetConstant(d
, "STC_APDL_PROCESSOR",SWIG_From_int(static_cast< int >(7))); 
24158   SWIG_Python_SetConstant(d
, "STC_APDL_COMMAND",SWIG_From_int(static_cast< int >(8))); 
24159   SWIG_Python_SetConstant(d
, "STC_APDL_SLASHCOMMAND",SWIG_From_int(static_cast< int >(9))); 
24160   SWIG_Python_SetConstant(d
, "STC_APDL_STARCOMMAND",SWIG_From_int(static_cast< int >(10))); 
24161   SWIG_Python_SetConstant(d
, "STC_APDL_ARGUMENT",SWIG_From_int(static_cast< int >(11))); 
24162   SWIG_Python_SetConstant(d
, "STC_APDL_FUNCTION",SWIG_From_int(static_cast< int >(12))); 
24163   SWIG_Python_SetConstant(d
, "STC_SH_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24164   SWIG_Python_SetConstant(d
, "STC_SH_ERROR",SWIG_From_int(static_cast< int >(1))); 
24165   SWIG_Python_SetConstant(d
, "STC_SH_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
24166   SWIG_Python_SetConstant(d
, "STC_SH_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24167   SWIG_Python_SetConstant(d
, "STC_SH_WORD",SWIG_From_int(static_cast< int >(4))); 
24168   SWIG_Python_SetConstant(d
, "STC_SH_STRING",SWIG_From_int(static_cast< int >(5))); 
24169   SWIG_Python_SetConstant(d
, "STC_SH_CHARACTER",SWIG_From_int(static_cast< int >(6))); 
24170   SWIG_Python_SetConstant(d
, "STC_SH_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
24171   SWIG_Python_SetConstant(d
, "STC_SH_IDENTIFIER",SWIG_From_int(static_cast< int >(8))); 
24172   SWIG_Python_SetConstant(d
, "STC_SH_SCALAR",SWIG_From_int(static_cast< int >(9))); 
24173   SWIG_Python_SetConstant(d
, "STC_SH_PARAM",SWIG_From_int(static_cast< int >(10))); 
24174   SWIG_Python_SetConstant(d
, "STC_SH_BACKTICKS",SWIG_From_int(static_cast< int >(11))); 
24175   SWIG_Python_SetConstant(d
, "STC_SH_HERE_DELIM",SWIG_From_int(static_cast< int >(12))); 
24176   SWIG_Python_SetConstant(d
, "STC_SH_HERE_Q",SWIG_From_int(static_cast< int >(13))); 
24177   SWIG_Python_SetConstant(d
, "STC_ASN1_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24178   SWIG_Python_SetConstant(d
, "STC_ASN1_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24179   SWIG_Python_SetConstant(d
, "STC_ASN1_IDENTIFIER",SWIG_From_int(static_cast< int >(2))); 
24180   SWIG_Python_SetConstant(d
, "STC_ASN1_STRING",SWIG_From_int(static_cast< int >(3))); 
24181   SWIG_Python_SetConstant(d
, "STC_ASN1_OID",SWIG_From_int(static_cast< int >(4))); 
24182   SWIG_Python_SetConstant(d
, "STC_ASN1_SCALAR",SWIG_From_int(static_cast< int >(5))); 
24183   SWIG_Python_SetConstant(d
, "STC_ASN1_KEYWORD",SWIG_From_int(static_cast< int >(6))); 
24184   SWIG_Python_SetConstant(d
, "STC_ASN1_ATTRIBUTE",SWIG_From_int(static_cast< int >(7))); 
24185   SWIG_Python_SetConstant(d
, "STC_ASN1_DESCRIPTOR",SWIG_From_int(static_cast< int >(8))); 
24186   SWIG_Python_SetConstant(d
, "STC_ASN1_TYPE",SWIG_From_int(static_cast< int >(9))); 
24187   SWIG_Python_SetConstant(d
, "STC_ASN1_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
24188   SWIG_Python_SetConstant(d
, "STC_VHDL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24189   SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24190   SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(2))); 
24191   SWIG_Python_SetConstant(d
, "STC_VHDL_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24192   SWIG_Python_SetConstant(d
, "STC_VHDL_STRING",SWIG_From_int(static_cast< int >(4))); 
24193   SWIG_Python_SetConstant(d
, "STC_VHDL_OPERATOR",SWIG_From_int(static_cast< int >(5))); 
24194   SWIG_Python_SetConstant(d
, "STC_VHDL_IDENTIFIER",SWIG_From_int(static_cast< int >(6))); 
24195   SWIG_Python_SetConstant(d
, "STC_VHDL_STRINGEOL",SWIG_From_int(static_cast< int >(7))); 
24196   SWIG_Python_SetConstant(d
, "STC_VHDL_KEYWORD",SWIG_From_int(static_cast< int >(8))); 
24197   SWIG_Python_SetConstant(d
, "STC_VHDL_STDOPERATOR",SWIG_From_int(static_cast< int >(9))); 
24198   SWIG_Python_SetConstant(d
, "STC_VHDL_ATTRIBUTE",SWIG_From_int(static_cast< int >(10))); 
24199   SWIG_Python_SetConstant(d
, "STC_VHDL_STDFUNCTION",SWIG_From_int(static_cast< int >(11))); 
24200   SWIG_Python_SetConstant(d
, "STC_VHDL_STDPACKAGE",SWIG_From_int(static_cast< int >(12))); 
24201   SWIG_Python_SetConstant(d
, "STC_VHDL_STDTYPE",SWIG_From_int(static_cast< int >(13))); 
24202   SWIG_Python_SetConstant(d
, "STC_VHDL_USERWORD",SWIG_From_int(static_cast< int >(14))); 
24203   SWIG_Python_SetConstant(d
, "STC_CAML_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24204   SWIG_Python_SetConstant(d
, "STC_CAML_IDENTIFIER",SWIG_From_int(static_cast< int >(1))); 
24205   SWIG_Python_SetConstant(d
, "STC_CAML_TAGNAME",SWIG_From_int(static_cast< int >(2))); 
24206   SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD",SWIG_From_int(static_cast< int >(3))); 
24207   SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD2",SWIG_From_int(static_cast< int >(4))); 
24208   SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD3",SWIG_From_int(static_cast< int >(5))); 
24209   SWIG_Python_SetConstant(d
, "STC_CAML_LINENUM",SWIG_From_int(static_cast< int >(6))); 
24210   SWIG_Python_SetConstant(d
, "STC_CAML_OPERATOR",SWIG_From_int(static_cast< int >(7))); 
24211   SWIG_Python_SetConstant(d
, "STC_CAML_NUMBER",SWIG_From_int(static_cast< int >(8))); 
24212   SWIG_Python_SetConstant(d
, "STC_CAML_CHAR",SWIG_From_int(static_cast< int >(9))); 
24213   SWIG_Python_SetConstant(d
, "STC_CAML_STRING",SWIG_From_int(static_cast< int >(11))); 
24214   SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT",SWIG_From_int(static_cast< int >(12))); 
24215   SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT1",SWIG_From_int(static_cast< int >(13))); 
24216   SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT2",SWIG_From_int(static_cast< int >(14))); 
24217   SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT3",SWIG_From_int(static_cast< int >(15))); 
24218   SWIG_Python_SetConstant(d
, "STC_HA_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24219   SWIG_Python_SetConstant(d
, "STC_HA_IDENTIFIER",SWIG_From_int(static_cast< int >(1))); 
24220   SWIG_Python_SetConstant(d
, "STC_HA_KEYWORD",SWIG_From_int(static_cast< int >(2))); 
24221   SWIG_Python_SetConstant(d
, "STC_HA_NUMBER",SWIG_From_int(static_cast< int >(3))); 
24222   SWIG_Python_SetConstant(d
, "STC_HA_STRING",SWIG_From_int(static_cast< int >(4))); 
24223   SWIG_Python_SetConstant(d
, "STC_HA_CHARACTER",SWIG_From_int(static_cast< int >(5))); 
24224   SWIG_Python_SetConstant(d
, "STC_HA_CLASS",SWIG_From_int(static_cast< int >(6))); 
24225   SWIG_Python_SetConstant(d
, "STC_HA_MODULE",SWIG_From_int(static_cast< int >(7))); 
24226   SWIG_Python_SetConstant(d
, "STC_HA_CAPITAL",SWIG_From_int(static_cast< int >(8))); 
24227   SWIG_Python_SetConstant(d
, "STC_HA_DATA",SWIG_From_int(static_cast< int >(9))); 
24228   SWIG_Python_SetConstant(d
, "STC_HA_IMPORT",SWIG_From_int(static_cast< int >(10))); 
24229   SWIG_Python_SetConstant(d
, "STC_HA_OPERATOR",SWIG_From_int(static_cast< int >(11))); 
24230   SWIG_Python_SetConstant(d
, "STC_HA_INSTANCE",SWIG_From_int(static_cast< int >(12))); 
24231   SWIG_Python_SetConstant(d
, "STC_HA_COMMENTLINE",SWIG_From_int(static_cast< int >(13))); 
24232   SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK",SWIG_From_int(static_cast< int >(14))); 
24233   SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK2",SWIG_From_int(static_cast< int >(15))); 
24234   SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK3",SWIG_From_int(static_cast< int >(16))); 
24235   SWIG_Python_SetConstant(d
, "STC_T3_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24236   SWIG_Python_SetConstant(d
, "STC_T3_X_DEFAULT",SWIG_From_int(static_cast< int >(1))); 
24237   SWIG_Python_SetConstant(d
, "STC_T3_PREPROCESSOR",SWIG_From_int(static_cast< int >(2))); 
24238   SWIG_Python_SetConstant(d
, "STC_T3_BLOCK_COMMENT",SWIG_From_int(static_cast< int >(3))); 
24239   SWIG_Python_SetConstant(d
, "STC_T3_LINE_COMMENT",SWIG_From_int(static_cast< int >(4))); 
24240   SWIG_Python_SetConstant(d
, "STC_T3_OPERATOR",SWIG_From_int(static_cast< int >(5))); 
24241   SWIG_Python_SetConstant(d
, "STC_T3_KEYWORD",SWIG_From_int(static_cast< int >(6))); 
24242   SWIG_Python_SetConstant(d
, "STC_T3_NUMBER",SWIG_From_int(static_cast< int >(7))); 
24243   SWIG_Python_SetConstant(d
, "STC_T3_IDENTIFIER",SWIG_From_int(static_cast< int >(8))); 
24244   SWIG_Python_SetConstant(d
, "STC_T3_S_STRING",SWIG_From_int(static_cast< int >(9))); 
24245   SWIG_Python_SetConstant(d
, "STC_T3_D_STRING",SWIG_From_int(static_cast< int >(10))); 
24246   SWIG_Python_SetConstant(d
, "STC_T3_X_STRING",SWIG_From_int(static_cast< int >(11))); 
24247   SWIG_Python_SetConstant(d
, "STC_T3_LIB_DIRECTIVE",SWIG_From_int(static_cast< int >(12))); 
24248   SWIG_Python_SetConstant(d
, "STC_T3_MSG_PARAM",SWIG_From_int(static_cast< int >(13))); 
24249   SWIG_Python_SetConstant(d
, "STC_T3_HTML_TAG",SWIG_From_int(static_cast< int >(14))); 
24250   SWIG_Python_SetConstant(d
, "STC_T3_HTML_DEFAULT",SWIG_From_int(static_cast< int >(15))); 
24251   SWIG_Python_SetConstant(d
, "STC_T3_HTML_STRING",SWIG_From_int(static_cast< int >(16))); 
24252   SWIG_Python_SetConstant(d
, "STC_T3_USER1",SWIG_From_int(static_cast< int >(17))); 
24253   SWIG_Python_SetConstant(d
, "STC_T3_USER2",SWIG_From_int(static_cast< int >(18))); 
24254   SWIG_Python_SetConstant(d
, "STC_T3_USER3",SWIG_From_int(static_cast< int >(19))); 
24255   SWIG_Python_SetConstant(d
, "STC_REBOL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24256   SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTLINE",SWIG_From_int(static_cast< int >(1))); 
24257   SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2))); 
24258   SWIG_Python_SetConstant(d
, "STC_REBOL_PREFACE",SWIG_From_int(static_cast< int >(3))); 
24259   SWIG_Python_SetConstant(d
, "STC_REBOL_OPERATOR",SWIG_From_int(static_cast< int >(4))); 
24260   SWIG_Python_SetConstant(d
, "STC_REBOL_CHARACTER",SWIG_From_int(static_cast< int >(5))); 
24261   SWIG_Python_SetConstant(d
, "STC_REBOL_QUOTEDSTRING",SWIG_From_int(static_cast< int >(6))); 
24262   SWIG_Python_SetConstant(d
, "STC_REBOL_BRACEDSTRING",SWIG_From_int(static_cast< int >(7))); 
24263   SWIG_Python_SetConstant(d
, "STC_REBOL_NUMBER",SWIG_From_int(static_cast< int >(8))); 
24264   SWIG_Python_SetConstant(d
, "STC_REBOL_PAIR",SWIG_From_int(static_cast< int >(9))); 
24265   SWIG_Python_SetConstant(d
, "STC_REBOL_TUPLE",SWIG_From_int(static_cast< int >(10))); 
24266   SWIG_Python_SetConstant(d
, "STC_REBOL_BINARY",SWIG_From_int(static_cast< int >(11))); 
24267   SWIG_Python_SetConstant(d
, "STC_REBOL_MONEY",SWIG_From_int(static_cast< int >(12))); 
24268   SWIG_Python_SetConstant(d
, "STC_REBOL_ISSUE",SWIG_From_int(static_cast< int >(13))); 
24269   SWIG_Python_SetConstant(d
, "STC_REBOL_TAG",SWIG_From_int(static_cast< int >(14))); 
24270   SWIG_Python_SetConstant(d
, "STC_REBOL_FILE",SWIG_From_int(static_cast< int >(15))); 
24271   SWIG_Python_SetConstant(d
, "STC_REBOL_EMAIL",SWIG_From_int(static_cast< int >(16))); 
24272   SWIG_Python_SetConstant(d
, "STC_REBOL_URL",SWIG_From_int(static_cast< int >(17))); 
24273   SWIG_Python_SetConstant(d
, "STC_REBOL_DATE",SWIG_From_int(static_cast< int >(18))); 
24274   SWIG_Python_SetConstant(d
, "STC_REBOL_TIME",SWIG_From_int(static_cast< int >(19))); 
24275   SWIG_Python_SetConstant(d
, "STC_REBOL_IDENTIFIER",SWIG_From_int(static_cast< int >(20))); 
24276   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD",SWIG_From_int(static_cast< int >(21))); 
24277   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD2",SWIG_From_int(static_cast< int >(22))); 
24278   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD3",SWIG_From_int(static_cast< int >(23))); 
24279   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD4",SWIG_From_int(static_cast< int >(24))); 
24280   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD5",SWIG_From_int(static_cast< int >(25))); 
24281   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD6",SWIG_From_int(static_cast< int >(26))); 
24282   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD7",SWIG_From_int(static_cast< int >(27))); 
24283   SWIG_Python_SetConstant(d
, "STC_REBOL_WORD8",SWIG_From_int(static_cast< int >(28))); 
24284   SWIG_Python_SetConstant(d
, "STC_SQL_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24285   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24286   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
24287   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOC",SWIG_From_int(static_cast< int >(3))); 
24288   SWIG_Python_SetConstant(d
, "STC_SQL_NUMBER",SWIG_From_int(static_cast< int >(4))); 
24289   SWIG_Python_SetConstant(d
, "STC_SQL_WORD",SWIG_From_int(static_cast< int >(5))); 
24290   SWIG_Python_SetConstant(d
, "STC_SQL_STRING",SWIG_From_int(static_cast< int >(6))); 
24291   SWIG_Python_SetConstant(d
, "STC_SQL_CHARACTER",SWIG_From_int(static_cast< int >(7))); 
24292   SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS",SWIG_From_int(static_cast< int >(8))); 
24293   SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_PROMPT",SWIG_From_int(static_cast< int >(9))); 
24294   SWIG_Python_SetConstant(d
, "STC_SQL_OPERATOR",SWIG_From_int(static_cast< int >(10))); 
24295   SWIG_Python_SetConstant(d
, "STC_SQL_IDENTIFIER",SWIG_From_int(static_cast< int >(11))); 
24296   SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_COMMENT",SWIG_From_int(static_cast< int >(13))); 
24297   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15))); 
24298   SWIG_Python_SetConstant(d
, "STC_SQL_WORD2",SWIG_From_int(static_cast< int >(16))); 
24299   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17))); 
24300   SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18))); 
24301   SWIG_Python_SetConstant(d
, "STC_SQL_USER1",SWIG_From_int(static_cast< int >(19))); 
24302   SWIG_Python_SetConstant(d
, "STC_SQL_USER2",SWIG_From_int(static_cast< int >(20))); 
24303   SWIG_Python_SetConstant(d
, "STC_SQL_USER3",SWIG_From_int(static_cast< int >(21))); 
24304   SWIG_Python_SetConstant(d
, "STC_SQL_USER4",SWIG_From_int(static_cast< int >(22))); 
24305   SWIG_Python_SetConstant(d
, "STC_SQL_QUOTEDIDENTIFIER",SWIG_From_int(static_cast< int >(23))); 
24306   SWIG_Python_SetConstant(d
, "STC_ST_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24307   SWIG_Python_SetConstant(d
, "STC_ST_STRING",SWIG_From_int(static_cast< int >(1))); 
24308   SWIG_Python_SetConstant(d
, "STC_ST_NUMBER",SWIG_From_int(static_cast< int >(2))); 
24309   SWIG_Python_SetConstant(d
, "STC_ST_COMMENT",SWIG_From_int(static_cast< int >(3))); 
24310   SWIG_Python_SetConstant(d
, "STC_ST_SYMBOL",SWIG_From_int(static_cast< int >(4))); 
24311   SWIG_Python_SetConstant(d
, "STC_ST_BINARY",SWIG_From_int(static_cast< int >(5))); 
24312   SWIG_Python_SetConstant(d
, "STC_ST_BOOL",SWIG_From_int(static_cast< int >(6))); 
24313   SWIG_Python_SetConstant(d
, "STC_ST_SELF",SWIG_From_int(static_cast< int >(7))); 
24314   SWIG_Python_SetConstant(d
, "STC_ST_SUPER",SWIG_From_int(static_cast< int >(8))); 
24315   SWIG_Python_SetConstant(d
, "STC_ST_NIL",SWIG_From_int(static_cast< int >(9))); 
24316   SWIG_Python_SetConstant(d
, "STC_ST_GLOBAL",SWIG_From_int(static_cast< int >(10))); 
24317   SWIG_Python_SetConstant(d
, "STC_ST_RETURN",SWIG_From_int(static_cast< int >(11))); 
24318   SWIG_Python_SetConstant(d
, "STC_ST_SPECIAL",SWIG_From_int(static_cast< int >(12))); 
24319   SWIG_Python_SetConstant(d
, "STC_ST_KWSEND",SWIG_From_int(static_cast< int >(13))); 
24320   SWIG_Python_SetConstant(d
, "STC_ST_ASSIGN",SWIG_From_int(static_cast< int >(14))); 
24321   SWIG_Python_SetConstant(d
, "STC_ST_CHARACTER",SWIG_From_int(static_cast< int >(15))); 
24322   SWIG_Python_SetConstant(d
, "STC_ST_SPEC_SEL",SWIG_From_int(static_cast< int >(16))); 
24323   SWIG_Python_SetConstant(d
, "STC_FS_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24324   SWIG_Python_SetConstant(d
, "STC_FS_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24325   SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINE",SWIG_From_int(static_cast< int >(2))); 
24326   SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOC",SWIG_From_int(static_cast< int >(3))); 
24327   SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(4))); 
24328   SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(5))); 
24329   SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(6))); 
24330   SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD",SWIG_From_int(static_cast< int >(7))); 
24331   SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD2",SWIG_From_int(static_cast< int >(8))); 
24332   SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD3",SWIG_From_int(static_cast< int >(9))); 
24333   SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD4",SWIG_From_int(static_cast< int >(10))); 
24334   SWIG_Python_SetConstant(d
, "STC_FS_NUMBER",SWIG_From_int(static_cast< int >(11))); 
24335   SWIG_Python_SetConstant(d
, "STC_FS_STRING",SWIG_From_int(static_cast< int >(12))); 
24336   SWIG_Python_SetConstant(d
, "STC_FS_PREPROCESSOR",SWIG_From_int(static_cast< int >(13))); 
24337   SWIG_Python_SetConstant(d
, "STC_FS_OPERATOR",SWIG_From_int(static_cast< int >(14))); 
24338   SWIG_Python_SetConstant(d
, "STC_FS_IDENTIFIER",SWIG_From_int(static_cast< int >(15))); 
24339   SWIG_Python_SetConstant(d
, "STC_FS_DATE",SWIG_From_int(static_cast< int >(16))); 
24340   SWIG_Python_SetConstant(d
, "STC_FS_STRINGEOL",SWIG_From_int(static_cast< int >(17))); 
24341   SWIG_Python_SetConstant(d
, "STC_FS_CONSTANT",SWIG_From_int(static_cast< int >(18))); 
24342   SWIG_Python_SetConstant(d
, "STC_FS_ASM",SWIG_From_int(static_cast< int >(19))); 
24343   SWIG_Python_SetConstant(d
, "STC_FS_LABEL",SWIG_From_int(static_cast< int >(20))); 
24344   SWIG_Python_SetConstant(d
, "STC_FS_ERROR",SWIG_From_int(static_cast< int >(21))); 
24345   SWIG_Python_SetConstant(d
, "STC_FS_HEXNUMBER",SWIG_From_int(static_cast< int >(22))); 
24346   SWIG_Python_SetConstant(d
, "STC_FS_BINNUMBER",SWIG_From_int(static_cast< int >(23))); 
24347   SWIG_Python_SetConstant(d
, "STC_CSOUND_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24348   SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24349   SWIG_Python_SetConstant(d
, "STC_CSOUND_NUMBER",SWIG_From_int(static_cast< int >(2))); 
24350   SWIG_Python_SetConstant(d
, "STC_CSOUND_OPERATOR",SWIG_From_int(static_cast< int >(3))); 
24351   SWIG_Python_SetConstant(d
, "STC_CSOUND_INSTR",SWIG_From_int(static_cast< int >(4))); 
24352   SWIG_Python_SetConstant(d
, "STC_CSOUND_IDENTIFIER",SWIG_From_int(static_cast< int >(5))); 
24353   SWIG_Python_SetConstant(d
, "STC_CSOUND_OPCODE",SWIG_From_int(static_cast< int >(6))); 
24354   SWIG_Python_SetConstant(d
, "STC_CSOUND_HEADERSTMT",SWIG_From_int(static_cast< int >(7))); 
24355   SWIG_Python_SetConstant(d
, "STC_CSOUND_USERKEYWORD",SWIG_From_int(static_cast< int >(8))); 
24356   SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENTBLOCK",SWIG_From_int(static_cast< int >(9))); 
24357   SWIG_Python_SetConstant(d
, "STC_CSOUND_PARAM",SWIG_From_int(static_cast< int >(10))); 
24358   SWIG_Python_SetConstant(d
, "STC_CSOUND_ARATE_VAR",SWIG_From_int(static_cast< int >(11))); 
24359   SWIG_Python_SetConstant(d
, "STC_CSOUND_KRATE_VAR",SWIG_From_int(static_cast< int >(12))); 
24360   SWIG_Python_SetConstant(d
, "STC_CSOUND_IRATE_VAR",SWIG_From_int(static_cast< int >(13))); 
24361   SWIG_Python_SetConstant(d
, "STC_CSOUND_GLOBAL_VAR",SWIG_From_int(static_cast< int >(14))); 
24362   SWIG_Python_SetConstant(d
, "STC_CSOUND_STRINGEOL",SWIG_From_int(static_cast< int >(15))); 
24363   SWIG_Python_SetConstant(d
, "STC_INNO_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24364   SWIG_Python_SetConstant(d
, "STC_INNO_COMMENT",SWIG_From_int(static_cast< int >(1))); 
24365   SWIG_Python_SetConstant(d
, "STC_INNO_KEYWORD",SWIG_From_int(static_cast< int >(2))); 
24366   SWIG_Python_SetConstant(d
, "STC_INNO_PARAMETER",SWIG_From_int(static_cast< int >(3))); 
24367   SWIG_Python_SetConstant(d
, "STC_INNO_SECTION",SWIG_From_int(static_cast< int >(4))); 
24368   SWIG_Python_SetConstant(d
, "STC_INNO_PREPROC",SWIG_From_int(static_cast< int >(5))); 
24369   SWIG_Python_SetConstant(d
, "STC_INNO_PREPROC_INLINE",SWIG_From_int(static_cast< int >(6))); 
24370   SWIG_Python_SetConstant(d
, "STC_INNO_COMMENT_PASCAL",SWIG_From_int(static_cast< int >(7))); 
24371   SWIG_Python_SetConstant(d
, "STC_INNO_KEYWORD_PASCAL",SWIG_From_int(static_cast< int >(8))); 
24372   SWIG_Python_SetConstant(d
, "STC_INNO_KEYWORD_USER",SWIG_From_int(static_cast< int >(9))); 
24373   SWIG_Python_SetConstant(d
, "STC_INNO_STRING_DOUBLE",SWIG_From_int(static_cast< int >(10))); 
24374   SWIG_Python_SetConstant(d
, "STC_INNO_STRING_SINGLE",SWIG_From_int(static_cast< int >(11))); 
24375   SWIG_Python_SetConstant(d
, "STC_INNO_IDENTIFIER",SWIG_From_int(static_cast< int >(12))); 
24376   SWIG_Python_SetConstant(d
, "STC_OPAL_SPACE",SWIG_From_int(static_cast< int >(0))); 
24377   SWIG_Python_SetConstant(d
, "STC_OPAL_COMMENT_BLOCK",SWIG_From_int(static_cast< int >(1))); 
24378   SWIG_Python_SetConstant(d
, "STC_OPAL_COMMENT_LINE",SWIG_From_int(static_cast< int >(2))); 
24379   SWIG_Python_SetConstant(d
, "STC_OPAL_INTEGER",SWIG_From_int(static_cast< int >(3))); 
24380   SWIG_Python_SetConstant(d
, "STC_OPAL_KEYWORD",SWIG_From_int(static_cast< int >(4))); 
24381   SWIG_Python_SetConstant(d
, "STC_OPAL_SORT",SWIG_From_int(static_cast< int >(5))); 
24382   SWIG_Python_SetConstant(d
, "STC_OPAL_STRING",SWIG_From_int(static_cast< int >(6))); 
24383   SWIG_Python_SetConstant(d
, "STC_OPAL_PAR",SWIG_From_int(static_cast< int >(7))); 
24384   SWIG_Python_SetConstant(d
, "STC_OPAL_BOOL_CONST",SWIG_From_int(static_cast< int >(8))); 
24385   SWIG_Python_SetConstant(d
, "STC_OPAL_DEFAULT",SWIG_From_int(static_cast< int >(32))); 
24386   SWIG_Python_SetConstant(d
, "STC_SPICE_DEFAULT",SWIG_From_int(static_cast< int >(0))); 
24387   SWIG_Python_SetConstant(d
, "STC_SPICE_IDENTIFIER",SWIG_From_int(static_cast< int >(1))); 
24388   SWIG_Python_SetConstant(d
, "STC_SPICE_KEYWORD",SWIG_From_int(static_cast< int >(2))); 
24389   SWIG_Python_SetConstant(d
, "STC_SPICE_KEYWORD2",SWIG_From_int(static_cast< int >(3))); 
24390   SWIG_Python_SetConstant(d
, "STC_SPICE_KEYWORD3",SWIG_From_int(static_cast< int >(4))); 
24391   SWIG_Python_SetConstant(d
, "STC_SPICE_NUMBER",SWIG_From_int(static_cast< int >(5))); 
24392   SWIG_Python_SetConstant(d
, "STC_SPICE_DELIMITER",SWIG_From_int(static_cast< int >(6))); 
24393   SWIG_Python_SetConstant(d
, "STC_SPICE_VALUE",SWIG_From_int(static_cast< int >(7))); 
24394   SWIG_Python_SetConstant(d
, "STC_SPICE_COMMENTLINE",SWIG_From_int(static_cast< int >(8))); 
24395   SWIG_Python_SetConstant(d
, "STC_CMD_REDO",SWIG_From_int(static_cast< int >(2011))); 
24396   SWIG_Python_SetConstant(d
, "STC_CMD_SELECTALL",SWIG_From_int(static_cast< int >(2013))); 
24397   SWIG_Python_SetConstant(d
, "STC_CMD_UNDO",SWIG_From_int(static_cast< int >(2176))); 
24398   SWIG_Python_SetConstant(d
, "STC_CMD_CUT",SWIG_From_int(static_cast< int >(2177))); 
24399   SWIG_Python_SetConstant(d
, "STC_CMD_COPY",SWIG_From_int(static_cast< int >(2178))); 
24400   SWIG_Python_SetConstant(d
, "STC_CMD_PASTE",SWIG_From_int(static_cast< int >(2179))); 
24401   SWIG_Python_SetConstant(d
, "STC_CMD_CLEAR",SWIG_From_int(static_cast< int >(2180))); 
24402   SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWN",SWIG_From_int(static_cast< int >(2300))); 
24403   SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNEXTEND",SWIG_From_int(static_cast< int >(2301))); 
24404   SWIG_Python_SetConstant(d
, "STC_CMD_LINEUP",SWIG_From_int(static_cast< int >(2302))); 
24405   SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPEXTEND",SWIG_From_int(static_cast< int >(2303))); 
24406   SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFT",SWIG_From_int(static_cast< int >(2304))); 
24407   SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTEXTEND",SWIG_From_int(static_cast< int >(2305))); 
24408   SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHT",SWIG_From_int(static_cast< int >(2306))); 
24409   SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTEXTEND",SWIG_From_int(static_cast< int >(2307))); 
24410   SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFT",SWIG_From_int(static_cast< int >(2308))); 
24411   SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEXTEND",SWIG_From_int(static_cast< int >(2309))); 
24412   SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHT",SWIG_From_int(static_cast< int >(2310))); 
24413   SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEXTEND",SWIG_From_int(static_cast< int >(2311))); 
24414   SWIG_Python_SetConstant(d
, "STC_CMD_HOME",SWIG_From_int(static_cast< int >(2312))); 
24415   SWIG_Python_SetConstant(d
, "STC_CMD_HOMEEXTEND",SWIG_From_int(static_cast< int >(2313))); 
24416   SWIG_Python_SetConstant(d
, "STC_CMD_LINEEND",SWIG_From_int(static_cast< int >(2314))); 
24417   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDEXTEND",SWIG_From_int(static_cast< int >(2315))); 
24418   SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTART",SWIG_From_int(static_cast< int >(2316))); 
24419   SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTARTEXTEND",SWIG_From_int(static_cast< int >(2317))); 
24420   SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTEND",SWIG_From_int(static_cast< int >(2318))); 
24421   SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTENDEXTEND",SWIG_From_int(static_cast< int >(2319))); 
24422   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUP",SWIG_From_int(static_cast< int >(2320))); 
24423   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPEXTEND",SWIG_From_int(static_cast< int >(2321))); 
24424   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWN",SWIG_From_int(static_cast< int >(2322))); 
24425   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2323))); 
24426   SWIG_Python_SetConstant(d
, "STC_CMD_EDITTOGGLEOVERTYPE",SWIG_From_int(static_cast< int >(2324))); 
24427   SWIG_Python_SetConstant(d
, "STC_CMD_CANCEL",SWIG_From_int(static_cast< int >(2325))); 
24428   SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACK",SWIG_From_int(static_cast< int >(2326))); 
24429   SWIG_Python_SetConstant(d
, "STC_CMD_TAB",SWIG_From_int(static_cast< int >(2327))); 
24430   SWIG_Python_SetConstant(d
, "STC_CMD_BACKTAB",SWIG_From_int(static_cast< int >(2328))); 
24431   SWIG_Python_SetConstant(d
, "STC_CMD_NEWLINE",SWIG_From_int(static_cast< int >(2329))); 
24432   SWIG_Python_SetConstant(d
, "STC_CMD_FORMFEED",SWIG_From_int(static_cast< int >(2330))); 
24433   SWIG_Python_SetConstant(d
, "STC_CMD_VCHOME",SWIG_From_int(static_cast< int >(2331))); 
24434   SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEEXTEND",SWIG_From_int(static_cast< int >(2332))); 
24435   SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMIN",SWIG_From_int(static_cast< int >(2333))); 
24436   SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMOUT",SWIG_From_int(static_cast< int >(2334))); 
24437   SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDLEFT",SWIG_From_int(static_cast< int >(2335))); 
24438   SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDRIGHT",SWIG_From_int(static_cast< int >(2336))); 
24439   SWIG_Python_SetConstant(d
, "STC_CMD_LINECUT",SWIG_From_int(static_cast< int >(2337))); 
24440   SWIG_Python_SetConstant(d
, "STC_CMD_LINEDELETE",SWIG_From_int(static_cast< int >(2338))); 
24441   SWIG_Python_SetConstant(d
, "STC_CMD_LINETRANSPOSE",SWIG_From_int(static_cast< int >(2339))); 
24442   SWIG_Python_SetConstant(d
, "STC_CMD_LINEDUPLICATE",SWIG_From_int(static_cast< int >(2404))); 
24443   SWIG_Python_SetConstant(d
, "STC_CMD_LOWERCASE",SWIG_From_int(static_cast< int >(2340))); 
24444   SWIG_Python_SetConstant(d
, "STC_CMD_UPPERCASE",SWIG_From_int(static_cast< int >(2341))); 
24445   SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLDOWN",SWIG_From_int(static_cast< int >(2342))); 
24446   SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLUP",SWIG_From_int(static_cast< int >(2343))); 
24447   SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACKNOTLINE",SWIG_From_int(static_cast< int >(2344))); 
24448   SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAY",SWIG_From_int(static_cast< int >(2345))); 
24449   SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2346))); 
24450   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAY",SWIG_From_int(static_cast< int >(2347))); 
24451   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2348))); 
24452   SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAP",SWIG_From_int(static_cast< int >(2349))); 
24453   SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2450))); 
24454   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAP",SWIG_From_int(static_cast< int >(2451))); 
24455   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAPEXTEND",SWIG_From_int(static_cast< int >(2452))); 
24456   SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAP",SWIG_From_int(static_cast< int >(2453))); 
24457   SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2454))); 
24458   SWIG_Python_SetConstant(d
, "STC_CMD_LINECOPY",SWIG_From_int(static_cast< int >(2455))); 
24459   SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFT",SWIG_From_int(static_cast< int >(2390))); 
24460   SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFTEXTEND",SWIG_From_int(static_cast< int >(2391))); 
24461   SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHT",SWIG_From_int(static_cast< int >(2392))); 
24462   SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHTEXTEND",SWIG_From_int(static_cast< int >(2393))); 
24463   SWIG_Python_SetConstant(d
, "STC_CMD_DELLINELEFT",SWIG_From_int(static_cast< int >(2395))); 
24464   SWIG_Python_SetConstant(d
, "STC_CMD_DELLINERIGHT",SWIG_From_int(static_cast< int >(2396))); 
24465   SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWN",SWIG_From_int(static_cast< int >(2413))); 
24466   SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWNEXTEND",SWIG_From_int(static_cast< int >(2414))); 
24467   SWIG_Python_SetConstant(d
, "STC_CMD_PARAUP",SWIG_From_int(static_cast< int >(2415))); 
24468   SWIG_Python_SetConstant(d
, "STC_CMD_PARAUPEXTEND",SWIG_From_int(static_cast< int >(2416))); 
24469   SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2426))); 
24470   SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2427))); 
24471   SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTRECTEXTEND",SWIG_From_int(static_cast< int >(2428))); 
24472   SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTRECTEXTEND",SWIG_From_int(static_cast< int >(2429))); 
24473   SWIG_Python_SetConstant(d
, "STC_CMD_HOMERECTEXTEND",SWIG_From_int(static_cast< int >(2430))); 
24474   SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMERECTEXTEND",SWIG_From_int(static_cast< int >(2431))); 
24475   SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDRECTEXTEND",SWIG_From_int(static_cast< int >(2432))); 
24476   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2433))); 
24477   SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2434))); 
24478   SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUP",SWIG_From_int(static_cast< int >(2435))); 
24479   SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUPEXTEND",SWIG_From_int(static_cast< int >(2436))); 
24480   SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWN",SWIG_From_int(static_cast< int >(2437))); 
24481   SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2438))); 
24482   SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEND",SWIG_From_int(static_cast< int >(2439))); 
24483   SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTENDEXTEND",SWIG_From_int(static_cast< int >(2440))); 
24484   SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEND",SWIG_From_int(static_cast< int >(2441))); 
24485   SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTENDEXTEND",SWIG_From_int(static_cast< int >(2442))); 
24486   SWIG_Python_SetConstant(d
, "wxEVT_STC_CHANGE",SWIG_From_int(static_cast< int >(wxEVT_STC_CHANGE
))); 
24487   SWIG_Python_SetConstant(d
, "wxEVT_STC_STYLENEEDED",SWIG_From_int(static_cast< int >(wxEVT_STC_STYLENEEDED
))); 
24488   SWIG_Python_SetConstant(d
, "wxEVT_STC_CHARADDED",SWIG_From_int(static_cast< int >(wxEVT_STC_CHARADDED
))); 
24489   SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTREACHED",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTREACHED
))); 
24490   SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTLEFT",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTLEFT
))); 
24491   SWIG_Python_SetConstant(d
, "wxEVT_STC_ROMODIFYATTEMPT",SWIG_From_int(static_cast< int >(wxEVT_STC_ROMODIFYATTEMPT
))); 
24492   SWIG_Python_SetConstant(d
, "wxEVT_STC_KEY",SWIG_From_int(static_cast< int >(wxEVT_STC_KEY
))); 
24493   SWIG_Python_SetConstant(d
, "wxEVT_STC_DOUBLECLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_DOUBLECLICK
))); 
24494   SWIG_Python_SetConstant(d
, "wxEVT_STC_UPDATEUI",SWIG_From_int(static_cast< int >(wxEVT_STC_UPDATEUI
))); 
24495   SWIG_Python_SetConstant(d
, "wxEVT_STC_MODIFIED",SWIG_From_int(static_cast< int >(wxEVT_STC_MODIFIED
))); 
24496   SWIG_Python_SetConstant(d
, "wxEVT_STC_MACRORECORD",SWIG_From_int(static_cast< int >(wxEVT_STC_MACRORECORD
))); 
24497   SWIG_Python_SetConstant(d
, "wxEVT_STC_MARGINCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_MARGINCLICK
))); 
24498   SWIG_Python_SetConstant(d
, "wxEVT_STC_NEEDSHOWN",SWIG_From_int(static_cast< int >(wxEVT_STC_NEEDSHOWN
))); 
24499   SWIG_Python_SetConstant(d
, "wxEVT_STC_PAINTED",SWIG_From_int(static_cast< int >(wxEVT_STC_PAINTED
))); 
24500   SWIG_Python_SetConstant(d
, "wxEVT_STC_USERLISTSELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_USERLISTSELECTION
))); 
24501   SWIG_Python_SetConstant(d
, "wxEVT_STC_URIDROPPED",SWIG_From_int(static_cast< int >(wxEVT_STC_URIDROPPED
))); 
24502   SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLSTART",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLSTART
))); 
24503   SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLEND",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLEND
))); 
24504   SWIG_Python_SetConstant(d
, "wxEVT_STC_START_DRAG",SWIG_From_int(static_cast< int >(wxEVT_STC_START_DRAG
))); 
24505   SWIG_Python_SetConstant(d
, "wxEVT_STC_DRAG_OVER",SWIG_From_int(static_cast< int >(wxEVT_STC_DRAG_OVER
))); 
24506   SWIG_Python_SetConstant(d
, "wxEVT_STC_DO_DROP",SWIG_From_int(static_cast< int >(wxEVT_STC_DO_DROP
))); 
24507   SWIG_Python_SetConstant(d
, "wxEVT_STC_ZOOM",SWIG_From_int(static_cast< int >(wxEVT_STC_ZOOM
))); 
24508   SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_CLICK
))); 
24509   SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_DCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_DCLICK
))); 
24510   SWIG_Python_SetConstant(d
, "wxEVT_STC_CALLTIP_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_CALLTIP_CLICK
))); 
24511   SWIG_Python_SetConstant(d
, "wxEVT_STC_AUTOCOMP_SELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_AUTOCOMP_SELECTION
)));