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 /* for raw pointers */
989 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
990 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
991 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
992 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
993 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
994 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
995 #define swig_owntype int
997 /* for raw packed data */
998 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
999 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1001 /* for class or struct pointers */
1002 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1003 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1005 /* for C or C++ function pointers */
1006 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1007 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1009 /* for C++ member pointers, ie, member methods */
1010 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1011 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1016 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1017 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1018 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1020 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1021 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1022 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1023 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1024 #define SWIG_fail goto fail
1027 /* Runtime API implementation */
1029 /* Error manipulation */
1032 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1033 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1034 PyErr_SetObject(errtype
, obj
);
1036 SWIG_PYTHON_THREAD_END_BLOCK
;
1040 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1041 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1042 PyErr_SetString(errtype
, (char *) msg
);
1043 SWIG_PYTHON_THREAD_END_BLOCK
;
1046 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1048 /* Set a constant value */
1051 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1052 PyDict_SetItemString(d
, (char*) name
, obj
);
1056 /* Append a value to the result obj */
1058 SWIGINTERN PyObject
*
1059 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1060 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1063 } else if (result
== Py_None
) {
1067 if (!PyList_Check(result
)) {
1068 PyObject
*o2
= result
;
1069 result
= PyList_New(1);
1070 PyList_SetItem(result
, 0, o2
);
1072 PyList_Append(result
,obj
);
1081 } else if (result
== Py_None
) {
1085 if (!PyTuple_Check(result
)) {
1087 result
= PyTuple_New(1);
1088 PyTuple_SET_ITEM(result
, 0, o2
);
1090 o3
= PyTuple_New(1);
1091 PyTuple_SET_ITEM(o3
, 0, obj
);
1093 result
= PySequence_Concat(o2
, o3
);
1101 /* Unpack the argument tuple */
1104 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1110 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1111 name
, (min
== max
? "" : "at least "), min
);
1115 if (!PyTuple_Check(args
)) {
1116 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1119 register int l
= PyTuple_GET_SIZE(args
);
1121 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1122 name
, (min
== max
? "" : "at least "), min
, l
);
1124 } else if (l
> max
) {
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at most "), max
, l
);
1130 for (i
= 0; i
< l
; ++i
) {
1131 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1133 for (; l
< max
; ++l
) {
1141 /* A functor is a function object with one single object argument */
1142 #if PY_VERSION_HEX >= 0x02020000
1143 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1145 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1149 Helper for static pointer initialization for both C and C++ code, for example
1150 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1153 #define SWIG_STATIC_POINTER(var) var
1155 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1158 /* -----------------------------------------------------------------------------
1159 * Pointer declarations
1160 * ----------------------------------------------------------------------------- */
1162 /* Flags for new pointer objects */
1163 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1164 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1166 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1175 /* How to access Py_None */
1176 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1177 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1178 # ifndef SWIG_PYTHON_BUILD_NONE
1179 # define SWIG_PYTHON_BUILD_NONE
1184 #ifdef SWIG_PYTHON_BUILD_NONE
1187 # define Py_None SWIG_Py_None()
1189 SWIGRUNTIMEINLINE PyObject
*
1192 PyObject
*none
= Py_BuildValue("");
1196 SWIGRUNTIME PyObject
*
1199 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1204 /* The python void return value */
1206 SWIGRUNTIMEINLINE PyObject
*
1209 PyObject
*none
= Py_None
;
1214 /* PySwigClientData */
1225 SWIGRUNTIMEINLINE
int
1226 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1228 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1229 return data
? data
->implicitconv
: 0;
1232 SWIGRUNTIMEINLINE PyObject
*
1233 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1234 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1235 PyObject
*klass
= data
? data
->klass
: 0;
1236 return (klass
? klass
: PyExc_RuntimeError
);
1240 SWIGRUNTIME PySwigClientData
*
1241 PySwigClientData_New(PyObject
* obj
)
1246 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1247 /* the klass element */
1249 Py_INCREF(data
->klass
);
1250 /* the newraw method and newargs arguments used to create a new raw instance */
1251 if (PyClass_Check(obj
)) {
1253 data
->newargs
= obj
;
1256 #if (PY_VERSION_HEX < 0x02020000)
1259 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1262 Py_INCREF(data
->newraw
);
1263 data
->newargs
= PyTuple_New(1);
1264 PyTuple_SetItem(data
->newargs
, 0, obj
);
1266 data
->newargs
= obj
;
1268 Py_INCREF(data
->newargs
);
1270 /* the destroy method, aka as the C++ delete method */
1271 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1272 if (PyErr_Occurred()) {
1276 if (data
->destroy
) {
1278 Py_INCREF(data
->destroy
);
1279 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1281 data
->delargs
= !(flags
& (METH_O
));
1288 data
->implicitconv
= 0;
1294 PySwigClientData_Del(PySwigClientData
* data
)
1296 Py_XDECREF(data
->newraw
);
1297 Py_XDECREF(data
->newargs
);
1298 Py_XDECREF(data
->destroy
);
1301 /* =============== PySwigObject =====================*/
1311 SWIGRUNTIME PyObject
*
1312 PySwigObject_long(PySwigObject
*v
)
1314 return PyLong_FromVoidPtr(v
->ptr
);
1317 SWIGRUNTIME PyObject
*
1318 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1320 PyObject
*res
= NULL
;
1321 PyObject
*args
= PyTuple_New(1);
1323 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1324 PyObject
*ofmt
= PyString_FromString(fmt
);
1326 res
= PyString_Format(ofmt
,args
);
1335 SWIGRUNTIME PyObject
*
1336 PySwigObject_oct(PySwigObject
*v
)
1338 return PySwigObject_format("%o",v
);
1341 SWIGRUNTIME PyObject
*
1342 PySwigObject_hex(PySwigObject
*v
)
1344 return PySwigObject_format("%x",v
);
1347 SWIGRUNTIME PyObject
*
1349 PySwigObject_repr(PySwigObject
*v
)
1351 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1354 const char *name
= SWIG_TypePrettyName(v
->ty
);
1355 PyObject
*hex
= PySwigObject_hex(v
);
1356 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1360 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1362 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1364 PyString_ConcatAndDel(&repr
,nrep
);
1370 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1373 PyObject
*repr
= PySwigObject_repr(v
);
1375 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1378 fputs(PyString_AsString(repr
), fp
);
1386 SWIGRUNTIME PyObject
*
1387 PySwigObject_str(PySwigObject
*v
)
1389 char result
[SWIG_BUFFER_SIZE
];
1390 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1391 PyString_FromString(result
) : 0;
1395 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1399 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1402 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1404 SWIGRUNTIME PyTypeObject
*
1405 PySwigObject_type(void) {
1406 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1410 SWIGRUNTIMEINLINE
int
1411 PySwigObject_Check(PyObject
*op
) {
1412 return ((op
)->ob_type
== PySwigObject_type())
1413 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1416 SWIGRUNTIME PyObject
*
1417 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1420 PySwigObject_dealloc(PyObject
*v
)
1422 PySwigObject
*sobj
= (PySwigObject
*) v
;
1423 PyObject
*next
= sobj
->next
;
1425 swig_type_info
*ty
= sobj
->ty
;
1426 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1427 PyObject
*destroy
= data
? data
->destroy
: 0;
1429 /* destroy is always a VARARGS method */
1431 if (data
->delargs
) {
1432 /* we need to create a temporal object to carry the destroy operation */
1433 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1434 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1437 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1438 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1439 res
= ((*meth
)(mself
, v
));
1443 const char *name
= SWIG_TypePrettyName(ty
);
1444 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1445 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1453 SWIGRUNTIME PyObject
*
1454 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1456 PySwigObject
*sobj
= (PySwigObject
*) v
;
1459 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1462 if (!PySwigObject_Check(next
)) {
1467 return SWIG_Py_Void();
1470 SWIGRUNTIME PyObject
*
1472 PySwigObject_next(PyObject
* v
)
1474 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1477 PySwigObject
*sobj
= (PySwigObject
*) v
;
1479 Py_INCREF(sobj
->next
);
1482 return SWIG_Py_Void();
1486 SWIGINTERN PyObject
*
1488 PySwigObject_disown(PyObject
*v
)
1490 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1493 PySwigObject
*sobj
= (PySwigObject
*)v
;
1495 return SWIG_Py_Void();
1498 SWIGINTERN PyObject
*
1500 PySwigObject_acquire(PyObject
*v
)
1502 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1505 PySwigObject
*sobj
= (PySwigObject
*)v
;
1506 sobj
->own
= SWIG_POINTER_OWN
;
1507 return SWIG_Py_Void();
1510 SWIGINTERN PyObject
*
1511 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1514 #if (PY_VERSION_HEX < 0x02020000)
1515 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1517 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1524 PySwigObject
*sobj
= (PySwigObject
*)v
;
1525 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1528 if (PyObject_IsTrue(val
)) {
1529 PySwigObject_acquire(v
);
1531 PySwigObject_disown(v
);
1534 if (PyObject_IsTrue(val
)) {
1535 PySwigObject_acquire(v
,args
);
1537 PySwigObject_disown(v
,args
);
1547 swigobject_methods
[] = {
1548 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1549 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1550 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1551 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1552 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1553 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1558 swigobject_methods
[] = {
1559 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1560 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1561 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1562 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1563 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1564 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1569 #if PY_VERSION_HEX < 0x02020000
1570 SWIGINTERN PyObject
*
1571 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1573 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1577 SWIGRUNTIME PyTypeObject
*
1578 _PySwigObject_type(void) {
1579 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1581 static PyNumberMethods PySwigObject_as_number
= {
1582 (binaryfunc
)0, /*nb_add*/
1583 (binaryfunc
)0, /*nb_subtract*/
1584 (binaryfunc
)0, /*nb_multiply*/
1585 (binaryfunc
)0, /*nb_divide*/
1586 (binaryfunc
)0, /*nb_remainder*/
1587 (binaryfunc
)0, /*nb_divmod*/
1588 (ternaryfunc
)0,/*nb_power*/
1589 (unaryfunc
)0, /*nb_negative*/
1590 (unaryfunc
)0, /*nb_positive*/
1591 (unaryfunc
)0, /*nb_absolute*/
1592 (inquiry
)0, /*nb_nonzero*/
1599 (coercion
)0, /*nb_coerce*/
1600 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1601 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1602 (unaryfunc
)0, /*nb_float*/
1603 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1604 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1605 #if PY_VERSION_HEX >= 0x02020000
1606 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1607 #elif PY_VERSION_HEX >= 0x02000000
1608 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1612 static PyTypeObject pyswigobject_type
;
1613 static int type_init
= 0;
1615 const PyTypeObject tmp
1617 PyObject_HEAD_INIT(NULL
)
1619 (char *)"PySwigObject", /* tp_name */
1620 sizeof(PySwigObject
), /* tp_basicsize */
1621 0, /* tp_itemsize */
1622 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1623 (printfunc
)PySwigObject_print
, /* tp_print */
1624 #if PY_VERSION_HEX < 0x02020000
1625 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1627 (getattrfunc
)0, /* tp_getattr */
1629 (setattrfunc
)0, /* tp_setattr */
1630 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1631 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1632 &PySwigObject_as_number
, /* tp_as_number */
1633 0, /* tp_as_sequence */
1634 0, /* tp_as_mapping */
1635 (hashfunc
)0, /* tp_hash */
1636 (ternaryfunc
)0, /* tp_call */
1637 (reprfunc
)PySwigObject_str
, /* tp_str */
1638 PyObject_GenericGetAttr
, /* tp_getattro */
1639 0, /* tp_setattro */
1640 0, /* tp_as_buffer */
1641 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1642 swigobject_doc
, /* tp_doc */
1643 0, /* tp_traverse */
1645 0, /* tp_richcompare */
1646 0, /* tp_weaklistoffset */
1647 #if PY_VERSION_HEX >= 0x02020000
1649 0, /* tp_iternext */
1650 swigobject_methods
, /* tp_methods */
1655 0, /* tp_descr_get */
1656 0, /* tp_descr_set */
1657 0, /* tp_dictoffset */
1666 0, /* tp_subclasses */
1667 0, /* tp_weaklist */
1669 #if PY_VERSION_HEX >= 0x02030000
1673 0,0,0,0 /* tp_alloc -> tp_next */
1676 pyswigobject_type
= tmp
;
1677 pyswigobject_type
.ob_type
= &PyType_Type
;
1680 return &pyswigobject_type
;
1683 SWIGRUNTIME PyObject
*
1684 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1686 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1693 return (PyObject
*)sobj
;
1696 /* -----------------------------------------------------------------------------
1697 * Implements a simple Swig Packed type, and use it instead of string
1698 * ----------------------------------------------------------------------------- */
1708 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1710 char result
[SWIG_BUFFER_SIZE
];
1711 fputs("<Swig Packed ", fp
);
1712 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1716 fputs(v
->ty
->name
,fp
);
1721 SWIGRUNTIME PyObject
*
1722 PySwigPacked_repr(PySwigPacked
*v
)
1724 char result
[SWIG_BUFFER_SIZE
];
1725 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1726 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1728 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1732 SWIGRUNTIME PyObject
*
1733 PySwigPacked_str(PySwigPacked
*v
)
1735 char result
[SWIG_BUFFER_SIZE
];
1736 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1737 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1739 return PyString_FromString(v
->ty
->name
);
1744 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1748 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1749 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1752 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1754 SWIGRUNTIME PyTypeObject
*
1755 PySwigPacked_type(void) {
1756 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1760 SWIGRUNTIMEINLINE
int
1761 PySwigPacked_Check(PyObject
*op
) {
1762 return ((op
)->ob_type
== _PySwigPacked_type())
1763 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1767 PySwigPacked_dealloc(PyObject
*v
)
1769 if (PySwigPacked_Check(v
)) {
1770 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1776 SWIGRUNTIME PyTypeObject
*
1777 _PySwigPacked_type(void) {
1778 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1779 static PyTypeObject pyswigpacked_type
;
1780 static int type_init
= 0;
1782 const PyTypeObject tmp
1784 PyObject_HEAD_INIT(NULL
)
1786 (char *)"PySwigPacked", /* tp_name */
1787 sizeof(PySwigPacked
), /* tp_basicsize */
1788 0, /* tp_itemsize */
1789 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1790 (printfunc
)PySwigPacked_print
, /* tp_print */
1791 (getattrfunc
)0, /* tp_getattr */
1792 (setattrfunc
)0, /* tp_setattr */
1793 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1794 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1795 0, /* tp_as_number */
1796 0, /* tp_as_sequence */
1797 0, /* tp_as_mapping */
1798 (hashfunc
)0, /* tp_hash */
1799 (ternaryfunc
)0, /* tp_call */
1800 (reprfunc
)PySwigPacked_str
, /* tp_str */
1801 PyObject_GenericGetAttr
, /* tp_getattro */
1802 0, /* tp_setattro */
1803 0, /* tp_as_buffer */
1804 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1805 swigpacked_doc
, /* tp_doc */
1806 0, /* tp_traverse */
1808 0, /* tp_richcompare */
1809 0, /* tp_weaklistoffset */
1810 #if PY_VERSION_HEX >= 0x02020000
1812 0, /* tp_iternext */
1818 0, /* tp_descr_get */
1819 0, /* tp_descr_set */
1820 0, /* tp_dictoffset */
1829 0, /* tp_subclasses */
1830 0, /* tp_weaklist */
1832 #if PY_VERSION_HEX >= 0x02030000
1836 0,0,0,0 /* tp_alloc -> tp_next */
1839 pyswigpacked_type
= tmp
;
1840 pyswigpacked_type
.ob_type
= &PyType_Type
;
1843 return &pyswigpacked_type
;
1846 SWIGRUNTIME PyObject
*
1847 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1849 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1851 void *pack
= malloc(size
);
1853 memcpy(pack
, ptr
, size
);
1858 PyObject_DEL((PyObject
*) sobj
);
1862 return (PyObject
*) sobj
;
1865 SWIGRUNTIME swig_type_info
*
1866 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1868 if (PySwigPacked_Check(obj
)) {
1869 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1870 if (sobj
->size
!= size
) return 0;
1871 memcpy(ptr
, sobj
->pack
, size
);
1878 /* -----------------------------------------------------------------------------
1879 * pointers/data manipulation
1880 * ----------------------------------------------------------------------------- */
1882 SWIGRUNTIMEINLINE PyObject
*
1885 return PyString_FromString("this");
1888 SWIGRUNTIME PyObject
*
1891 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1895 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1897 SWIGRUNTIME PySwigObject
*
1898 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1900 if (PySwigObject_Check(pyobj
)) {
1901 return (PySwigObject
*) pyobj
;
1904 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1905 if (PyInstance_Check(pyobj
)) {
1906 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1908 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1909 if (dictptr
!= NULL
) {
1910 PyObject
*dict
= *dictptr
;
1911 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1913 #ifdef PyWeakref_CheckProxy
1914 if (PyWeakref_CheckProxy(pyobj
)) {
1915 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1916 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1919 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1923 if (PyErr_Occurred()) PyErr_Clear();
1929 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1933 if (PyErr_Occurred()) PyErr_Clear();
1937 if (obj
&& !PySwigObject_Check(obj
)) {
1938 /* a PyObject is called 'this', try to get the 'real this'
1939 PySwigObject from it */
1940 return SWIG_Python_GetSwigThis(obj
);
1942 return (PySwigObject
*)obj
;
1946 /* Acquire a pointer value */
1949 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1951 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1953 int oldown
= sobj
->own
;
1961 /* Convert a pointer value */
1964 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1965 if (!obj
) return SWIG_ERROR
;
1966 if (obj
== Py_None
) {
1970 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1972 void *vptr
= sobj
->ptr
;
1974 swig_type_info
*to
= sobj
->ty
;
1976 /* no type cast needed */
1977 if (ptr
) *ptr
= vptr
;
1980 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1982 sobj
= (PySwigObject
*)sobj
->next
;
1984 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1989 if (ptr
) *ptr
= vptr
;
1994 if (own
) *own
= sobj
->own
;
1995 if (flags
& SWIG_POINTER_DISOWN
) {
2000 int res
= SWIG_ERROR
;
2001 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2002 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2003 if (data
&& !data
->implicitconv
) {
2004 PyObject
*klass
= data
->klass
;
2007 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2008 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2009 data
->implicitconv
= 0;
2010 if (PyErr_Occurred()) {
2015 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2018 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2019 if (SWIG_IsOK(res
)) {
2022 /* transfer the ownership to 'ptr' */
2024 res
= SWIG_AddCast(res
);
2025 res
= SWIG_AddNewMask(res
);
2027 res
= SWIG_AddCast(res
);
2041 /* Convert a function ptr value */
2044 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2045 if (!PyCFunction_Check(obj
)) {
2046 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2050 /* here we get the method pointer for callbacks */
2051 char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2052 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2054 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2055 if (!desc
) return SWIG_ERROR
;
2058 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2059 if (!tc
) return SWIG_ERROR
;
2060 *ptr
= SWIG_TypeCast(tc
,vptr
);
2068 /* Convert a packed value value */
2071 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2072 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2073 if (!to
) return SWIG_ERROR
;
2076 /* check type cast? */
2077 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2078 if (!tc
) return SWIG_ERROR
;
2084 /* -----------------------------------------------------------------------------
2085 * Create a new pointer object
2086 * ----------------------------------------------------------------------------- */
2089 Create a new instance object, whitout calling __init__, and set the
2093 SWIGRUNTIME PyObject
*
2094 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2096 #if (PY_VERSION_HEX >= 0x02020000)
2098 PyObject
*newraw
= data
->newraw
;
2100 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2102 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2103 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2104 if (dictptr
!= NULL
) {
2105 PyObject
*dict
= *dictptr
;
2107 dict
= PyDict_New();
2109 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2113 PyObject
*key
= SWIG_This();
2114 PyObject_SetAttr(inst
, key
, swig_this
);
2118 PyObject
*dict
= PyDict_New();
2119 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2120 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2125 #if (PY_VERSION_HEX >= 0x02010000)
2127 PyObject
*dict
= PyDict_New();
2128 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2129 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2131 return (PyObject
*) inst
;
2133 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2137 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2138 Py_INCREF(inst
->in_class
);
2139 inst
->in_dict
= PyDict_New();
2140 if (inst
->in_dict
== NULL
) {
2144 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2145 inst
->in_weakreflist
= NULL
;
2147 #ifdef Py_TPFLAGS_GC
2148 PyObject_GC_Init(inst
);
2150 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2151 return (PyObject
*) inst
;
2157 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2160 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2161 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2162 if (dictptr
!= NULL
) {
2165 dict
= PyDict_New();
2168 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2172 dict
= PyObject_GetAttrString(inst
, "__dict__");
2173 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2178 SWIGINTERN PyObject
*
2179 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2181 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2184 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2186 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2188 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2190 return SWIG_Py_Void();
2194 /* Create a new pointer object */
2196 SWIGRUNTIME PyObject
*
2197 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2199 return SWIG_Py_Void();
2201 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2202 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2203 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2204 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2205 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2215 /* Create a new packed object */
2217 SWIGRUNTIMEINLINE PyObject
*
2218 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2219 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2222 /* -----------------------------------------------------------------------------*
2224 * -----------------------------------------------------------------------------*/
2226 #ifdef SWIG_LINK_RUNTIME
2227 void *SWIG_ReturnGlobalTypeList(void *);
2230 SWIGRUNTIME swig_module_info
*
2231 SWIG_Python_GetModule(void) {
2232 static void *type_pointer
= (void *)0;
2233 /* first check if module already created */
2234 if (!type_pointer
) {
2235 #ifdef SWIG_LINK_RUNTIME
2236 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2238 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2239 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2240 if (PyErr_Occurred()) {
2242 type_pointer
= (void *)0;
2246 return (swig_module_info
*) type_pointer
;
2249 #if PY_MAJOR_VERSION < 2
2250 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2251 is copied out of Python/modsupport.c in python version 2.3.4 */
2253 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2256 if (!PyModule_Check(m
)) {
2257 PyErr_SetString(PyExc_TypeError
,
2258 "PyModule_AddObject() needs module as first arg");
2262 PyErr_SetString(PyExc_TypeError
,
2263 "PyModule_AddObject() needs non-NULL value");
2267 dict
= PyModule_GetDict(m
);
2269 /* Internal error -- modules must have a dict! */
2270 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2271 PyModule_GetName(m
));
2274 if (PyDict_SetItemString(dict
, name
, o
))
2282 SWIG_Python_DestroyModule(void *vptr
)
2284 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2285 swig_type_info
**types
= swig_module
->types
;
2287 for (i
=0; i
< swig_module
->size
; ++i
) {
2288 swig_type_info
*ty
= types
[i
];
2290 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2291 if (data
) PySwigClientData_Del(data
);
2294 Py_DECREF(SWIG_This());
2298 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2299 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2301 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2302 swig_empty_runtime_method_table
);
2303 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2304 if (pointer
&& module) {
2305 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2307 Py_XDECREF(pointer
);
2311 /* The python cached type query */
2312 SWIGRUNTIME PyObject
*
2313 SWIG_Python_TypeCache() {
2314 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2318 SWIGRUNTIME swig_type_info
*
2319 SWIG_Python_TypeQuery(const char *type
)
2321 PyObject
*cache
= SWIG_Python_TypeCache();
2322 PyObject
*key
= PyString_FromString(type
);
2323 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2324 swig_type_info
*descriptor
;
2326 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2328 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2329 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2331 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2332 PyDict_SetItem(cache
, key
, obj
);
2341 For backward compatibility only
2343 #define SWIG_POINTER_EXCEPTION 0
2344 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2345 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2348 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2350 if (PyErr_Occurred()) {
2352 PyObject
*value
= 0;
2353 PyObject
*traceback
= 0;
2354 PyErr_Fetch(&type
, &value
, &traceback
);
2356 PyObject
*old_str
= PyObject_Str(value
);
2360 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2362 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2373 SWIG_Python_ArgFail(int argnum
)
2375 if (PyErr_Occurred()) {
2376 /* add information about failing argument */
2378 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2379 return SWIG_Python_AddErrMesg(mesg
, 1);
2385 SWIGRUNTIMEINLINE
const char *
2386 PySwigObject_GetDesc(PyObject
*self
)
2388 PySwigObject
*v
= (PySwigObject
*)self
;
2389 swig_type_info
*ty
= v
? v
->ty
: 0;
2390 return ty
? ty
->str
: (char*)"";
2394 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2397 #if defined(SWIG_COBJECT_TYPES)
2398 if (obj
&& PySwigObject_Check(obj
)) {
2399 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2401 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2408 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2410 PyObject
*str
= PyObject_Str(obj
);
2411 const char *cstr
= str
? PyString_AsString(str
) : 0;
2413 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2416 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2423 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2425 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2430 /* Convert a pointer value, signal an exception on a type mismatch */
2432 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2434 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2436 if (flags
& SWIG_POINTER_EXCEPTION
) {
2437 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2438 SWIG_Python_ArgFail(argnum
);
2454 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2456 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2460 /* -------- TYPES TABLE (BEGIN) -------- */
2462 #define SWIGTYPE_p_char swig_types[0]
2463 #define SWIGTYPE_p_form_ops_t swig_types[1]
2464 #define SWIGTYPE_p_int swig_types[2]
2465 #define SWIGTYPE_p_unsigned_char swig_types[3]
2466 #define SWIGTYPE_p_unsigned_int swig_types[4]
2467 #define SWIGTYPE_p_unsigned_long swig_types[5]
2468 #define SWIGTYPE_p_void swig_types[6]
2469 #define SWIGTYPE_p_wxANIHandler swig_types[7]
2470 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8]
2471 #define SWIGTYPE_p_wxActivateEvent swig_types[9]
2472 #define SWIGTYPE_p_wxBMPHandler swig_types[10]
2473 #define SWIGTYPE_p_wxBitmap swig_types[11]
2474 #define SWIGTYPE_p_wxBoxSizer swig_types[12]
2475 #define SWIGTYPE_p_wxBusyInfo swig_types[13]
2476 #define SWIGTYPE_p_wxCURHandler swig_types[14]
2477 #define SWIGTYPE_p_wxChildFocusEvent swig_types[15]
2478 #define SWIGTYPE_p_wxClipboard swig_types[16]
2479 #define SWIGTYPE_p_wxCloseEvent swig_types[17]
2480 #define SWIGTYPE_p_wxColour swig_types[18]
2481 #define SWIGTYPE_p_wxCommandEvent swig_types[19]
2482 #define SWIGTYPE_p_wxContextMenuEvent swig_types[20]
2483 #define SWIGTYPE_p_wxControl swig_types[21]
2484 #define SWIGTYPE_p_wxControlWithItems swig_types[22]
2485 #define SWIGTYPE_p_wxDC swig_types[23]
2486 #define SWIGTYPE_p_wxDateEvent swig_types[24]
2487 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[25]
2488 #define SWIGTYPE_p_wxDropFilesEvent swig_types[26]
2489 #define SWIGTYPE_p_wxDuplexMode swig_types[27]
2490 #define SWIGTYPE_p_wxEraseEvent swig_types[28]
2491 #define SWIGTYPE_p_wxEvent swig_types[29]
2492 #define SWIGTYPE_p_wxEvtHandler swig_types[30]
2493 #define SWIGTYPE_p_wxFSFile swig_types[31]
2494 #define SWIGTYPE_p_wxFileHistory swig_types[32]
2495 #define SWIGTYPE_p_wxFileSystem swig_types[33]
2496 #define SWIGTYPE_p_wxFlexGridSizer swig_types[34]
2497 #define SWIGTYPE_p_wxFocusEvent swig_types[35]
2498 #define SWIGTYPE_p_wxFont swig_types[36]
2499 #define SWIGTYPE_p_wxGBSizerItem swig_types[37]
2500 #define SWIGTYPE_p_wxGIFHandler swig_types[38]
2501 #define SWIGTYPE_p_wxGridBagSizer swig_types[39]
2502 #define SWIGTYPE_p_wxGridSizer swig_types[40]
2503 #define SWIGTYPE_p_wxICOHandler swig_types[41]
2504 #define SWIGTYPE_p_wxIconizeEvent swig_types[42]
2505 #define SWIGTYPE_p_wxIdleEvent swig_types[43]
2506 #define SWIGTYPE_p_wxImage swig_types[44]
2507 #define SWIGTYPE_p_wxImageHandler swig_types[45]
2508 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[46]
2509 #define SWIGTYPE_p_wxInitDialogEvent swig_types[47]
2510 #define SWIGTYPE_p_wxJPEGHandler swig_types[48]
2511 #define SWIGTYPE_p_wxJoystickEvent swig_types[49]
2512 #define SWIGTYPE_p_wxKeyEvent swig_types[50]
2513 #define SWIGTYPE_p_wxLayoutConstraints swig_types[51]
2514 #define SWIGTYPE_p_wxMaximizeEvent swig_types[52]
2515 #define SWIGTYPE_p_wxMemoryBuffer swig_types[53]
2516 #define SWIGTYPE_p_wxMenu swig_types[54]
2517 #define SWIGTYPE_p_wxMenuBar swig_types[55]
2518 #define SWIGTYPE_p_wxMenuEvent swig_types[56]
2519 #define SWIGTYPE_p_wxMenuItem swig_types[57]
2520 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[58]
2521 #define SWIGTYPE_p_wxMouseEvent swig_types[59]
2522 #define SWIGTYPE_p_wxMoveEvent swig_types[60]
2523 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[61]
2524 #define SWIGTYPE_p_wxNcPaintEvent swig_types[62]
2525 #define SWIGTYPE_p_wxNotifyEvent swig_types[63]
2526 #define SWIGTYPE_p_wxObject swig_types[64]
2527 #define SWIGTYPE_p_wxPCXHandler swig_types[65]
2528 #define SWIGTYPE_p_wxPNGHandler swig_types[66]
2529 #define SWIGTYPE_p_wxPNMHandler swig_types[67]
2530 #define SWIGTYPE_p_wxPaintEvent swig_types[68]
2531 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[69]
2532 #define SWIGTYPE_p_wxPaperSize swig_types[70]
2533 #define SWIGTYPE_p_wxPoint swig_types[71]
2534 #define SWIGTYPE_p_wxProcessEvent swig_types[72]
2535 #define SWIGTYPE_p_wxPyApp swig_types[73]
2536 #define SWIGTYPE_p_wxPyCommandEvent swig_types[74]
2537 #define SWIGTYPE_p_wxPyEvent swig_types[75]
2538 #define SWIGTYPE_p_wxPyImageHandler swig_types[76]
2539 #define SWIGTYPE_p_wxPyProcess swig_types[77]
2540 #define SWIGTYPE_p_wxPySizer swig_types[78]
2541 #define SWIGTYPE_p_wxPyTimer swig_types[79]
2542 #define SWIGTYPE_p_wxPyValidator swig_types[80]
2543 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[81]
2544 #define SWIGTYPE_p_wxRect swig_types[82]
2545 #define SWIGTYPE_p_wxScrollBar swig_types[83]
2546 #define SWIGTYPE_p_wxScrollEvent swig_types[84]
2547 #define SWIGTYPE_p_wxScrollWinEvent swig_types[85]
2548 #define SWIGTYPE_p_wxSetCursorEvent swig_types[86]
2549 #define SWIGTYPE_p_wxShowEvent swig_types[87]
2550 #define SWIGTYPE_p_wxSizeEvent swig_types[88]
2551 #define SWIGTYPE_p_wxSizer swig_types[89]
2552 #define SWIGTYPE_p_wxSizerItem swig_types[90]
2553 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[91]
2554 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[92]
2555 #define SWIGTYPE_p_wxStyledTextCtrl swig_types[93]
2556 #define SWIGTYPE_p_wxStyledTextEvent swig_types[94]
2557 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[95]
2558 #define SWIGTYPE_p_wxSystemOptions swig_types[96]
2559 #define SWIGTYPE_p_wxTIFFHandler swig_types[97]
2560 #define SWIGTYPE_p_wxTimerEvent swig_types[98]
2561 #define SWIGTYPE_p_wxToolTip swig_types[99]
2562 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[100]
2563 #define SWIGTYPE_p_wxValidator swig_types[101]
2564 #define SWIGTYPE_p_wxWindow swig_types[102]
2565 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[103]
2566 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[104]
2567 #define SWIGTYPE_p_wxXPMHandler swig_types[105]
2568 static swig_type_info
*swig_types
[107];
2569 static swig_module_info swig_module
= {swig_types
, 106, 0, 0, 0, 0};
2570 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2571 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2573 /* -------- TYPES TABLE (END) -------- */
2575 #if (PY_VERSION_HEX <= 0x02000000)
2576 # if !defined(SWIG_PYTHON_CLASSIC)
2577 # error "This python version requires to use swig with the '-classic' option"
2580 #if (PY_VERSION_HEX <= 0x02020000)
2581 # error "This python version requires to use swig with the '-nomodern' option"
2583 #if (PY_VERSION_HEX <= 0x02020000)
2584 # error "This python version requires to use swig with the '-nomodernargs' option"
2587 # error "This python version requires to use swig with the '-nofastunpack' option"
2590 /*-----------------------------------------------
2592 ------------------------------------------------*/
2593 #define SWIG_init init_stc
2595 #define SWIG_name "_stc"
2597 #define SWIGVERSION 0x010329
2600 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2601 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2604 #include <stdexcept>
2608 class PyObject_ptr
{
2613 PyObject_ptr() :_obj(0)
2617 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2622 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2624 if (initial_ref
) Py_XINCREF(_obj
);
2627 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2629 Py_XINCREF(item
._obj
);
2640 operator PyObject
*() const
2645 PyObject
*operator->() const
2654 struct PyObject_var
: PyObject_ptr
{
2655 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2657 PyObject_var
& operator = (PyObject
* obj
)
2667 #include "wx/wxPython/wxPython.h"
2668 #include "wx/wxPython/pyclasses.h"
2669 #include <wx/stc/stc.h>
2672 static const wxString
wxPySTCNameStr(wxSTCNameStr
);
2674 #define SWIG_From_long PyInt_FromLong
2677 SWIGINTERNINLINE PyObject
*
2678 SWIG_From_int (int value
)
2680 return SWIG_From_long (value
);
2686 # define LLONG_MIN LONG_LONG_MIN
2689 # define LLONG_MAX LONG_LONG_MAX
2692 # define ULLONG_MAX ULONG_LONG_MAX
2697 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2699 if (PyNumber_Check(obj
)) {
2700 if (val
) *val
= PyInt_AsLong(obj
);
2703 return SWIG_TypeError
;
2708 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2711 int res
= SWIG_AsVal_long (obj
, &v
);
2712 if (SWIG_IsOK(res
)) {
2713 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2714 return SWIG_OverflowError
;
2716 if (val
) *val
= static_cast< int >(v
);
2724 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2726 if (obj
== Py_True
) {
2727 if (val
) *val
= true;
2729 } else if (obj
== Py_False
) {
2730 if (val
) *val
= false;
2734 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2735 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2741 SWIGINTERN swig_type_info
*
2742 SWIG_pchar_descriptor()
2744 static int init
= 0;
2745 static swig_type_info
* info
= 0;
2747 info
= SWIG_TypeQuery("_p_char");
2755 SWIG_AsCharPtrAndSize(PyObject
*obj
, char** cptr
, size_t* psize
, int *alloc
)
2757 if (PyString_Check(obj
)) {
2758 char *cstr
; int len
;
2759 PyString_AsStringAndSize(obj
, &cstr
, &len
);
2763 In python the user should not be able to modify the inner
2764 string representation. To warranty that, if you define
2765 SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
2766 buffer is always returned.
2768 The default behavior is just to return the pointer value,
2771 #if defined(SWIG_PYTHON_SAFE_CSTRINGS)
2772 if (*alloc
!= SWIG_OLDOBJ
)
2774 if (*alloc
== SWIG_NEWOBJ
)
2777 *cptr
= reinterpret_cast< char* >(memcpy((new char[len
+ 1]), cstr
, sizeof(char)*(len
+ 1)));
2778 *alloc
= SWIG_NEWOBJ
;
2782 *alloc
= SWIG_OLDOBJ
;
2785 *cptr
= PyString_AsString(obj
);
2788 if (psize
) *psize
= len
+ 1;
2791 swig_type_info
* pchar_descriptor
= SWIG_pchar_descriptor();
2792 if (pchar_descriptor
) {
2794 if (SWIG_ConvertPtr(obj
, &vptr
, pchar_descriptor
, 0) == SWIG_OK
) {
2795 if (cptr
) *cptr
= (char *) vptr
;
2796 if (psize
) *psize
= vptr
? (strlen((char *)vptr
) + 1) : 0;
2797 if (alloc
) *alloc
= SWIG_OLDOBJ
;
2802 return SWIG_TypeError
;
2811 SWIGINTERN
int STCNameStr_set(PyObject
*) {
2812 SWIG_Error(SWIG_AttributeError
,"Variable STCNameStr is read-only.");
2817 SWIGINTERN PyObject
*STCNameStr_get(void) {
2818 PyObject
*pyobj
= 0;
2822 pyobj
= PyUnicode_FromWideChar((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2824 pyobj
= PyString_FromStringAndSize((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2831 SWIGINTERN PyObject
*_wrap_new_StyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2832 PyObject
*resultobj
= 0;
2833 wxWindow
*arg1
= (wxWindow
*) 0 ;
2834 int arg2
= (int) wxID_ANY
;
2835 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
2836 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
2837 wxSize
const &arg4_defvalue
= wxDefaultSize
;
2838 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
2839 long arg5
= (long) 0 ;
2840 wxString
const &arg6_defvalue
= wxPySTCNameStr
;
2841 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
2842 wxStyledTextCtrl
*result
= 0 ;
2851 bool temp6
= false ;
2852 PyObject
* obj0
= 0 ;
2853 PyObject
* obj1
= 0 ;
2854 PyObject
* obj2
= 0 ;
2855 PyObject
* obj3
= 0 ;
2856 PyObject
* obj4
= 0 ;
2857 PyObject
* obj5
= 0 ;
2858 char * kwnames
[] = {
2859 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2862 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StyledTextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
2863 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2864 if (!SWIG_IsOK(res1
)) {
2865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StyledTextCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
2867 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
2869 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
2870 if (!SWIG_IsOK(ecode2
)) {
2871 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextCtrl" "', expected argument " "2"" of type '" "int""'");
2873 arg2
= static_cast< int >(val2
);
2878 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
2884 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
2888 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
2889 if (!SWIG_IsOK(ecode5
)) {
2890 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_StyledTextCtrl" "', expected argument " "5"" of type '" "long""'");
2892 arg5
= static_cast< long >(val5
);
2896 arg6
= wxString_in_helper(obj5
);
2897 if (arg6
== NULL
) SWIG_fail
;
2902 if (!wxPyCheckForApp()) SWIG_fail
;
2903 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2904 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
2905 wxPyEndAllowThreads(__tstate
);
2906 if (PyErr_Occurred()) SWIG_fail
;
2908 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_NEW
| 0 );
2923 SWIGINTERN PyObject
*_wrap_new_PreStyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
2924 PyObject
*resultobj
= 0;
2925 wxStyledTextCtrl
*result
= 0 ;
2927 if (!SWIG_Python_UnpackTuple(args
,"new_PreStyledTextCtrl",0,0,0)) SWIG_fail
;
2929 if (!wxPyCheckForApp()) SWIG_fail
;
2930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2931 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl();
2932 wxPyEndAllowThreads(__tstate
);
2933 if (PyErr_Occurred()) SWIG_fail
;
2935 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_OWN
| 0 );
2942 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2943 PyObject
*resultobj
= 0;
2944 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
2945 wxWindow
*arg2
= (wxWindow
*) 0 ;
2946 int arg3
= (int) wxID_ANY
;
2947 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2948 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2949 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2950 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2951 long arg6
= (long) 0 ;
2952 wxString
const &arg7_defvalue
= wxSTCNameStr
;
2953 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
2965 bool temp7
= false ;
2966 PyObject
* obj0
= 0 ;
2967 PyObject
* obj1
= 0 ;
2968 PyObject
* obj2
= 0 ;
2969 PyObject
* obj3
= 0 ;
2970 PyObject
* obj4
= 0 ;
2971 PyObject
* obj5
= 0 ;
2972 PyObject
* obj6
= 0 ;
2973 char * kwnames
[] = {
2974 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2977 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StyledTextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
2978 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
2979 if (!SWIG_IsOK(res1
)) {
2980 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Create" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
2982 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
2983 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2984 if (!SWIG_IsOK(res2
)) {
2985 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
2987 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
2989 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
2990 if (!SWIG_IsOK(ecode3
)) {
2991 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Create" "', expected argument " "3"" of type '" "int""'");
2993 arg3
= static_cast< int >(val3
);
2998 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3004 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3008 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
3009 if (!SWIG_IsOK(ecode6
)) {
3010 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_Create" "', expected argument " "6"" of type '" "long""'");
3012 arg6
= static_cast< long >(val6
);
3016 arg7
= wxString_in_helper(obj6
);
3017 if (arg7
== NULL
) SWIG_fail
;
3022 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3023 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3024 wxPyEndAllowThreads(__tstate
);
3025 if (PyErr_Occurred()) SWIG_fail
;
3028 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3044 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3045 PyObject
*resultobj
= 0;
3046 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3047 wxString
*arg2
= 0 ;
3050 bool temp2
= false ;
3051 PyObject
* obj0
= 0 ;
3052 PyObject
* obj1
= 0 ;
3053 char * kwnames
[] = {
3054 (char *) "self",(char *) "text", NULL
3057 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3058 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3059 if (!SWIG_IsOK(res1
)) {
3060 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3062 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3064 arg2
= wxString_in_helper(obj1
);
3065 if (arg2
== NULL
) SWIG_fail
;
3069 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3070 (arg1
)->AddText((wxString
const &)*arg2
);
3071 wxPyEndAllowThreads(__tstate
);
3072 if (PyErr_Occurred()) SWIG_fail
;
3074 resultobj
= SWIG_Py_Void();
3089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3090 PyObject
*resultobj
= 0;
3091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3092 wxMemoryBuffer
*arg2
= 0 ;
3095 bool temp2
= false ;
3096 PyObject
* obj0
= 0 ;
3097 PyObject
* obj1
= 0 ;
3098 char * kwnames
[] = {
3099 (char *) "self",(char *) "data", NULL
3102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddStyledText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3104 if (!SWIG_IsOK(res1
)) {
3105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3107 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3109 if (!PyString_Check(obj1
)) {
3110 PyErr_SetString(PyExc_TypeError
, "String buffer expected");
3113 char* str
= PyString_AS_STRING(obj1
);
3114 int len
= PyString_GET_SIZE(obj1
);
3115 arg2
= new wxMemoryBuffer(len
);
3117 memcpy(arg2
->GetData(), str
, len
);
3118 arg2
->SetDataLen(len
);
3121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3122 (arg1
)->AddStyledText((wxMemoryBuffer
const &)*arg2
);
3123 wxPyEndAllowThreads(__tstate
);
3124 if (PyErr_Occurred()) SWIG_fail
;
3126 resultobj
= SWIG_Py_Void();
3128 if (temp2
) delete arg2
;
3133 if (temp2
) delete arg2
;
3139 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3140 PyObject
*resultobj
= 0;
3141 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3143 wxString
*arg3
= 0 ;
3148 bool temp3
= false ;
3149 PyObject
* obj0
= 0 ;
3150 PyObject
* obj1
= 0 ;
3151 PyObject
* obj2
= 0 ;
3152 char * kwnames
[] = {
3153 (char *) "self",(char *) "pos",(char *) "text", NULL
3156 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3157 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3158 if (!SWIG_IsOK(res1
)) {
3159 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3161 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3162 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3163 if (!SWIG_IsOK(ecode2
)) {
3164 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "2"" of type '" "int""'");
3166 arg2
= static_cast< int >(val2
);
3168 arg3
= wxString_in_helper(obj2
);
3169 if (arg3
== NULL
) SWIG_fail
;
3173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3174 (arg1
)->InsertText(arg2
,(wxString
const &)*arg3
);
3175 wxPyEndAllowThreads(__tstate
);
3176 if (PyErr_Occurred()) SWIG_fail
;
3178 resultobj
= SWIG_Py_Void();
3193 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3194 PyObject
*resultobj
= 0;
3195 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3198 PyObject
*swig_obj
[1] ;
3200 if (!args
) SWIG_fail
;
3202 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3203 if (!SWIG_IsOK(res1
)) {
3204 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3206 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3210 wxPyEndAllowThreads(__tstate
);
3211 if (PyErr_Occurred()) SWIG_fail
;
3213 resultobj
= SWIG_Py_Void();
3220 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearDocumentStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3221 PyObject
*resultobj
= 0;
3222 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3225 PyObject
*swig_obj
[1] ;
3227 if (!args
) SWIG_fail
;
3229 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3230 if (!SWIG_IsOK(res1
)) {
3231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearDocumentStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3236 (arg1
)->ClearDocumentStyle();
3237 wxPyEndAllowThreads(__tstate
);
3238 if (PyErr_Occurred()) SWIG_fail
;
3240 resultobj
= SWIG_Py_Void();
3247 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3248 PyObject
*resultobj
= 0;
3249 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3253 PyObject
*swig_obj
[1] ;
3255 if (!args
) SWIG_fail
;
3257 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3258 if (!SWIG_IsOK(res1
)) {
3259 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3261 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3263 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3264 result
= (int)(arg1
)->GetLength();
3265 wxPyEndAllowThreads(__tstate
);
3266 if (PyErr_Occurred()) SWIG_fail
;
3268 resultobj
= SWIG_From_int(static_cast< int >(result
));
3275 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCharAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3276 PyObject
*resultobj
= 0;
3277 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3284 PyObject
* obj0
= 0 ;
3285 PyObject
* obj1
= 0 ;
3286 char * kwnames
[] = {
3287 (char *) "self",(char *) "pos", NULL
3290 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetCharAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3291 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3292 if (!SWIG_IsOK(res1
)) {
3293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3295 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3296 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3297 if (!SWIG_IsOK(ecode2
)) {
3298 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "2"" of type '" "int""'");
3300 arg2
= static_cast< int >(val2
);
3302 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3303 result
= (int)(arg1
)->GetCharAt(arg2
);
3304 wxPyEndAllowThreads(__tstate
);
3305 if (PyErr_Occurred()) SWIG_fail
;
3307 resultobj
= SWIG_From_int(static_cast< int >(result
));
3314 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3315 PyObject
*resultobj
= 0;
3316 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3320 PyObject
*swig_obj
[1] ;
3322 if (!args
) SWIG_fail
;
3324 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3325 if (!SWIG_IsOK(res1
)) {
3326 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3328 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3331 result
= (int)(arg1
)->GetCurrentPos();
3332 wxPyEndAllowThreads(__tstate
);
3333 if (PyErr_Occurred()) SWIG_fail
;
3335 resultobj
= SWIG_From_int(static_cast< int >(result
));
3342 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3343 PyObject
*resultobj
= 0;
3344 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3348 PyObject
*swig_obj
[1] ;
3350 if (!args
) SWIG_fail
;
3352 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3353 if (!SWIG_IsOK(res1
)) {
3354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3356 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3359 result
= (int)(arg1
)->GetAnchor();
3360 wxPyEndAllowThreads(__tstate
);
3361 if (PyErr_Occurred()) SWIG_fail
;
3363 resultobj
= SWIG_From_int(static_cast< int >(result
));
3370 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3371 PyObject
*resultobj
= 0;
3372 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3379 PyObject
* obj0
= 0 ;
3380 PyObject
* obj1
= 0 ;
3381 char * kwnames
[] = {
3382 (char *) "self",(char *) "pos", NULL
3385 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetStyleAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3386 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3387 if (!SWIG_IsOK(res1
)) {
3388 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3390 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3391 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3392 if (!SWIG_IsOK(ecode2
)) {
3393 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "2"" of type '" "int""'");
3395 arg2
= static_cast< int >(val2
);
3397 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3398 result
= (int)(arg1
)->GetStyleAt(arg2
);
3399 wxPyEndAllowThreads(__tstate
);
3400 if (PyErr_Occurred()) SWIG_fail
;
3402 resultobj
= SWIG_From_int(static_cast< int >(result
));
3409 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Redo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3410 PyObject
*resultobj
= 0;
3411 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3414 PyObject
*swig_obj
[1] ;
3416 if (!args
) SWIG_fail
;
3418 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3419 if (!SWIG_IsOK(res1
)) {
3420 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Redo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3422 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3424 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3426 wxPyEndAllowThreads(__tstate
);
3427 if (PyErr_Occurred()) SWIG_fail
;
3429 resultobj
= SWIG_Py_Void();
3436 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3437 PyObject
*resultobj
= 0;
3438 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3444 PyObject
* obj0
= 0 ;
3445 PyObject
* obj1
= 0 ;
3446 char * kwnames
[] = {
3447 (char *) "self",(char *) "collectUndo", NULL
3450 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUndoCollection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3451 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3452 if (!SWIG_IsOK(res1
)) {
3453 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3455 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3456 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
3457 if (!SWIG_IsOK(ecode2
)) {
3458 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "2"" of type '" "bool""'");
3460 arg2
= static_cast< bool >(val2
);
3462 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3463 (arg1
)->SetUndoCollection(arg2
);
3464 wxPyEndAllowThreads(__tstate
);
3465 if (PyErr_Occurred()) SWIG_fail
;
3467 resultobj
= SWIG_Py_Void();
3474 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3475 PyObject
*resultobj
= 0;
3476 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3479 PyObject
*swig_obj
[1] ;
3481 if (!args
) SWIG_fail
;
3483 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3484 if (!SWIG_IsOK(res1
)) {
3485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3487 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3490 (arg1
)->SelectAll();
3491 wxPyEndAllowThreads(__tstate
);
3492 if (PyErr_Occurred()) SWIG_fail
;
3494 resultobj
= SWIG_Py_Void();
3501 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSavePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3502 PyObject
*resultobj
= 0;
3503 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3506 PyObject
*swig_obj
[1] ;
3508 if (!args
) SWIG_fail
;
3510 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3511 if (!SWIG_IsOK(res1
)) {
3512 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSavePoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3514 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3517 (arg1
)->SetSavePoint();
3518 wxPyEndAllowThreads(__tstate
);
3519 if (PyErr_Occurred()) SWIG_fail
;
3521 resultobj
= SWIG_Py_Void();
3528 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3529 PyObject
*resultobj
= 0;
3530 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3533 wxMemoryBuffer result
;
3540 PyObject
* obj0
= 0 ;
3541 PyObject
* obj1
= 0 ;
3542 PyObject
* obj2
= 0 ;
3543 char * kwnames
[] = {
3544 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
3547 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetStyledText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3548 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3549 if (!SWIG_IsOK(res1
)) {
3550 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3552 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3553 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3554 if (!SWIG_IsOK(ecode2
)) {
3555 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "2"" of type '" "int""'");
3557 arg2
= static_cast< int >(val2
);
3558 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3559 if (!SWIG_IsOK(ecode3
)) {
3560 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "3"" of type '" "int""'");
3562 arg3
= static_cast< int >(val3
);
3564 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3565 result
= (arg1
)->GetStyledText(arg2
,arg3
);
3566 wxPyEndAllowThreads(__tstate
);
3567 if (PyErr_Occurred()) SWIG_fail
;
3570 resultobj
= PyString_FromStringAndSize((char*)(&result
)->GetData(), (&result
)->GetDataLen());
3578 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanRedo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3579 PyObject
*resultobj
= 0;
3580 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3584 PyObject
*swig_obj
[1] ;
3586 if (!args
) SWIG_fail
;
3588 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3589 if (!SWIG_IsOK(res1
)) {
3590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanRedo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3592 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3595 result
= (bool)(arg1
)->CanRedo();
3596 wxPyEndAllowThreads(__tstate
);
3597 if (PyErr_Occurred()) SWIG_fail
;
3600 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3608 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerLineFromHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3609 PyObject
*resultobj
= 0;
3610 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3617 PyObject
* obj0
= 0 ;
3618 PyObject
* obj1
= 0 ;
3619 char * kwnames
[] = {
3620 (char *) "self",(char *) "handle", NULL
3623 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerLineFromHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3624 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3625 if (!SWIG_IsOK(res1
)) {
3626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3628 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3629 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3630 if (!SWIG_IsOK(ecode2
)) {
3631 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "2"" of type '" "int""'");
3633 arg2
= static_cast< int >(val2
);
3635 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3636 result
= (int)(arg1
)->MarkerLineFromHandle(arg2
);
3637 wxPyEndAllowThreads(__tstate
);
3638 if (PyErr_Occurred()) SWIG_fail
;
3640 resultobj
= SWIG_From_int(static_cast< int >(result
));
3647 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3648 PyObject
*resultobj
= 0;
3649 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3655 PyObject
* obj0
= 0 ;
3656 PyObject
* obj1
= 0 ;
3657 char * kwnames
[] = {
3658 (char *) "self",(char *) "handle", NULL
3661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3663 if (!SWIG_IsOK(res1
)) {
3664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3666 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3667 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3668 if (!SWIG_IsOK(ecode2
)) {
3669 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "2"" of type '" "int""'");
3671 arg2
= static_cast< int >(val2
);
3673 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3674 (arg1
)->MarkerDeleteHandle(arg2
);
3675 wxPyEndAllowThreads(__tstate
);
3676 if (PyErr_Occurred()) SWIG_fail
;
3678 resultobj
= SWIG_Py_Void();
3685 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3686 PyObject
*resultobj
= 0;
3687 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3691 PyObject
*swig_obj
[1] ;
3693 if (!args
) SWIG_fail
;
3695 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3696 if (!SWIG_IsOK(res1
)) {
3697 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3699 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3701 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3702 result
= (bool)(arg1
)->GetUndoCollection();
3703 wxPyEndAllowThreads(__tstate
);
3704 if (PyErr_Occurred()) SWIG_fail
;
3707 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3715 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3716 PyObject
*resultobj
= 0;
3717 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3721 PyObject
*swig_obj
[1] ;
3723 if (!args
) SWIG_fail
;
3725 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3726 if (!SWIG_IsOK(res1
)) {
3727 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3729 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3731 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3732 result
= (int)(arg1
)->GetViewWhiteSpace();
3733 wxPyEndAllowThreads(__tstate
);
3734 if (PyErr_Occurred()) SWIG_fail
;
3736 resultobj
= SWIG_From_int(static_cast< int >(result
));
3743 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3744 PyObject
*resultobj
= 0;
3745 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3751 PyObject
* obj0
= 0 ;
3752 PyObject
* obj1
= 0 ;
3753 char * kwnames
[] = {
3754 (char *) "self",(char *) "viewWS", NULL
3757 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewWhiteSpace",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3758 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3759 if (!SWIG_IsOK(res1
)) {
3760 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3762 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3763 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3764 if (!SWIG_IsOK(ecode2
)) {
3765 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "2"" of type '" "int""'");
3767 arg2
= static_cast< int >(val2
);
3769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3770 (arg1
)->SetViewWhiteSpace(arg2
);
3771 wxPyEndAllowThreads(__tstate
);
3772 if (PyErr_Occurred()) SWIG_fail
;
3774 resultobj
= SWIG_Py_Void();
3781 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3782 PyObject
*resultobj
= 0;
3783 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3790 PyObject
* obj0
= 0 ;
3791 PyObject
* obj1
= 0 ;
3792 char * kwnames
[] = {
3793 (char *) "self",(char *) "pt", NULL
3796 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3797 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3798 if (!SWIG_IsOK(res1
)) {
3799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3801 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3803 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPoint
, 0 | 0);
3804 if (!SWIG_IsOK(res2
)) {
3805 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3808 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3810 wxPoint
* temp
= reinterpret_cast< wxPoint
* >(argp2
);
3812 if (SWIG_IsNewObj(res2
)) delete temp
;
3816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3817 result
= (int)(arg1
)->PositionFromPoint(arg2
);
3818 wxPyEndAllowThreads(__tstate
);
3819 if (PyErr_Occurred()) SWIG_fail
;
3821 resultobj
= SWIG_From_int(static_cast< int >(result
));
3828 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPointClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3829 PyObject
*resultobj
= 0;
3830 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3840 PyObject
* obj0
= 0 ;
3841 PyObject
* obj1
= 0 ;
3842 PyObject
* obj2
= 0 ;
3843 char * kwnames
[] = {
3844 (char *) "self",(char *) "x",(char *) "y", NULL
3847 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_PositionFromPointClose",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3848 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3849 if (!SWIG_IsOK(res1
)) {
3850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3852 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3853 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3854 if (!SWIG_IsOK(ecode2
)) {
3855 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "2"" of type '" "int""'");
3857 arg2
= static_cast< int >(val2
);
3858 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3859 if (!SWIG_IsOK(ecode3
)) {
3860 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "3"" of type '" "int""'");
3862 arg3
= static_cast< int >(val3
);
3864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3865 result
= (int)(arg1
)->PositionFromPointClose(arg2
,arg3
);
3866 wxPyEndAllowThreads(__tstate
);
3867 if (PyErr_Occurred()) SWIG_fail
;
3869 resultobj
= SWIG_From_int(static_cast< int >(result
));
3876 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3877 PyObject
*resultobj
= 0;
3878 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3884 PyObject
* obj0
= 0 ;
3885 PyObject
* obj1
= 0 ;
3886 char * kwnames
[] = {
3887 (char *) "self",(char *) "line", NULL
3890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3892 if (!SWIG_IsOK(res1
)) {
3893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3895 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3896 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3897 if (!SWIG_IsOK(ecode2
)) {
3898 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "2"" of type '" "int""'");
3900 arg2
= static_cast< int >(val2
);
3902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3903 (arg1
)->GotoLine(arg2
);
3904 wxPyEndAllowThreads(__tstate
);
3905 if (PyErr_Occurred()) SWIG_fail
;
3907 resultobj
= SWIG_Py_Void();
3914 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3915 PyObject
*resultobj
= 0;
3916 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3922 PyObject
* obj0
= 0 ;
3923 PyObject
* obj1
= 0 ;
3924 char * kwnames
[] = {
3925 (char *) "self",(char *) "pos", NULL
3928 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3929 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3930 if (!SWIG_IsOK(res1
)) {
3931 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3933 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3934 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3935 if (!SWIG_IsOK(ecode2
)) {
3936 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "2"" of type '" "int""'");
3938 arg2
= static_cast< int >(val2
);
3940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3941 (arg1
)->GotoPos(arg2
);
3942 wxPyEndAllowThreads(__tstate
);
3943 if (PyErr_Occurred()) SWIG_fail
;
3945 resultobj
= SWIG_Py_Void();
3952 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3953 PyObject
*resultobj
= 0;
3954 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3960 PyObject
* obj0
= 0 ;
3961 PyObject
* obj1
= 0 ;
3962 char * kwnames
[] = {
3963 (char *) "self",(char *) "posAnchor", NULL
3966 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetAnchor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3967 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3968 if (!SWIG_IsOK(res1
)) {
3969 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3971 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3972 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3973 if (!SWIG_IsOK(ecode2
)) {
3974 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "2"" of type '" "int""'");
3976 arg2
= static_cast< int >(val2
);
3978 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3979 (arg1
)->SetAnchor(arg2
);
3980 wxPyEndAllowThreads(__tstate
);
3981 if (PyErr_Occurred()) SWIG_fail
;
3983 resultobj
= SWIG_Py_Void();
3990 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3991 PyObject
*resultobj
= 0;
3992 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3993 int *arg2
= (int *) 0 ;
3998 int res2
= SWIG_TMPOBJ
;
3999 PyObject
*swig_obj
[1] ;
4002 if (!args
) SWIG_fail
;
4004 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4005 if (!SWIG_IsOK(res1
)) {
4006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4008 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4010 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4011 result
= (arg1
)->GetCurLine(arg2
);
4012 wxPyEndAllowThreads(__tstate
);
4013 if (PyErr_Occurred()) SWIG_fail
;
4017 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4019 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4022 if (SWIG_IsTmpObj(res2
)) {
4023 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4025 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4026 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4034 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndStyled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4035 PyObject
*resultobj
= 0;
4036 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4040 PyObject
*swig_obj
[1] ;
4042 if (!args
) SWIG_fail
;
4044 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4045 if (!SWIG_IsOK(res1
)) {
4046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndStyled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4048 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4051 result
= (int)(arg1
)->GetEndStyled();
4052 wxPyEndAllowThreads(__tstate
);
4053 if (PyErr_Occurred()) SWIG_fail
;
4055 resultobj
= SWIG_From_int(static_cast< int >(result
));
4062 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ConvertEOLs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4063 PyObject
*resultobj
= 0;
4064 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4070 PyObject
* obj0
= 0 ;
4071 PyObject
* obj1
= 0 ;
4072 char * kwnames
[] = {
4073 (char *) "self",(char *) "eolMode", NULL
4076 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ConvertEOLs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4077 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4078 if (!SWIG_IsOK(res1
)) {
4079 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4081 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4082 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4083 if (!SWIG_IsOK(ecode2
)) {
4084 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "2"" of type '" "int""'");
4086 arg2
= static_cast< int >(val2
);
4088 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4089 (arg1
)->ConvertEOLs(arg2
);
4090 wxPyEndAllowThreads(__tstate
);
4091 if (PyErr_Occurred()) SWIG_fail
;
4093 resultobj
= SWIG_Py_Void();
4100 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4101 PyObject
*resultobj
= 0;
4102 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4106 PyObject
*swig_obj
[1] ;
4108 if (!args
) SWIG_fail
;
4110 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4111 if (!SWIG_IsOK(res1
)) {
4112 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4114 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4117 result
= (int)(arg1
)->GetEOLMode();
4118 wxPyEndAllowThreads(__tstate
);
4119 if (PyErr_Occurred()) SWIG_fail
;
4121 resultobj
= SWIG_From_int(static_cast< int >(result
));
4128 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4129 PyObject
*resultobj
= 0;
4130 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4136 PyObject
* obj0
= 0 ;
4137 PyObject
* obj1
= 0 ;
4138 char * kwnames
[] = {
4139 (char *) "self",(char *) "eolMode", NULL
4142 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEOLMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4143 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4144 if (!SWIG_IsOK(res1
)) {
4145 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4147 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4148 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4149 if (!SWIG_IsOK(ecode2
)) {
4150 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "2"" of type '" "int""'");
4152 arg2
= static_cast< int >(val2
);
4154 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4155 (arg1
)->SetEOLMode(arg2
);
4156 wxPyEndAllowThreads(__tstate
);
4157 if (PyErr_Occurred()) SWIG_fail
;
4159 resultobj
= SWIG_Py_Void();
4166 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4167 PyObject
*resultobj
= 0;
4168 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4177 PyObject
* obj0
= 0 ;
4178 PyObject
* obj1
= 0 ;
4179 PyObject
* obj2
= 0 ;
4180 char * kwnames
[] = {
4181 (char *) "self",(char *) "pos",(char *) "mask", NULL
4184 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StartStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4185 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4186 if (!SWIG_IsOK(res1
)) {
4187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4189 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4190 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4191 if (!SWIG_IsOK(ecode2
)) {
4192 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "2"" of type '" "int""'");
4194 arg2
= static_cast< int >(val2
);
4195 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4196 if (!SWIG_IsOK(ecode3
)) {
4197 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "3"" of type '" "int""'");
4199 arg3
= static_cast< int >(val3
);
4201 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4202 (arg1
)->StartStyling(arg2
,arg3
);
4203 wxPyEndAllowThreads(__tstate
);
4204 if (PyErr_Occurred()) SWIG_fail
;
4206 resultobj
= SWIG_Py_Void();
4213 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4214 PyObject
*resultobj
= 0;
4215 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4224 PyObject
* obj0
= 0 ;
4225 PyObject
* obj1
= 0 ;
4226 PyObject
* obj2
= 0 ;
4227 char * kwnames
[] = {
4228 (char *) "self",(char *) "length",(char *) "style", NULL
4231 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4232 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4233 if (!SWIG_IsOK(res1
)) {
4234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4236 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4237 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4238 if (!SWIG_IsOK(ecode2
)) {
4239 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "2"" of type '" "int""'");
4241 arg2
= static_cast< int >(val2
);
4242 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4243 if (!SWIG_IsOK(ecode3
)) {
4244 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "3"" of type '" "int""'");
4246 arg3
= static_cast< int >(val3
);
4248 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4249 (arg1
)->SetStyling(arg2
,arg3
);
4250 wxPyEndAllowThreads(__tstate
);
4251 if (PyErr_Occurred()) SWIG_fail
;
4253 resultobj
= SWIG_Py_Void();
4260 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4261 PyObject
*resultobj
= 0;
4262 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4266 PyObject
*swig_obj
[1] ;
4268 if (!args
) SWIG_fail
;
4270 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4271 if (!SWIG_IsOK(res1
)) {
4272 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4274 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4276 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4277 result
= (bool)(arg1
)->GetBufferedDraw();
4278 wxPyEndAllowThreads(__tstate
);
4279 if (PyErr_Occurred()) SWIG_fail
;
4282 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4290 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4291 PyObject
*resultobj
= 0;
4292 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4298 PyObject
* obj0
= 0 ;
4299 PyObject
* obj1
= 0 ;
4300 char * kwnames
[] = {
4301 (char *) "self",(char *) "buffered", NULL
4304 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBufferedDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4305 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4306 if (!SWIG_IsOK(res1
)) {
4307 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4309 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4310 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4311 if (!SWIG_IsOK(ecode2
)) {
4312 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "2"" of type '" "bool""'");
4314 arg2
= static_cast< bool >(val2
);
4316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4317 (arg1
)->SetBufferedDraw(arg2
);
4318 wxPyEndAllowThreads(__tstate
);
4319 if (PyErr_Occurred()) SWIG_fail
;
4321 resultobj
= SWIG_Py_Void();
4328 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4329 PyObject
*resultobj
= 0;
4330 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4336 PyObject
* obj0
= 0 ;
4337 PyObject
* obj1
= 0 ;
4338 char * kwnames
[] = {
4339 (char *) "self",(char *) "tabWidth", NULL
4342 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4343 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4344 if (!SWIG_IsOK(res1
)) {
4345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4347 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4348 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4349 if (!SWIG_IsOK(ecode2
)) {
4350 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "2"" of type '" "int""'");
4352 arg2
= static_cast< int >(val2
);
4354 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4355 (arg1
)->SetTabWidth(arg2
);
4356 wxPyEndAllowThreads(__tstate
);
4357 if (PyErr_Occurred()) SWIG_fail
;
4359 resultobj
= SWIG_Py_Void();
4366 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4367 PyObject
*resultobj
= 0;
4368 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4372 PyObject
*swig_obj
[1] ;
4374 if (!args
) SWIG_fail
;
4376 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4377 if (!SWIG_IsOK(res1
)) {
4378 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4380 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4382 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4383 result
= (int)(arg1
)->GetTabWidth();
4384 wxPyEndAllowThreads(__tstate
);
4385 if (PyErr_Occurred()) SWIG_fail
;
4387 resultobj
= SWIG_From_int(static_cast< int >(result
));
4394 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4395 PyObject
*resultobj
= 0;
4396 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4402 PyObject
* obj0
= 0 ;
4403 PyObject
* obj1
= 0 ;
4404 char * kwnames
[] = {
4405 (char *) "self",(char *) "codePage", NULL
4408 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCodePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4409 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4410 if (!SWIG_IsOK(res1
)) {
4411 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4413 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4414 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4415 if (!SWIG_IsOK(ecode2
)) {
4416 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "2"" of type '" "int""'");
4418 arg2
= static_cast< int >(val2
);
4420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4421 (arg1
)->SetCodePage(arg2
);
4422 wxPyEndAllowThreads(__tstate
);
4423 if (PyErr_Occurred()) SWIG_fail
;
4425 resultobj
= SWIG_Py_Void();
4432 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4433 PyObject
*resultobj
= 0;
4434 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4437 wxColour
const &arg4_defvalue
= wxNullColour
;
4438 wxColour
*arg4
= (wxColour
*) &arg4_defvalue
;
4439 wxColour
const &arg5_defvalue
= wxNullColour
;
4440 wxColour
*arg5
= (wxColour
*) &arg5_defvalue
;
4449 PyObject
* obj0
= 0 ;
4450 PyObject
* obj1
= 0 ;
4451 PyObject
* obj2
= 0 ;
4452 PyObject
* obj3
= 0 ;
4453 PyObject
* obj4
= 0 ;
4454 char * kwnames
[] = {
4455 (char *) "self",(char *) "markerNumber",(char *) "markerSymbol",(char *) "foreground",(char *) "background", NULL
4458 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:StyledTextCtrl_MarkerDefine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
4459 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4460 if (!SWIG_IsOK(res1
)) {
4461 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4463 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4464 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4465 if (!SWIG_IsOK(ecode2
)) {
4466 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "2"" of type '" "int""'");
4468 arg2
= static_cast< int >(val2
);
4469 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4470 if (!SWIG_IsOK(ecode3
)) {
4471 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "3"" of type '" "int""'");
4473 arg3
= static_cast< int >(val3
);
4477 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
4483 if ( ! wxColour_helper(obj4
, &arg5
)) SWIG_fail
;
4487 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4488 (arg1
)->MarkerDefine(arg2
,arg3
,(wxColour
const &)*arg4
,(wxColour
const &)*arg5
);
4489 wxPyEndAllowThreads(__tstate
);
4490 if (PyErr_Occurred()) SWIG_fail
;
4492 resultobj
= SWIG_Py_Void();
4499 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4500 PyObject
*resultobj
= 0;
4501 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4503 wxColour
*arg3
= 0 ;
4509 PyObject
* obj0
= 0 ;
4510 PyObject
* obj1
= 0 ;
4511 PyObject
* obj2
= 0 ;
4512 char * kwnames
[] = {
4513 (char *) "self",(char *) "markerNumber",(char *) "fore", NULL
4516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4518 if (!SWIG_IsOK(res1
)) {
4519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4521 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4522 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4523 if (!SWIG_IsOK(ecode2
)) {
4524 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "2"" of type '" "int""'");
4526 arg2
= static_cast< int >(val2
);
4529 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4532 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4533 (arg1
)->MarkerSetForeground(arg2
,(wxColour
const &)*arg3
);
4534 wxPyEndAllowThreads(__tstate
);
4535 if (PyErr_Occurred()) SWIG_fail
;
4537 resultobj
= SWIG_Py_Void();
4544 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4545 PyObject
*resultobj
= 0;
4546 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4548 wxColour
*arg3
= 0 ;
4554 PyObject
* obj0
= 0 ;
4555 PyObject
* obj1
= 0 ;
4556 PyObject
* obj2
= 0 ;
4557 char * kwnames
[] = {
4558 (char *) "self",(char *) "markerNumber",(char *) "back", NULL
4561 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4562 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4563 if (!SWIG_IsOK(res1
)) {
4564 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4566 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4567 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4568 if (!SWIG_IsOK(ecode2
)) {
4569 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "2"" of type '" "int""'");
4571 arg2
= static_cast< int >(val2
);
4574 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4577 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4578 (arg1
)->MarkerSetBackground(arg2
,(wxColour
const &)*arg3
);
4579 wxPyEndAllowThreads(__tstate
);
4580 if (PyErr_Occurred()) SWIG_fail
;
4582 resultobj
= SWIG_Py_Void();
4589 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAdd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4590 PyObject
*resultobj
= 0;
4591 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4601 PyObject
* obj0
= 0 ;
4602 PyObject
* obj1
= 0 ;
4603 PyObject
* obj2
= 0 ;
4604 char * kwnames
[] = {
4605 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4608 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAdd",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4609 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4610 if (!SWIG_IsOK(res1
)) {
4611 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4613 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4614 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4615 if (!SWIG_IsOK(ecode2
)) {
4616 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "2"" of type '" "int""'");
4618 arg2
= static_cast< int >(val2
);
4619 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4620 if (!SWIG_IsOK(ecode3
)) {
4621 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "3"" of type '" "int""'");
4623 arg3
= static_cast< int >(val3
);
4625 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4626 result
= (int)(arg1
)->MarkerAdd(arg2
,arg3
);
4627 wxPyEndAllowThreads(__tstate
);
4628 if (PyErr_Occurred()) SWIG_fail
;
4630 resultobj
= SWIG_From_int(static_cast< int >(result
));
4637 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4638 PyObject
*resultobj
= 0;
4639 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4648 PyObject
* obj0
= 0 ;
4649 PyObject
* obj1
= 0 ;
4650 PyObject
* obj2
= 0 ;
4651 char * kwnames
[] = {
4652 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4655 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDelete",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4656 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4657 if (!SWIG_IsOK(res1
)) {
4658 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4660 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4661 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4662 if (!SWIG_IsOK(ecode2
)) {
4663 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "2"" of type '" "int""'");
4665 arg2
= static_cast< int >(val2
);
4666 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4667 if (!SWIG_IsOK(ecode3
)) {
4668 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "3"" of type '" "int""'");
4670 arg3
= static_cast< int >(val3
);
4672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4673 (arg1
)->MarkerDelete(arg2
,arg3
);
4674 wxPyEndAllowThreads(__tstate
);
4675 if (PyErr_Occurred()) SWIG_fail
;
4677 resultobj
= SWIG_Py_Void();
4684 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4685 PyObject
*resultobj
= 0;
4686 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4692 PyObject
* obj0
= 0 ;
4693 PyObject
* obj1
= 0 ;
4694 char * kwnames
[] = {
4695 (char *) "self",(char *) "markerNumber", NULL
4698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteAll",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4700 if (!SWIG_IsOK(res1
)) {
4701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4703 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4704 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4705 if (!SWIG_IsOK(ecode2
)) {
4706 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "2"" of type '" "int""'");
4708 arg2
= static_cast< int >(val2
);
4710 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4711 (arg1
)->MarkerDeleteAll(arg2
);
4712 wxPyEndAllowThreads(__tstate
);
4713 if (PyErr_Occurred()) SWIG_fail
;
4715 resultobj
= SWIG_Py_Void();
4722 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerGet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4723 PyObject
*resultobj
= 0;
4724 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4731 PyObject
* obj0
= 0 ;
4732 PyObject
* obj1
= 0 ;
4733 char * kwnames
[] = {
4734 (char *) "self",(char *) "line", NULL
4737 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerGet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4738 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4739 if (!SWIG_IsOK(res1
)) {
4740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4742 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4743 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4744 if (!SWIG_IsOK(ecode2
)) {
4745 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "2"" of type '" "int""'");
4747 arg2
= static_cast< int >(val2
);
4749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4750 result
= (int)(arg1
)->MarkerGet(arg2
);
4751 wxPyEndAllowThreads(__tstate
);
4752 if (PyErr_Occurred()) SWIG_fail
;
4754 resultobj
= SWIG_From_int(static_cast< int >(result
));
4761 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4762 PyObject
*resultobj
= 0;
4763 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4773 PyObject
* obj0
= 0 ;
4774 PyObject
* obj1
= 0 ;
4775 PyObject
* obj2
= 0 ;
4776 char * kwnames
[] = {
4777 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4780 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4781 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4782 if (!SWIG_IsOK(res1
)) {
4783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4785 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4786 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4787 if (!SWIG_IsOK(ecode2
)) {
4788 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "2"" of type '" "int""'");
4790 arg2
= static_cast< int >(val2
);
4791 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4792 if (!SWIG_IsOK(ecode3
)) {
4793 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "3"" of type '" "int""'");
4795 arg3
= static_cast< int >(val3
);
4797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4798 result
= (int)(arg1
)->MarkerNext(arg2
,arg3
);
4799 wxPyEndAllowThreads(__tstate
);
4800 if (PyErr_Occurred()) SWIG_fail
;
4802 resultobj
= SWIG_From_int(static_cast< int >(result
));
4809 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerPrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4810 PyObject
*resultobj
= 0;
4811 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4821 PyObject
* obj0
= 0 ;
4822 PyObject
* obj1
= 0 ;
4823 PyObject
* obj2
= 0 ;
4824 char * kwnames
[] = {
4825 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4828 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerPrevious",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4829 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4830 if (!SWIG_IsOK(res1
)) {
4831 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4833 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4834 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4835 if (!SWIG_IsOK(ecode2
)) {
4836 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "2"" of type '" "int""'");
4838 arg2
= static_cast< int >(val2
);
4839 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4840 if (!SWIG_IsOK(ecode3
)) {
4841 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "3"" of type '" "int""'");
4843 arg3
= static_cast< int >(val3
);
4845 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4846 result
= (int)(arg1
)->MarkerPrevious(arg2
,arg3
);
4847 wxPyEndAllowThreads(__tstate
);
4848 if (PyErr_Occurred()) SWIG_fail
;
4850 resultobj
= SWIG_From_int(static_cast< int >(result
));
4857 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefineBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4858 PyObject
*resultobj
= 0;
4859 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4861 wxBitmap
*arg3
= 0 ;
4868 PyObject
* obj0
= 0 ;
4869 PyObject
* obj1
= 0 ;
4870 PyObject
* obj2
= 0 ;
4871 char * kwnames
[] = {
4872 (char *) "self",(char *) "markerNumber",(char *) "bmp", NULL
4875 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDefineBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4876 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4877 if (!SWIG_IsOK(res1
)) {
4878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4880 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4881 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4882 if (!SWIG_IsOK(ecode2
)) {
4883 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "2"" of type '" "int""'");
4885 arg2
= static_cast< int >(val2
);
4886 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
4887 if (!SWIG_IsOK(res3
)) {
4888 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4891 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4893 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
4895 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4896 (arg1
)->MarkerDefineBitmap(arg2
,(wxBitmap
const &)*arg3
);
4897 wxPyEndAllowThreads(__tstate
);
4898 if (PyErr_Occurred()) SWIG_fail
;
4900 resultobj
= SWIG_Py_Void();
4907 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAddSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4908 PyObject
*resultobj
= 0;
4909 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4918 PyObject
* obj0
= 0 ;
4919 PyObject
* obj1
= 0 ;
4920 PyObject
* obj2
= 0 ;
4921 char * kwnames
[] = {
4922 (char *) "self",(char *) "line",(char *) "set", NULL
4925 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAddSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4926 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4927 if (!SWIG_IsOK(res1
)) {
4928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4930 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4931 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4932 if (!SWIG_IsOK(ecode2
)) {
4933 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "2"" of type '" "int""'");
4935 arg2
= static_cast< int >(val2
);
4936 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4937 if (!SWIG_IsOK(ecode3
)) {
4938 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "3"" of type '" "int""'");
4940 arg3
= static_cast< int >(val3
);
4942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4943 (arg1
)->MarkerAddSet(arg2
,arg3
);
4944 wxPyEndAllowThreads(__tstate
);
4945 if (PyErr_Occurred()) SWIG_fail
;
4947 resultobj
= SWIG_Py_Void();
4954 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4955 PyObject
*resultobj
= 0;
4956 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4965 PyObject
* obj0
= 0 ;
4966 PyObject
* obj1
= 0 ;
4967 PyObject
* obj2
= 0 ;
4968 char * kwnames
[] = {
4969 (char *) "self",(char *) "margin",(char *) "marginType", NULL
4972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginType",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4974 if (!SWIG_IsOK(res1
)) {
4975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4977 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4978 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4979 if (!SWIG_IsOK(ecode2
)) {
4980 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "2"" of type '" "int""'");
4982 arg2
= static_cast< int >(val2
);
4983 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4984 if (!SWIG_IsOK(ecode3
)) {
4985 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "3"" of type '" "int""'");
4987 arg3
= static_cast< int >(val3
);
4989 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4990 (arg1
)->SetMarginType(arg2
,arg3
);
4991 wxPyEndAllowThreads(__tstate
);
4992 if (PyErr_Occurred()) SWIG_fail
;
4994 resultobj
= SWIG_Py_Void();
5001 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5002 PyObject
*resultobj
= 0;
5003 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5010 PyObject
* obj0
= 0 ;
5011 PyObject
* obj1
= 0 ;
5012 char * kwnames
[] = {
5013 (char *) "self",(char *) "margin", NULL
5016 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5017 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5018 if (!SWIG_IsOK(res1
)) {
5019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5021 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5022 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5023 if (!SWIG_IsOK(ecode2
)) {
5024 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "2"" of type '" "int""'");
5026 arg2
= static_cast< int >(val2
);
5028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5029 result
= (int)(arg1
)->GetMarginType(arg2
);
5030 wxPyEndAllowThreads(__tstate
);
5031 if (PyErr_Occurred()) SWIG_fail
;
5033 resultobj
= SWIG_From_int(static_cast< int >(result
));
5040 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5041 PyObject
*resultobj
= 0;
5042 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5051 PyObject
* obj0
= 0 ;
5052 PyObject
* obj1
= 0 ;
5053 PyObject
* obj2
= 0 ;
5054 char * kwnames
[] = {
5055 (char *) "self",(char *) "margin",(char *) "pixelWidth", NULL
5058 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5059 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5060 if (!SWIG_IsOK(res1
)) {
5061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5063 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5064 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5065 if (!SWIG_IsOK(ecode2
)) {
5066 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5068 arg2
= static_cast< int >(val2
);
5069 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5070 if (!SWIG_IsOK(ecode3
)) {
5071 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "3"" of type '" "int""'");
5073 arg3
= static_cast< int >(val3
);
5075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5076 (arg1
)->SetMarginWidth(arg2
,arg3
);
5077 wxPyEndAllowThreads(__tstate
);
5078 if (PyErr_Occurred()) SWIG_fail
;
5080 resultobj
= SWIG_Py_Void();
5087 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5088 PyObject
*resultobj
= 0;
5089 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5096 PyObject
* obj0
= 0 ;
5097 PyObject
* obj1
= 0 ;
5098 char * kwnames
[] = {
5099 (char *) "self",(char *) "margin", NULL
5102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5104 if (!SWIG_IsOK(res1
)) {
5105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5107 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5108 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5109 if (!SWIG_IsOK(ecode2
)) {
5110 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5112 arg2
= static_cast< int >(val2
);
5114 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5115 result
= (int)(arg1
)->GetMarginWidth(arg2
);
5116 wxPyEndAllowThreads(__tstate
);
5117 if (PyErr_Occurred()) SWIG_fail
;
5119 resultobj
= SWIG_From_int(static_cast< int >(result
));
5126 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5127 PyObject
*resultobj
= 0;
5128 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5137 PyObject
* obj0
= 0 ;
5138 PyObject
* obj1
= 0 ;
5139 PyObject
* obj2
= 0 ;
5140 char * kwnames
[] = {
5141 (char *) "self",(char *) "margin",(char *) "mask", NULL
5144 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginMask",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5145 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5146 if (!SWIG_IsOK(res1
)) {
5147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5149 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5150 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5151 if (!SWIG_IsOK(ecode2
)) {
5152 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "2"" of type '" "int""'");
5154 arg2
= static_cast< int >(val2
);
5155 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5156 if (!SWIG_IsOK(ecode3
)) {
5157 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "3"" of type '" "int""'");
5159 arg3
= static_cast< int >(val3
);
5161 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5162 (arg1
)->SetMarginMask(arg2
,arg3
);
5163 wxPyEndAllowThreads(__tstate
);
5164 if (PyErr_Occurred()) SWIG_fail
;
5166 resultobj
= SWIG_Py_Void();
5173 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5174 PyObject
*resultobj
= 0;
5175 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5182 PyObject
* obj0
= 0 ;
5183 PyObject
* obj1
= 0 ;
5184 char * kwnames
[] = {
5185 (char *) "self",(char *) "margin", NULL
5188 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5189 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5190 if (!SWIG_IsOK(res1
)) {
5191 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5193 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5194 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5195 if (!SWIG_IsOK(ecode2
)) {
5196 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "2"" of type '" "int""'");
5198 arg2
= static_cast< int >(val2
);
5200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5201 result
= (int)(arg1
)->GetMarginMask(arg2
);
5202 wxPyEndAllowThreads(__tstate
);
5203 if (PyErr_Occurred()) SWIG_fail
;
5205 resultobj
= SWIG_From_int(static_cast< int >(result
));
5212 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5213 PyObject
*resultobj
= 0;
5214 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5223 PyObject
* obj0
= 0 ;
5224 PyObject
* obj1
= 0 ;
5225 PyObject
* obj2
= 0 ;
5226 char * kwnames
[] = {
5227 (char *) "self",(char *) "margin",(char *) "sensitive", NULL
5230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginSensitive",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5232 if (!SWIG_IsOK(res1
)) {
5233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5235 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5236 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5237 if (!SWIG_IsOK(ecode2
)) {
5238 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5240 arg2
= static_cast< int >(val2
);
5241 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5242 if (!SWIG_IsOK(ecode3
)) {
5243 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "3"" of type '" "bool""'");
5245 arg3
= static_cast< bool >(val3
);
5247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5248 (arg1
)->SetMarginSensitive(arg2
,arg3
);
5249 wxPyEndAllowThreads(__tstate
);
5250 if (PyErr_Occurred()) SWIG_fail
;
5252 resultobj
= SWIG_Py_Void();
5259 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5260 PyObject
*resultobj
= 0;
5261 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5268 PyObject
* obj0
= 0 ;
5269 PyObject
* obj1
= 0 ;
5270 char * kwnames
[] = {
5271 (char *) "self",(char *) "margin", NULL
5274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginSensitive",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5276 if (!SWIG_IsOK(res1
)) {
5277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5279 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5280 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5281 if (!SWIG_IsOK(ecode2
)) {
5282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5284 arg2
= static_cast< int >(val2
);
5286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5287 result
= (bool)(arg1
)->GetMarginSensitive(arg2
);
5288 wxPyEndAllowThreads(__tstate
);
5289 if (PyErr_Occurred()) SWIG_fail
;
5292 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5300 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5301 PyObject
*resultobj
= 0;
5302 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5305 PyObject
*swig_obj
[1] ;
5307 if (!args
) SWIG_fail
;
5309 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5310 if (!SWIG_IsOK(res1
)) {
5311 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5313 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5316 (arg1
)->StyleClearAll();
5317 wxPyEndAllowThreads(__tstate
);
5318 if (PyErr_Occurred()) SWIG_fail
;
5320 resultobj
= SWIG_Py_Void();
5327 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5328 PyObject
*resultobj
= 0;
5329 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5331 wxColour
*arg3
= 0 ;
5337 PyObject
* obj0
= 0 ;
5338 PyObject
* obj1
= 0 ;
5339 PyObject
* obj2
= 0 ;
5340 char * kwnames
[] = {
5341 (char *) "self",(char *) "style",(char *) "fore", NULL
5344 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5345 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5346 if (!SWIG_IsOK(res1
)) {
5347 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5349 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5350 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5351 if (!SWIG_IsOK(ecode2
)) {
5352 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "2"" of type '" "int""'");
5354 arg2
= static_cast< int >(val2
);
5357 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5361 (arg1
)->StyleSetForeground(arg2
,(wxColour
const &)*arg3
);
5362 wxPyEndAllowThreads(__tstate
);
5363 if (PyErr_Occurred()) SWIG_fail
;
5365 resultobj
= SWIG_Py_Void();
5372 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5373 PyObject
*resultobj
= 0;
5374 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5376 wxColour
*arg3
= 0 ;
5382 PyObject
* obj0
= 0 ;
5383 PyObject
* obj1
= 0 ;
5384 PyObject
* obj2
= 0 ;
5385 char * kwnames
[] = {
5386 (char *) "self",(char *) "style",(char *) "back", NULL
5389 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5390 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5391 if (!SWIG_IsOK(res1
)) {
5392 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5394 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5395 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5396 if (!SWIG_IsOK(ecode2
)) {
5397 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "2"" of type '" "int""'");
5399 arg2
= static_cast< int >(val2
);
5402 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5406 (arg1
)->StyleSetBackground(arg2
,(wxColour
const &)*arg3
);
5407 wxPyEndAllowThreads(__tstate
);
5408 if (PyErr_Occurred()) SWIG_fail
;
5410 resultobj
= SWIG_Py_Void();
5417 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5418 PyObject
*resultobj
= 0;
5419 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5428 PyObject
* obj0
= 0 ;
5429 PyObject
* obj1
= 0 ;
5430 PyObject
* obj2
= 0 ;
5431 char * kwnames
[] = {
5432 (char *) "self",(char *) "style",(char *) "bold", NULL
5435 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBold",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5436 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5437 if (!SWIG_IsOK(res1
)) {
5438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5440 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5441 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5442 if (!SWIG_IsOK(ecode2
)) {
5443 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "2"" of type '" "int""'");
5445 arg2
= static_cast< int >(val2
);
5446 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5447 if (!SWIG_IsOK(ecode3
)) {
5448 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "3"" of type '" "bool""'");
5450 arg3
= static_cast< bool >(val3
);
5452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5453 (arg1
)->StyleSetBold(arg2
,arg3
);
5454 wxPyEndAllowThreads(__tstate
);
5455 if (PyErr_Occurred()) SWIG_fail
;
5457 resultobj
= SWIG_Py_Void();
5464 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetItalic(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5465 PyObject
*resultobj
= 0;
5466 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5475 PyObject
* obj0
= 0 ;
5476 PyObject
* obj1
= 0 ;
5477 PyObject
* obj2
= 0 ;
5478 char * kwnames
[] = {
5479 (char *) "self",(char *) "style",(char *) "italic", NULL
5482 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetItalic",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5483 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5484 if (!SWIG_IsOK(res1
)) {
5485 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5487 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5488 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5489 if (!SWIG_IsOK(ecode2
)) {
5490 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "2"" of type '" "int""'");
5492 arg2
= static_cast< int >(val2
);
5493 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5494 if (!SWIG_IsOK(ecode3
)) {
5495 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "3"" of type '" "bool""'");
5497 arg3
= static_cast< bool >(val3
);
5499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5500 (arg1
)->StyleSetItalic(arg2
,arg3
);
5501 wxPyEndAllowThreads(__tstate
);
5502 if (PyErr_Occurred()) SWIG_fail
;
5504 resultobj
= SWIG_Py_Void();
5511 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5512 PyObject
*resultobj
= 0;
5513 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5522 PyObject
* obj0
= 0 ;
5523 PyObject
* obj1
= 0 ;
5524 PyObject
* obj2
= 0 ;
5525 char * kwnames
[] = {
5526 (char *) "self",(char *) "style",(char *) "sizePoints", NULL
5529 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5530 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5531 if (!SWIG_IsOK(res1
)) {
5532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5534 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5535 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5536 if (!SWIG_IsOK(ecode2
)) {
5537 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "2"" of type '" "int""'");
5539 arg2
= static_cast< int >(val2
);
5540 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5541 if (!SWIG_IsOK(ecode3
)) {
5542 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "3"" of type '" "int""'");
5544 arg3
= static_cast< int >(val3
);
5546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5547 (arg1
)->StyleSetSize(arg2
,arg3
);
5548 wxPyEndAllowThreads(__tstate
);
5549 if (PyErr_Occurred()) SWIG_fail
;
5551 resultobj
= SWIG_Py_Void();
5558 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5559 PyObject
*resultobj
= 0;
5560 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5562 wxString
*arg3
= 0 ;
5567 bool temp3
= false ;
5568 PyObject
* obj0
= 0 ;
5569 PyObject
* obj1
= 0 ;
5570 PyObject
* obj2
= 0 ;
5571 char * kwnames
[] = {
5572 (char *) "self",(char *) "style",(char *) "fontName", NULL
5575 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFaceName",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5576 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5577 if (!SWIG_IsOK(res1
)) {
5578 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5580 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5581 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5582 if (!SWIG_IsOK(ecode2
)) {
5583 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "2"" of type '" "int""'");
5585 arg2
= static_cast< int >(val2
);
5587 arg3
= wxString_in_helper(obj2
);
5588 if (arg3
== NULL
) SWIG_fail
;
5592 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5593 (arg1
)->StyleSetFaceName(arg2
,(wxString
const &)*arg3
);
5594 wxPyEndAllowThreads(__tstate
);
5595 if (PyErr_Occurred()) SWIG_fail
;
5597 resultobj
= SWIG_Py_Void();
5612 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetEOLFilled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5613 PyObject
*resultobj
= 0;
5614 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5623 PyObject
* obj0
= 0 ;
5624 PyObject
* obj1
= 0 ;
5625 PyObject
* obj2
= 0 ;
5626 char * kwnames
[] = {
5627 (char *) "self",(char *) "style",(char *) "filled", NULL
5630 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetEOLFilled",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5631 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5632 if (!SWIG_IsOK(res1
)) {
5633 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5635 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5636 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5637 if (!SWIG_IsOK(ecode2
)) {
5638 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "2"" of type '" "int""'");
5640 arg2
= static_cast< int >(val2
);
5641 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5642 if (!SWIG_IsOK(ecode3
)) {
5643 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "3"" of type '" "bool""'");
5645 arg3
= static_cast< bool >(val3
);
5647 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5648 (arg1
)->StyleSetEOLFilled(arg2
,arg3
);
5649 wxPyEndAllowThreads(__tstate
);
5650 if (PyErr_Occurred()) SWIG_fail
;
5652 resultobj
= SWIG_Py_Void();
5659 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleResetDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5660 PyObject
*resultobj
= 0;
5661 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5664 PyObject
*swig_obj
[1] ;
5666 if (!args
) SWIG_fail
;
5668 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5669 if (!SWIG_IsOK(res1
)) {
5670 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleResetDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5672 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5674 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5675 (arg1
)->StyleResetDefault();
5676 wxPyEndAllowThreads(__tstate
);
5677 if (PyErr_Occurred()) SWIG_fail
;
5679 resultobj
= SWIG_Py_Void();
5686 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5687 PyObject
*resultobj
= 0;
5688 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5697 PyObject
* obj0
= 0 ;
5698 PyObject
* obj1
= 0 ;
5699 PyObject
* obj2
= 0 ;
5700 char * kwnames
[] = {
5701 (char *) "self",(char *) "style",(char *) "underline", NULL
5704 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetUnderline",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5705 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5706 if (!SWIG_IsOK(res1
)) {
5707 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5709 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5710 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5711 if (!SWIG_IsOK(ecode2
)) {
5712 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "2"" of type '" "int""'");
5714 arg2
= static_cast< int >(val2
);
5715 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5716 if (!SWIG_IsOK(ecode3
)) {
5717 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "3"" of type '" "bool""'");
5719 arg3
= static_cast< bool >(val3
);
5721 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5722 (arg1
)->StyleSetUnderline(arg2
,arg3
);
5723 wxPyEndAllowThreads(__tstate
);
5724 if (PyErr_Occurred()) SWIG_fail
;
5726 resultobj
= SWIG_Py_Void();
5733 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5734 PyObject
*resultobj
= 0;
5735 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5744 PyObject
* obj0
= 0 ;
5745 PyObject
* obj1
= 0 ;
5746 PyObject
* obj2
= 0 ;
5747 char * kwnames
[] = {
5748 (char *) "self",(char *) "style",(char *) "caseForce", NULL
5751 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCase",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5752 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5753 if (!SWIG_IsOK(res1
)) {
5754 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5756 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5757 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5758 if (!SWIG_IsOK(ecode2
)) {
5759 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "2"" of type '" "int""'");
5761 arg2
= static_cast< int >(val2
);
5762 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5763 if (!SWIG_IsOK(ecode3
)) {
5764 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "3"" of type '" "int""'");
5766 arg3
= static_cast< int >(val3
);
5768 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5769 (arg1
)->StyleSetCase(arg2
,arg3
);
5770 wxPyEndAllowThreads(__tstate
);
5771 if (PyErr_Occurred()) SWIG_fail
;
5773 resultobj
= SWIG_Py_Void();
5780 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetHotSpot(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5781 PyObject
*resultobj
= 0;
5782 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5791 PyObject
* obj0
= 0 ;
5792 PyObject
* obj1
= 0 ;
5793 PyObject
* obj2
= 0 ;
5794 char * kwnames
[] = {
5795 (char *) "self",(char *) "style",(char *) "hotspot", NULL
5798 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetHotSpot",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5799 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5800 if (!SWIG_IsOK(res1
)) {
5801 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5803 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5804 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5805 if (!SWIG_IsOK(ecode2
)) {
5806 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "2"" of type '" "int""'");
5808 arg2
= static_cast< int >(val2
);
5809 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5810 if (!SWIG_IsOK(ecode3
)) {
5811 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "3"" of type '" "bool""'");
5813 arg3
= static_cast< bool >(val3
);
5815 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5816 (arg1
)->StyleSetHotSpot(arg2
,arg3
);
5817 wxPyEndAllowThreads(__tstate
);
5818 if (PyErr_Occurred()) SWIG_fail
;
5820 resultobj
= SWIG_Py_Void();
5827 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5828 PyObject
*resultobj
= 0;
5829 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5831 wxColour
*arg3
= 0 ;
5837 PyObject
* obj0
= 0 ;
5838 PyObject
* obj1
= 0 ;
5839 PyObject
* obj2
= 0 ;
5840 char * kwnames
[] = {
5841 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
5844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5846 if (!SWIG_IsOK(res1
)) {
5847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5849 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5850 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5851 if (!SWIG_IsOK(ecode2
)) {
5852 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "2"" of type '" "bool""'");
5854 arg2
= static_cast< bool >(val2
);
5857 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5861 (arg1
)->SetSelForeground(arg2
,(wxColour
const &)*arg3
);
5862 wxPyEndAllowThreads(__tstate
);
5863 if (PyErr_Occurred()) SWIG_fail
;
5865 resultobj
= SWIG_Py_Void();
5872 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5873 PyObject
*resultobj
= 0;
5874 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5876 wxColour
*arg3
= 0 ;
5882 PyObject
* obj0
= 0 ;
5883 PyObject
* obj1
= 0 ;
5884 PyObject
* obj2
= 0 ;
5885 char * kwnames
[] = {
5886 (char *) "self",(char *) "useSetting",(char *) "back", NULL
5889 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5890 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5891 if (!SWIG_IsOK(res1
)) {
5892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5894 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5895 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5896 if (!SWIG_IsOK(ecode2
)) {
5897 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "2"" of type '" "bool""'");
5899 arg2
= static_cast< bool >(val2
);
5902 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5906 (arg1
)->SetSelBackground(arg2
,(wxColour
const &)*arg3
);
5907 wxPyEndAllowThreads(__tstate
);
5908 if (PyErr_Occurred()) SWIG_fail
;
5910 resultobj
= SWIG_Py_Void();
5917 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5918 PyObject
*resultobj
= 0;
5919 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5920 wxColour
*arg2
= 0 ;
5924 PyObject
* obj0
= 0 ;
5925 PyObject
* obj1
= 0 ;
5926 char * kwnames
[] = {
5927 (char *) "self",(char *) "fore", NULL
5930 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5931 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5932 if (!SWIG_IsOK(res1
)) {
5933 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5935 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5938 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
5941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5942 (arg1
)->SetCaretForeground((wxColour
const &)*arg2
);
5943 wxPyEndAllowThreads(__tstate
);
5944 if (PyErr_Occurred()) SWIG_fail
;
5946 resultobj
= SWIG_Py_Void();
5953 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyAssign(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5954 PyObject
*resultobj
= 0;
5955 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5967 PyObject
* obj0
= 0 ;
5968 PyObject
* obj1
= 0 ;
5969 PyObject
* obj2
= 0 ;
5970 PyObject
* obj3
= 0 ;
5971 char * kwnames
[] = {
5972 (char *) "self",(char *) "key",(char *) "modifiers",(char *) "cmd", NULL
5975 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_CmdKeyAssign",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
5976 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5977 if (!SWIG_IsOK(res1
)) {
5978 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5980 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5981 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5982 if (!SWIG_IsOK(ecode2
)) {
5983 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "2"" of type '" "int""'");
5985 arg2
= static_cast< int >(val2
);
5986 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5987 if (!SWIG_IsOK(ecode3
)) {
5988 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "3"" of type '" "int""'");
5990 arg3
= static_cast< int >(val3
);
5991 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
5992 if (!SWIG_IsOK(ecode4
)) {
5993 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "4"" of type '" "int""'");
5995 arg4
= static_cast< int >(val4
);
5997 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5998 (arg1
)->CmdKeyAssign(arg2
,arg3
,arg4
);
5999 wxPyEndAllowThreads(__tstate
);
6000 if (PyErr_Occurred()) SWIG_fail
;
6002 resultobj
= SWIG_Py_Void();
6009 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6010 PyObject
*resultobj
= 0;
6011 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6020 PyObject
* obj0
= 0 ;
6021 PyObject
* obj1
= 0 ;
6022 PyObject
* obj2
= 0 ;
6023 char * kwnames
[] = {
6024 (char *) "self",(char *) "key",(char *) "modifiers", NULL
6027 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CmdKeyClear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6028 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6029 if (!SWIG_IsOK(res1
)) {
6030 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6032 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6033 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6034 if (!SWIG_IsOK(ecode2
)) {
6035 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "2"" of type '" "int""'");
6037 arg2
= static_cast< int >(val2
);
6038 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6039 if (!SWIG_IsOK(ecode3
)) {
6040 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "3"" of type '" "int""'");
6042 arg3
= static_cast< int >(val3
);
6044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6045 (arg1
)->CmdKeyClear(arg2
,arg3
);
6046 wxPyEndAllowThreads(__tstate
);
6047 if (PyErr_Occurred()) SWIG_fail
;
6049 resultobj
= SWIG_Py_Void();
6056 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6057 PyObject
*resultobj
= 0;
6058 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6061 PyObject
*swig_obj
[1] ;
6063 if (!args
) SWIG_fail
;
6065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6066 if (!SWIG_IsOK(res1
)) {
6067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6069 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6072 (arg1
)->CmdKeyClearAll();
6073 wxPyEndAllowThreads(__tstate
);
6074 if (PyErr_Occurred()) SWIG_fail
;
6076 resultobj
= SWIG_Py_Void();
6083 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBytes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6084 PyObject
*resultobj
= 0;
6085 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6087 char *arg3
= (char *) 0 ;
6095 PyObject
* obj0
= 0 ;
6096 PyObject
* obj1
= 0 ;
6097 PyObject
* obj2
= 0 ;
6098 char * kwnames
[] = {
6099 (char *) "self",(char *) "length",(char *) "styleBytes", NULL
6102 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyleBytes",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6103 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6104 if (!SWIG_IsOK(res1
)) {
6105 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6107 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6108 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6109 if (!SWIG_IsOK(ecode2
)) {
6110 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "2"" of type '" "int""'");
6112 arg2
= static_cast< int >(val2
);
6113 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
6114 if (!SWIG_IsOK(res3
)) {
6115 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "3"" of type '" "char *""'");
6119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6120 (arg1
)->SetStyleBytes(arg2
,arg3
);
6121 wxPyEndAllowThreads(__tstate
);
6122 if (PyErr_Occurred()) SWIG_fail
;
6124 resultobj
= SWIG_Py_Void();
6125 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6128 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6133 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6134 PyObject
*resultobj
= 0;
6135 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6144 PyObject
* obj0
= 0 ;
6145 PyObject
* obj1
= 0 ;
6146 PyObject
* obj2
= 0 ;
6147 char * kwnames
[] = {
6148 (char *) "self",(char *) "style",(char *) "visible", NULL
6151 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6152 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6153 if (!SWIG_IsOK(res1
)) {
6154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6156 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6157 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6158 if (!SWIG_IsOK(ecode2
)) {
6159 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "2"" of type '" "int""'");
6161 arg2
= static_cast< int >(val2
);
6162 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6163 if (!SWIG_IsOK(ecode3
)) {
6164 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "3"" of type '" "bool""'");
6166 arg3
= static_cast< bool >(val3
);
6168 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6169 (arg1
)->StyleSetVisible(arg2
,arg3
);
6170 wxPyEndAllowThreads(__tstate
);
6171 if (PyErr_Occurred()) SWIG_fail
;
6173 resultobj
= SWIG_Py_Void();
6180 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6181 PyObject
*resultobj
= 0;
6182 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6186 PyObject
*swig_obj
[1] ;
6188 if (!args
) SWIG_fail
;
6190 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6191 if (!SWIG_IsOK(res1
)) {
6192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6194 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6196 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6197 result
= (int)(arg1
)->GetCaretPeriod();
6198 wxPyEndAllowThreads(__tstate
);
6199 if (PyErr_Occurred()) SWIG_fail
;
6201 resultobj
= SWIG_From_int(static_cast< int >(result
));
6208 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6209 PyObject
*resultobj
= 0;
6210 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6216 PyObject
* obj0
= 0 ;
6217 PyObject
* obj1
= 0 ;
6218 char * kwnames
[] = {
6219 (char *) "self",(char *) "periodMilliseconds", NULL
6222 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretPeriod",kwnames
,&obj0
,&obj1
)) 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_SetCaretPeriod" "', 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_SetCaretPeriod" "', expected argument " "2"" of type '" "int""'");
6232 arg2
= static_cast< int >(val2
);
6234 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6235 (arg1
)->SetCaretPeriod(arg2
);
6236 wxPyEndAllowThreads(__tstate
);
6237 if (PyErr_Occurred()) SWIG_fail
;
6239 resultobj
= SWIG_Py_Void();
6246 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWordChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6247 PyObject
*resultobj
= 0;
6248 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6249 wxString
*arg2
= 0 ;
6252 bool temp2
= false ;
6253 PyObject
* obj0
= 0 ;
6254 PyObject
* obj1
= 0 ;
6255 char * kwnames
[] = {
6256 (char *) "self",(char *) "characters", NULL
6259 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWordChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6260 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6261 if (!SWIG_IsOK(res1
)) {
6262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWordChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6264 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6266 arg2
= wxString_in_helper(obj1
);
6267 if (arg2
== NULL
) SWIG_fail
;
6271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6272 (arg1
)->SetWordChars((wxString
const &)*arg2
);
6273 wxPyEndAllowThreads(__tstate
);
6274 if (PyErr_Occurred()) SWIG_fail
;
6276 resultobj
= SWIG_Py_Void();
6291 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BeginUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6292 PyObject
*resultobj
= 0;
6293 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6296 PyObject
*swig_obj
[1] ;
6298 if (!args
) SWIG_fail
;
6300 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6301 if (!SWIG_IsOK(res1
)) {
6302 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BeginUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6304 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6306 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6307 (arg1
)->BeginUndoAction();
6308 wxPyEndAllowThreads(__tstate
);
6309 if (PyErr_Occurred()) SWIG_fail
;
6311 resultobj
= SWIG_Py_Void();
6318 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EndUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6319 PyObject
*resultobj
= 0;
6320 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6323 PyObject
*swig_obj
[1] ;
6325 if (!args
) SWIG_fail
;
6327 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6328 if (!SWIG_IsOK(res1
)) {
6329 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EndUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6331 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6333 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6334 (arg1
)->EndUndoAction();
6335 wxPyEndAllowThreads(__tstate
);
6336 if (PyErr_Occurred()) SWIG_fail
;
6338 resultobj
= SWIG_Py_Void();
6345 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6346 PyObject
*resultobj
= 0;
6347 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6356 PyObject
* obj0
= 0 ;
6357 PyObject
* obj1
= 0 ;
6358 PyObject
* obj2
= 0 ;
6359 char * kwnames
[] = {
6360 (char *) "self",(char *) "indic",(char *) "style", NULL
6363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6365 if (!SWIG_IsOK(res1
)) {
6366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6368 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6369 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6370 if (!SWIG_IsOK(ecode2
)) {
6371 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "2"" of type '" "int""'");
6373 arg2
= static_cast< int >(val2
);
6374 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6375 if (!SWIG_IsOK(ecode3
)) {
6376 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "3"" of type '" "int""'");
6378 arg3
= static_cast< int >(val3
);
6380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6381 (arg1
)->IndicatorSetStyle(arg2
,arg3
);
6382 wxPyEndAllowThreads(__tstate
);
6383 if (PyErr_Occurred()) SWIG_fail
;
6385 resultobj
= SWIG_Py_Void();
6392 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6393 PyObject
*resultobj
= 0;
6394 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6401 PyObject
* obj0
= 0 ;
6402 PyObject
* obj1
= 0 ;
6403 char * kwnames
[] = {
6404 (char *) "self",(char *) "indic", NULL
6407 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6408 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6409 if (!SWIG_IsOK(res1
)) {
6410 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6412 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6413 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6414 if (!SWIG_IsOK(ecode2
)) {
6415 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "2"" of type '" "int""'");
6417 arg2
= static_cast< int >(val2
);
6419 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6420 result
= (int)(arg1
)->IndicatorGetStyle(arg2
);
6421 wxPyEndAllowThreads(__tstate
);
6422 if (PyErr_Occurred()) SWIG_fail
;
6424 resultobj
= SWIG_From_int(static_cast< int >(result
));
6431 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6432 PyObject
*resultobj
= 0;
6433 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6435 wxColour
*arg3
= 0 ;
6441 PyObject
* obj0
= 0 ;
6442 PyObject
* obj1
= 0 ;
6443 PyObject
* obj2
= 0 ;
6444 char * kwnames
[] = {
6445 (char *) "self",(char *) "indic",(char *) "fore", NULL
6448 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6449 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6450 if (!SWIG_IsOK(res1
)) {
6451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6453 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6454 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6455 if (!SWIG_IsOK(ecode2
)) {
6456 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "2"" of type '" "int""'");
6458 arg2
= static_cast< int >(val2
);
6461 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6465 (arg1
)->IndicatorSetForeground(arg2
,(wxColour
const &)*arg3
);
6466 wxPyEndAllowThreads(__tstate
);
6467 if (PyErr_Occurred()) SWIG_fail
;
6469 resultobj
= SWIG_Py_Void();
6476 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6477 PyObject
*resultobj
= 0;
6478 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6485 PyObject
* obj0
= 0 ;
6486 PyObject
* obj1
= 0 ;
6487 char * kwnames
[] = {
6488 (char *) "self",(char *) "indic", NULL
6491 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6492 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6493 if (!SWIG_IsOK(res1
)) {
6494 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6496 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6497 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6498 if (!SWIG_IsOK(ecode2
)) {
6499 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "2"" of type '" "int""'");
6501 arg2
= static_cast< int >(val2
);
6503 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6504 result
= (arg1
)->IndicatorGetForeground(arg2
);
6505 wxPyEndAllowThreads(__tstate
);
6506 if (PyErr_Occurred()) SWIG_fail
;
6508 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6516 PyObject
*resultobj
= 0;
6517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6519 wxColour
*arg3
= 0 ;
6525 PyObject
* obj0
= 0 ;
6526 PyObject
* obj1
= 0 ;
6527 PyObject
* obj2
= 0 ;
6528 char * kwnames
[] = {
6529 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
6532 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6533 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6534 if (!SWIG_IsOK(res1
)) {
6535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6537 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6538 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6539 if (!SWIG_IsOK(ecode2
)) {
6540 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "2"" of type '" "bool""'");
6542 arg2
= static_cast< bool >(val2
);
6545 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6548 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6549 (arg1
)->SetWhitespaceForeground(arg2
,(wxColour
const &)*arg3
);
6550 wxPyEndAllowThreads(__tstate
);
6551 if (PyErr_Occurred()) SWIG_fail
;
6553 resultobj
= SWIG_Py_Void();
6560 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6561 PyObject
*resultobj
= 0;
6562 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6564 wxColour
*arg3
= 0 ;
6570 PyObject
* obj0
= 0 ;
6571 PyObject
* obj1
= 0 ;
6572 PyObject
* obj2
= 0 ;
6573 char * kwnames
[] = {
6574 (char *) "self",(char *) "useSetting",(char *) "back", NULL
6577 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6578 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6579 if (!SWIG_IsOK(res1
)) {
6580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6582 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6583 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6584 if (!SWIG_IsOK(ecode2
)) {
6585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "2"" of type '" "bool""'");
6587 arg2
= static_cast< bool >(val2
);
6590 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6593 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6594 (arg1
)->SetWhitespaceBackground(arg2
,(wxColour
const &)*arg3
);
6595 wxPyEndAllowThreads(__tstate
);
6596 if (PyErr_Occurred()) SWIG_fail
;
6598 resultobj
= SWIG_Py_Void();
6605 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6606 PyObject
*resultobj
= 0;
6607 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6613 PyObject
* obj0
= 0 ;
6614 PyObject
* obj1
= 0 ;
6615 char * kwnames
[] = {
6616 (char *) "self",(char *) "bits", NULL
6619 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStyleBits",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6620 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6621 if (!SWIG_IsOK(res1
)) {
6622 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6624 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6625 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6626 if (!SWIG_IsOK(ecode2
)) {
6627 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "2"" of type '" "int""'");
6629 arg2
= static_cast< int >(val2
);
6631 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6632 (arg1
)->SetStyleBits(arg2
);
6633 wxPyEndAllowThreads(__tstate
);
6634 if (PyErr_Occurred()) SWIG_fail
;
6636 resultobj
= SWIG_Py_Void();
6643 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6644 PyObject
*resultobj
= 0;
6645 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6649 PyObject
*swig_obj
[1] ;
6651 if (!args
) SWIG_fail
;
6653 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6654 if (!SWIG_IsOK(res1
)) {
6655 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6657 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6659 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6660 result
= (int)(arg1
)->GetStyleBits();
6661 wxPyEndAllowThreads(__tstate
);
6662 if (PyErr_Occurred()) SWIG_fail
;
6664 resultobj
= SWIG_From_int(static_cast< int >(result
));
6671 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6672 PyObject
*resultobj
= 0;
6673 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6682 PyObject
* obj0
= 0 ;
6683 PyObject
* obj1
= 0 ;
6684 PyObject
* obj2
= 0 ;
6685 char * kwnames
[] = {
6686 (char *) "self",(char *) "line",(char *) "state", NULL
6689 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineState",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6690 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6691 if (!SWIG_IsOK(res1
)) {
6692 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6694 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6695 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6696 if (!SWIG_IsOK(ecode2
)) {
6697 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "2"" of type '" "int""'");
6699 arg2
= static_cast< int >(val2
);
6700 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6701 if (!SWIG_IsOK(ecode3
)) {
6702 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "3"" of type '" "int""'");
6704 arg3
= static_cast< int >(val3
);
6706 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6707 (arg1
)->SetLineState(arg2
,arg3
);
6708 wxPyEndAllowThreads(__tstate
);
6709 if (PyErr_Occurred()) SWIG_fail
;
6711 resultobj
= SWIG_Py_Void();
6718 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6719 PyObject
*resultobj
= 0;
6720 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6727 PyObject
* obj0
= 0 ;
6728 PyObject
* obj1
= 0 ;
6729 char * kwnames
[] = {
6730 (char *) "self",(char *) "line", NULL
6733 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineState",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6734 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6735 if (!SWIG_IsOK(res1
)) {
6736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6738 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6739 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6740 if (!SWIG_IsOK(ecode2
)) {
6741 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "2"" of type '" "int""'");
6743 arg2
= static_cast< int >(val2
);
6745 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6746 result
= (int)(arg1
)->GetLineState(arg2
);
6747 wxPyEndAllowThreads(__tstate
);
6748 if (PyErr_Occurred()) SWIG_fail
;
6750 resultobj
= SWIG_From_int(static_cast< int >(result
));
6757 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMaxLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6758 PyObject
*resultobj
= 0;
6759 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6763 PyObject
*swig_obj
[1] ;
6765 if (!args
) SWIG_fail
;
6767 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6768 if (!SWIG_IsOK(res1
)) {
6769 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMaxLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6771 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6774 result
= (int)(arg1
)->GetMaxLineState();
6775 wxPyEndAllowThreads(__tstate
);
6776 if (PyErr_Occurred()) SWIG_fail
;
6778 resultobj
= SWIG_From_int(static_cast< int >(result
));
6785 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6786 PyObject
*resultobj
= 0;
6787 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6791 PyObject
*swig_obj
[1] ;
6793 if (!args
) SWIG_fail
;
6795 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6796 if (!SWIG_IsOK(res1
)) {
6797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6799 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6802 result
= (bool)(arg1
)->GetCaretLineVisible();
6803 wxPyEndAllowThreads(__tstate
);
6804 if (PyErr_Occurred()) SWIG_fail
;
6807 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6815 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6816 PyObject
*resultobj
= 0;
6817 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6823 PyObject
* obj0
= 0 ;
6824 PyObject
* obj1
= 0 ;
6825 char * kwnames
[] = {
6826 (char *) "self",(char *) "show", NULL
6829 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6830 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6831 if (!SWIG_IsOK(res1
)) {
6832 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6834 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6835 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6836 if (!SWIG_IsOK(ecode2
)) {
6837 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "2"" of type '" "bool""'");
6839 arg2
= static_cast< bool >(val2
);
6841 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6842 (arg1
)->SetCaretLineVisible(arg2
);
6843 wxPyEndAllowThreads(__tstate
);
6844 if (PyErr_Occurred()) SWIG_fail
;
6846 resultobj
= SWIG_Py_Void();
6853 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6854 PyObject
*resultobj
= 0;
6855 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6859 PyObject
*swig_obj
[1] ;
6861 if (!args
) SWIG_fail
;
6863 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6864 if (!SWIG_IsOK(res1
)) {
6865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6867 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6870 result
= (arg1
)->GetCaretLineBack();
6871 wxPyEndAllowThreads(__tstate
);
6872 if (PyErr_Occurred()) SWIG_fail
;
6874 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6881 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6882 PyObject
*resultobj
= 0;
6883 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6884 wxColour
*arg2
= 0 ;
6888 PyObject
* obj0
= 0 ;
6889 PyObject
* obj1
= 0 ;
6890 char * kwnames
[] = {
6891 (char *) "self",(char *) "back", NULL
6894 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineBack",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6895 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6896 if (!SWIG_IsOK(res1
)) {
6897 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6899 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6902 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
6905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6906 (arg1
)->SetCaretLineBack((wxColour
const &)*arg2
);
6907 wxPyEndAllowThreads(__tstate
);
6908 if (PyErr_Occurred()) SWIG_fail
;
6910 resultobj
= SWIG_Py_Void();
6917 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetChangeable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6918 PyObject
*resultobj
= 0;
6919 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6928 PyObject
* obj0
= 0 ;
6929 PyObject
* obj1
= 0 ;
6930 PyObject
* obj2
= 0 ;
6931 char * kwnames
[] = {
6932 (char *) "self",(char *) "style",(char *) "changeable", NULL
6935 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetChangeable",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6937 if (!SWIG_IsOK(res1
)) {
6938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6940 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6941 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6942 if (!SWIG_IsOK(ecode2
)) {
6943 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "2"" of type '" "int""'");
6945 arg2
= static_cast< int >(val2
);
6946 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6947 if (!SWIG_IsOK(ecode3
)) {
6948 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "3"" of type '" "bool""'");
6950 arg3
= static_cast< bool >(val3
);
6952 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6953 (arg1
)->StyleSetChangeable(arg2
,arg3
);
6954 wxPyEndAllowThreads(__tstate
);
6955 if (PyErr_Occurred()) SWIG_fail
;
6957 resultobj
= SWIG_Py_Void();
6964 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6965 PyObject
*resultobj
= 0;
6966 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6968 wxString
*arg3
= 0 ;
6973 bool temp3
= false ;
6974 PyObject
* obj0
= 0 ;
6975 PyObject
* obj1
= 0 ;
6976 PyObject
* obj2
= 0 ;
6977 char * kwnames
[] = {
6978 (char *) "self",(char *) "lenEntered",(char *) "itemList", NULL
6981 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_AutoCompShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6982 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6983 if (!SWIG_IsOK(res1
)) {
6984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6986 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6987 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6988 if (!SWIG_IsOK(ecode2
)) {
6989 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "2"" of type '" "int""'");
6991 arg2
= static_cast< int >(val2
);
6993 arg3
= wxString_in_helper(obj2
);
6994 if (arg3
== NULL
) SWIG_fail
;
6998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6999 (arg1
)->AutoCompShow(arg2
,(wxString
const &)*arg3
);
7000 wxPyEndAllowThreads(__tstate
);
7001 if (PyErr_Occurred()) SWIG_fail
;
7003 resultobj
= SWIG_Py_Void();
7018 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7019 PyObject
*resultobj
= 0;
7020 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7023 PyObject
*swig_obj
[1] ;
7025 if (!args
) SWIG_fail
;
7027 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7028 if (!SWIG_IsOK(res1
)) {
7029 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7031 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7034 (arg1
)->AutoCompCancel();
7035 wxPyEndAllowThreads(__tstate
);
7036 if (PyErr_Occurred()) SWIG_fail
;
7038 resultobj
= SWIG_Py_Void();
7045 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7046 PyObject
*resultobj
= 0;
7047 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7051 PyObject
*swig_obj
[1] ;
7053 if (!args
) SWIG_fail
;
7055 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7056 if (!SWIG_IsOK(res1
)) {
7057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7059 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7061 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7062 result
= (bool)(arg1
)->AutoCompActive();
7063 wxPyEndAllowThreads(__tstate
);
7064 if (PyErr_Occurred()) SWIG_fail
;
7067 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7075 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompPosStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7076 PyObject
*resultobj
= 0;
7077 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7081 PyObject
*swig_obj
[1] ;
7083 if (!args
) SWIG_fail
;
7085 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7086 if (!SWIG_IsOK(res1
)) {
7087 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompPosStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7089 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7092 result
= (int)(arg1
)->AutoCompPosStart();
7093 wxPyEndAllowThreads(__tstate
);
7094 if (PyErr_Occurred()) SWIG_fail
;
7096 resultobj
= SWIG_From_int(static_cast< int >(result
));
7103 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompComplete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7104 PyObject
*resultobj
= 0;
7105 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7108 PyObject
*swig_obj
[1] ;
7110 if (!args
) SWIG_fail
;
7112 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7113 if (!SWIG_IsOK(res1
)) {
7114 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompComplete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7116 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7118 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7119 (arg1
)->AutoCompComplete();
7120 wxPyEndAllowThreads(__tstate
);
7121 if (PyErr_Occurred()) SWIG_fail
;
7123 resultobj
= SWIG_Py_Void();
7130 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompStops(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7131 PyObject
*resultobj
= 0;
7132 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7133 wxString
*arg2
= 0 ;
7136 bool temp2
= false ;
7137 PyObject
* obj0
= 0 ;
7138 PyObject
* obj1
= 0 ;
7139 char * kwnames
[] = {
7140 (char *) "self",(char *) "characterSet", NULL
7143 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompStops",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7144 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7145 if (!SWIG_IsOK(res1
)) {
7146 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompStops" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7148 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7150 arg2
= wxString_in_helper(obj1
);
7151 if (arg2
== NULL
) SWIG_fail
;
7155 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7156 (arg1
)->AutoCompStops((wxString
const &)*arg2
);
7157 wxPyEndAllowThreads(__tstate
);
7158 if (PyErr_Occurred()) SWIG_fail
;
7160 resultobj
= SWIG_Py_Void();
7175 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7176 PyObject
*resultobj
= 0;
7177 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7183 PyObject
* obj0
= 0 ;
7184 PyObject
* obj1
= 0 ;
7185 char * kwnames
[] = {
7186 (char *) "self",(char *) "separatorCharacter", NULL
7189 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7190 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7191 if (!SWIG_IsOK(res1
)) {
7192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7194 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7195 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7196 if (!SWIG_IsOK(ecode2
)) {
7197 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "2"" of type '" "int""'");
7199 arg2
= static_cast< int >(val2
);
7201 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7202 (arg1
)->AutoCompSetSeparator(arg2
);
7203 wxPyEndAllowThreads(__tstate
);
7204 if (PyErr_Occurred()) SWIG_fail
;
7206 resultobj
= SWIG_Py_Void();
7213 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7214 PyObject
*resultobj
= 0;
7215 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7219 PyObject
*swig_obj
[1] ;
7221 if (!args
) SWIG_fail
;
7223 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7224 if (!SWIG_IsOK(res1
)) {
7225 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7227 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7229 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7230 result
= (int)(arg1
)->AutoCompGetSeparator();
7231 wxPyEndAllowThreads(__tstate
);
7232 if (PyErr_Occurred()) SWIG_fail
;
7234 resultobj
= SWIG_From_int(static_cast< int >(result
));
7241 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSelect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7242 PyObject
*resultobj
= 0;
7243 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7244 wxString
*arg2
= 0 ;
7247 bool temp2
= false ;
7248 PyObject
* obj0
= 0 ;
7249 PyObject
* obj1
= 0 ;
7250 char * kwnames
[] = {
7251 (char *) "self",(char *) "text", NULL
7254 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSelect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7255 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7256 if (!SWIG_IsOK(res1
)) {
7257 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSelect" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7259 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7261 arg2
= wxString_in_helper(obj1
);
7262 if (arg2
== NULL
) SWIG_fail
;
7266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7267 (arg1
)->AutoCompSelect((wxString
const &)*arg2
);
7268 wxPyEndAllowThreads(__tstate
);
7269 if (PyErr_Occurred()) SWIG_fail
;
7271 resultobj
= SWIG_Py_Void();
7286 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7287 PyObject
*resultobj
= 0;
7288 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7294 PyObject
* obj0
= 0 ;
7295 PyObject
* obj1
= 0 ;
7296 char * kwnames
[] = {
7297 (char *) "self",(char *) "cancel", NULL
7300 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetCancelAtStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7301 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7302 if (!SWIG_IsOK(res1
)) {
7303 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7305 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7306 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7307 if (!SWIG_IsOK(ecode2
)) {
7308 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "2"" of type '" "bool""'");
7310 arg2
= static_cast< bool >(val2
);
7312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7313 (arg1
)->AutoCompSetCancelAtStart(arg2
);
7314 wxPyEndAllowThreads(__tstate
);
7315 if (PyErr_Occurred()) SWIG_fail
;
7317 resultobj
= SWIG_Py_Void();
7324 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7325 PyObject
*resultobj
= 0;
7326 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7330 PyObject
*swig_obj
[1] ;
7332 if (!args
) SWIG_fail
;
7334 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7335 if (!SWIG_IsOK(res1
)) {
7336 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7338 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7340 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7341 result
= (bool)(arg1
)->AutoCompGetCancelAtStart();
7342 wxPyEndAllowThreads(__tstate
);
7343 if (PyErr_Occurred()) SWIG_fail
;
7346 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7354 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetFillUps(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7355 PyObject
*resultobj
= 0;
7356 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7357 wxString
*arg2
= 0 ;
7360 bool temp2
= false ;
7361 PyObject
* obj0
= 0 ;
7362 PyObject
* obj1
= 0 ;
7363 char * kwnames
[] = {
7364 (char *) "self",(char *) "characterSet", NULL
7367 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetFillUps",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7368 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7369 if (!SWIG_IsOK(res1
)) {
7370 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetFillUps" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7372 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7374 arg2
= wxString_in_helper(obj1
);
7375 if (arg2
== NULL
) SWIG_fail
;
7379 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7380 (arg1
)->AutoCompSetFillUps((wxString
const &)*arg2
);
7381 wxPyEndAllowThreads(__tstate
);
7382 if (PyErr_Occurred()) SWIG_fail
;
7384 resultobj
= SWIG_Py_Void();
7399 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7400 PyObject
*resultobj
= 0;
7401 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7407 PyObject
* obj0
= 0 ;
7408 PyObject
* obj1
= 0 ;
7409 char * kwnames
[] = {
7410 (char *) "self",(char *) "chooseSingle", NULL
7413 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetChooseSingle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7414 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7415 if (!SWIG_IsOK(res1
)) {
7416 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7418 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7419 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7420 if (!SWIG_IsOK(ecode2
)) {
7421 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "2"" of type '" "bool""'");
7423 arg2
= static_cast< bool >(val2
);
7425 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7426 (arg1
)->AutoCompSetChooseSingle(arg2
);
7427 wxPyEndAllowThreads(__tstate
);
7428 if (PyErr_Occurred()) SWIG_fail
;
7430 resultobj
= SWIG_Py_Void();
7437 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7438 PyObject
*resultobj
= 0;
7439 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7443 PyObject
*swig_obj
[1] ;
7445 if (!args
) SWIG_fail
;
7447 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7448 if (!SWIG_IsOK(res1
)) {
7449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7451 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7453 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7454 result
= (bool)(arg1
)->AutoCompGetChooseSingle();
7455 wxPyEndAllowThreads(__tstate
);
7456 if (PyErr_Occurred()) SWIG_fail
;
7459 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7467 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7468 PyObject
*resultobj
= 0;
7469 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7475 PyObject
* obj0
= 0 ;
7476 PyObject
* obj1
= 0 ;
7477 char * kwnames
[] = {
7478 (char *) "self",(char *) "ignoreCase", NULL
7481 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetIgnoreCase",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7482 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7483 if (!SWIG_IsOK(res1
)) {
7484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7486 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7487 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7488 if (!SWIG_IsOK(ecode2
)) {
7489 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "2"" of type '" "bool""'");
7491 arg2
= static_cast< bool >(val2
);
7493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7494 (arg1
)->AutoCompSetIgnoreCase(arg2
);
7495 wxPyEndAllowThreads(__tstate
);
7496 if (PyErr_Occurred()) SWIG_fail
;
7498 resultobj
= SWIG_Py_Void();
7505 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7506 PyObject
*resultobj
= 0;
7507 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7511 PyObject
*swig_obj
[1] ;
7513 if (!args
) SWIG_fail
;
7515 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7516 if (!SWIG_IsOK(res1
)) {
7517 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7519 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7521 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7522 result
= (bool)(arg1
)->AutoCompGetIgnoreCase();
7523 wxPyEndAllowThreads(__tstate
);
7524 if (PyErr_Occurred()) SWIG_fail
;
7527 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7535 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UserListShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7536 PyObject
*resultobj
= 0;
7537 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7539 wxString
*arg3
= 0 ;
7544 bool temp3
= false ;
7545 PyObject
* obj0
= 0 ;
7546 PyObject
* obj1
= 0 ;
7547 PyObject
* obj2
= 0 ;
7548 char * kwnames
[] = {
7549 (char *) "self",(char *) "listType",(char *) "itemList", NULL
7552 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_UserListShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7553 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7554 if (!SWIG_IsOK(res1
)) {
7555 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7557 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7558 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7559 if (!SWIG_IsOK(ecode2
)) {
7560 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "2"" of type '" "int""'");
7562 arg2
= static_cast< int >(val2
);
7564 arg3
= wxString_in_helper(obj2
);
7565 if (arg3
== NULL
) SWIG_fail
;
7569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7570 (arg1
)->UserListShow(arg2
,(wxString
const &)*arg3
);
7571 wxPyEndAllowThreads(__tstate
);
7572 if (PyErr_Occurred()) SWIG_fail
;
7574 resultobj
= SWIG_Py_Void();
7589 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7590 PyObject
*resultobj
= 0;
7591 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7597 PyObject
* obj0
= 0 ;
7598 PyObject
* obj1
= 0 ;
7599 char * kwnames
[] = {
7600 (char *) "self",(char *) "autoHide", NULL
7603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetAutoHide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7605 if (!SWIG_IsOK(res1
)) {
7606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7608 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7609 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7610 if (!SWIG_IsOK(ecode2
)) {
7611 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "2"" of type '" "bool""'");
7613 arg2
= static_cast< bool >(val2
);
7615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7616 (arg1
)->AutoCompSetAutoHide(arg2
);
7617 wxPyEndAllowThreads(__tstate
);
7618 if (PyErr_Occurred()) SWIG_fail
;
7620 resultobj
= SWIG_Py_Void();
7627 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7628 PyObject
*resultobj
= 0;
7629 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7633 PyObject
*swig_obj
[1] ;
7635 if (!args
) SWIG_fail
;
7637 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7638 if (!SWIG_IsOK(res1
)) {
7639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7641 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7643 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7644 result
= (bool)(arg1
)->AutoCompGetAutoHide();
7645 wxPyEndAllowThreads(__tstate
);
7646 if (PyErr_Occurred()) SWIG_fail
;
7649 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7657 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7658 PyObject
*resultobj
= 0;
7659 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7665 PyObject
* obj0
= 0 ;
7666 PyObject
* obj1
= 0 ;
7667 char * kwnames
[] = {
7668 (char *) "self",(char *) "dropRestOfWord", NULL
7671 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetDropRestOfWord",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7672 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7673 if (!SWIG_IsOK(res1
)) {
7674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7676 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7677 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7678 if (!SWIG_IsOK(ecode2
)) {
7679 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "2"" of type '" "bool""'");
7681 arg2
= static_cast< bool >(val2
);
7683 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7684 (arg1
)->AutoCompSetDropRestOfWord(arg2
);
7685 wxPyEndAllowThreads(__tstate
);
7686 if (PyErr_Occurred()) SWIG_fail
;
7688 resultobj
= SWIG_Py_Void();
7695 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7696 PyObject
*resultobj
= 0;
7697 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7701 PyObject
*swig_obj
[1] ;
7703 if (!args
) SWIG_fail
;
7705 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7706 if (!SWIG_IsOK(res1
)) {
7707 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7709 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7712 result
= (bool)(arg1
)->AutoCompGetDropRestOfWord();
7713 wxPyEndAllowThreads(__tstate
);
7714 if (PyErr_Occurred()) SWIG_fail
;
7717 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7725 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_RegisterImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7726 PyObject
*resultobj
= 0;
7727 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7729 wxBitmap
*arg3
= 0 ;
7736 PyObject
* obj0
= 0 ;
7737 PyObject
* obj1
= 0 ;
7738 PyObject
* obj2
= 0 ;
7739 char * kwnames
[] = {
7740 (char *) "self",(char *) "type",(char *) "bmp", NULL
7743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_RegisterImage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7745 if (!SWIG_IsOK(res1
)) {
7746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7748 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7750 if (!SWIG_IsOK(ecode2
)) {
7751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "2"" of type '" "int""'");
7753 arg2
= static_cast< int >(val2
);
7754 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
7755 if (!SWIG_IsOK(res3
)) {
7756 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7759 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7761 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
7763 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7764 (arg1
)->RegisterImage(arg2
,(wxBitmap
const &)*arg3
);
7765 wxPyEndAllowThreads(__tstate
);
7766 if (PyErr_Occurred()) SWIG_fail
;
7768 resultobj
= SWIG_Py_Void();
7775 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearRegisteredImages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7776 PyObject
*resultobj
= 0;
7777 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7780 PyObject
*swig_obj
[1] ;
7782 if (!args
) SWIG_fail
;
7784 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7785 if (!SWIG_IsOK(res1
)) {
7786 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearRegisteredImages" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7788 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7790 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7791 (arg1
)->ClearRegisteredImages();
7792 wxPyEndAllowThreads(__tstate
);
7793 if (PyErr_Occurred()) SWIG_fail
;
7795 resultobj
= SWIG_Py_Void();
7802 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7803 PyObject
*resultobj
= 0;
7804 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7808 PyObject
*swig_obj
[1] ;
7810 if (!args
) SWIG_fail
;
7812 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7813 if (!SWIG_IsOK(res1
)) {
7814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7816 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7819 result
= (int)(arg1
)->AutoCompGetTypeSeparator();
7820 wxPyEndAllowThreads(__tstate
);
7821 if (PyErr_Occurred()) SWIG_fail
;
7823 resultobj
= SWIG_From_int(static_cast< int >(result
));
7830 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7831 PyObject
*resultobj
= 0;
7832 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7838 PyObject
* obj0
= 0 ;
7839 PyObject
* obj1
= 0 ;
7840 char * kwnames
[] = {
7841 (char *) "self",(char *) "separatorCharacter", NULL
7844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetTypeSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7846 if (!SWIG_IsOK(res1
)) {
7847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7849 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7850 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7851 if (!SWIG_IsOK(ecode2
)) {
7852 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "2"" of type '" "int""'");
7854 arg2
= static_cast< int >(val2
);
7856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7857 (arg1
)->AutoCompSetTypeSeparator(arg2
);
7858 wxPyEndAllowThreads(__tstate
);
7859 if (PyErr_Occurred()) SWIG_fail
;
7861 resultobj
= SWIG_Py_Void();
7868 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7869 PyObject
*resultobj
= 0;
7870 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7876 PyObject
* obj0
= 0 ;
7877 PyObject
* obj1
= 0 ;
7878 char * kwnames
[] = {
7879 (char *) "self",(char *) "characterCount", NULL
7882 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7883 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7884 if (!SWIG_IsOK(res1
)) {
7885 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7887 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7888 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7889 if (!SWIG_IsOK(ecode2
)) {
7890 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "2"" of type '" "int""'");
7892 arg2
= static_cast< int >(val2
);
7894 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7895 (arg1
)->AutoCompSetMaxWidth(arg2
);
7896 wxPyEndAllowThreads(__tstate
);
7897 if (PyErr_Occurred()) SWIG_fail
;
7899 resultobj
= SWIG_Py_Void();
7906 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7907 PyObject
*resultobj
= 0;
7908 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7912 PyObject
*swig_obj
[1] ;
7914 if (!args
) SWIG_fail
;
7916 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7917 if (!SWIG_IsOK(res1
)) {
7918 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7920 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7923 result
= (int)(arg1
)->AutoCompGetMaxWidth();
7924 wxPyEndAllowThreads(__tstate
);
7925 if (PyErr_Occurred()) SWIG_fail
;
7927 resultobj
= SWIG_From_int(static_cast< int >(result
));
7934 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7935 PyObject
*resultobj
= 0;
7936 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7942 PyObject
* obj0
= 0 ;
7943 PyObject
* obj1
= 0 ;
7944 char * kwnames
[] = {
7945 (char *) "self",(char *) "rowCount", NULL
7948 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7949 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7950 if (!SWIG_IsOK(res1
)) {
7951 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7953 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7954 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7955 if (!SWIG_IsOK(ecode2
)) {
7956 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "2"" of type '" "int""'");
7958 arg2
= static_cast< int >(val2
);
7960 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7961 (arg1
)->AutoCompSetMaxHeight(arg2
);
7962 wxPyEndAllowThreads(__tstate
);
7963 if (PyErr_Occurred()) SWIG_fail
;
7965 resultobj
= SWIG_Py_Void();
7972 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7973 PyObject
*resultobj
= 0;
7974 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7978 PyObject
*swig_obj
[1] ;
7980 if (!args
) SWIG_fail
;
7982 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7983 if (!SWIG_IsOK(res1
)) {
7984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7986 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7989 result
= (int)(arg1
)->AutoCompGetMaxHeight();
7990 wxPyEndAllowThreads(__tstate
);
7991 if (PyErr_Occurred()) SWIG_fail
;
7993 resultobj
= SWIG_From_int(static_cast< int >(result
));
8000 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8001 PyObject
*resultobj
= 0;
8002 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8008 PyObject
* obj0
= 0 ;
8009 PyObject
* obj1
= 0 ;
8010 char * kwnames
[] = {
8011 (char *) "self",(char *) "indentSize", NULL
8014 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8015 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8016 if (!SWIG_IsOK(res1
)) {
8017 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8019 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8020 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8021 if (!SWIG_IsOK(ecode2
)) {
8022 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "2"" of type '" "int""'");
8024 arg2
= static_cast< int >(val2
);
8026 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8027 (arg1
)->SetIndent(arg2
);
8028 wxPyEndAllowThreads(__tstate
);
8029 if (PyErr_Occurred()) SWIG_fail
;
8031 resultobj
= SWIG_Py_Void();
8038 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8039 PyObject
*resultobj
= 0;
8040 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8044 PyObject
*swig_obj
[1] ;
8046 if (!args
) SWIG_fail
;
8048 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8049 if (!SWIG_IsOK(res1
)) {
8050 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8052 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8054 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8055 result
= (int)(arg1
)->GetIndent();
8056 wxPyEndAllowThreads(__tstate
);
8057 if (PyErr_Occurred()) SWIG_fail
;
8059 resultobj
= SWIG_From_int(static_cast< int >(result
));
8066 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8067 PyObject
*resultobj
= 0;
8068 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8074 PyObject
* obj0
= 0 ;
8075 PyObject
* obj1
= 0 ;
8076 char * kwnames
[] = {
8077 (char *) "self",(char *) "useTabs", NULL
8080 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseTabs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8081 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8082 if (!SWIG_IsOK(res1
)) {
8083 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8085 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8086 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8087 if (!SWIG_IsOK(ecode2
)) {
8088 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "2"" of type '" "bool""'");
8090 arg2
= static_cast< bool >(val2
);
8092 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8093 (arg1
)->SetUseTabs(arg2
);
8094 wxPyEndAllowThreads(__tstate
);
8095 if (PyErr_Occurred()) SWIG_fail
;
8097 resultobj
= SWIG_Py_Void();
8104 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8105 PyObject
*resultobj
= 0;
8106 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8110 PyObject
*swig_obj
[1] ;
8112 if (!args
) SWIG_fail
;
8114 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8115 if (!SWIG_IsOK(res1
)) {
8116 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8118 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8121 result
= (bool)(arg1
)->GetUseTabs();
8122 wxPyEndAllowThreads(__tstate
);
8123 if (PyErr_Occurred()) SWIG_fail
;
8126 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8134 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8135 PyObject
*resultobj
= 0;
8136 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8145 PyObject
* obj0
= 0 ;
8146 PyObject
* obj1
= 0 ;
8147 PyObject
* obj2
= 0 ;
8148 char * kwnames
[] = {
8149 (char *) "self",(char *) "line",(char *) "indentSize", NULL
8152 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineIndentation",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8153 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8154 if (!SWIG_IsOK(res1
)) {
8155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8157 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8158 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8159 if (!SWIG_IsOK(ecode2
)) {
8160 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8162 arg2
= static_cast< int >(val2
);
8163 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8164 if (!SWIG_IsOK(ecode3
)) {
8165 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "3"" of type '" "int""'");
8167 arg3
= static_cast< int >(val3
);
8169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8170 (arg1
)->SetLineIndentation(arg2
,arg3
);
8171 wxPyEndAllowThreads(__tstate
);
8172 if (PyErr_Occurred()) SWIG_fail
;
8174 resultobj
= SWIG_Py_Void();
8181 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8182 PyObject
*resultobj
= 0;
8183 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8190 PyObject
* obj0
= 0 ;
8191 PyObject
* obj1
= 0 ;
8192 char * kwnames
[] = {
8193 (char *) "self",(char *) "line", NULL
8196 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8197 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8198 if (!SWIG_IsOK(res1
)) {
8199 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8201 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8202 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8203 if (!SWIG_IsOK(ecode2
)) {
8204 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8206 arg2
= static_cast< int >(val2
);
8208 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8209 result
= (int)(arg1
)->GetLineIndentation(arg2
);
8210 wxPyEndAllowThreads(__tstate
);
8211 if (PyErr_Occurred()) SWIG_fail
;
8213 resultobj
= SWIG_From_int(static_cast< int >(result
));
8220 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8221 PyObject
*resultobj
= 0;
8222 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8229 PyObject
* obj0
= 0 ;
8230 PyObject
* obj1
= 0 ;
8231 char * kwnames
[] = {
8232 (char *) "self",(char *) "line", NULL
8235 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8236 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8237 if (!SWIG_IsOK(res1
)) {
8238 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8240 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8241 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8242 if (!SWIG_IsOK(ecode2
)) {
8243 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "2"" of type '" "int""'");
8245 arg2
= static_cast< int >(val2
);
8247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8248 result
= (int)(arg1
)->GetLineIndentPosition(arg2
);
8249 wxPyEndAllowThreads(__tstate
);
8250 if (PyErr_Occurred()) SWIG_fail
;
8252 resultobj
= SWIG_From_int(static_cast< int >(result
));
8259 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8260 PyObject
*resultobj
= 0;
8261 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8268 PyObject
* obj0
= 0 ;
8269 PyObject
* obj1
= 0 ;
8270 char * kwnames
[] = {
8271 (char *) "self",(char *) "pos", NULL
8274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8276 if (!SWIG_IsOK(res1
)) {
8277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8279 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8280 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8281 if (!SWIG_IsOK(ecode2
)) {
8282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "2"" of type '" "int""'");
8284 arg2
= static_cast< int >(val2
);
8286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8287 result
= (int)(arg1
)->GetColumn(arg2
);
8288 wxPyEndAllowThreads(__tstate
);
8289 if (PyErr_Occurred()) SWIG_fail
;
8291 resultobj
= SWIG_From_int(static_cast< int >(result
));
8298 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8299 PyObject
*resultobj
= 0;
8300 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8306 PyObject
* obj0
= 0 ;
8307 PyObject
* obj1
= 0 ;
8308 char * kwnames
[] = {
8309 (char *) "self",(char *) "show", NULL
8312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseHorizontalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8313 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8314 if (!SWIG_IsOK(res1
)) {
8315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8317 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8318 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8319 if (!SWIG_IsOK(ecode2
)) {
8320 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "2"" of type '" "bool""'");
8322 arg2
= static_cast< bool >(val2
);
8324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8325 (arg1
)->SetUseHorizontalScrollBar(arg2
);
8326 wxPyEndAllowThreads(__tstate
);
8327 if (PyErr_Occurred()) SWIG_fail
;
8329 resultobj
= SWIG_Py_Void();
8336 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8337 PyObject
*resultobj
= 0;
8338 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8342 PyObject
*swig_obj
[1] ;
8344 if (!args
) SWIG_fail
;
8346 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8347 if (!SWIG_IsOK(res1
)) {
8348 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8350 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8352 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8353 result
= (bool)(arg1
)->GetUseHorizontalScrollBar();
8354 wxPyEndAllowThreads(__tstate
);
8355 if (PyErr_Occurred()) SWIG_fail
;
8358 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8366 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8367 PyObject
*resultobj
= 0;
8368 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8374 PyObject
* obj0
= 0 ;
8375 PyObject
* obj1
= 0 ;
8376 char * kwnames
[] = {
8377 (char *) "self",(char *) "show", NULL
8380 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndentationGuides",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8381 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8382 if (!SWIG_IsOK(res1
)) {
8383 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8385 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8386 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8387 if (!SWIG_IsOK(ecode2
)) {
8388 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "2"" of type '" "bool""'");
8390 arg2
= static_cast< bool >(val2
);
8392 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8393 (arg1
)->SetIndentationGuides(arg2
);
8394 wxPyEndAllowThreads(__tstate
);
8395 if (PyErr_Occurred()) SWIG_fail
;
8397 resultobj
= SWIG_Py_Void();
8404 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8405 PyObject
*resultobj
= 0;
8406 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8410 PyObject
*swig_obj
[1] ;
8412 if (!args
) SWIG_fail
;
8414 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8415 if (!SWIG_IsOK(res1
)) {
8416 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8418 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8421 result
= (bool)(arg1
)->GetIndentationGuides();
8422 wxPyEndAllowThreads(__tstate
);
8423 if (PyErr_Occurred()) SWIG_fail
;
8426 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8434 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8435 PyObject
*resultobj
= 0;
8436 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8442 PyObject
* obj0
= 0 ;
8443 PyObject
* obj1
= 0 ;
8444 char * kwnames
[] = {
8445 (char *) "self",(char *) "column", NULL
8448 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHighlightGuide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8449 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8450 if (!SWIG_IsOK(res1
)) {
8451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8453 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8454 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8455 if (!SWIG_IsOK(ecode2
)) {
8456 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "2"" of type '" "int""'");
8458 arg2
= static_cast< int >(val2
);
8460 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8461 (arg1
)->SetHighlightGuide(arg2
);
8462 wxPyEndAllowThreads(__tstate
);
8463 if (PyErr_Occurred()) SWIG_fail
;
8465 resultobj
= SWIG_Py_Void();
8472 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8473 PyObject
*resultobj
= 0;
8474 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8478 PyObject
*swig_obj
[1] ;
8480 if (!args
) SWIG_fail
;
8482 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8483 if (!SWIG_IsOK(res1
)) {
8484 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8486 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8488 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8489 result
= (int)(arg1
)->GetHighlightGuide();
8490 wxPyEndAllowThreads(__tstate
);
8491 if (PyErr_Occurred()) SWIG_fail
;
8493 resultobj
= SWIG_From_int(static_cast< int >(result
));
8500 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8501 PyObject
*resultobj
= 0;
8502 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8509 PyObject
* obj0
= 0 ;
8510 PyObject
* obj1
= 0 ;
8511 char * kwnames
[] = {
8512 (char *) "self",(char *) "line", NULL
8515 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8516 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8517 if (!SWIG_IsOK(res1
)) {
8518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8520 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8521 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8522 if (!SWIG_IsOK(ecode2
)) {
8523 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "2"" of type '" "int""'");
8525 arg2
= static_cast< int >(val2
);
8527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8528 result
= (int)(arg1
)->GetLineEndPosition(arg2
);
8529 wxPyEndAllowThreads(__tstate
);
8530 if (PyErr_Occurred()) SWIG_fail
;
8532 resultobj
= SWIG_From_int(static_cast< int >(result
));
8539 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8540 PyObject
*resultobj
= 0;
8541 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8545 PyObject
*swig_obj
[1] ;
8547 if (!args
) SWIG_fail
;
8549 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8550 if (!SWIG_IsOK(res1
)) {
8551 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8553 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8555 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8556 result
= (int)(arg1
)->GetCodePage();
8557 wxPyEndAllowThreads(__tstate
);
8558 if (PyErr_Occurred()) SWIG_fail
;
8560 resultobj
= SWIG_From_int(static_cast< int >(result
));
8567 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8568 PyObject
*resultobj
= 0;
8569 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8573 PyObject
*swig_obj
[1] ;
8575 if (!args
) SWIG_fail
;
8577 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8578 if (!SWIG_IsOK(res1
)) {
8579 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8581 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8583 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8584 result
= (arg1
)->GetCaretForeground();
8585 wxPyEndAllowThreads(__tstate
);
8586 if (PyErr_Occurred()) SWIG_fail
;
8588 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
8595 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8596 PyObject
*resultobj
= 0;
8597 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8601 PyObject
*swig_obj
[1] ;
8603 if (!args
) SWIG_fail
;
8605 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8606 if (!SWIG_IsOK(res1
)) {
8607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8609 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8612 result
= (bool)(arg1
)->GetReadOnly();
8613 wxPyEndAllowThreads(__tstate
);
8614 if (PyErr_Occurred()) SWIG_fail
;
8617 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8625 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8626 PyObject
*resultobj
= 0;
8627 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8633 PyObject
* obj0
= 0 ;
8634 PyObject
* obj1
= 0 ;
8635 char * kwnames
[] = {
8636 (char *) "self",(char *) "pos", NULL
8639 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCurrentPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8640 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8641 if (!SWIG_IsOK(res1
)) {
8642 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8644 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8645 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8646 if (!SWIG_IsOK(ecode2
)) {
8647 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "2"" of type '" "int""'");
8649 arg2
= static_cast< int >(val2
);
8651 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8652 (arg1
)->SetCurrentPos(arg2
);
8653 wxPyEndAllowThreads(__tstate
);
8654 if (PyErr_Occurred()) SWIG_fail
;
8656 resultobj
= SWIG_Py_Void();
8663 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8664 PyObject
*resultobj
= 0;
8665 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8671 PyObject
* obj0
= 0 ;
8672 PyObject
* obj1
= 0 ;
8673 char * kwnames
[] = {
8674 (char *) "self",(char *) "pos", NULL
8677 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8678 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8679 if (!SWIG_IsOK(res1
)) {
8680 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8682 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8683 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8684 if (!SWIG_IsOK(ecode2
)) {
8685 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "2"" of type '" "int""'");
8687 arg2
= static_cast< int >(val2
);
8689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8690 (arg1
)->SetSelectionStart(arg2
);
8691 wxPyEndAllowThreads(__tstate
);
8692 if (PyErr_Occurred()) SWIG_fail
;
8694 resultobj
= SWIG_Py_Void();
8701 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8702 PyObject
*resultobj
= 0;
8703 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8707 PyObject
*swig_obj
[1] ;
8709 if (!args
) SWIG_fail
;
8711 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8712 if (!SWIG_IsOK(res1
)) {
8713 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8715 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8718 result
= (int)(arg1
)->GetSelectionStart();
8719 wxPyEndAllowThreads(__tstate
);
8720 if (PyErr_Occurred()) SWIG_fail
;
8722 resultobj
= SWIG_From_int(static_cast< int >(result
));
8729 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8730 PyObject
*resultobj
= 0;
8731 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8737 PyObject
* obj0
= 0 ;
8738 PyObject
* obj1
= 0 ;
8739 char * kwnames
[] = {
8740 (char *) "self",(char *) "pos", NULL
8743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8745 if (!SWIG_IsOK(res1
)) {
8746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8748 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8750 if (!SWIG_IsOK(ecode2
)) {
8751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "2"" of type '" "int""'");
8753 arg2
= static_cast< int >(val2
);
8755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8756 (arg1
)->SetSelectionEnd(arg2
);
8757 wxPyEndAllowThreads(__tstate
);
8758 if (PyErr_Occurred()) SWIG_fail
;
8760 resultobj
= SWIG_Py_Void();
8767 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8768 PyObject
*resultobj
= 0;
8769 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8773 PyObject
*swig_obj
[1] ;
8775 if (!args
) SWIG_fail
;
8777 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8778 if (!SWIG_IsOK(res1
)) {
8779 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8781 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8783 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8784 result
= (int)(arg1
)->GetSelectionEnd();
8785 wxPyEndAllowThreads(__tstate
);
8786 if (PyErr_Occurred()) SWIG_fail
;
8788 resultobj
= SWIG_From_int(static_cast< int >(result
));
8795 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8796 PyObject
*resultobj
= 0;
8797 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8803 PyObject
* obj0
= 0 ;
8804 PyObject
* obj1
= 0 ;
8805 char * kwnames
[] = {
8806 (char *) "self",(char *) "magnification", NULL
8809 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintMagnification",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8810 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8811 if (!SWIG_IsOK(res1
)) {
8812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8814 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8815 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8816 if (!SWIG_IsOK(ecode2
)) {
8817 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "2"" of type '" "int""'");
8819 arg2
= static_cast< int >(val2
);
8821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8822 (arg1
)->SetPrintMagnification(arg2
);
8823 wxPyEndAllowThreads(__tstate
);
8824 if (PyErr_Occurred()) SWIG_fail
;
8826 resultobj
= SWIG_Py_Void();
8833 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8834 PyObject
*resultobj
= 0;
8835 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8839 PyObject
*swig_obj
[1] ;
8841 if (!args
) SWIG_fail
;
8843 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8844 if (!SWIG_IsOK(res1
)) {
8845 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8847 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8849 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8850 result
= (int)(arg1
)->GetPrintMagnification();
8851 wxPyEndAllowThreads(__tstate
);
8852 if (PyErr_Occurred()) SWIG_fail
;
8854 resultobj
= SWIG_From_int(static_cast< int >(result
));
8861 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8862 PyObject
*resultobj
= 0;
8863 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8869 PyObject
* obj0
= 0 ;
8870 PyObject
* obj1
= 0 ;
8871 char * kwnames
[] = {
8872 (char *) "self",(char *) "mode", NULL
8875 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintColourMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8876 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8877 if (!SWIG_IsOK(res1
)) {
8878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8880 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8881 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8882 if (!SWIG_IsOK(ecode2
)) {
8883 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "2"" of type '" "int""'");
8885 arg2
= static_cast< int >(val2
);
8887 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8888 (arg1
)->SetPrintColourMode(arg2
);
8889 wxPyEndAllowThreads(__tstate
);
8890 if (PyErr_Occurred()) SWIG_fail
;
8892 resultobj
= SWIG_Py_Void();
8899 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8900 PyObject
*resultobj
= 0;
8901 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8905 PyObject
*swig_obj
[1] ;
8907 if (!args
) SWIG_fail
;
8909 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8910 if (!SWIG_IsOK(res1
)) {
8911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8913 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8916 result
= (int)(arg1
)->GetPrintColourMode();
8917 wxPyEndAllowThreads(__tstate
);
8918 if (PyErr_Occurred()) SWIG_fail
;
8920 resultobj
= SWIG_From_int(static_cast< int >(result
));
8927 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8928 PyObject
*resultobj
= 0;
8929 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8932 wxString
*arg4
= 0 ;
8933 int arg5
= (int) 0 ;
8941 bool temp4
= false ;
8944 PyObject
* obj0
= 0 ;
8945 PyObject
* obj1
= 0 ;
8946 PyObject
* obj2
= 0 ;
8947 PyObject
* obj3
= 0 ;
8948 PyObject
* obj4
= 0 ;
8949 char * kwnames
[] = {
8950 (char *) "self",(char *) "minPos",(char *) "maxPos",(char *) "text",(char *) "flags", NULL
8953 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:StyledTextCtrl_FindText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8954 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8955 if (!SWIG_IsOK(res1
)) {
8956 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8958 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8959 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8960 if (!SWIG_IsOK(ecode2
)) {
8961 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "2"" of type '" "int""'");
8963 arg2
= static_cast< int >(val2
);
8964 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8965 if (!SWIG_IsOK(ecode3
)) {
8966 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "3"" of type '" "int""'");
8968 arg3
= static_cast< int >(val3
);
8970 arg4
= wxString_in_helper(obj3
);
8971 if (arg4
== NULL
) SWIG_fail
;
8975 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
8976 if (!SWIG_IsOK(ecode5
)) {
8977 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "5"" of type '" "int""'");
8979 arg5
= static_cast< int >(val5
);
8982 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8983 result
= (int)(arg1
)->FindText(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
8984 wxPyEndAllowThreads(__tstate
);
8985 if (PyErr_Occurred()) SWIG_fail
;
8987 resultobj
= SWIG_From_int(static_cast< int >(result
));
9002 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormatRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9003 PyObject
*resultobj
= 0;
9004 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9008 wxDC
*arg5
= (wxDC
*) 0 ;
9009 wxDC
*arg6
= (wxDC
*) 0 ;
9029 PyObject
* obj0
= 0 ;
9030 PyObject
* obj1
= 0 ;
9031 PyObject
* obj2
= 0 ;
9032 PyObject
* obj3
= 0 ;
9033 PyObject
* obj4
= 0 ;
9034 PyObject
* obj5
= 0 ;
9035 PyObject
* obj6
= 0 ;
9036 PyObject
* obj7
= 0 ;
9037 char * kwnames
[] = {
9038 (char *) "self",(char *) "doDraw",(char *) "startPos",(char *) "endPos",(char *) "draw",(char *) "target",(char *) "renderRect",(char *) "pageRect", NULL
9041 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:StyledTextCtrl_FormatRange",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
9042 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9043 if (!SWIG_IsOK(res1
)) {
9044 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9046 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9047 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9048 if (!SWIG_IsOK(ecode2
)) {
9049 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "2"" of type '" "bool""'");
9051 arg2
= static_cast< bool >(val2
);
9052 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9053 if (!SWIG_IsOK(ecode3
)) {
9054 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "3"" of type '" "int""'");
9056 arg3
= static_cast< int >(val3
);
9057 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9058 if (!SWIG_IsOK(ecode4
)) {
9059 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "4"" of type '" "int""'");
9061 arg4
= static_cast< int >(val4
);
9062 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxDC
, 0 | 0 );
9063 if (!SWIG_IsOK(res5
)) {
9064 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "5"" of type '" "wxDC *""'");
9066 arg5
= reinterpret_cast< wxDC
* >(argp5
);
9067 res6
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxDC
, 0 | 0 );
9068 if (!SWIG_IsOK(res6
)) {
9069 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "6"" of type '" "wxDC *""'");
9071 arg6
= reinterpret_cast< wxDC
* >(argp6
);
9073 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxRect
, 0 | 0);
9074 if (!SWIG_IsOK(res7
)) {
9075 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9078 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9080 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp7
);
9082 if (SWIG_IsNewObj(res7
)) delete temp
;
9086 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxRect
, 0 | 0);
9087 if (!SWIG_IsOK(res8
)) {
9088 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9091 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9093 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp8
);
9095 if (SWIG_IsNewObj(res8
)) delete temp
;
9099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9100 result
= (int)(arg1
)->FormatRange(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
9101 wxPyEndAllowThreads(__tstate
);
9102 if (PyErr_Occurred()) SWIG_fail
;
9104 resultobj
= SWIG_From_int(static_cast< int >(result
));
9111 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFirstVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9112 PyObject
*resultobj
= 0;
9113 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9117 PyObject
*swig_obj
[1] ;
9119 if (!args
) SWIG_fail
;
9121 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9122 if (!SWIG_IsOK(res1
)) {
9123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9125 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9128 result
= (int)(arg1
)->GetFirstVisibleLine();
9129 wxPyEndAllowThreads(__tstate
);
9130 if (PyErr_Occurred()) SWIG_fail
;
9132 resultobj
= SWIG_From_int(static_cast< int >(result
));
9139 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9140 PyObject
*resultobj
= 0;
9141 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9148 PyObject
* obj0
= 0 ;
9149 PyObject
* obj1
= 0 ;
9150 char * kwnames
[] = {
9151 (char *) "self",(char *) "line", NULL
9154 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9155 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9156 if (!SWIG_IsOK(res1
)) {
9157 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9159 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9160 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9161 if (!SWIG_IsOK(ecode2
)) {
9162 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "2"" of type '" "int""'");
9164 arg2
= static_cast< int >(val2
);
9166 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9167 result
= (arg1
)->GetLine(arg2
);
9168 wxPyEndAllowThreads(__tstate
);
9169 if (PyErr_Occurred()) SWIG_fail
;
9173 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9175 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9184 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9185 PyObject
*resultobj
= 0;
9186 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9190 PyObject
*swig_obj
[1] ;
9192 if (!args
) SWIG_fail
;
9194 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9195 if (!SWIG_IsOK(res1
)) {
9196 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9198 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9201 result
= (int)(arg1
)->GetLineCount();
9202 wxPyEndAllowThreads(__tstate
);
9203 if (PyErr_Occurred()) SWIG_fail
;
9205 resultobj
= SWIG_From_int(static_cast< int >(result
));
9212 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9213 PyObject
*resultobj
= 0;
9214 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9220 PyObject
* obj0
= 0 ;
9221 PyObject
* obj1
= 0 ;
9222 char * kwnames
[] = {
9223 (char *) "self",(char *) "pixelWidth", NULL
9226 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9227 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9228 if (!SWIG_IsOK(res1
)) {
9229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9231 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9232 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9233 if (!SWIG_IsOK(ecode2
)) {
9234 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "2"" of type '" "int""'");
9236 arg2
= static_cast< int >(val2
);
9238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9239 (arg1
)->SetMarginLeft(arg2
);
9240 wxPyEndAllowThreads(__tstate
);
9241 if (PyErr_Occurred()) SWIG_fail
;
9243 resultobj
= SWIG_Py_Void();
9250 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9251 PyObject
*resultobj
= 0;
9252 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9256 PyObject
*swig_obj
[1] ;
9258 if (!args
) SWIG_fail
;
9260 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9261 if (!SWIG_IsOK(res1
)) {
9262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9264 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9267 result
= (int)(arg1
)->GetMarginLeft();
9268 wxPyEndAllowThreads(__tstate
);
9269 if (PyErr_Occurred()) SWIG_fail
;
9271 resultobj
= SWIG_From_int(static_cast< int >(result
));
9278 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9279 PyObject
*resultobj
= 0;
9280 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9286 PyObject
* obj0
= 0 ;
9287 PyObject
* obj1
= 0 ;
9288 char * kwnames
[] = {
9289 (char *) "self",(char *) "pixelWidth", NULL
9292 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9293 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9294 if (!SWIG_IsOK(res1
)) {
9295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9297 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9298 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9299 if (!SWIG_IsOK(ecode2
)) {
9300 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "2"" of type '" "int""'");
9302 arg2
= static_cast< int >(val2
);
9304 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9305 (arg1
)->SetMarginRight(arg2
);
9306 wxPyEndAllowThreads(__tstate
);
9307 if (PyErr_Occurred()) SWIG_fail
;
9309 resultobj
= SWIG_Py_Void();
9316 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9317 PyObject
*resultobj
= 0;
9318 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9322 PyObject
*swig_obj
[1] ;
9324 if (!args
) SWIG_fail
;
9326 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9327 if (!SWIG_IsOK(res1
)) {
9328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9330 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9332 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9333 result
= (int)(arg1
)->GetMarginRight();
9334 wxPyEndAllowThreads(__tstate
);
9335 if (PyErr_Occurred()) SWIG_fail
;
9337 resultobj
= SWIG_From_int(static_cast< int >(result
));
9344 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModify(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9345 PyObject
*resultobj
= 0;
9346 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9350 PyObject
*swig_obj
[1] ;
9352 if (!args
) SWIG_fail
;
9354 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9355 if (!SWIG_IsOK(res1
)) {
9356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModify" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9358 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9361 result
= (bool)(arg1
)->GetModify();
9362 wxPyEndAllowThreads(__tstate
);
9363 if (PyErr_Occurred()) SWIG_fail
;
9366 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9374 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9375 PyObject
*resultobj
= 0;
9376 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9385 PyObject
* obj0
= 0 ;
9386 PyObject
* obj1
= 0 ;
9387 PyObject
* obj2
= 0 ;
9388 char * kwnames
[] = {
9389 (char *) "self",(char *) "start",(char *) "end", NULL
9392 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9393 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9394 if (!SWIG_IsOK(res1
)) {
9395 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9397 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9398 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9399 if (!SWIG_IsOK(ecode2
)) {
9400 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "2"" of type '" "int""'");
9402 arg2
= static_cast< int >(val2
);
9403 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9404 if (!SWIG_IsOK(ecode3
)) {
9405 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "3"" of type '" "int""'");
9407 arg3
= static_cast< int >(val3
);
9409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9410 (arg1
)->SetSelection(arg2
,arg3
);
9411 wxPyEndAllowThreads(__tstate
);
9412 if (PyErr_Occurred()) SWIG_fail
;
9414 resultobj
= SWIG_Py_Void();
9421 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9422 PyObject
*resultobj
= 0;
9423 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9427 PyObject
*swig_obj
[1] ;
9429 if (!args
) SWIG_fail
;
9431 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9432 if (!SWIG_IsOK(res1
)) {
9433 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9435 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9437 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9438 result
= (arg1
)->GetSelectedText();
9439 wxPyEndAllowThreads(__tstate
);
9440 if (PyErr_Occurred()) SWIG_fail
;
9444 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9446 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9455 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9456 PyObject
*resultobj
= 0;
9457 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9467 PyObject
* obj0
= 0 ;
9468 PyObject
* obj1
= 0 ;
9469 PyObject
* obj2
= 0 ;
9470 char * kwnames
[] = {
9471 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
9474 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9475 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9476 if (!SWIG_IsOK(res1
)) {
9477 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9479 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9480 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9481 if (!SWIG_IsOK(ecode2
)) {
9482 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "2"" of type '" "int""'");
9484 arg2
= static_cast< int >(val2
);
9485 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9486 if (!SWIG_IsOK(ecode3
)) {
9487 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "3"" of type '" "int""'");
9489 arg3
= static_cast< int >(val3
);
9491 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9492 result
= (arg1
)->GetTextRange(arg2
,arg3
);
9493 wxPyEndAllowThreads(__tstate
);
9494 if (PyErr_Occurred()) SWIG_fail
;
9498 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9500 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9509 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9510 PyObject
*resultobj
= 0;
9511 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9517 PyObject
* obj0
= 0 ;
9518 PyObject
* obj1
= 0 ;
9519 char * kwnames
[] = {
9520 (char *) "self",(char *) "normal", NULL
9523 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_HideSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9524 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9525 if (!SWIG_IsOK(res1
)) {
9526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9528 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9529 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9530 if (!SWIG_IsOK(ecode2
)) {
9531 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "2"" of type '" "bool""'");
9533 arg2
= static_cast< bool >(val2
);
9535 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9536 (arg1
)->HideSelection(arg2
);
9537 wxPyEndAllowThreads(__tstate
);
9538 if (PyErr_Occurred()) SWIG_fail
;
9540 resultobj
= SWIG_Py_Void();
9547 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9548 PyObject
*resultobj
= 0;
9549 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9556 PyObject
* obj0
= 0 ;
9557 PyObject
* obj1
= 0 ;
9558 char * kwnames
[] = {
9559 (char *) "self",(char *) "pos", NULL
9562 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9563 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9564 if (!SWIG_IsOK(res1
)) {
9565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9567 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9568 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9569 if (!SWIG_IsOK(ecode2
)) {
9570 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "2"" of type '" "int""'");
9572 arg2
= static_cast< int >(val2
);
9574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9575 result
= (int)(arg1
)->LineFromPosition(arg2
);
9576 wxPyEndAllowThreads(__tstate
);
9577 if (PyErr_Occurred()) SWIG_fail
;
9579 resultobj
= SWIG_From_int(static_cast< int >(result
));
9586 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9587 PyObject
*resultobj
= 0;
9588 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9595 PyObject
* obj0
= 0 ;
9596 PyObject
* obj1
= 0 ;
9597 char * kwnames
[] = {
9598 (char *) "self",(char *) "line", NULL
9601 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9602 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9603 if (!SWIG_IsOK(res1
)) {
9604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9606 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9607 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9608 if (!SWIG_IsOK(ecode2
)) {
9609 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "2"" of type '" "int""'");
9611 arg2
= static_cast< int >(val2
);
9613 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9614 result
= (int)(arg1
)->PositionFromLine(arg2
);
9615 wxPyEndAllowThreads(__tstate
);
9616 if (PyErr_Occurred()) SWIG_fail
;
9618 resultobj
= SWIG_From_int(static_cast< int >(result
));
9625 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScroll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9626 PyObject
*resultobj
= 0;
9627 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9636 PyObject
* obj0
= 0 ;
9637 PyObject
* obj1
= 0 ;
9638 PyObject
* obj2
= 0 ;
9639 char * kwnames
[] = {
9640 (char *) "self",(char *) "columns",(char *) "lines", NULL
9643 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_LineScroll",kwnames
,&obj0
,&obj1
,&obj2
)) 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_LineScroll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9648 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9649 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9650 if (!SWIG_IsOK(ecode2
)) {
9651 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "2"" of type '" "int""'");
9653 arg2
= static_cast< int >(val2
);
9654 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9655 if (!SWIG_IsOK(ecode3
)) {
9656 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "3"" of type '" "int""'");
9658 arg3
= static_cast< int >(val3
);
9660 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9661 (arg1
)->LineScroll(arg2
,arg3
);
9662 wxPyEndAllowThreads(__tstate
);
9663 if (PyErr_Occurred()) SWIG_fail
;
9665 resultobj
= SWIG_Py_Void();
9672 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureCaretVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9673 PyObject
*resultobj
= 0;
9674 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9677 PyObject
*swig_obj
[1] ;
9679 if (!args
) SWIG_fail
;
9681 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9682 if (!SWIG_IsOK(res1
)) {
9683 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureCaretVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9685 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9687 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9688 (arg1
)->EnsureCaretVisible();
9689 wxPyEndAllowThreads(__tstate
);
9690 if (PyErr_Occurred()) SWIG_fail
;
9692 resultobj
= SWIG_Py_Void();
9699 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9700 PyObject
*resultobj
= 0;
9701 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9702 wxString
*arg2
= 0 ;
9705 bool temp2
= false ;
9706 PyObject
* obj0
= 0 ;
9707 PyObject
* obj1
= 0 ;
9708 char * kwnames
[] = {
9709 (char *) "self",(char *) "text", NULL
9712 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9713 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9714 if (!SWIG_IsOK(res1
)) {
9715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9717 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9719 arg2
= wxString_in_helper(obj1
);
9720 if (arg2
== NULL
) SWIG_fail
;
9724 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9725 (arg1
)->ReplaceSelection((wxString
const &)*arg2
);
9726 wxPyEndAllowThreads(__tstate
);
9727 if (PyErr_Occurred()) SWIG_fail
;
9729 resultobj
= SWIG_Py_Void();
9744 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9745 PyObject
*resultobj
= 0;
9746 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9752 PyObject
* obj0
= 0 ;
9753 PyObject
* obj1
= 0 ;
9754 char * kwnames
[] = {
9755 (char *) "self",(char *) "readOnly", NULL
9758 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetReadOnly",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9759 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9760 if (!SWIG_IsOK(res1
)) {
9761 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9763 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9764 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9765 if (!SWIG_IsOK(ecode2
)) {
9766 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "2"" of type '" "bool""'");
9768 arg2
= static_cast< bool >(val2
);
9770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9771 (arg1
)->SetReadOnly(arg2
);
9772 wxPyEndAllowThreads(__tstate
);
9773 if (PyErr_Occurred()) SWIG_fail
;
9775 resultobj
= SWIG_Py_Void();
9782 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanPaste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9783 PyObject
*resultobj
= 0;
9784 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9788 PyObject
*swig_obj
[1] ;
9790 if (!args
) SWIG_fail
;
9792 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9793 if (!SWIG_IsOK(res1
)) {
9794 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanPaste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9796 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9799 result
= (bool)(arg1
)->CanPaste();
9800 wxPyEndAllowThreads(__tstate
);
9801 if (PyErr_Occurred()) SWIG_fail
;
9804 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9812 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanUndo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9813 PyObject
*resultobj
= 0;
9814 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9818 PyObject
*swig_obj
[1] ;
9820 if (!args
) SWIG_fail
;
9822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9823 if (!SWIG_IsOK(res1
)) {
9824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanUndo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9826 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9829 result
= (bool)(arg1
)->CanUndo();
9830 wxPyEndAllowThreads(__tstate
);
9831 if (PyErr_Occurred()) SWIG_fail
;
9834 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9842 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EmptyUndoBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9843 PyObject
*resultobj
= 0;
9844 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9847 PyObject
*swig_obj
[1] ;
9849 if (!args
) SWIG_fail
;
9851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9852 if (!SWIG_IsOK(res1
)) {
9853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EmptyUndoBuffer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9858 (arg1
)->EmptyUndoBuffer();
9859 wxPyEndAllowThreads(__tstate
);
9860 if (PyErr_Occurred()) SWIG_fail
;
9862 resultobj
= SWIG_Py_Void();
9869 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Undo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9870 PyObject
*resultobj
= 0;
9871 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9874 PyObject
*swig_obj
[1] ;
9876 if (!args
) SWIG_fail
;
9878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9879 if (!SWIG_IsOK(res1
)) {
9880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Undo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9886 wxPyEndAllowThreads(__tstate
);
9887 if (PyErr_Occurred()) SWIG_fail
;
9889 resultobj
= SWIG_Py_Void();
9896 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9897 PyObject
*resultobj
= 0;
9898 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9901 PyObject
*swig_obj
[1] ;
9903 if (!args
) SWIG_fail
;
9905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9906 if (!SWIG_IsOK(res1
)) {
9907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9909 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9913 wxPyEndAllowThreads(__tstate
);
9914 if (PyErr_Occurred()) SWIG_fail
;
9916 resultobj
= SWIG_Py_Void();
9923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Copy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9924 PyObject
*resultobj
= 0;
9925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9928 PyObject
*swig_obj
[1] ;
9930 if (!args
) SWIG_fail
;
9932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9933 if (!SWIG_IsOK(res1
)) {
9934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Copy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9936 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9938 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9940 wxPyEndAllowThreads(__tstate
);
9941 if (PyErr_Occurred()) SWIG_fail
;
9943 resultobj
= SWIG_Py_Void();
9950 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Paste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9951 PyObject
*resultobj
= 0;
9952 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9955 PyObject
*swig_obj
[1] ;
9957 if (!args
) SWIG_fail
;
9959 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9960 if (!SWIG_IsOK(res1
)) {
9961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Paste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9963 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9967 wxPyEndAllowThreads(__tstate
);
9968 if (PyErr_Occurred()) SWIG_fail
;
9970 resultobj
= SWIG_Py_Void();
9977 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9978 PyObject
*resultobj
= 0;
9979 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9982 PyObject
*swig_obj
[1] ;
9984 if (!args
) SWIG_fail
;
9986 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9987 if (!SWIG_IsOK(res1
)) {
9988 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Clear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9990 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9994 wxPyEndAllowThreads(__tstate
);
9995 if (PyErr_Occurred()) SWIG_fail
;
9997 resultobj
= SWIG_Py_Void();
10004 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10005 PyObject
*resultobj
= 0;
10006 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10007 wxString
*arg2
= 0 ;
10010 bool temp2
= false ;
10011 PyObject
* obj0
= 0 ;
10012 PyObject
* obj1
= 0 ;
10013 char * kwnames
[] = {
10014 (char *) "self",(char *) "text", NULL
10017 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10018 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10019 if (!SWIG_IsOK(res1
)) {
10020 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10022 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10024 arg2
= wxString_in_helper(obj1
);
10025 if (arg2
== NULL
) SWIG_fail
;
10029 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10030 (arg1
)->SetText((wxString
const &)*arg2
);
10031 wxPyEndAllowThreads(__tstate
);
10032 if (PyErr_Occurred()) SWIG_fail
;
10034 resultobj
= SWIG_Py_Void();
10049 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10050 PyObject
*resultobj
= 0;
10051 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10055 PyObject
*swig_obj
[1] ;
10057 if (!args
) SWIG_fail
;
10058 swig_obj
[0] = args
;
10059 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10060 if (!SWIG_IsOK(res1
)) {
10061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10063 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10066 result
= (arg1
)->GetText();
10067 wxPyEndAllowThreads(__tstate
);
10068 if (PyErr_Occurred()) SWIG_fail
;
10072 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10074 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10083 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10084 PyObject
*resultobj
= 0;
10085 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10089 PyObject
*swig_obj
[1] ;
10091 if (!args
) SWIG_fail
;
10092 swig_obj
[0] = args
;
10093 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10094 if (!SWIG_IsOK(res1
)) {
10095 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10097 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10099 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10100 result
= (int)(arg1
)->GetTextLength();
10101 wxPyEndAllowThreads(__tstate
);
10102 if (PyErr_Occurred()) SWIG_fail
;
10104 resultobj
= SWIG_From_int(static_cast< int >(result
));
10111 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10112 PyObject
*resultobj
= 0;
10113 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10119 PyObject
* obj0
= 0 ;
10120 PyObject
* obj1
= 0 ;
10121 char * kwnames
[] = {
10122 (char *) "self",(char *) "overtype", NULL
10125 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetOvertype",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10126 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10127 if (!SWIG_IsOK(res1
)) {
10128 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10130 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10131 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
10132 if (!SWIG_IsOK(ecode2
)) {
10133 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "2"" of type '" "bool""'");
10135 arg2
= static_cast< bool >(val2
);
10137 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10138 (arg1
)->SetOvertype(arg2
);
10139 wxPyEndAllowThreads(__tstate
);
10140 if (PyErr_Occurred()) SWIG_fail
;
10142 resultobj
= SWIG_Py_Void();
10149 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10150 PyObject
*resultobj
= 0;
10151 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10155 PyObject
*swig_obj
[1] ;
10157 if (!args
) SWIG_fail
;
10158 swig_obj
[0] = args
;
10159 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10160 if (!SWIG_IsOK(res1
)) {
10161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10163 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10165 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10166 result
= (bool)(arg1
)->GetOvertype();
10167 wxPyEndAllowThreads(__tstate
);
10168 if (PyErr_Occurred()) SWIG_fail
;
10171 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10179 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10180 PyObject
*resultobj
= 0;
10181 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10187 PyObject
* obj0
= 0 ;
10188 PyObject
* obj1
= 0 ;
10189 char * kwnames
[] = {
10190 (char *) "self",(char *) "pixelWidth", NULL
10193 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10194 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10195 if (!SWIG_IsOK(res1
)) {
10196 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10198 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10199 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10200 if (!SWIG_IsOK(ecode2
)) {
10201 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "2"" of type '" "int""'");
10203 arg2
= static_cast< int >(val2
);
10205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10206 (arg1
)->SetCaretWidth(arg2
);
10207 wxPyEndAllowThreads(__tstate
);
10208 if (PyErr_Occurred()) SWIG_fail
;
10210 resultobj
= SWIG_Py_Void();
10217 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10218 PyObject
*resultobj
= 0;
10219 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10223 PyObject
*swig_obj
[1] ;
10225 if (!args
) SWIG_fail
;
10226 swig_obj
[0] = args
;
10227 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10228 if (!SWIG_IsOK(res1
)) {
10229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10231 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10234 result
= (int)(arg1
)->GetCaretWidth();
10235 wxPyEndAllowThreads(__tstate
);
10236 if (PyErr_Occurred()) SWIG_fail
;
10238 resultobj
= SWIG_From_int(static_cast< int >(result
));
10245 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10246 PyObject
*resultobj
= 0;
10247 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10253 PyObject
* obj0
= 0 ;
10254 PyObject
* obj1
= 0 ;
10255 char * kwnames
[] = {
10256 (char *) "self",(char *) "pos", NULL
10259 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10260 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10261 if (!SWIG_IsOK(res1
)) {
10262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10264 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10265 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10266 if (!SWIG_IsOK(ecode2
)) {
10267 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "2"" of type '" "int""'");
10269 arg2
= static_cast< int >(val2
);
10271 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10272 (arg1
)->SetTargetStart(arg2
);
10273 wxPyEndAllowThreads(__tstate
);
10274 if (PyErr_Occurred()) SWIG_fail
;
10276 resultobj
= SWIG_Py_Void();
10283 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10284 PyObject
*resultobj
= 0;
10285 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10289 PyObject
*swig_obj
[1] ;
10291 if (!args
) SWIG_fail
;
10292 swig_obj
[0] = args
;
10293 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10294 if (!SWIG_IsOK(res1
)) {
10295 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10297 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10299 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10300 result
= (int)(arg1
)->GetTargetStart();
10301 wxPyEndAllowThreads(__tstate
);
10302 if (PyErr_Occurred()) SWIG_fail
;
10304 resultobj
= SWIG_From_int(static_cast< int >(result
));
10311 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10312 PyObject
*resultobj
= 0;
10313 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10319 PyObject
* obj0
= 0 ;
10320 PyObject
* obj1
= 0 ;
10321 char * kwnames
[] = {
10322 (char *) "self",(char *) "pos", NULL
10325 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10326 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10327 if (!SWIG_IsOK(res1
)) {
10328 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10330 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10331 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10332 if (!SWIG_IsOK(ecode2
)) {
10333 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "2"" of type '" "int""'");
10335 arg2
= static_cast< int >(val2
);
10337 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10338 (arg1
)->SetTargetEnd(arg2
);
10339 wxPyEndAllowThreads(__tstate
);
10340 if (PyErr_Occurred()) SWIG_fail
;
10342 resultobj
= SWIG_Py_Void();
10349 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10350 PyObject
*resultobj
= 0;
10351 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10355 PyObject
*swig_obj
[1] ;
10357 if (!args
) SWIG_fail
;
10358 swig_obj
[0] = args
;
10359 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10360 if (!SWIG_IsOK(res1
)) {
10361 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10363 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10366 result
= (int)(arg1
)->GetTargetEnd();
10367 wxPyEndAllowThreads(__tstate
);
10368 if (PyErr_Occurred()) SWIG_fail
;
10370 resultobj
= SWIG_From_int(static_cast< int >(result
));
10377 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10378 PyObject
*resultobj
= 0;
10379 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10380 wxString
*arg2
= 0 ;
10384 bool temp2
= false ;
10385 PyObject
* obj0
= 0 ;
10386 PyObject
* obj1
= 0 ;
10387 char * kwnames
[] = {
10388 (char *) "self",(char *) "text", NULL
10391 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10392 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10393 if (!SWIG_IsOK(res1
)) {
10394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10396 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10398 arg2
= wxString_in_helper(obj1
);
10399 if (arg2
== NULL
) SWIG_fail
;
10403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10404 result
= (int)(arg1
)->ReplaceTarget((wxString
const &)*arg2
);
10405 wxPyEndAllowThreads(__tstate
);
10406 if (PyErr_Occurred()) SWIG_fail
;
10408 resultobj
= SWIG_From_int(static_cast< int >(result
));
10423 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTargetRE(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10424 PyObject
*resultobj
= 0;
10425 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10426 wxString
*arg2
= 0 ;
10430 bool temp2
= false ;
10431 PyObject
* obj0
= 0 ;
10432 PyObject
* obj1
= 0 ;
10433 char * kwnames
[] = {
10434 (char *) "self",(char *) "text", NULL
10437 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTargetRE",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10438 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10439 if (!SWIG_IsOK(res1
)) {
10440 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTargetRE" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10442 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10444 arg2
= wxString_in_helper(obj1
);
10445 if (arg2
== NULL
) SWIG_fail
;
10449 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10450 result
= (int)(arg1
)->ReplaceTargetRE((wxString
const &)*arg2
);
10451 wxPyEndAllowThreads(__tstate
);
10452 if (PyErr_Occurred()) SWIG_fail
;
10454 resultobj
= SWIG_From_int(static_cast< int >(result
));
10469 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchInTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10470 PyObject
*resultobj
= 0;
10471 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10472 wxString
*arg2
= 0 ;
10476 bool temp2
= false ;
10477 PyObject
* obj0
= 0 ;
10478 PyObject
* obj1
= 0 ;
10479 char * kwnames
[] = {
10480 (char *) "self",(char *) "text", NULL
10483 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SearchInTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10484 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10485 if (!SWIG_IsOK(res1
)) {
10486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchInTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10488 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10490 arg2
= wxString_in_helper(obj1
);
10491 if (arg2
== NULL
) SWIG_fail
;
10495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10496 result
= (int)(arg1
)->SearchInTarget((wxString
const &)*arg2
);
10497 wxPyEndAllowThreads(__tstate
);
10498 if (PyErr_Occurred()) SWIG_fail
;
10500 resultobj
= SWIG_From_int(static_cast< int >(result
));
10515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10516 PyObject
*resultobj
= 0;
10517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10523 PyObject
* obj0
= 0 ;
10524 PyObject
* obj1
= 0 ;
10525 char * kwnames
[] = {
10526 (char *) "self",(char *) "flags", NULL
10529 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSearchFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10530 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10531 if (!SWIG_IsOK(res1
)) {
10532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10534 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10535 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10536 if (!SWIG_IsOK(ecode2
)) {
10537 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "2"" of type '" "int""'");
10539 arg2
= static_cast< int >(val2
);
10541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10542 (arg1
)->SetSearchFlags(arg2
);
10543 wxPyEndAllowThreads(__tstate
);
10544 if (PyErr_Occurred()) SWIG_fail
;
10546 resultobj
= SWIG_Py_Void();
10553 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10554 PyObject
*resultobj
= 0;
10555 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10559 PyObject
*swig_obj
[1] ;
10561 if (!args
) SWIG_fail
;
10562 swig_obj
[0] = args
;
10563 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10564 if (!SWIG_IsOK(res1
)) {
10565 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10567 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10569 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10570 result
= (int)(arg1
)->GetSearchFlags();
10571 wxPyEndAllowThreads(__tstate
);
10572 if (PyErr_Occurred()) SWIG_fail
;
10574 resultobj
= SWIG_From_int(static_cast< int >(result
));
10581 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10582 PyObject
*resultobj
= 0;
10583 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10585 wxString
*arg3
= 0 ;
10590 bool temp3
= false ;
10591 PyObject
* obj0
= 0 ;
10592 PyObject
* obj1
= 0 ;
10593 PyObject
* obj2
= 0 ;
10594 char * kwnames
[] = {
10595 (char *) "self",(char *) "pos",(char *) "definition", NULL
10598 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10599 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10600 if (!SWIG_IsOK(res1
)) {
10601 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10603 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10604 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10605 if (!SWIG_IsOK(ecode2
)) {
10606 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "2"" of type '" "int""'");
10608 arg2
= static_cast< int >(val2
);
10610 arg3
= wxString_in_helper(obj2
);
10611 if (arg3
== NULL
) SWIG_fail
;
10615 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10616 (arg1
)->CallTipShow(arg2
,(wxString
const &)*arg3
);
10617 wxPyEndAllowThreads(__tstate
);
10618 if (PyErr_Occurred()) SWIG_fail
;
10620 resultobj
= SWIG_Py_Void();
10635 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10636 PyObject
*resultobj
= 0;
10637 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10640 PyObject
*swig_obj
[1] ;
10642 if (!args
) SWIG_fail
;
10643 swig_obj
[0] = args
;
10644 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10645 if (!SWIG_IsOK(res1
)) {
10646 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10648 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10650 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10651 (arg1
)->CallTipCancel();
10652 wxPyEndAllowThreads(__tstate
);
10653 if (PyErr_Occurred()) SWIG_fail
;
10655 resultobj
= SWIG_Py_Void();
10662 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10663 PyObject
*resultobj
= 0;
10664 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10668 PyObject
*swig_obj
[1] ;
10670 if (!args
) SWIG_fail
;
10671 swig_obj
[0] = args
;
10672 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10673 if (!SWIG_IsOK(res1
)) {
10674 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10676 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10679 result
= (bool)(arg1
)->CallTipActive();
10680 wxPyEndAllowThreads(__tstate
);
10681 if (PyErr_Occurred()) SWIG_fail
;
10684 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10692 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipPosAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10693 PyObject
*resultobj
= 0;
10694 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10698 PyObject
*swig_obj
[1] ;
10700 if (!args
) SWIG_fail
;
10701 swig_obj
[0] = args
;
10702 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10703 if (!SWIG_IsOK(res1
)) {
10704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipPosAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10706 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10709 result
= (int)(arg1
)->CallTipPosAtStart();
10710 wxPyEndAllowThreads(__tstate
);
10711 if (PyErr_Occurred()) SWIG_fail
;
10713 resultobj
= SWIG_From_int(static_cast< int >(result
));
10720 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10721 PyObject
*resultobj
= 0;
10722 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10731 PyObject
* obj0
= 0 ;
10732 PyObject
* obj1
= 0 ;
10733 PyObject
* obj2
= 0 ;
10734 char * kwnames
[] = {
10735 (char *) "self",(char *) "start",(char *) "end", NULL
10738 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipSetHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10739 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10740 if (!SWIG_IsOK(res1
)) {
10741 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10743 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10744 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10745 if (!SWIG_IsOK(ecode2
)) {
10746 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "2"" of type '" "int""'");
10748 arg2
= static_cast< int >(val2
);
10749 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10750 if (!SWIG_IsOK(ecode3
)) {
10751 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "3"" of type '" "int""'");
10753 arg3
= static_cast< int >(val3
);
10755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10756 (arg1
)->CallTipSetHighlight(arg2
,arg3
);
10757 wxPyEndAllowThreads(__tstate
);
10758 if (PyErr_Occurred()) SWIG_fail
;
10760 resultobj
= SWIG_Py_Void();
10767 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10768 PyObject
*resultobj
= 0;
10769 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10770 wxColour
*arg2
= 0 ;
10774 PyObject
* obj0
= 0 ;
10775 PyObject
* obj1
= 0 ;
10776 char * kwnames
[] = {
10777 (char *) "self",(char *) "back", NULL
10780 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10781 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10782 if (!SWIG_IsOK(res1
)) {
10783 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10785 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10788 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10792 (arg1
)->CallTipSetBackground((wxColour
const &)*arg2
);
10793 wxPyEndAllowThreads(__tstate
);
10794 if (PyErr_Occurred()) SWIG_fail
;
10796 resultobj
= SWIG_Py_Void();
10803 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10804 PyObject
*resultobj
= 0;
10805 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10806 wxColour
*arg2
= 0 ;
10810 PyObject
* obj0
= 0 ;
10811 PyObject
* obj1
= 0 ;
10812 char * kwnames
[] = {
10813 (char *) "self",(char *) "fore", NULL
10816 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10817 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10818 if (!SWIG_IsOK(res1
)) {
10819 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10821 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10824 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10828 (arg1
)->CallTipSetForeground((wxColour
const &)*arg2
);
10829 wxPyEndAllowThreads(__tstate
);
10830 if (PyErr_Occurred()) SWIG_fail
;
10832 resultobj
= SWIG_Py_Void();
10839 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForegroundHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10840 PyObject
*resultobj
= 0;
10841 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10842 wxColour
*arg2
= 0 ;
10846 PyObject
* obj0
= 0 ;
10847 PyObject
* obj1
= 0 ;
10848 char * kwnames
[] = {
10849 (char *) "self",(char *) "fore", NULL
10852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForegroundHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10854 if (!SWIG_IsOK(res1
)) {
10855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForegroundHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10857 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10860 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10864 (arg1
)->CallTipSetForegroundHighlight((wxColour
const &)*arg2
);
10865 wxPyEndAllowThreads(__tstate
);
10866 if (PyErr_Occurred()) SWIG_fail
;
10868 resultobj
= SWIG_Py_Void();
10875 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VisibleFromDocLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10876 PyObject
*resultobj
= 0;
10877 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10884 PyObject
* obj0
= 0 ;
10885 PyObject
* obj1
= 0 ;
10886 char * kwnames
[] = {
10887 (char *) "self",(char *) "line", NULL
10890 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_VisibleFromDocLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10891 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10892 if (!SWIG_IsOK(res1
)) {
10893 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10895 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10896 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10897 if (!SWIG_IsOK(ecode2
)) {
10898 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "2"" of type '" "int""'");
10900 arg2
= static_cast< int >(val2
);
10902 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10903 result
= (int)(arg1
)->VisibleFromDocLine(arg2
);
10904 wxPyEndAllowThreads(__tstate
);
10905 if (PyErr_Occurred()) SWIG_fail
;
10907 resultobj
= SWIG_From_int(static_cast< int >(result
));
10914 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocLineFromVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10915 PyObject
*resultobj
= 0;
10916 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10923 PyObject
* obj0
= 0 ;
10924 PyObject
* obj1
= 0 ;
10925 char * kwnames
[] = {
10926 (char *) "self",(char *) "lineDisplay", NULL
10929 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_DocLineFromVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10930 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10931 if (!SWIG_IsOK(res1
)) {
10932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10934 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10935 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10936 if (!SWIG_IsOK(ecode2
)) {
10937 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "2"" of type '" "int""'");
10939 arg2
= static_cast< int >(val2
);
10941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10942 result
= (int)(arg1
)->DocLineFromVisible(arg2
);
10943 wxPyEndAllowThreads(__tstate
);
10944 if (PyErr_Occurred()) SWIG_fail
;
10946 resultobj
= SWIG_From_int(static_cast< int >(result
));
10953 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WrapCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10954 PyObject
*resultobj
= 0;
10955 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10962 PyObject
* obj0
= 0 ;
10963 PyObject
* obj1
= 0 ;
10964 char * kwnames
[] = {
10965 (char *) "self",(char *) "line", NULL
10968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_WrapCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10970 if (!SWIG_IsOK(res1
)) {
10971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10973 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10974 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10975 if (!SWIG_IsOK(ecode2
)) {
10976 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "2"" of type '" "int""'");
10978 arg2
= static_cast< int >(val2
);
10980 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10981 result
= (int)(arg1
)->WrapCount(arg2
);
10982 wxPyEndAllowThreads(__tstate
);
10983 if (PyErr_Occurred()) SWIG_fail
;
10985 resultobj
= SWIG_From_int(static_cast< int >(result
));
10992 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10993 PyObject
*resultobj
= 0;
10994 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11003 PyObject
* obj0
= 0 ;
11004 PyObject
* obj1
= 0 ;
11005 PyObject
* obj2
= 0 ;
11006 char * kwnames
[] = {
11007 (char *) "self",(char *) "line",(char *) "level", NULL
11010 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldLevel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11011 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11012 if (!SWIG_IsOK(res1
)) {
11013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11015 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11016 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11017 if (!SWIG_IsOK(ecode2
)) {
11018 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11020 arg2
= static_cast< int >(val2
);
11021 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11022 if (!SWIG_IsOK(ecode3
)) {
11023 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "3"" of type '" "int""'");
11025 arg3
= static_cast< int >(val3
);
11027 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11028 (arg1
)->SetFoldLevel(arg2
,arg3
);
11029 wxPyEndAllowThreads(__tstate
);
11030 if (PyErr_Occurred()) SWIG_fail
;
11032 resultobj
= SWIG_Py_Void();
11039 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11040 PyObject
*resultobj
= 0;
11041 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11048 PyObject
* obj0
= 0 ;
11049 PyObject
* obj1
= 0 ;
11050 char * kwnames
[] = {
11051 (char *) "self",(char *) "line", NULL
11054 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldLevel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11055 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11056 if (!SWIG_IsOK(res1
)) {
11057 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11059 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11060 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11061 if (!SWIG_IsOK(ecode2
)) {
11062 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11064 arg2
= static_cast< int >(val2
);
11066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11067 result
= (int)(arg1
)->GetFoldLevel(arg2
);
11068 wxPyEndAllowThreads(__tstate
);
11069 if (PyErr_Occurred()) SWIG_fail
;
11071 resultobj
= SWIG_From_int(static_cast< int >(result
));
11078 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11079 PyObject
*resultobj
= 0;
11080 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11090 PyObject
* obj0
= 0 ;
11091 PyObject
* obj1
= 0 ;
11092 PyObject
* obj2
= 0 ;
11093 char * kwnames
[] = {
11094 (char *) "self",(char *) "line",(char *) "level", NULL
11097 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetLastChild",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11098 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11099 if (!SWIG_IsOK(res1
)) {
11100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11102 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11103 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11104 if (!SWIG_IsOK(ecode2
)) {
11105 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "2"" of type '" "int""'");
11107 arg2
= static_cast< int >(val2
);
11108 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11109 if (!SWIG_IsOK(ecode3
)) {
11110 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "3"" of type '" "int""'");
11112 arg3
= static_cast< int >(val3
);
11114 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11115 result
= (int)(arg1
)->GetLastChild(arg2
,arg3
);
11116 wxPyEndAllowThreads(__tstate
);
11117 if (PyErr_Occurred()) SWIG_fail
;
11119 resultobj
= SWIG_From_int(static_cast< int >(result
));
11126 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldParent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11127 PyObject
*resultobj
= 0;
11128 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11135 PyObject
* obj0
= 0 ;
11136 PyObject
* obj1
= 0 ;
11137 char * kwnames
[] = {
11138 (char *) "self",(char *) "line", NULL
11141 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldParent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11142 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11143 if (!SWIG_IsOK(res1
)) {
11144 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11146 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11147 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11148 if (!SWIG_IsOK(ecode2
)) {
11149 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "2"" of type '" "int""'");
11151 arg2
= static_cast< int >(val2
);
11153 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11154 result
= (int)(arg1
)->GetFoldParent(arg2
);
11155 wxPyEndAllowThreads(__tstate
);
11156 if (PyErr_Occurred()) SWIG_fail
;
11158 resultobj
= SWIG_From_int(static_cast< int >(result
));
11165 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ShowLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11166 PyObject
*resultobj
= 0;
11167 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11176 PyObject
* obj0
= 0 ;
11177 PyObject
* obj1
= 0 ;
11178 PyObject
* obj2
= 0 ;
11179 char * kwnames
[] = {
11180 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_ShowLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11185 if (!SWIG_IsOK(res1
)) {
11186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11188 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11190 if (!SWIG_IsOK(ecode2
)) {
11191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "2"" of type '" "int""'");
11193 arg2
= static_cast< int >(val2
);
11194 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11195 if (!SWIG_IsOK(ecode3
)) {
11196 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "3"" of type '" "int""'");
11198 arg3
= static_cast< int >(val3
);
11200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11201 (arg1
)->ShowLines(arg2
,arg3
);
11202 wxPyEndAllowThreads(__tstate
);
11203 if (PyErr_Occurred()) SWIG_fail
;
11205 resultobj
= SWIG_Py_Void();
11212 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11213 PyObject
*resultobj
= 0;
11214 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11223 PyObject
* obj0
= 0 ;
11224 PyObject
* obj1
= 0 ;
11225 PyObject
* obj2
= 0 ;
11226 char * kwnames
[] = {
11227 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_HideLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11232 if (!SWIG_IsOK(res1
)) {
11233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11235 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11236 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11237 if (!SWIG_IsOK(ecode2
)) {
11238 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "2"" of type '" "int""'");
11240 arg2
= static_cast< int >(val2
);
11241 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11242 if (!SWIG_IsOK(ecode3
)) {
11243 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "3"" of type '" "int""'");
11245 arg3
= static_cast< int >(val3
);
11247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11248 (arg1
)->HideLines(arg2
,arg3
);
11249 wxPyEndAllowThreads(__tstate
);
11250 if (PyErr_Occurred()) SWIG_fail
;
11252 resultobj
= SWIG_Py_Void();
11259 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11260 PyObject
*resultobj
= 0;
11261 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11268 PyObject
* obj0
= 0 ;
11269 PyObject
* obj1
= 0 ;
11270 char * kwnames
[] = {
11271 (char *) "self",(char *) "line", NULL
11274 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11275 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11276 if (!SWIG_IsOK(res1
)) {
11277 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11279 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11280 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11281 if (!SWIG_IsOK(ecode2
)) {
11282 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "2"" of type '" "int""'");
11284 arg2
= static_cast< int >(val2
);
11286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11287 result
= (bool)(arg1
)->GetLineVisible(arg2
);
11288 wxPyEndAllowThreads(__tstate
);
11289 if (PyErr_Occurred()) SWIG_fail
;
11292 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11300 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11301 PyObject
*resultobj
= 0;
11302 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11311 PyObject
* obj0
= 0 ;
11312 PyObject
* obj1
= 0 ;
11313 PyObject
* obj2
= 0 ;
11314 char * kwnames
[] = {
11315 (char *) "self",(char *) "line",(char *) "expanded", NULL
11318 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldExpanded",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11319 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11320 if (!SWIG_IsOK(res1
)) {
11321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11323 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11324 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11325 if (!SWIG_IsOK(ecode2
)) {
11326 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11328 arg2
= static_cast< int >(val2
);
11329 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11330 if (!SWIG_IsOK(ecode3
)) {
11331 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "3"" of type '" "bool""'");
11333 arg3
= static_cast< bool >(val3
);
11335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11336 (arg1
)->SetFoldExpanded(arg2
,arg3
);
11337 wxPyEndAllowThreads(__tstate
);
11338 if (PyErr_Occurred()) SWIG_fail
;
11340 resultobj
= SWIG_Py_Void();
11347 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11348 PyObject
*resultobj
= 0;
11349 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11356 PyObject
* obj0
= 0 ;
11357 PyObject
* obj1
= 0 ;
11358 char * kwnames
[] = {
11359 (char *) "self",(char *) "line", NULL
11362 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11363 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11364 if (!SWIG_IsOK(res1
)) {
11365 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11367 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11368 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11369 if (!SWIG_IsOK(ecode2
)) {
11370 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11372 arg2
= static_cast< int >(val2
);
11374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11375 result
= (bool)(arg1
)->GetFoldExpanded(arg2
);
11376 wxPyEndAllowThreads(__tstate
);
11377 if (PyErr_Occurred()) SWIG_fail
;
11380 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11388 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleFold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11389 PyObject
*resultobj
= 0;
11390 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11396 PyObject
* obj0
= 0 ;
11397 PyObject
* obj1
= 0 ;
11398 char * kwnames
[] = {
11399 (char *) "self",(char *) "line", NULL
11402 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ToggleFold",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11403 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11404 if (!SWIG_IsOK(res1
)) {
11405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11407 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11408 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11409 if (!SWIG_IsOK(ecode2
)) {
11410 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "2"" of type '" "int""'");
11412 arg2
= static_cast< int >(val2
);
11414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11415 (arg1
)->ToggleFold(arg2
);
11416 wxPyEndAllowThreads(__tstate
);
11417 if (PyErr_Occurred()) SWIG_fail
;
11419 resultobj
= SWIG_Py_Void();
11426 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11427 PyObject
*resultobj
= 0;
11428 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11434 PyObject
* obj0
= 0 ;
11435 PyObject
* obj1
= 0 ;
11436 char * kwnames
[] = {
11437 (char *) "self",(char *) "line", NULL
11440 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11441 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11442 if (!SWIG_IsOK(res1
)) {
11443 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11445 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11446 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11447 if (!SWIG_IsOK(ecode2
)) {
11448 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "2"" of type '" "int""'");
11450 arg2
= static_cast< int >(val2
);
11452 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11453 (arg1
)->EnsureVisible(arg2
);
11454 wxPyEndAllowThreads(__tstate
);
11455 if (PyErr_Occurred()) SWIG_fail
;
11457 resultobj
= SWIG_Py_Void();
11464 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11465 PyObject
*resultobj
= 0;
11466 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11472 PyObject
* obj0
= 0 ;
11473 PyObject
* obj1
= 0 ;
11474 char * kwnames
[] = {
11475 (char *) "self",(char *) "flags", NULL
11478 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetFoldFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11479 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11480 if (!SWIG_IsOK(res1
)) {
11481 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11483 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11484 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11485 if (!SWIG_IsOK(ecode2
)) {
11486 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "2"" of type '" "int""'");
11488 arg2
= static_cast< int >(val2
);
11490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11491 (arg1
)->SetFoldFlags(arg2
);
11492 wxPyEndAllowThreads(__tstate
);
11493 if (PyErr_Occurred()) SWIG_fail
;
11495 resultobj
= SWIG_Py_Void();
11502 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11503 PyObject
*resultobj
= 0;
11504 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11510 PyObject
* obj0
= 0 ;
11511 PyObject
* obj1
= 0 ;
11512 char * kwnames
[] = {
11513 (char *) "self",(char *) "line", NULL
11516 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisibleEnforcePolicy",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11517 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11518 if (!SWIG_IsOK(res1
)) {
11519 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11521 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11522 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11523 if (!SWIG_IsOK(ecode2
)) {
11524 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "2"" of type '" "int""'");
11526 arg2
= static_cast< int >(val2
);
11528 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11529 (arg1
)->EnsureVisibleEnforcePolicy(arg2
);
11530 wxPyEndAllowThreads(__tstate
);
11531 if (PyErr_Occurred()) SWIG_fail
;
11533 resultobj
= SWIG_Py_Void();
11540 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11541 PyObject
*resultobj
= 0;
11542 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11548 PyObject
* obj0
= 0 ;
11549 PyObject
* obj1
= 0 ;
11550 char * kwnames
[] = {
11551 (char *) "self",(char *) "tabIndents", NULL
11554 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11555 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11556 if (!SWIG_IsOK(res1
)) {
11557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11559 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11560 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11561 if (!SWIG_IsOK(ecode2
)) {
11562 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "2"" of type '" "bool""'");
11564 arg2
= static_cast< bool >(val2
);
11566 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11567 (arg1
)->SetTabIndents(arg2
);
11568 wxPyEndAllowThreads(__tstate
);
11569 if (PyErr_Occurred()) SWIG_fail
;
11571 resultobj
= SWIG_Py_Void();
11578 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11579 PyObject
*resultobj
= 0;
11580 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11584 PyObject
*swig_obj
[1] ;
11586 if (!args
) SWIG_fail
;
11587 swig_obj
[0] = args
;
11588 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11589 if (!SWIG_IsOK(res1
)) {
11590 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11592 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11594 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11595 result
= (bool)(arg1
)->GetTabIndents();
11596 wxPyEndAllowThreads(__tstate
);
11597 if (PyErr_Occurred()) SWIG_fail
;
11600 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11608 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11609 PyObject
*resultobj
= 0;
11610 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11616 PyObject
* obj0
= 0 ;
11617 PyObject
* obj1
= 0 ;
11618 char * kwnames
[] = {
11619 (char *) "self",(char *) "bsUnIndents", NULL
11622 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBackSpaceUnIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11623 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11624 if (!SWIG_IsOK(res1
)) {
11625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11627 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11628 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11629 if (!SWIG_IsOK(ecode2
)) {
11630 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "2"" of type '" "bool""'");
11632 arg2
= static_cast< bool >(val2
);
11634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11635 (arg1
)->SetBackSpaceUnIndents(arg2
);
11636 wxPyEndAllowThreads(__tstate
);
11637 if (PyErr_Occurred()) SWIG_fail
;
11639 resultobj
= SWIG_Py_Void();
11646 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11647 PyObject
*resultobj
= 0;
11648 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11652 PyObject
*swig_obj
[1] ;
11654 if (!args
) SWIG_fail
;
11655 swig_obj
[0] = args
;
11656 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11657 if (!SWIG_IsOK(res1
)) {
11658 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11660 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11663 result
= (bool)(arg1
)->GetBackSpaceUnIndents();
11664 wxPyEndAllowThreads(__tstate
);
11665 if (PyErr_Occurred()) SWIG_fail
;
11668 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11676 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11677 PyObject
*resultobj
= 0;
11678 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11684 PyObject
* obj0
= 0 ;
11685 PyObject
* obj1
= 0 ;
11686 char * kwnames
[] = {
11687 (char *) "self",(char *) "periodMilliseconds", NULL
11690 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDwellTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11691 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11692 if (!SWIG_IsOK(res1
)) {
11693 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11695 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11696 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11697 if (!SWIG_IsOK(ecode2
)) {
11698 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "2"" of type '" "int""'");
11700 arg2
= static_cast< int >(val2
);
11702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11703 (arg1
)->SetMouseDwellTime(arg2
);
11704 wxPyEndAllowThreads(__tstate
);
11705 if (PyErr_Occurred()) SWIG_fail
;
11707 resultobj
= SWIG_Py_Void();
11714 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11715 PyObject
*resultobj
= 0;
11716 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11720 PyObject
*swig_obj
[1] ;
11722 if (!args
) SWIG_fail
;
11723 swig_obj
[0] = args
;
11724 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11725 if (!SWIG_IsOK(res1
)) {
11726 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11728 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11730 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11731 result
= (int)(arg1
)->GetMouseDwellTime();
11732 wxPyEndAllowThreads(__tstate
);
11733 if (PyErr_Occurred()) SWIG_fail
;
11735 resultobj
= SWIG_From_int(static_cast< int >(result
));
11742 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11743 PyObject
*resultobj
= 0;
11744 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11754 PyObject
* obj0
= 0 ;
11755 PyObject
* obj1
= 0 ;
11756 PyObject
* obj2
= 0 ;
11757 char * kwnames
[] = {
11758 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11761 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordStartPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11762 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11763 if (!SWIG_IsOK(res1
)) {
11764 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11766 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11767 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11768 if (!SWIG_IsOK(ecode2
)) {
11769 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "2"" of type '" "int""'");
11771 arg2
= static_cast< int >(val2
);
11772 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11773 if (!SWIG_IsOK(ecode3
)) {
11774 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "3"" of type '" "bool""'");
11776 arg3
= static_cast< bool >(val3
);
11778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11779 result
= (int)(arg1
)->WordStartPosition(arg2
,arg3
);
11780 wxPyEndAllowThreads(__tstate
);
11781 if (PyErr_Occurred()) SWIG_fail
;
11783 resultobj
= SWIG_From_int(static_cast< int >(result
));
11790 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11791 PyObject
*resultobj
= 0;
11792 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11802 PyObject
* obj0
= 0 ;
11803 PyObject
* obj1
= 0 ;
11804 PyObject
* obj2
= 0 ;
11805 char * kwnames
[] = {
11806 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11809 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordEndPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11810 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11811 if (!SWIG_IsOK(res1
)) {
11812 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11814 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11815 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11816 if (!SWIG_IsOK(ecode2
)) {
11817 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "2"" of type '" "int""'");
11819 arg2
= static_cast< int >(val2
);
11820 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11821 if (!SWIG_IsOK(ecode3
)) {
11822 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "3"" of type '" "bool""'");
11824 arg3
= static_cast< bool >(val3
);
11826 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11827 result
= (int)(arg1
)->WordEndPosition(arg2
,arg3
);
11828 wxPyEndAllowThreads(__tstate
);
11829 if (PyErr_Occurred()) SWIG_fail
;
11831 resultobj
= SWIG_From_int(static_cast< int >(result
));
11838 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11839 PyObject
*resultobj
= 0;
11840 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11846 PyObject
* obj0
= 0 ;
11847 PyObject
* obj1
= 0 ;
11848 char * kwnames
[] = {
11849 (char *) "self",(char *) "mode", NULL
11852 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11853 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11854 if (!SWIG_IsOK(res1
)) {
11855 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11857 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11858 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11859 if (!SWIG_IsOK(ecode2
)) {
11860 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "2"" of type '" "int""'");
11862 arg2
= static_cast< int >(val2
);
11864 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11865 (arg1
)->SetWrapMode(arg2
);
11866 wxPyEndAllowThreads(__tstate
);
11867 if (PyErr_Occurred()) SWIG_fail
;
11869 resultobj
= SWIG_Py_Void();
11876 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11877 PyObject
*resultobj
= 0;
11878 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11882 PyObject
*swig_obj
[1] ;
11884 if (!args
) SWIG_fail
;
11885 swig_obj
[0] = args
;
11886 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11887 if (!SWIG_IsOK(res1
)) {
11888 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11890 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11892 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11893 result
= (int)(arg1
)->GetWrapMode();
11894 wxPyEndAllowThreads(__tstate
);
11895 if (PyErr_Occurred()) SWIG_fail
;
11897 resultobj
= SWIG_From_int(static_cast< int >(result
));
11904 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11905 PyObject
*resultobj
= 0;
11906 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11912 PyObject
* obj0
= 0 ;
11913 PyObject
* obj1
= 0 ;
11914 char * kwnames
[] = {
11915 (char *) "self",(char *) "wrapVisualFlags", NULL
11918 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11919 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11920 if (!SWIG_IsOK(res1
)) {
11921 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11923 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11924 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11925 if (!SWIG_IsOK(ecode2
)) {
11926 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "2"" of type '" "int""'");
11928 arg2
= static_cast< int >(val2
);
11930 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11931 (arg1
)->SetWrapVisualFlags(arg2
);
11932 wxPyEndAllowThreads(__tstate
);
11933 if (PyErr_Occurred()) SWIG_fail
;
11935 resultobj
= SWIG_Py_Void();
11942 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11943 PyObject
*resultobj
= 0;
11944 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11948 PyObject
*swig_obj
[1] ;
11950 if (!args
) SWIG_fail
;
11951 swig_obj
[0] = args
;
11952 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11953 if (!SWIG_IsOK(res1
)) {
11954 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11956 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11959 result
= (int)(arg1
)->GetWrapVisualFlags();
11960 wxPyEndAllowThreads(__tstate
);
11961 if (PyErr_Occurred()) SWIG_fail
;
11963 resultobj
= SWIG_From_int(static_cast< int >(result
));
11970 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11971 PyObject
*resultobj
= 0;
11972 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11978 PyObject
* obj0
= 0 ;
11979 PyObject
* obj1
= 0 ;
11980 char * kwnames
[] = {
11981 (char *) "self",(char *) "wrapVisualFlagsLocation", NULL
11984 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlagsLocation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11985 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11986 if (!SWIG_IsOK(res1
)) {
11987 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11989 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11990 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11991 if (!SWIG_IsOK(ecode2
)) {
11992 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "2"" of type '" "int""'");
11994 arg2
= static_cast< int >(val2
);
11996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11997 (arg1
)->SetWrapVisualFlagsLocation(arg2
);
11998 wxPyEndAllowThreads(__tstate
);
11999 if (PyErr_Occurred()) SWIG_fail
;
12001 resultobj
= SWIG_Py_Void();
12008 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12009 PyObject
*resultobj
= 0;
12010 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12014 PyObject
*swig_obj
[1] ;
12016 if (!args
) SWIG_fail
;
12017 swig_obj
[0] = args
;
12018 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12019 if (!SWIG_IsOK(res1
)) {
12020 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12022 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12024 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12025 result
= (int)(arg1
)->GetWrapVisualFlagsLocation();
12026 wxPyEndAllowThreads(__tstate
);
12027 if (PyErr_Occurred()) SWIG_fail
;
12029 resultobj
= SWIG_From_int(static_cast< int >(result
));
12036 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12037 PyObject
*resultobj
= 0;
12038 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12044 PyObject
* obj0
= 0 ;
12045 PyObject
* obj1
= 0 ;
12046 char * kwnames
[] = {
12047 (char *) "self",(char *) "indent", NULL
12050 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapStartIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12051 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12052 if (!SWIG_IsOK(res1
)) {
12053 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12055 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12056 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12057 if (!SWIG_IsOK(ecode2
)) {
12058 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "2"" of type '" "int""'");
12060 arg2
= static_cast< int >(val2
);
12062 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12063 (arg1
)->SetWrapStartIndent(arg2
);
12064 wxPyEndAllowThreads(__tstate
);
12065 if (PyErr_Occurred()) SWIG_fail
;
12067 resultobj
= SWIG_Py_Void();
12074 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12075 PyObject
*resultobj
= 0;
12076 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12080 PyObject
*swig_obj
[1] ;
12082 if (!args
) SWIG_fail
;
12083 swig_obj
[0] = args
;
12084 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12085 if (!SWIG_IsOK(res1
)) {
12086 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12088 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12090 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12091 result
= (int)(arg1
)->GetWrapStartIndent();
12092 wxPyEndAllowThreads(__tstate
);
12093 if (PyErr_Occurred()) SWIG_fail
;
12095 resultobj
= SWIG_From_int(static_cast< int >(result
));
12102 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12103 PyObject
*resultobj
= 0;
12104 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12110 PyObject
* obj0
= 0 ;
12111 PyObject
* obj1
= 0 ;
12112 char * kwnames
[] = {
12113 (char *) "self",(char *) "mode", NULL
12116 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLayoutCache",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12117 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12118 if (!SWIG_IsOK(res1
)) {
12119 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12121 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12122 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12123 if (!SWIG_IsOK(ecode2
)) {
12124 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "2"" of type '" "int""'");
12126 arg2
= static_cast< int >(val2
);
12128 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12129 (arg1
)->SetLayoutCache(arg2
);
12130 wxPyEndAllowThreads(__tstate
);
12131 if (PyErr_Occurred()) SWIG_fail
;
12133 resultobj
= SWIG_Py_Void();
12140 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12141 PyObject
*resultobj
= 0;
12142 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12146 PyObject
*swig_obj
[1] ;
12148 if (!args
) SWIG_fail
;
12149 swig_obj
[0] = args
;
12150 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12151 if (!SWIG_IsOK(res1
)) {
12152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12154 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12156 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12157 result
= (int)(arg1
)->GetLayoutCache();
12158 wxPyEndAllowThreads(__tstate
);
12159 if (PyErr_Occurred()) SWIG_fail
;
12161 resultobj
= SWIG_From_int(static_cast< int >(result
));
12168 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12169 PyObject
*resultobj
= 0;
12170 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12176 PyObject
* obj0
= 0 ;
12177 PyObject
* obj1
= 0 ;
12178 char * kwnames
[] = {
12179 (char *) "self",(char *) "pixelWidth", NULL
12182 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetScrollWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12183 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12184 if (!SWIG_IsOK(res1
)) {
12185 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12187 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12188 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12189 if (!SWIG_IsOK(ecode2
)) {
12190 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "2"" of type '" "int""'");
12192 arg2
= static_cast< int >(val2
);
12194 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12195 (arg1
)->SetScrollWidth(arg2
);
12196 wxPyEndAllowThreads(__tstate
);
12197 if (PyErr_Occurred()) SWIG_fail
;
12199 resultobj
= SWIG_Py_Void();
12206 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12207 PyObject
*resultobj
= 0;
12208 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12212 PyObject
*swig_obj
[1] ;
12214 if (!args
) SWIG_fail
;
12215 swig_obj
[0] = args
;
12216 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12217 if (!SWIG_IsOK(res1
)) {
12218 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12220 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12222 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12223 result
= (int)(arg1
)->GetScrollWidth();
12224 wxPyEndAllowThreads(__tstate
);
12225 if (PyErr_Occurred()) SWIG_fail
;
12227 resultobj
= SWIG_From_int(static_cast< int >(result
));
12234 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12235 PyObject
*resultobj
= 0;
12236 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12238 wxString
*arg3
= 0 ;
12244 bool temp3
= false ;
12245 PyObject
* obj0
= 0 ;
12246 PyObject
* obj1
= 0 ;
12247 PyObject
* obj2
= 0 ;
12248 char * kwnames
[] = {
12249 (char *) "self",(char *) "style",(char *) "text", NULL
12252 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_TextWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12253 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12254 if (!SWIG_IsOK(res1
)) {
12255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12257 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12258 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12259 if (!SWIG_IsOK(ecode2
)) {
12260 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "2"" of type '" "int""'");
12262 arg2
= static_cast< int >(val2
);
12264 arg3
= wxString_in_helper(obj2
);
12265 if (arg3
== NULL
) SWIG_fail
;
12269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12270 result
= (int)(arg1
)->TextWidth(arg2
,(wxString
const &)*arg3
);
12271 wxPyEndAllowThreads(__tstate
);
12272 if (PyErr_Occurred()) SWIG_fail
;
12274 resultobj
= SWIG_From_int(static_cast< int >(result
));
12289 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12290 PyObject
*resultobj
= 0;
12291 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12297 PyObject
* obj0
= 0 ;
12298 PyObject
* obj1
= 0 ;
12299 char * kwnames
[] = {
12300 (char *) "self",(char *) "endAtLastLine", NULL
12303 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEndAtLastLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12304 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12305 if (!SWIG_IsOK(res1
)) {
12306 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12308 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12309 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12310 if (!SWIG_IsOK(ecode2
)) {
12311 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "2"" of type '" "bool""'");
12313 arg2
= static_cast< bool >(val2
);
12315 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12316 (arg1
)->SetEndAtLastLine(arg2
);
12317 wxPyEndAllowThreads(__tstate
);
12318 if (PyErr_Occurred()) SWIG_fail
;
12320 resultobj
= SWIG_Py_Void();
12327 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12328 PyObject
*resultobj
= 0;
12329 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12333 PyObject
*swig_obj
[1] ;
12335 if (!args
) SWIG_fail
;
12336 swig_obj
[0] = args
;
12337 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12338 if (!SWIG_IsOK(res1
)) {
12339 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12341 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12344 result
= (bool)(arg1
)->GetEndAtLastLine();
12345 wxPyEndAllowThreads(__tstate
);
12346 if (PyErr_Occurred()) SWIG_fail
;
12349 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12357 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12358 PyObject
*resultobj
= 0;
12359 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12366 PyObject
* obj0
= 0 ;
12367 PyObject
* obj1
= 0 ;
12368 char * kwnames
[] = {
12369 (char *) "self",(char *) "line", NULL
12372 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_TextHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12373 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12374 if (!SWIG_IsOK(res1
)) {
12375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12377 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12378 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12379 if (!SWIG_IsOK(ecode2
)) {
12380 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "2"" of type '" "int""'");
12382 arg2
= static_cast< int >(val2
);
12384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12385 result
= (int)(arg1
)->TextHeight(arg2
);
12386 wxPyEndAllowThreads(__tstate
);
12387 if (PyErr_Occurred()) SWIG_fail
;
12389 resultobj
= SWIG_From_int(static_cast< int >(result
));
12396 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12397 PyObject
*resultobj
= 0;
12398 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12404 PyObject
* obj0
= 0 ;
12405 PyObject
* obj1
= 0 ;
12406 char * kwnames
[] = {
12407 (char *) "self",(char *) "show", NULL
12410 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseVerticalScrollBar",kwnames
,&obj0
,&obj1
)) 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_SetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12415 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12416 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12417 if (!SWIG_IsOK(ecode2
)) {
12418 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "2"" of type '" "bool""'");
12420 arg2
= static_cast< bool >(val2
);
12422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12423 (arg1
)->SetUseVerticalScrollBar(arg2
);
12424 wxPyEndAllowThreads(__tstate
);
12425 if (PyErr_Occurred()) SWIG_fail
;
12427 resultobj
= SWIG_Py_Void();
12434 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12435 PyObject
*resultobj
= 0;
12436 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12440 PyObject
*swig_obj
[1] ;
12442 if (!args
) SWIG_fail
;
12443 swig_obj
[0] = args
;
12444 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12445 if (!SWIG_IsOK(res1
)) {
12446 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12448 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12450 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12451 result
= (bool)(arg1
)->GetUseVerticalScrollBar();
12452 wxPyEndAllowThreads(__tstate
);
12453 if (PyErr_Occurred()) SWIG_fail
;
12456 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12464 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12465 PyObject
*resultobj
= 0;
12466 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12467 wxString
*arg2
= 0 ;
12470 bool temp2
= false ;
12471 PyObject
* obj0
= 0 ;
12472 PyObject
* obj1
= 0 ;
12473 char * kwnames
[] = {
12474 (char *) "self",(char *) "text", NULL
12477 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12478 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12479 if (!SWIG_IsOK(res1
)) {
12480 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12482 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12484 arg2
= wxString_in_helper(obj1
);
12485 if (arg2
== NULL
) SWIG_fail
;
12489 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12490 (arg1
)->AppendText((wxString
const &)*arg2
);
12491 wxPyEndAllowThreads(__tstate
);
12492 if (PyErr_Occurred()) SWIG_fail
;
12494 resultobj
= SWIG_Py_Void();
12509 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12510 PyObject
*resultobj
= 0;
12511 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12515 PyObject
*swig_obj
[1] ;
12517 if (!args
) SWIG_fail
;
12518 swig_obj
[0] = args
;
12519 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12520 if (!SWIG_IsOK(res1
)) {
12521 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12523 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12525 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12526 result
= (bool)(arg1
)->GetTwoPhaseDraw();
12527 wxPyEndAllowThreads(__tstate
);
12528 if (PyErr_Occurred()) SWIG_fail
;
12531 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12539 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12540 PyObject
*resultobj
= 0;
12541 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12547 PyObject
* obj0
= 0 ;
12548 PyObject
* obj1
= 0 ;
12549 char * kwnames
[] = {
12550 (char *) "self",(char *) "twoPhase", NULL
12553 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTwoPhaseDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12554 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12555 if (!SWIG_IsOK(res1
)) {
12556 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12558 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12559 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12560 if (!SWIG_IsOK(ecode2
)) {
12561 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "2"" of type '" "bool""'");
12563 arg2
= static_cast< bool >(val2
);
12565 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12566 (arg1
)->SetTwoPhaseDraw(arg2
);
12567 wxPyEndAllowThreads(__tstate
);
12568 if (PyErr_Occurred()) SWIG_fail
;
12570 resultobj
= SWIG_Py_Void();
12577 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TargetFromSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12578 PyObject
*resultobj
= 0;
12579 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12582 PyObject
*swig_obj
[1] ;
12584 if (!args
) SWIG_fail
;
12585 swig_obj
[0] = args
;
12586 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12587 if (!SWIG_IsOK(res1
)) {
12588 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TargetFromSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12590 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12592 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12593 (arg1
)->TargetFromSelection();
12594 wxPyEndAllowThreads(__tstate
);
12595 if (PyErr_Occurred()) SWIG_fail
;
12597 resultobj
= SWIG_Py_Void();
12604 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesJoin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12605 PyObject
*resultobj
= 0;
12606 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12609 PyObject
*swig_obj
[1] ;
12611 if (!args
) SWIG_fail
;
12612 swig_obj
[0] = args
;
12613 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12614 if (!SWIG_IsOK(res1
)) {
12615 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesJoin" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12617 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12620 (arg1
)->LinesJoin();
12621 wxPyEndAllowThreads(__tstate
);
12622 if (PyErr_Occurred()) SWIG_fail
;
12624 resultobj
= SWIG_Py_Void();
12631 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesSplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12632 PyObject
*resultobj
= 0;
12633 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12639 PyObject
* obj0
= 0 ;
12640 PyObject
* obj1
= 0 ;
12641 char * kwnames
[] = {
12642 (char *) "self",(char *) "pixelWidth", NULL
12645 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LinesSplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12646 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12647 if (!SWIG_IsOK(res1
)) {
12648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12650 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12651 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12652 if (!SWIG_IsOK(ecode2
)) {
12653 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "2"" of type '" "int""'");
12655 arg2
= static_cast< int >(val2
);
12657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12658 (arg1
)->LinesSplit(arg2
);
12659 wxPyEndAllowThreads(__tstate
);
12660 if (PyErr_Occurred()) SWIG_fail
;
12662 resultobj
= SWIG_Py_Void();
12669 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12670 PyObject
*resultobj
= 0;
12671 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12673 wxColour
*arg3
= 0 ;
12679 PyObject
* obj0
= 0 ;
12680 PyObject
* obj1
= 0 ;
12681 PyObject
* obj2
= 0 ;
12682 char * kwnames
[] = {
12683 (char *) "self",(char *) "useSetting",(char *) "back", NULL
12686 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12687 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12688 if (!SWIG_IsOK(res1
)) {
12689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12691 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12692 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12693 if (!SWIG_IsOK(ecode2
)) {
12694 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "2"" of type '" "bool""'");
12696 arg2
= static_cast< bool >(val2
);
12699 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12702 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12703 (arg1
)->SetFoldMarginColour(arg2
,(wxColour
const &)*arg3
);
12704 wxPyEndAllowThreads(__tstate
);
12705 if (PyErr_Occurred()) SWIG_fail
;
12707 resultobj
= SWIG_Py_Void();
12714 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginHiColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12715 PyObject
*resultobj
= 0;
12716 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12718 wxColour
*arg3
= 0 ;
12724 PyObject
* obj0
= 0 ;
12725 PyObject
* obj1
= 0 ;
12726 PyObject
* obj2
= 0 ;
12727 char * kwnames
[] = {
12728 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
12731 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginHiColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12732 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12733 if (!SWIG_IsOK(res1
)) {
12734 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12736 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12737 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12738 if (!SWIG_IsOK(ecode2
)) {
12739 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "2"" of type '" "bool""'");
12741 arg2
= static_cast< bool >(val2
);
12744 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12748 (arg1
)->SetFoldMarginHiColour(arg2
,(wxColour
const &)*arg3
);
12749 wxPyEndAllowThreads(__tstate
);
12750 if (PyErr_Occurred()) SWIG_fail
;
12752 resultobj
= SWIG_Py_Void();
12759 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12760 PyObject
*resultobj
= 0;
12761 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12764 PyObject
*swig_obj
[1] ;
12766 if (!args
) SWIG_fail
;
12767 swig_obj
[0] = args
;
12768 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12769 if (!SWIG_IsOK(res1
)) {
12770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12772 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12775 (arg1
)->LineDown();
12776 wxPyEndAllowThreads(__tstate
);
12777 if (PyErr_Occurred()) SWIG_fail
;
12779 resultobj
= SWIG_Py_Void();
12786 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12787 PyObject
*resultobj
= 0;
12788 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12791 PyObject
*swig_obj
[1] ;
12793 if (!args
) SWIG_fail
;
12794 swig_obj
[0] = args
;
12795 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12796 if (!SWIG_IsOK(res1
)) {
12797 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12799 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12801 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12802 (arg1
)->LineDownExtend();
12803 wxPyEndAllowThreads(__tstate
);
12804 if (PyErr_Occurred()) SWIG_fail
;
12806 resultobj
= SWIG_Py_Void();
12813 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12814 PyObject
*resultobj
= 0;
12815 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12818 PyObject
*swig_obj
[1] ;
12820 if (!args
) SWIG_fail
;
12821 swig_obj
[0] = args
;
12822 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12823 if (!SWIG_IsOK(res1
)) {
12824 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12826 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12828 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12830 wxPyEndAllowThreads(__tstate
);
12831 if (PyErr_Occurred()) SWIG_fail
;
12833 resultobj
= SWIG_Py_Void();
12840 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12841 PyObject
*resultobj
= 0;
12842 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12845 PyObject
*swig_obj
[1] ;
12847 if (!args
) SWIG_fail
;
12848 swig_obj
[0] = args
;
12849 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12850 if (!SWIG_IsOK(res1
)) {
12851 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12853 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12856 (arg1
)->LineUpExtend();
12857 wxPyEndAllowThreads(__tstate
);
12858 if (PyErr_Occurred()) SWIG_fail
;
12860 resultobj
= SWIG_Py_Void();
12867 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12868 PyObject
*resultobj
= 0;
12869 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12872 PyObject
*swig_obj
[1] ;
12874 if (!args
) SWIG_fail
;
12875 swig_obj
[0] = args
;
12876 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12877 if (!SWIG_IsOK(res1
)) {
12878 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12880 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12882 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12883 (arg1
)->CharLeft();
12884 wxPyEndAllowThreads(__tstate
);
12885 if (PyErr_Occurred()) SWIG_fail
;
12887 resultobj
= SWIG_Py_Void();
12894 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12895 PyObject
*resultobj
= 0;
12896 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12899 PyObject
*swig_obj
[1] ;
12901 if (!args
) SWIG_fail
;
12902 swig_obj
[0] = args
;
12903 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12904 if (!SWIG_IsOK(res1
)) {
12905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12907 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12909 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12910 (arg1
)->CharLeftExtend();
12911 wxPyEndAllowThreads(__tstate
);
12912 if (PyErr_Occurred()) SWIG_fail
;
12914 resultobj
= SWIG_Py_Void();
12921 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12922 PyObject
*resultobj
= 0;
12923 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12926 PyObject
*swig_obj
[1] ;
12928 if (!args
) SWIG_fail
;
12929 swig_obj
[0] = args
;
12930 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12931 if (!SWIG_IsOK(res1
)) {
12932 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12934 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12937 (arg1
)->CharRight();
12938 wxPyEndAllowThreads(__tstate
);
12939 if (PyErr_Occurred()) SWIG_fail
;
12941 resultobj
= SWIG_Py_Void();
12948 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12949 PyObject
*resultobj
= 0;
12950 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12953 PyObject
*swig_obj
[1] ;
12955 if (!args
) SWIG_fail
;
12956 swig_obj
[0] = args
;
12957 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12958 if (!SWIG_IsOK(res1
)) {
12959 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12961 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12963 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12964 (arg1
)->CharRightExtend();
12965 wxPyEndAllowThreads(__tstate
);
12966 if (PyErr_Occurred()) SWIG_fail
;
12968 resultobj
= SWIG_Py_Void();
12975 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12976 PyObject
*resultobj
= 0;
12977 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12980 PyObject
*swig_obj
[1] ;
12982 if (!args
) SWIG_fail
;
12983 swig_obj
[0] = args
;
12984 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12985 if (!SWIG_IsOK(res1
)) {
12986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12988 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12991 (arg1
)->WordLeft();
12992 wxPyEndAllowThreads(__tstate
);
12993 if (PyErr_Occurred()) SWIG_fail
;
12995 resultobj
= SWIG_Py_Void();
13002 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13003 PyObject
*resultobj
= 0;
13004 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13007 PyObject
*swig_obj
[1] ;
13009 if (!args
) SWIG_fail
;
13010 swig_obj
[0] = args
;
13011 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13012 if (!SWIG_IsOK(res1
)) {
13013 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13015 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13017 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13018 (arg1
)->WordLeftExtend();
13019 wxPyEndAllowThreads(__tstate
);
13020 if (PyErr_Occurred()) SWIG_fail
;
13022 resultobj
= SWIG_Py_Void();
13029 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13030 PyObject
*resultobj
= 0;
13031 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13034 PyObject
*swig_obj
[1] ;
13036 if (!args
) SWIG_fail
;
13037 swig_obj
[0] = args
;
13038 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13039 if (!SWIG_IsOK(res1
)) {
13040 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13042 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13045 (arg1
)->WordRight();
13046 wxPyEndAllowThreads(__tstate
);
13047 if (PyErr_Occurred()) SWIG_fail
;
13049 resultobj
= SWIG_Py_Void();
13056 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13057 PyObject
*resultobj
= 0;
13058 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13061 PyObject
*swig_obj
[1] ;
13063 if (!args
) SWIG_fail
;
13064 swig_obj
[0] = args
;
13065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13066 if (!SWIG_IsOK(res1
)) {
13067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13069 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13072 (arg1
)->WordRightExtend();
13073 wxPyEndAllowThreads(__tstate
);
13074 if (PyErr_Occurred()) SWIG_fail
;
13076 resultobj
= SWIG_Py_Void();
13083 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Home(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13084 PyObject
*resultobj
= 0;
13085 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13088 PyObject
*swig_obj
[1] ;
13090 if (!args
) SWIG_fail
;
13091 swig_obj
[0] = args
;
13092 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13093 if (!SWIG_IsOK(res1
)) {
13094 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Home" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13096 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13100 wxPyEndAllowThreads(__tstate
);
13101 if (PyErr_Occurred()) SWIG_fail
;
13103 resultobj
= SWIG_Py_Void();
13110 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13111 PyObject
*resultobj
= 0;
13112 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13115 PyObject
*swig_obj
[1] ;
13117 if (!args
) SWIG_fail
;
13118 swig_obj
[0] = args
;
13119 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13120 if (!SWIG_IsOK(res1
)) {
13121 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13123 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13126 (arg1
)->HomeExtend();
13127 wxPyEndAllowThreads(__tstate
);
13128 if (PyErr_Occurred()) SWIG_fail
;
13130 resultobj
= SWIG_Py_Void();
13137 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13138 PyObject
*resultobj
= 0;
13139 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13142 PyObject
*swig_obj
[1] ;
13144 if (!args
) SWIG_fail
;
13145 swig_obj
[0] = args
;
13146 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13147 if (!SWIG_IsOK(res1
)) {
13148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13150 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13152 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13154 wxPyEndAllowThreads(__tstate
);
13155 if (PyErr_Occurred()) SWIG_fail
;
13157 resultobj
= SWIG_Py_Void();
13164 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13165 PyObject
*resultobj
= 0;
13166 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13169 PyObject
*swig_obj
[1] ;
13171 if (!args
) SWIG_fail
;
13172 swig_obj
[0] = args
;
13173 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13174 if (!SWIG_IsOK(res1
)) {
13175 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13177 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13180 (arg1
)->LineEndExtend();
13181 wxPyEndAllowThreads(__tstate
);
13182 if (PyErr_Occurred()) SWIG_fail
;
13184 resultobj
= SWIG_Py_Void();
13191 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13192 PyObject
*resultobj
= 0;
13193 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13196 PyObject
*swig_obj
[1] ;
13198 if (!args
) SWIG_fail
;
13199 swig_obj
[0] = args
;
13200 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13201 if (!SWIG_IsOK(res1
)) {
13202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13204 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13207 (arg1
)->DocumentStart();
13208 wxPyEndAllowThreads(__tstate
);
13209 if (PyErr_Occurred()) SWIG_fail
;
13211 resultobj
= SWIG_Py_Void();
13218 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStartExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13219 PyObject
*resultobj
= 0;
13220 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13223 PyObject
*swig_obj
[1] ;
13225 if (!args
) SWIG_fail
;
13226 swig_obj
[0] = args
;
13227 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13228 if (!SWIG_IsOK(res1
)) {
13229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStartExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13231 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13234 (arg1
)->DocumentStartExtend();
13235 wxPyEndAllowThreads(__tstate
);
13236 if (PyErr_Occurred()) SWIG_fail
;
13238 resultobj
= SWIG_Py_Void();
13245 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13246 PyObject
*resultobj
= 0;
13247 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13250 PyObject
*swig_obj
[1] ;
13252 if (!args
) SWIG_fail
;
13253 swig_obj
[0] = args
;
13254 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13255 if (!SWIG_IsOK(res1
)) {
13256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13258 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13260 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13261 (arg1
)->DocumentEnd();
13262 wxPyEndAllowThreads(__tstate
);
13263 if (PyErr_Occurred()) SWIG_fail
;
13265 resultobj
= SWIG_Py_Void();
13272 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13273 PyObject
*resultobj
= 0;
13274 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13277 PyObject
*swig_obj
[1] ;
13279 if (!args
) SWIG_fail
;
13280 swig_obj
[0] = args
;
13281 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13282 if (!SWIG_IsOK(res1
)) {
13283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13285 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13287 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13288 (arg1
)->DocumentEndExtend();
13289 wxPyEndAllowThreads(__tstate
);
13290 if (PyErr_Occurred()) SWIG_fail
;
13292 resultobj
= SWIG_Py_Void();
13299 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13300 PyObject
*resultobj
= 0;
13301 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13304 PyObject
*swig_obj
[1] ;
13306 if (!args
) SWIG_fail
;
13307 swig_obj
[0] = args
;
13308 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13309 if (!SWIG_IsOK(res1
)) {
13310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13312 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13314 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13316 wxPyEndAllowThreads(__tstate
);
13317 if (PyErr_Occurred()) SWIG_fail
;
13319 resultobj
= SWIG_Py_Void();
13326 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13327 PyObject
*resultobj
= 0;
13328 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13331 PyObject
*swig_obj
[1] ;
13333 if (!args
) SWIG_fail
;
13334 swig_obj
[0] = args
;
13335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13336 if (!SWIG_IsOK(res1
)) {
13337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13339 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13342 (arg1
)->PageUpExtend();
13343 wxPyEndAllowThreads(__tstate
);
13344 if (PyErr_Occurred()) SWIG_fail
;
13346 resultobj
= SWIG_Py_Void();
13353 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13354 PyObject
*resultobj
= 0;
13355 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13358 PyObject
*swig_obj
[1] ;
13360 if (!args
) SWIG_fail
;
13361 swig_obj
[0] = args
;
13362 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13363 if (!SWIG_IsOK(res1
)) {
13364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13366 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13368 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13369 (arg1
)->PageDown();
13370 wxPyEndAllowThreads(__tstate
);
13371 if (PyErr_Occurred()) SWIG_fail
;
13373 resultobj
= SWIG_Py_Void();
13380 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13381 PyObject
*resultobj
= 0;
13382 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13385 PyObject
*swig_obj
[1] ;
13387 if (!args
) SWIG_fail
;
13388 swig_obj
[0] = args
;
13389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13390 if (!SWIG_IsOK(res1
)) {
13391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13393 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13396 (arg1
)->PageDownExtend();
13397 wxPyEndAllowThreads(__tstate
);
13398 if (PyErr_Occurred()) SWIG_fail
;
13400 resultobj
= SWIG_Py_Void();
13407 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EditToggleOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13408 PyObject
*resultobj
= 0;
13409 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13412 PyObject
*swig_obj
[1] ;
13414 if (!args
) SWIG_fail
;
13415 swig_obj
[0] = args
;
13416 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13417 if (!SWIG_IsOK(res1
)) {
13418 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EditToggleOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13420 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13422 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13423 (arg1
)->EditToggleOvertype();
13424 wxPyEndAllowThreads(__tstate
);
13425 if (PyErr_Occurred()) SWIG_fail
;
13427 resultobj
= SWIG_Py_Void();
13434 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13435 PyObject
*resultobj
= 0;
13436 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13439 PyObject
*swig_obj
[1] ;
13441 if (!args
) SWIG_fail
;
13442 swig_obj
[0] = args
;
13443 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13444 if (!SWIG_IsOK(res1
)) {
13445 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13447 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13449 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13451 wxPyEndAllowThreads(__tstate
);
13452 if (PyErr_Occurred()) SWIG_fail
;
13454 resultobj
= SWIG_Py_Void();
13461 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13462 PyObject
*resultobj
= 0;
13463 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13466 PyObject
*swig_obj
[1] ;
13468 if (!args
) SWIG_fail
;
13469 swig_obj
[0] = args
;
13470 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13471 if (!SWIG_IsOK(res1
)) {
13472 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13474 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13477 (arg1
)->DeleteBack();
13478 wxPyEndAllowThreads(__tstate
);
13479 if (PyErr_Occurred()) SWIG_fail
;
13481 resultobj
= SWIG_Py_Void();
13488 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Tab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13489 PyObject
*resultobj
= 0;
13490 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13493 PyObject
*swig_obj
[1] ;
13495 if (!args
) SWIG_fail
;
13496 swig_obj
[0] = args
;
13497 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13498 if (!SWIG_IsOK(res1
)) {
13499 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Tab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13501 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13503 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13505 wxPyEndAllowThreads(__tstate
);
13506 if (PyErr_Occurred()) SWIG_fail
;
13508 resultobj
= SWIG_Py_Void();
13515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BackTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13516 PyObject
*resultobj
= 0;
13517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13520 PyObject
*swig_obj
[1] ;
13522 if (!args
) SWIG_fail
;
13523 swig_obj
[0] = args
;
13524 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13525 if (!SWIG_IsOK(res1
)) {
13526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BackTab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13528 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13532 wxPyEndAllowThreads(__tstate
);
13533 if (PyErr_Occurred()) SWIG_fail
;
13535 resultobj
= SWIG_Py_Void();
13542 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_NewLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13543 PyObject
*resultobj
= 0;
13544 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13547 PyObject
*swig_obj
[1] ;
13549 if (!args
) SWIG_fail
;
13550 swig_obj
[0] = args
;
13551 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13552 if (!SWIG_IsOK(res1
)) {
13553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_NewLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13555 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13557 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13559 wxPyEndAllowThreads(__tstate
);
13560 if (PyErr_Occurred()) SWIG_fail
;
13562 resultobj
= SWIG_Py_Void();
13569 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormFeed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13570 PyObject
*resultobj
= 0;
13571 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13574 PyObject
*swig_obj
[1] ;
13576 if (!args
) SWIG_fail
;
13577 swig_obj
[0] = args
;
13578 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13579 if (!SWIG_IsOK(res1
)) {
13580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormFeed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13582 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13585 (arg1
)->FormFeed();
13586 wxPyEndAllowThreads(__tstate
);
13587 if (PyErr_Occurred()) SWIG_fail
;
13589 resultobj
= SWIG_Py_Void();
13596 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHome(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13597 PyObject
*resultobj
= 0;
13598 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13601 PyObject
*swig_obj
[1] ;
13603 if (!args
) SWIG_fail
;
13604 swig_obj
[0] = args
;
13605 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13606 if (!SWIG_IsOK(res1
)) {
13607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHome" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13609 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13611 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13613 wxPyEndAllowThreads(__tstate
);
13614 if (PyErr_Occurred()) SWIG_fail
;
13616 resultobj
= SWIG_Py_Void();
13623 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13624 PyObject
*resultobj
= 0;
13625 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13628 PyObject
*swig_obj
[1] ;
13630 if (!args
) SWIG_fail
;
13631 swig_obj
[0] = args
;
13632 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13633 if (!SWIG_IsOK(res1
)) {
13634 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13636 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13638 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13639 (arg1
)->VCHomeExtend();
13640 wxPyEndAllowThreads(__tstate
);
13641 if (PyErr_Occurred()) SWIG_fail
;
13643 resultobj
= SWIG_Py_Void();
13650 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomIn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13651 PyObject
*resultobj
= 0;
13652 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13655 PyObject
*swig_obj
[1] ;
13657 if (!args
) SWIG_fail
;
13658 swig_obj
[0] = args
;
13659 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13660 if (!SWIG_IsOK(res1
)) {
13661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomIn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13663 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13667 wxPyEndAllowThreads(__tstate
);
13668 if (PyErr_Occurred()) SWIG_fail
;
13670 resultobj
= SWIG_Py_Void();
13677 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomOut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13678 PyObject
*resultobj
= 0;
13679 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13682 PyObject
*swig_obj
[1] ;
13684 if (!args
) SWIG_fail
;
13685 swig_obj
[0] = args
;
13686 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13687 if (!SWIG_IsOK(res1
)) {
13688 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomOut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13690 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13694 wxPyEndAllowThreads(__tstate
);
13695 if (PyErr_Occurred()) SWIG_fail
;
13697 resultobj
= SWIG_Py_Void();
13704 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13705 PyObject
*resultobj
= 0;
13706 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13709 PyObject
*swig_obj
[1] ;
13711 if (!args
) SWIG_fail
;
13712 swig_obj
[0] = args
;
13713 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13714 if (!SWIG_IsOK(res1
)) {
13715 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13717 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13720 (arg1
)->DelWordLeft();
13721 wxPyEndAllowThreads(__tstate
);
13722 if (PyErr_Occurred()) SWIG_fail
;
13724 resultobj
= SWIG_Py_Void();
13731 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13732 PyObject
*resultobj
= 0;
13733 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13736 PyObject
*swig_obj
[1] ;
13738 if (!args
) SWIG_fail
;
13739 swig_obj
[0] = args
;
13740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13741 if (!SWIG_IsOK(res1
)) {
13742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13744 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13747 (arg1
)->DelWordRight();
13748 wxPyEndAllowThreads(__tstate
);
13749 if (PyErr_Occurred()) SWIG_fail
;
13751 resultobj
= SWIG_Py_Void();
13758 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13759 PyObject
*resultobj
= 0;
13760 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13763 PyObject
*swig_obj
[1] ;
13765 if (!args
) SWIG_fail
;
13766 swig_obj
[0] = args
;
13767 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13768 if (!SWIG_IsOK(res1
)) {
13769 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13771 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13773 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13775 wxPyEndAllowThreads(__tstate
);
13776 if (PyErr_Occurred()) SWIG_fail
;
13778 resultobj
= SWIG_Py_Void();
13785 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13786 PyObject
*resultobj
= 0;
13787 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13790 PyObject
*swig_obj
[1] ;
13792 if (!args
) SWIG_fail
;
13793 swig_obj
[0] = args
;
13794 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13795 if (!SWIG_IsOK(res1
)) {
13796 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13798 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13800 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13801 (arg1
)->LineDelete();
13802 wxPyEndAllowThreads(__tstate
);
13803 if (PyErr_Occurred()) SWIG_fail
;
13805 resultobj
= SWIG_Py_Void();
13812 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineTranspose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13813 PyObject
*resultobj
= 0;
13814 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13817 PyObject
*swig_obj
[1] ;
13819 if (!args
) SWIG_fail
;
13820 swig_obj
[0] = args
;
13821 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13822 if (!SWIG_IsOK(res1
)) {
13823 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineTranspose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13825 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13828 (arg1
)->LineTranspose();
13829 wxPyEndAllowThreads(__tstate
);
13830 if (PyErr_Occurred()) SWIG_fail
;
13832 resultobj
= SWIG_Py_Void();
13839 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13840 PyObject
*resultobj
= 0;
13841 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13844 PyObject
*swig_obj
[1] ;
13846 if (!args
) SWIG_fail
;
13847 swig_obj
[0] = args
;
13848 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13849 if (!SWIG_IsOK(res1
)) {
13850 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13852 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13854 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13855 (arg1
)->LineDuplicate();
13856 wxPyEndAllowThreads(__tstate
);
13857 if (PyErr_Occurred()) SWIG_fail
;
13859 resultobj
= SWIG_Py_Void();
13866 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LowerCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13867 PyObject
*resultobj
= 0;
13868 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13871 PyObject
*swig_obj
[1] ;
13873 if (!args
) SWIG_fail
;
13874 swig_obj
[0] = args
;
13875 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13876 if (!SWIG_IsOK(res1
)) {
13877 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LowerCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13879 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13881 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13882 (arg1
)->LowerCase();
13883 wxPyEndAllowThreads(__tstate
);
13884 if (PyErr_Occurred()) SWIG_fail
;
13886 resultobj
= SWIG_Py_Void();
13893 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UpperCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13894 PyObject
*resultobj
= 0;
13895 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13898 PyObject
*swig_obj
[1] ;
13900 if (!args
) SWIG_fail
;
13901 swig_obj
[0] = args
;
13902 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13903 if (!SWIG_IsOK(res1
)) {
13904 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UpperCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13906 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13909 (arg1
)->UpperCase();
13910 wxPyEndAllowThreads(__tstate
);
13911 if (PyErr_Occurred()) SWIG_fail
;
13913 resultobj
= SWIG_Py_Void();
13920 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13921 PyObject
*resultobj
= 0;
13922 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13925 PyObject
*swig_obj
[1] ;
13927 if (!args
) SWIG_fail
;
13928 swig_obj
[0] = args
;
13929 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13930 if (!SWIG_IsOK(res1
)) {
13931 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13933 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13935 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13936 (arg1
)->LineScrollDown();
13937 wxPyEndAllowThreads(__tstate
);
13938 if (PyErr_Occurred()) SWIG_fail
;
13940 resultobj
= SWIG_Py_Void();
13947 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13948 PyObject
*resultobj
= 0;
13949 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13952 PyObject
*swig_obj
[1] ;
13954 if (!args
) SWIG_fail
;
13955 swig_obj
[0] = args
;
13956 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13957 if (!SWIG_IsOK(res1
)) {
13958 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13960 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13962 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13963 (arg1
)->LineScrollUp();
13964 wxPyEndAllowThreads(__tstate
);
13965 if (PyErr_Occurred()) SWIG_fail
;
13967 resultobj
= SWIG_Py_Void();
13974 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBackNotLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13975 PyObject
*resultobj
= 0;
13976 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13979 PyObject
*swig_obj
[1] ;
13981 if (!args
) SWIG_fail
;
13982 swig_obj
[0] = args
;
13983 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13984 if (!SWIG_IsOK(res1
)) {
13985 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBackNotLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13987 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13989 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13990 (arg1
)->DeleteBackNotLine();
13991 wxPyEndAllowThreads(__tstate
);
13992 if (PyErr_Occurred()) SWIG_fail
;
13994 resultobj
= SWIG_Py_Void();
14001 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14002 PyObject
*resultobj
= 0;
14003 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14006 PyObject
*swig_obj
[1] ;
14008 if (!args
) SWIG_fail
;
14009 swig_obj
[0] = args
;
14010 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14011 if (!SWIG_IsOK(res1
)) {
14012 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14014 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14017 (arg1
)->HomeDisplay();
14018 wxPyEndAllowThreads(__tstate
);
14019 if (PyErr_Occurred()) SWIG_fail
;
14021 resultobj
= SWIG_Py_Void();
14028 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14029 PyObject
*resultobj
= 0;
14030 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14033 PyObject
*swig_obj
[1] ;
14035 if (!args
) SWIG_fail
;
14036 swig_obj
[0] = args
;
14037 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14038 if (!SWIG_IsOK(res1
)) {
14039 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14041 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14044 (arg1
)->HomeDisplayExtend();
14045 wxPyEndAllowThreads(__tstate
);
14046 if (PyErr_Occurred()) SWIG_fail
;
14048 resultobj
= SWIG_Py_Void();
14055 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14056 PyObject
*resultobj
= 0;
14057 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14060 PyObject
*swig_obj
[1] ;
14062 if (!args
) SWIG_fail
;
14063 swig_obj
[0] = args
;
14064 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14065 if (!SWIG_IsOK(res1
)) {
14066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14068 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14070 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14071 (arg1
)->LineEndDisplay();
14072 wxPyEndAllowThreads(__tstate
);
14073 if (PyErr_Occurred()) SWIG_fail
;
14075 resultobj
= SWIG_Py_Void();
14082 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14083 PyObject
*resultobj
= 0;
14084 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14087 PyObject
*swig_obj
[1] ;
14089 if (!args
) SWIG_fail
;
14090 swig_obj
[0] = args
;
14091 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14092 if (!SWIG_IsOK(res1
)) {
14093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14095 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14098 (arg1
)->LineEndDisplayExtend();
14099 wxPyEndAllowThreads(__tstate
);
14100 if (PyErr_Occurred()) SWIG_fail
;
14102 resultobj
= SWIG_Py_Void();
14109 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14110 PyObject
*resultobj
= 0;
14111 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14114 PyObject
*swig_obj
[1] ;
14116 if (!args
) SWIG_fail
;
14117 swig_obj
[0] = args
;
14118 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14119 if (!SWIG_IsOK(res1
)) {
14120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14122 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14125 (arg1
)->HomeWrap();
14126 wxPyEndAllowThreads(__tstate
);
14127 if (PyErr_Occurred()) SWIG_fail
;
14129 resultobj
= SWIG_Py_Void();
14136 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14137 PyObject
*resultobj
= 0;
14138 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14141 PyObject
*swig_obj
[1] ;
14143 if (!args
) SWIG_fail
;
14144 swig_obj
[0] = args
;
14145 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14146 if (!SWIG_IsOK(res1
)) {
14147 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14149 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14151 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14152 (arg1
)->HomeWrapExtend();
14153 wxPyEndAllowThreads(__tstate
);
14154 if (PyErr_Occurred()) SWIG_fail
;
14156 resultobj
= SWIG_Py_Void();
14163 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14164 PyObject
*resultobj
= 0;
14165 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14168 PyObject
*swig_obj
[1] ;
14170 if (!args
) SWIG_fail
;
14171 swig_obj
[0] = args
;
14172 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14173 if (!SWIG_IsOK(res1
)) {
14174 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14176 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14178 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14179 (arg1
)->LineEndWrap();
14180 wxPyEndAllowThreads(__tstate
);
14181 if (PyErr_Occurred()) SWIG_fail
;
14183 resultobj
= SWIG_Py_Void();
14190 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14191 PyObject
*resultobj
= 0;
14192 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14195 PyObject
*swig_obj
[1] ;
14197 if (!args
) SWIG_fail
;
14198 swig_obj
[0] = args
;
14199 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14200 if (!SWIG_IsOK(res1
)) {
14201 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14203 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14206 (arg1
)->LineEndWrapExtend();
14207 wxPyEndAllowThreads(__tstate
);
14208 if (PyErr_Occurred()) SWIG_fail
;
14210 resultobj
= SWIG_Py_Void();
14217 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14218 PyObject
*resultobj
= 0;
14219 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14222 PyObject
*swig_obj
[1] ;
14224 if (!args
) SWIG_fail
;
14225 swig_obj
[0] = args
;
14226 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14227 if (!SWIG_IsOK(res1
)) {
14228 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14230 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14232 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14233 (arg1
)->VCHomeWrap();
14234 wxPyEndAllowThreads(__tstate
);
14235 if (PyErr_Occurred()) SWIG_fail
;
14237 resultobj
= SWIG_Py_Void();
14244 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14245 PyObject
*resultobj
= 0;
14246 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14249 PyObject
*swig_obj
[1] ;
14251 if (!args
) SWIG_fail
;
14252 swig_obj
[0] = args
;
14253 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14254 if (!SWIG_IsOK(res1
)) {
14255 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14257 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14260 (arg1
)->VCHomeWrapExtend();
14261 wxPyEndAllowThreads(__tstate
);
14262 if (PyErr_Occurred()) SWIG_fail
;
14264 resultobj
= SWIG_Py_Void();
14271 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCopy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14272 PyObject
*resultobj
= 0;
14273 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14276 PyObject
*swig_obj
[1] ;
14278 if (!args
) SWIG_fail
;
14279 swig_obj
[0] = args
;
14280 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14281 if (!SWIG_IsOK(res1
)) {
14282 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCopy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14284 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14286 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14287 (arg1
)->LineCopy();
14288 wxPyEndAllowThreads(__tstate
);
14289 if (PyErr_Occurred()) SWIG_fail
;
14291 resultobj
= SWIG_Py_Void();
14298 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MoveCaretInsideView(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14299 PyObject
*resultobj
= 0;
14300 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14303 PyObject
*swig_obj
[1] ;
14305 if (!args
) SWIG_fail
;
14306 swig_obj
[0] = args
;
14307 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14308 if (!SWIG_IsOK(res1
)) {
14309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MoveCaretInsideView" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14311 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14314 (arg1
)->MoveCaretInsideView();
14315 wxPyEndAllowThreads(__tstate
);
14316 if (PyErr_Occurred()) SWIG_fail
;
14318 resultobj
= SWIG_Py_Void();
14325 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14326 PyObject
*resultobj
= 0;
14327 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14334 PyObject
* obj0
= 0 ;
14335 PyObject
* obj1
= 0 ;
14336 char * kwnames
[] = {
14337 (char *) "self",(char *) "line", NULL
14340 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14341 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14342 if (!SWIG_IsOK(res1
)) {
14343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14345 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14346 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14347 if (!SWIG_IsOK(ecode2
)) {
14348 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "2"" of type '" "int""'");
14350 arg2
= static_cast< int >(val2
);
14352 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14353 result
= (int)(arg1
)->LineLength(arg2
);
14354 wxPyEndAllowThreads(__tstate
);
14355 if (PyErr_Occurred()) SWIG_fail
;
14357 resultobj
= SWIG_From_int(static_cast< int >(result
));
14364 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14365 PyObject
*resultobj
= 0;
14366 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14375 PyObject
* obj0
= 0 ;
14376 PyObject
* obj1
= 0 ;
14377 PyObject
* obj2
= 0 ;
14378 char * kwnames
[] = {
14379 (char *) "self",(char *) "pos1",(char *) "pos2", NULL
14382 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_BraceHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14383 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14384 if (!SWIG_IsOK(res1
)) {
14385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14387 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14388 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14389 if (!SWIG_IsOK(ecode2
)) {
14390 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "2"" of type '" "int""'");
14392 arg2
= static_cast< int >(val2
);
14393 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14394 if (!SWIG_IsOK(ecode3
)) {
14395 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "3"" of type '" "int""'");
14397 arg3
= static_cast< int >(val3
);
14399 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14400 (arg1
)->BraceHighlight(arg2
,arg3
);
14401 wxPyEndAllowThreads(__tstate
);
14402 if (PyErr_Occurred()) SWIG_fail
;
14404 resultobj
= SWIG_Py_Void();
14411 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceBadLight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14412 PyObject
*resultobj
= 0;
14413 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14419 PyObject
* obj0
= 0 ;
14420 PyObject
* obj1
= 0 ;
14421 char * kwnames
[] = {
14422 (char *) "self",(char *) "pos", NULL
14425 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceBadLight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14426 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14427 if (!SWIG_IsOK(res1
)) {
14428 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14430 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14431 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14432 if (!SWIG_IsOK(ecode2
)) {
14433 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "2"" of type '" "int""'");
14435 arg2
= static_cast< int >(val2
);
14437 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14438 (arg1
)->BraceBadLight(arg2
);
14439 wxPyEndAllowThreads(__tstate
);
14440 if (PyErr_Occurred()) SWIG_fail
;
14442 resultobj
= SWIG_Py_Void();
14449 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceMatch(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14450 PyObject
*resultobj
= 0;
14451 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14458 PyObject
* obj0
= 0 ;
14459 PyObject
* obj1
= 0 ;
14460 char * kwnames
[] = {
14461 (char *) "self",(char *) "pos", NULL
14464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceMatch",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14466 if (!SWIG_IsOK(res1
)) {
14467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14469 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14470 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14471 if (!SWIG_IsOK(ecode2
)) {
14472 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "2"" of type '" "int""'");
14474 arg2
= static_cast< int >(val2
);
14476 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14477 result
= (int)(arg1
)->BraceMatch(arg2
);
14478 wxPyEndAllowThreads(__tstate
);
14479 if (PyErr_Occurred()) SWIG_fail
;
14481 resultobj
= SWIG_From_int(static_cast< int >(result
));
14488 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14489 PyObject
*resultobj
= 0;
14490 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14494 PyObject
*swig_obj
[1] ;
14496 if (!args
) SWIG_fail
;
14497 swig_obj
[0] = args
;
14498 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14499 if (!SWIG_IsOK(res1
)) {
14500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14502 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14504 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14505 result
= (bool)(arg1
)->GetViewEOL();
14506 wxPyEndAllowThreads(__tstate
);
14507 if (PyErr_Occurred()) SWIG_fail
;
14510 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14518 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14519 PyObject
*resultobj
= 0;
14520 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14526 PyObject
* obj0
= 0 ;
14527 PyObject
* obj1
= 0 ;
14528 char * kwnames
[] = {
14529 (char *) "self",(char *) "visible", NULL
14532 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewEOL",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14533 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14534 if (!SWIG_IsOK(res1
)) {
14535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14537 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14538 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
14539 if (!SWIG_IsOK(ecode2
)) {
14540 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "2"" of type '" "bool""'");
14542 arg2
= static_cast< bool >(val2
);
14544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14545 (arg1
)->SetViewEOL(arg2
);
14546 wxPyEndAllowThreads(__tstate
);
14547 if (PyErr_Occurred()) SWIG_fail
;
14549 resultobj
= SWIG_Py_Void();
14556 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14557 PyObject
*resultobj
= 0;
14558 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14562 PyObject
*swig_obj
[1] ;
14564 if (!args
) SWIG_fail
;
14565 swig_obj
[0] = args
;
14566 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14567 if (!SWIG_IsOK(res1
)) {
14568 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14570 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14573 result
= (void *)(arg1
)->GetDocPointer();
14574 wxPyEndAllowThreads(__tstate
);
14575 if (PyErr_Occurred()) SWIG_fail
;
14577 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
14584 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14585 PyObject
*resultobj
= 0;
14586 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14587 void *arg2
= (void *) 0 ;
14591 PyObject
* obj0
= 0 ;
14592 PyObject
* obj1
= 0 ;
14593 char * kwnames
[] = {
14594 (char *) "self",(char *) "docPointer", NULL
14597 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetDocPointer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14598 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14599 if (!SWIG_IsOK(res1
)) {
14600 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14602 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14603 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
14604 if (!SWIG_IsOK(res2
)) {
14605 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "2"" of type '" "void *""'");
14608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14609 (arg1
)->SetDocPointer(arg2
);
14610 wxPyEndAllowThreads(__tstate
);
14611 if (PyErr_Occurred()) SWIG_fail
;
14613 resultobj
= SWIG_Py_Void();
14620 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14621 PyObject
*resultobj
= 0;
14622 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14628 PyObject
* obj0
= 0 ;
14629 PyObject
* obj1
= 0 ;
14630 char * kwnames
[] = {
14631 (char *) "self",(char *) "mask", NULL
14634 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetModEventMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14635 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14636 if (!SWIG_IsOK(res1
)) {
14637 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14639 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14640 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14641 if (!SWIG_IsOK(ecode2
)) {
14642 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "2"" of type '" "int""'");
14644 arg2
= static_cast< int >(val2
);
14646 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14647 (arg1
)->SetModEventMask(arg2
);
14648 wxPyEndAllowThreads(__tstate
);
14649 if (PyErr_Occurred()) SWIG_fail
;
14651 resultobj
= SWIG_Py_Void();
14658 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14659 PyObject
*resultobj
= 0;
14660 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14664 PyObject
*swig_obj
[1] ;
14666 if (!args
) SWIG_fail
;
14667 swig_obj
[0] = args
;
14668 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14669 if (!SWIG_IsOK(res1
)) {
14670 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14672 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14674 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14675 result
= (int)(arg1
)->GetEdgeColumn();
14676 wxPyEndAllowThreads(__tstate
);
14677 if (PyErr_Occurred()) SWIG_fail
;
14679 resultobj
= SWIG_From_int(static_cast< int >(result
));
14686 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14687 PyObject
*resultobj
= 0;
14688 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14694 PyObject
* obj0
= 0 ;
14695 PyObject
* obj1
= 0 ;
14696 char * kwnames
[] = {
14697 (char *) "self",(char *) "column", NULL
14700 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14701 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14702 if (!SWIG_IsOK(res1
)) {
14703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14705 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14706 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14707 if (!SWIG_IsOK(ecode2
)) {
14708 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "2"" of type '" "int""'");
14710 arg2
= static_cast< int >(val2
);
14712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14713 (arg1
)->SetEdgeColumn(arg2
);
14714 wxPyEndAllowThreads(__tstate
);
14715 if (PyErr_Occurred()) SWIG_fail
;
14717 resultobj
= SWIG_Py_Void();
14724 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14725 PyObject
*resultobj
= 0;
14726 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14730 PyObject
*swig_obj
[1] ;
14732 if (!args
) SWIG_fail
;
14733 swig_obj
[0] = args
;
14734 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14735 if (!SWIG_IsOK(res1
)) {
14736 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14738 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14740 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14741 result
= (int)(arg1
)->GetEdgeMode();
14742 wxPyEndAllowThreads(__tstate
);
14743 if (PyErr_Occurred()) SWIG_fail
;
14745 resultobj
= SWIG_From_int(static_cast< int >(result
));
14752 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14753 PyObject
*resultobj
= 0;
14754 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14760 PyObject
* obj0
= 0 ;
14761 PyObject
* obj1
= 0 ;
14762 char * kwnames
[] = {
14763 (char *) "self",(char *) "mode", NULL
14766 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14767 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14768 if (!SWIG_IsOK(res1
)) {
14769 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14771 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14772 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14773 if (!SWIG_IsOK(ecode2
)) {
14774 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "2"" of type '" "int""'");
14776 arg2
= static_cast< int >(val2
);
14778 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14779 (arg1
)->SetEdgeMode(arg2
);
14780 wxPyEndAllowThreads(__tstate
);
14781 if (PyErr_Occurred()) SWIG_fail
;
14783 resultobj
= SWIG_Py_Void();
14790 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14791 PyObject
*resultobj
= 0;
14792 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14796 PyObject
*swig_obj
[1] ;
14798 if (!args
) SWIG_fail
;
14799 swig_obj
[0] = args
;
14800 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14801 if (!SWIG_IsOK(res1
)) {
14802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14804 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14807 result
= (arg1
)->GetEdgeColour();
14808 wxPyEndAllowThreads(__tstate
);
14809 if (PyErr_Occurred()) SWIG_fail
;
14811 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
14818 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14819 PyObject
*resultobj
= 0;
14820 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14821 wxColour
*arg2
= 0 ;
14825 PyObject
* obj0
= 0 ;
14826 PyObject
* obj1
= 0 ;
14827 char * kwnames
[] = {
14828 (char *) "self",(char *) "edgeColour", NULL
14831 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14832 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14833 if (!SWIG_IsOK(res1
)) {
14834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14836 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14839 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
14842 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14843 (arg1
)->SetEdgeColour((wxColour
const &)*arg2
);
14844 wxPyEndAllowThreads(__tstate
);
14845 if (PyErr_Occurred()) SWIG_fail
;
14847 resultobj
= SWIG_Py_Void();
14854 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14855 PyObject
*resultobj
= 0;
14856 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14859 PyObject
*swig_obj
[1] ;
14861 if (!args
) SWIG_fail
;
14862 swig_obj
[0] = args
;
14863 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14864 if (!SWIG_IsOK(res1
)) {
14865 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14867 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14870 (arg1
)->SearchAnchor();
14871 wxPyEndAllowThreads(__tstate
);
14872 if (PyErr_Occurred()) SWIG_fail
;
14874 resultobj
= SWIG_Py_Void();
14881 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14882 PyObject
*resultobj
= 0;
14883 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14885 wxString
*arg3
= 0 ;
14891 bool temp3
= false ;
14892 PyObject
* obj0
= 0 ;
14893 PyObject
* obj1
= 0 ;
14894 PyObject
* obj2
= 0 ;
14895 char * kwnames
[] = {
14896 (char *) "self",(char *) "flags",(char *) "text", NULL
14899 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14900 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14901 if (!SWIG_IsOK(res1
)) {
14902 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14904 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14905 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14906 if (!SWIG_IsOK(ecode2
)) {
14907 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "2"" of type '" "int""'");
14909 arg2
= static_cast< int >(val2
);
14911 arg3
= wxString_in_helper(obj2
);
14912 if (arg3
== NULL
) SWIG_fail
;
14916 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14917 result
= (int)(arg1
)->SearchNext(arg2
,(wxString
const &)*arg3
);
14918 wxPyEndAllowThreads(__tstate
);
14919 if (PyErr_Occurred()) SWIG_fail
;
14921 resultobj
= SWIG_From_int(static_cast< int >(result
));
14936 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14937 PyObject
*resultobj
= 0;
14938 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14940 wxString
*arg3
= 0 ;
14946 bool temp3
= false ;
14947 PyObject
* obj0
= 0 ;
14948 PyObject
* obj1
= 0 ;
14949 PyObject
* obj2
= 0 ;
14950 char * kwnames
[] = {
14951 (char *) "self",(char *) "flags",(char *) "text", NULL
14954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchPrev",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14956 if (!SWIG_IsOK(res1
)) {
14957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14959 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14960 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14961 if (!SWIG_IsOK(ecode2
)) {
14962 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "2"" of type '" "int""'");
14964 arg2
= static_cast< int >(val2
);
14966 arg3
= wxString_in_helper(obj2
);
14967 if (arg3
== NULL
) SWIG_fail
;
14971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14972 result
= (int)(arg1
)->SearchPrev(arg2
,(wxString
const &)*arg3
);
14973 wxPyEndAllowThreads(__tstate
);
14974 if (PyErr_Occurred()) SWIG_fail
;
14976 resultobj
= SWIG_From_int(static_cast< int >(result
));
14991 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesOnScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14992 PyObject
*resultobj
= 0;
14993 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14997 PyObject
*swig_obj
[1] ;
14999 if (!args
) SWIG_fail
;
15000 swig_obj
[0] = args
;
15001 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15002 if (!SWIG_IsOK(res1
)) {
15003 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesOnScreen" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15005 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15007 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15008 result
= (int)(arg1
)->LinesOnScreen();
15009 wxPyEndAllowThreads(__tstate
);
15010 if (PyErr_Occurred()) SWIG_fail
;
15012 resultobj
= SWIG_From_int(static_cast< int >(result
));
15019 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UsePopUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15020 PyObject
*resultobj
= 0;
15021 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15027 PyObject
* obj0
= 0 ;
15028 PyObject
* obj1
= 0 ;
15029 char * kwnames
[] = {
15030 (char *) "self",(char *) "allowPopUp", NULL
15033 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_UsePopUp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15034 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15035 if (!SWIG_IsOK(res1
)) {
15036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15038 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15039 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15040 if (!SWIG_IsOK(ecode2
)) {
15041 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "2"" of type '" "bool""'");
15043 arg2
= static_cast< bool >(val2
);
15045 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15046 (arg1
)->UsePopUp(arg2
);
15047 wxPyEndAllowThreads(__tstate
);
15048 if (PyErr_Occurred()) SWIG_fail
;
15050 resultobj
= SWIG_Py_Void();
15057 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionIsRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15058 PyObject
*resultobj
= 0;
15059 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15063 PyObject
*swig_obj
[1] ;
15065 if (!args
) SWIG_fail
;
15066 swig_obj
[0] = args
;
15067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15068 if (!SWIG_IsOK(res1
)) {
15069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionIsRectangle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15071 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15073 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15074 result
= (bool)(arg1
)->SelectionIsRectangle();
15075 wxPyEndAllowThreads(__tstate
);
15076 if (PyErr_Occurred()) SWIG_fail
;
15079 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15087 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15088 PyObject
*resultobj
= 0;
15089 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15095 PyObject
* obj0
= 0 ;
15096 PyObject
* obj1
= 0 ;
15097 char * kwnames
[] = {
15098 (char *) "self",(char *) "zoom", NULL
15101 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15102 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15103 if (!SWIG_IsOK(res1
)) {
15104 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15106 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15107 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15108 if (!SWIG_IsOK(ecode2
)) {
15109 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "2"" of type '" "int""'");
15111 arg2
= static_cast< int >(val2
);
15113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15114 (arg1
)->SetZoom(arg2
);
15115 wxPyEndAllowThreads(__tstate
);
15116 if (PyErr_Occurred()) SWIG_fail
;
15118 resultobj
= SWIG_Py_Void();
15125 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15126 PyObject
*resultobj
= 0;
15127 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15131 PyObject
*swig_obj
[1] ;
15133 if (!args
) SWIG_fail
;
15134 swig_obj
[0] = args
;
15135 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15136 if (!SWIG_IsOK(res1
)) {
15137 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15139 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15141 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15142 result
= (int)(arg1
)->GetZoom();
15143 wxPyEndAllowThreads(__tstate
);
15144 if (PyErr_Occurred()) SWIG_fail
;
15146 resultobj
= SWIG_From_int(static_cast< int >(result
));
15153 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CreateDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15154 PyObject
*resultobj
= 0;
15155 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15159 PyObject
*swig_obj
[1] ;
15161 if (!args
) SWIG_fail
;
15162 swig_obj
[0] = args
;
15163 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15164 if (!SWIG_IsOK(res1
)) {
15165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CreateDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15167 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15169 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15170 result
= (void *)(arg1
)->CreateDocument();
15171 wxPyEndAllowThreads(__tstate
);
15172 if (PyErr_Occurred()) SWIG_fail
;
15174 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
15181 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddRefDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15182 PyObject
*resultobj
= 0;
15183 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15184 void *arg2
= (void *) 0 ;
15188 PyObject
* obj0
= 0 ;
15189 PyObject
* obj1
= 0 ;
15190 char * kwnames
[] = {
15191 (char *) "self",(char *) "docPointer", NULL
15194 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddRefDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15195 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15196 if (!SWIG_IsOK(res1
)) {
15197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15199 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15200 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15201 if (!SWIG_IsOK(res2
)) {
15202 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "2"" of type '" "void *""'");
15205 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15206 (arg1
)->AddRefDocument(arg2
);
15207 wxPyEndAllowThreads(__tstate
);
15208 if (PyErr_Occurred()) SWIG_fail
;
15210 resultobj
= SWIG_Py_Void();
15217 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReleaseDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15218 PyObject
*resultobj
= 0;
15219 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15220 void *arg2
= (void *) 0 ;
15224 PyObject
* obj0
= 0 ;
15225 PyObject
* obj1
= 0 ;
15226 char * kwnames
[] = {
15227 (char *) "self",(char *) "docPointer", NULL
15230 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReleaseDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15231 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15232 if (!SWIG_IsOK(res1
)) {
15233 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15235 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15236 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15237 if (!SWIG_IsOK(res2
)) {
15238 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "2"" of type '" "void *""'");
15241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15242 (arg1
)->ReleaseDocument(arg2
);
15243 wxPyEndAllowThreads(__tstate
);
15244 if (PyErr_Occurred()) SWIG_fail
;
15246 resultobj
= SWIG_Py_Void();
15253 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15254 PyObject
*resultobj
= 0;
15255 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15259 PyObject
*swig_obj
[1] ;
15261 if (!args
) SWIG_fail
;
15262 swig_obj
[0] = args
;
15263 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15264 if (!SWIG_IsOK(res1
)) {
15265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15267 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15270 result
= (int)(arg1
)->GetModEventMask();
15271 wxPyEndAllowThreads(__tstate
);
15272 if (PyErr_Occurred()) SWIG_fail
;
15274 resultobj
= SWIG_From_int(static_cast< int >(result
));
15281 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15282 PyObject
*resultobj
= 0;
15283 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15289 PyObject
* obj0
= 0 ;
15290 PyObject
* obj1
= 0 ;
15291 char * kwnames
[] = {
15292 (char *) "self",(char *) "focus", NULL
15295 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCFocus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15296 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15297 if (!SWIG_IsOK(res1
)) {
15298 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15300 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15301 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15302 if (!SWIG_IsOK(ecode2
)) {
15303 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "2"" of type '" "bool""'");
15305 arg2
= static_cast< bool >(val2
);
15307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15308 (arg1
)->SetSTCFocus(arg2
);
15309 wxPyEndAllowThreads(__tstate
);
15310 if (PyErr_Occurred()) SWIG_fail
;
15312 resultobj
= SWIG_Py_Void();
15319 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15320 PyObject
*resultobj
= 0;
15321 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15325 PyObject
*swig_obj
[1] ;
15327 if (!args
) SWIG_fail
;
15328 swig_obj
[0] = args
;
15329 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15330 if (!SWIG_IsOK(res1
)) {
15331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15333 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15336 result
= (bool)(arg1
)->GetSTCFocus();
15337 wxPyEndAllowThreads(__tstate
);
15338 if (PyErr_Occurred()) SWIG_fail
;
15341 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15349 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15350 PyObject
*resultobj
= 0;
15351 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15357 PyObject
* obj0
= 0 ;
15358 PyObject
* obj1
= 0 ;
15359 char * kwnames
[] = {
15360 (char *) "self",(char *) "statusCode", NULL
15363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15365 if (!SWIG_IsOK(res1
)) {
15366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15368 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15369 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15370 if (!SWIG_IsOK(ecode2
)) {
15371 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "2"" of type '" "int""'");
15373 arg2
= static_cast< int >(val2
);
15375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15376 (arg1
)->SetStatus(arg2
);
15377 wxPyEndAllowThreads(__tstate
);
15378 if (PyErr_Occurred()) SWIG_fail
;
15380 resultobj
= SWIG_Py_Void();
15387 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15388 PyObject
*resultobj
= 0;
15389 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15393 PyObject
*swig_obj
[1] ;
15395 if (!args
) SWIG_fail
;
15396 swig_obj
[0] = args
;
15397 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15398 if (!SWIG_IsOK(res1
)) {
15399 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15401 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15404 result
= (int)(arg1
)->GetStatus();
15405 wxPyEndAllowThreads(__tstate
);
15406 if (PyErr_Occurred()) SWIG_fail
;
15408 resultobj
= SWIG_From_int(static_cast< int >(result
));
15415 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15416 PyObject
*resultobj
= 0;
15417 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15423 PyObject
* obj0
= 0 ;
15424 PyObject
* obj1
= 0 ;
15425 char * kwnames
[] = {
15426 (char *) "self",(char *) "captures", NULL
15429 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDownCaptures",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15430 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15431 if (!SWIG_IsOK(res1
)) {
15432 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15434 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15435 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15436 if (!SWIG_IsOK(ecode2
)) {
15437 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "2"" of type '" "bool""'");
15439 arg2
= static_cast< bool >(val2
);
15441 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15442 (arg1
)->SetMouseDownCaptures(arg2
);
15443 wxPyEndAllowThreads(__tstate
);
15444 if (PyErr_Occurred()) SWIG_fail
;
15446 resultobj
= SWIG_Py_Void();
15453 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15454 PyObject
*resultobj
= 0;
15455 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15459 PyObject
*swig_obj
[1] ;
15461 if (!args
) SWIG_fail
;
15462 swig_obj
[0] = args
;
15463 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15464 if (!SWIG_IsOK(res1
)) {
15465 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15467 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15469 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15470 result
= (bool)(arg1
)->GetMouseDownCaptures();
15471 wxPyEndAllowThreads(__tstate
);
15472 if (PyErr_Occurred()) SWIG_fail
;
15475 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15483 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15484 PyObject
*resultobj
= 0;
15485 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15491 PyObject
* obj0
= 0 ;
15492 PyObject
* obj1
= 0 ;
15493 char * kwnames
[] = {
15494 (char *) "self",(char *) "cursorType", NULL
15497 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCCursor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15498 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15499 if (!SWIG_IsOK(res1
)) {
15500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15502 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15503 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15504 if (!SWIG_IsOK(ecode2
)) {
15505 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "2"" of type '" "int""'");
15507 arg2
= static_cast< int >(val2
);
15509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15510 (arg1
)->SetSTCCursor(arg2
);
15511 wxPyEndAllowThreads(__tstate
);
15512 if (PyErr_Occurred()) SWIG_fail
;
15514 resultobj
= SWIG_Py_Void();
15521 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15522 PyObject
*resultobj
= 0;
15523 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15527 PyObject
*swig_obj
[1] ;
15529 if (!args
) SWIG_fail
;
15530 swig_obj
[0] = args
;
15531 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15532 if (!SWIG_IsOK(res1
)) {
15533 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15535 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15537 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15538 result
= (int)(arg1
)->GetSTCCursor();
15539 wxPyEndAllowThreads(__tstate
);
15540 if (PyErr_Occurred()) SWIG_fail
;
15542 resultobj
= SWIG_From_int(static_cast< int >(result
));
15549 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15550 PyObject
*resultobj
= 0;
15551 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15557 PyObject
* obj0
= 0 ;
15558 PyObject
* obj1
= 0 ;
15559 char * kwnames
[] = {
15560 (char *) "self",(char *) "symbol", NULL
15563 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetControlCharSymbol",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15564 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15565 if (!SWIG_IsOK(res1
)) {
15566 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15568 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15569 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15570 if (!SWIG_IsOK(ecode2
)) {
15571 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "2"" of type '" "int""'");
15573 arg2
= static_cast< int >(val2
);
15575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15576 (arg1
)->SetControlCharSymbol(arg2
);
15577 wxPyEndAllowThreads(__tstate
);
15578 if (PyErr_Occurred()) SWIG_fail
;
15580 resultobj
= SWIG_Py_Void();
15587 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15588 PyObject
*resultobj
= 0;
15589 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15593 PyObject
*swig_obj
[1] ;
15595 if (!args
) SWIG_fail
;
15596 swig_obj
[0] = args
;
15597 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15598 if (!SWIG_IsOK(res1
)) {
15599 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15601 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15603 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15604 result
= (int)(arg1
)->GetControlCharSymbol();
15605 wxPyEndAllowThreads(__tstate
);
15606 if (PyErr_Occurred()) SWIG_fail
;
15608 resultobj
= SWIG_From_int(static_cast< int >(result
));
15615 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15616 PyObject
*resultobj
= 0;
15617 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15620 PyObject
*swig_obj
[1] ;
15622 if (!args
) SWIG_fail
;
15623 swig_obj
[0] = args
;
15624 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15625 if (!SWIG_IsOK(res1
)) {
15626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15628 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15631 (arg1
)->WordPartLeft();
15632 wxPyEndAllowThreads(__tstate
);
15633 if (PyErr_Occurred()) SWIG_fail
;
15635 resultobj
= SWIG_Py_Void();
15642 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15643 PyObject
*resultobj
= 0;
15644 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15647 PyObject
*swig_obj
[1] ;
15649 if (!args
) SWIG_fail
;
15650 swig_obj
[0] = args
;
15651 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15652 if (!SWIG_IsOK(res1
)) {
15653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15655 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15658 (arg1
)->WordPartLeftExtend();
15659 wxPyEndAllowThreads(__tstate
);
15660 if (PyErr_Occurred()) SWIG_fail
;
15662 resultobj
= SWIG_Py_Void();
15669 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15670 PyObject
*resultobj
= 0;
15671 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15674 PyObject
*swig_obj
[1] ;
15676 if (!args
) SWIG_fail
;
15677 swig_obj
[0] = args
;
15678 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15679 if (!SWIG_IsOK(res1
)) {
15680 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15682 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15684 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15685 (arg1
)->WordPartRight();
15686 wxPyEndAllowThreads(__tstate
);
15687 if (PyErr_Occurred()) SWIG_fail
;
15689 resultobj
= SWIG_Py_Void();
15696 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15697 PyObject
*resultobj
= 0;
15698 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15701 PyObject
*swig_obj
[1] ;
15703 if (!args
) SWIG_fail
;
15704 swig_obj
[0] = args
;
15705 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15706 if (!SWIG_IsOK(res1
)) {
15707 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15709 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15711 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15712 (arg1
)->WordPartRightExtend();
15713 wxPyEndAllowThreads(__tstate
);
15714 if (PyErr_Occurred()) SWIG_fail
;
15716 resultobj
= SWIG_Py_Void();
15723 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVisiblePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15724 PyObject
*resultobj
= 0;
15725 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15734 PyObject
* obj0
= 0 ;
15735 PyObject
* obj1
= 0 ;
15736 PyObject
* obj2
= 0 ;
15737 char * kwnames
[] = {
15738 (char *) "self",(char *) "visiblePolicy",(char *) "visibleSlop", NULL
15741 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetVisiblePolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15742 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15743 if (!SWIG_IsOK(res1
)) {
15744 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15746 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15747 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15748 if (!SWIG_IsOK(ecode2
)) {
15749 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "2"" of type '" "int""'");
15751 arg2
= static_cast< int >(val2
);
15752 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15753 if (!SWIG_IsOK(ecode3
)) {
15754 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "3"" of type '" "int""'");
15756 arg3
= static_cast< int >(val3
);
15758 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15759 (arg1
)->SetVisiblePolicy(arg2
,arg3
);
15760 wxPyEndAllowThreads(__tstate
);
15761 if (PyErr_Occurred()) SWIG_fail
;
15763 resultobj
= SWIG_Py_Void();
15770 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15771 PyObject
*resultobj
= 0;
15772 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15775 PyObject
*swig_obj
[1] ;
15777 if (!args
) SWIG_fail
;
15778 swig_obj
[0] = args
;
15779 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15780 if (!SWIG_IsOK(res1
)) {
15781 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15783 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15785 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15786 (arg1
)->DelLineLeft();
15787 wxPyEndAllowThreads(__tstate
);
15788 if (PyErr_Occurred()) SWIG_fail
;
15790 resultobj
= SWIG_Py_Void();
15797 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15798 PyObject
*resultobj
= 0;
15799 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15802 PyObject
*swig_obj
[1] ;
15804 if (!args
) SWIG_fail
;
15805 swig_obj
[0] = args
;
15806 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15807 if (!SWIG_IsOK(res1
)) {
15808 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15810 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15813 (arg1
)->DelLineRight();
15814 wxPyEndAllowThreads(__tstate
);
15815 if (PyErr_Occurred()) SWIG_fail
;
15817 resultobj
= SWIG_Py_Void();
15824 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15825 PyObject
*resultobj
= 0;
15826 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15832 PyObject
* obj0
= 0 ;
15833 PyObject
* obj1
= 0 ;
15834 char * kwnames
[] = {
15835 (char *) "self",(char *) "newOffset", NULL
15838 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetXOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15839 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15840 if (!SWIG_IsOK(res1
)) {
15841 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15843 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15844 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15845 if (!SWIG_IsOK(ecode2
)) {
15846 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "2"" of type '" "int""'");
15848 arg2
= static_cast< int >(val2
);
15850 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15851 (arg1
)->SetXOffset(arg2
);
15852 wxPyEndAllowThreads(__tstate
);
15853 if (PyErr_Occurred()) SWIG_fail
;
15855 resultobj
= SWIG_Py_Void();
15862 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15863 PyObject
*resultobj
= 0;
15864 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15868 PyObject
*swig_obj
[1] ;
15870 if (!args
) SWIG_fail
;
15871 swig_obj
[0] = args
;
15872 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15873 if (!SWIG_IsOK(res1
)) {
15874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15876 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15879 result
= (int)(arg1
)->GetXOffset();
15880 wxPyEndAllowThreads(__tstate
);
15881 if (PyErr_Occurred()) SWIG_fail
;
15883 resultobj
= SWIG_From_int(static_cast< int >(result
));
15890 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ChooseCaretX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15891 PyObject
*resultobj
= 0;
15892 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15895 PyObject
*swig_obj
[1] ;
15897 if (!args
) SWIG_fail
;
15898 swig_obj
[0] = args
;
15899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15900 if (!SWIG_IsOK(res1
)) {
15901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ChooseCaretX" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15903 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15906 (arg1
)->ChooseCaretX();
15907 wxPyEndAllowThreads(__tstate
);
15908 if (PyErr_Occurred()) SWIG_fail
;
15910 resultobj
= SWIG_Py_Void();
15917 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15918 PyObject
*resultobj
= 0;
15919 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15928 PyObject
* obj0
= 0 ;
15929 PyObject
* obj1
= 0 ;
15930 PyObject
* obj2
= 0 ;
15931 char * kwnames
[] = {
15932 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15935 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetXCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15937 if (!SWIG_IsOK(res1
)) {
15938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15940 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15941 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15942 if (!SWIG_IsOK(ecode2
)) {
15943 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15945 arg2
= static_cast< int >(val2
);
15946 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15947 if (!SWIG_IsOK(ecode3
)) {
15948 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "3"" of type '" "int""'");
15950 arg3
= static_cast< int >(val3
);
15952 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15953 (arg1
)->SetXCaretPolicy(arg2
,arg3
);
15954 wxPyEndAllowThreads(__tstate
);
15955 if (PyErr_Occurred()) SWIG_fail
;
15957 resultobj
= SWIG_Py_Void();
15964 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetYCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15965 PyObject
*resultobj
= 0;
15966 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15975 PyObject
* obj0
= 0 ;
15976 PyObject
* obj1
= 0 ;
15977 PyObject
* obj2
= 0 ;
15978 char * kwnames
[] = {
15979 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15982 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetYCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15983 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15984 if (!SWIG_IsOK(res1
)) {
15985 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15987 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15988 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15989 if (!SWIG_IsOK(ecode2
)) {
15990 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15992 arg2
= static_cast< int >(val2
);
15993 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15994 if (!SWIG_IsOK(ecode3
)) {
15995 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "3"" of type '" "int""'");
15997 arg3
= static_cast< int >(val3
);
15999 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16000 (arg1
)->SetYCaretPolicy(arg2
,arg3
);
16001 wxPyEndAllowThreads(__tstate
);
16002 if (PyErr_Occurred()) SWIG_fail
;
16004 resultobj
= SWIG_Py_Void();
16011 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16012 PyObject
*resultobj
= 0;
16013 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16019 PyObject
* obj0
= 0 ;
16020 PyObject
* obj1
= 0 ;
16021 char * kwnames
[] = {
16022 (char *) "self",(char *) "mode", NULL
16025 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16026 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16027 if (!SWIG_IsOK(res1
)) {
16028 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16030 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16031 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16032 if (!SWIG_IsOK(ecode2
)) {
16033 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "2"" of type '" "int""'");
16035 arg2
= static_cast< int >(val2
);
16037 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16038 (arg1
)->SetPrintWrapMode(arg2
);
16039 wxPyEndAllowThreads(__tstate
);
16040 if (PyErr_Occurred()) SWIG_fail
;
16042 resultobj
= SWIG_Py_Void();
16049 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16050 PyObject
*resultobj
= 0;
16051 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16055 PyObject
*swig_obj
[1] ;
16057 if (!args
) SWIG_fail
;
16058 swig_obj
[0] = args
;
16059 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16060 if (!SWIG_IsOK(res1
)) {
16061 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16063 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16065 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16066 result
= (int)(arg1
)->GetPrintWrapMode();
16067 wxPyEndAllowThreads(__tstate
);
16068 if (PyErr_Occurred()) SWIG_fail
;
16070 resultobj
= SWIG_From_int(static_cast< int >(result
));
16077 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16078 PyObject
*resultobj
= 0;
16079 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16081 wxColour
*arg3
= 0 ;
16087 PyObject
* obj0
= 0 ;
16088 PyObject
* obj1
= 0 ;
16089 PyObject
* obj2
= 0 ;
16090 char * kwnames
[] = {
16091 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
16094 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16095 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16096 if (!SWIG_IsOK(res1
)) {
16097 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16099 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16100 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16101 if (!SWIG_IsOK(ecode2
)) {
16102 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "2"" of type '" "bool""'");
16104 arg2
= static_cast< bool >(val2
);
16107 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16110 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16111 (arg1
)->SetHotspotActiveForeground(arg2
,(wxColour
const &)*arg3
);
16112 wxPyEndAllowThreads(__tstate
);
16113 if (PyErr_Occurred()) SWIG_fail
;
16115 resultobj
= SWIG_Py_Void();
16122 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16123 PyObject
*resultobj
= 0;
16124 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16126 wxColour
*arg3
= 0 ;
16132 PyObject
* obj0
= 0 ;
16133 PyObject
* obj1
= 0 ;
16134 PyObject
* obj2
= 0 ;
16135 char * kwnames
[] = {
16136 (char *) "self",(char *) "useSetting",(char *) "back", NULL
16139 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16140 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16141 if (!SWIG_IsOK(res1
)) {
16142 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16144 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16145 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16146 if (!SWIG_IsOK(ecode2
)) {
16147 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "2"" of type '" "bool""'");
16149 arg2
= static_cast< bool >(val2
);
16152 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16155 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16156 (arg1
)->SetHotspotActiveBackground(arg2
,(wxColour
const &)*arg3
);
16157 wxPyEndAllowThreads(__tstate
);
16158 if (PyErr_Occurred()) SWIG_fail
;
16160 resultobj
= SWIG_Py_Void();
16167 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16168 PyObject
*resultobj
= 0;
16169 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16175 PyObject
* obj0
= 0 ;
16176 PyObject
* obj1
= 0 ;
16177 char * kwnames
[] = {
16178 (char *) "self",(char *) "underline", NULL
16181 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotActiveUnderline",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16182 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16183 if (!SWIG_IsOK(res1
)) {
16184 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16186 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16187 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16188 if (!SWIG_IsOK(ecode2
)) {
16189 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "2"" of type '" "bool""'");
16191 arg2
= static_cast< bool >(val2
);
16193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16194 (arg1
)->SetHotspotActiveUnderline(arg2
);
16195 wxPyEndAllowThreads(__tstate
);
16196 if (PyErr_Occurred()) SWIG_fail
;
16198 resultobj
= SWIG_Py_Void();
16205 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotSingleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16206 PyObject
*resultobj
= 0;
16207 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16213 PyObject
* obj0
= 0 ;
16214 PyObject
* obj1
= 0 ;
16215 char * kwnames
[] = {
16216 (char *) "self",(char *) "singleLine", NULL
16219 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotSingleLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16220 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16221 if (!SWIG_IsOK(res1
)) {
16222 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16224 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16225 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16226 if (!SWIG_IsOK(ecode2
)) {
16227 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "2"" of type '" "bool""'");
16229 arg2
= static_cast< bool >(val2
);
16231 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16232 (arg1
)->SetHotspotSingleLine(arg2
);
16233 wxPyEndAllowThreads(__tstate
);
16234 if (PyErr_Occurred()) SWIG_fail
;
16236 resultobj
= SWIG_Py_Void();
16243 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16244 PyObject
*resultobj
= 0;
16245 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16248 PyObject
*swig_obj
[1] ;
16250 if (!args
) SWIG_fail
;
16251 swig_obj
[0] = args
;
16252 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16253 if (!SWIG_IsOK(res1
)) {
16254 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16256 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16258 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16259 (arg1
)->ParaDown();
16260 wxPyEndAllowThreads(__tstate
);
16261 if (PyErr_Occurred()) SWIG_fail
;
16263 resultobj
= SWIG_Py_Void();
16270 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16271 PyObject
*resultobj
= 0;
16272 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16275 PyObject
*swig_obj
[1] ;
16277 if (!args
) SWIG_fail
;
16278 swig_obj
[0] = args
;
16279 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16280 if (!SWIG_IsOK(res1
)) {
16281 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16283 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16285 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16286 (arg1
)->ParaDownExtend();
16287 wxPyEndAllowThreads(__tstate
);
16288 if (PyErr_Occurred()) SWIG_fail
;
16290 resultobj
= SWIG_Py_Void();
16297 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16298 PyObject
*resultobj
= 0;
16299 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16302 PyObject
*swig_obj
[1] ;
16304 if (!args
) SWIG_fail
;
16305 swig_obj
[0] = args
;
16306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16307 if (!SWIG_IsOK(res1
)) {
16308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16310 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16314 wxPyEndAllowThreads(__tstate
);
16315 if (PyErr_Occurred()) SWIG_fail
;
16317 resultobj
= SWIG_Py_Void();
16324 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16325 PyObject
*resultobj
= 0;
16326 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16329 PyObject
*swig_obj
[1] ;
16331 if (!args
) SWIG_fail
;
16332 swig_obj
[0] = args
;
16333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16334 if (!SWIG_IsOK(res1
)) {
16335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16337 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16340 (arg1
)->ParaUpExtend();
16341 wxPyEndAllowThreads(__tstate
);
16342 if (PyErr_Occurred()) SWIG_fail
;
16344 resultobj
= SWIG_Py_Void();
16351 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionBefore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16352 PyObject
*resultobj
= 0;
16353 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16360 PyObject
* obj0
= 0 ;
16361 PyObject
* obj1
= 0 ;
16362 char * kwnames
[] = {
16363 (char *) "self",(char *) "pos", NULL
16366 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionBefore",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16367 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16368 if (!SWIG_IsOK(res1
)) {
16369 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16371 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16372 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16373 if (!SWIG_IsOK(ecode2
)) {
16374 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "2"" of type '" "int""'");
16376 arg2
= static_cast< int >(val2
);
16378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16379 result
= (int)(arg1
)->PositionBefore(arg2
);
16380 wxPyEndAllowThreads(__tstate
);
16381 if (PyErr_Occurred()) SWIG_fail
;
16383 resultobj
= SWIG_From_int(static_cast< int >(result
));
16390 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionAfter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16391 PyObject
*resultobj
= 0;
16392 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16399 PyObject
* obj0
= 0 ;
16400 PyObject
* obj1
= 0 ;
16401 char * kwnames
[] = {
16402 (char *) "self",(char *) "pos", NULL
16405 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionAfter",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16406 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16407 if (!SWIG_IsOK(res1
)) {
16408 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16410 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16411 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16412 if (!SWIG_IsOK(ecode2
)) {
16413 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "2"" of type '" "int""'");
16415 arg2
= static_cast< int >(val2
);
16417 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16418 result
= (int)(arg1
)->PositionAfter(arg2
);
16419 wxPyEndAllowThreads(__tstate
);
16420 if (PyErr_Occurred()) SWIG_fail
;
16422 resultobj
= SWIG_From_int(static_cast< int >(result
));
16429 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16430 PyObject
*resultobj
= 0;
16431 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16440 PyObject
* obj0
= 0 ;
16441 PyObject
* obj1
= 0 ;
16442 PyObject
* obj2
= 0 ;
16443 char * kwnames
[] = {
16444 (char *) "self",(char *) "start",(char *) "end", NULL
16447 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16448 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16449 if (!SWIG_IsOK(res1
)) {
16450 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16452 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16453 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16454 if (!SWIG_IsOK(ecode2
)) {
16455 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "2"" of type '" "int""'");
16457 arg2
= static_cast< int >(val2
);
16458 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16459 if (!SWIG_IsOK(ecode3
)) {
16460 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "3"" of type '" "int""'");
16462 arg3
= static_cast< int >(val3
);
16464 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16465 (arg1
)->CopyRange(arg2
,arg3
);
16466 wxPyEndAllowThreads(__tstate
);
16467 if (PyErr_Occurred()) SWIG_fail
;
16469 resultobj
= SWIG_Py_Void();
16476 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16477 PyObject
*resultobj
= 0;
16478 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16480 wxString
*arg3
= 0 ;
16485 bool temp3
= false ;
16486 PyObject
* obj0
= 0 ;
16487 PyObject
* obj1
= 0 ;
16488 PyObject
* obj2
= 0 ;
16489 char * kwnames
[] = {
16490 (char *) "self",(char *) "length",(char *) "text", NULL
16493 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16494 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16495 if (!SWIG_IsOK(res1
)) {
16496 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16498 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16499 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16500 if (!SWIG_IsOK(ecode2
)) {
16501 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "2"" of type '" "int""'");
16503 arg2
= static_cast< int >(val2
);
16505 arg3
= wxString_in_helper(obj2
);
16506 if (arg3
== NULL
) SWIG_fail
;
16510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16511 (arg1
)->CopyText(arg2
,(wxString
const &)*arg3
);
16512 wxPyEndAllowThreads(__tstate
);
16513 if (PyErr_Occurred()) SWIG_fail
;
16515 resultobj
= SWIG_Py_Void();
16530 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16531 PyObject
*resultobj
= 0;
16532 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16538 PyObject
* obj0
= 0 ;
16539 PyObject
* obj1
= 0 ;
16540 char * kwnames
[] = {
16541 (char *) "self",(char *) "mode", NULL
16544 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16545 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16546 if (!SWIG_IsOK(res1
)) {
16547 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16549 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16550 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16551 if (!SWIG_IsOK(ecode2
)) {
16552 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "2"" of type '" "int""'");
16554 arg2
= static_cast< int >(val2
);
16556 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16557 (arg1
)->SetSelectionMode(arg2
);
16558 wxPyEndAllowThreads(__tstate
);
16559 if (PyErr_Occurred()) SWIG_fail
;
16561 resultobj
= SWIG_Py_Void();
16568 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16569 PyObject
*resultobj
= 0;
16570 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16574 PyObject
*swig_obj
[1] ;
16576 if (!args
) SWIG_fail
;
16577 swig_obj
[0] = args
;
16578 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16579 if (!SWIG_IsOK(res1
)) {
16580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16582 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16584 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16585 result
= (int)(arg1
)->GetSelectionMode();
16586 wxPyEndAllowThreads(__tstate
);
16587 if (PyErr_Occurred()) SWIG_fail
;
16589 resultobj
= SWIG_From_int(static_cast< int >(result
));
16596 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16597 PyObject
*resultobj
= 0;
16598 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16605 PyObject
* obj0
= 0 ;
16606 PyObject
* obj1
= 0 ;
16607 char * kwnames
[] = {
16608 (char *) "self",(char *) "line", NULL
16611 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelStartPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16612 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16613 if (!SWIG_IsOK(res1
)) {
16614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16616 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16617 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16618 if (!SWIG_IsOK(ecode2
)) {
16619 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "2"" of type '" "int""'");
16621 arg2
= static_cast< int >(val2
);
16623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16624 result
= (int)(arg1
)->GetLineSelStartPosition(arg2
);
16625 wxPyEndAllowThreads(__tstate
);
16626 if (PyErr_Occurred()) SWIG_fail
;
16628 resultobj
= SWIG_From_int(static_cast< int >(result
));
16635 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16636 PyObject
*resultobj
= 0;
16637 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16644 PyObject
* obj0
= 0 ;
16645 PyObject
* obj1
= 0 ;
16646 char * kwnames
[] = {
16647 (char *) "self",(char *) "line", NULL
16650 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16651 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16652 if (!SWIG_IsOK(res1
)) {
16653 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16655 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16656 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16657 if (!SWIG_IsOK(ecode2
)) {
16658 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "2"" of type '" "int""'");
16660 arg2
= static_cast< int >(val2
);
16662 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16663 result
= (int)(arg1
)->GetLineSelEndPosition(arg2
);
16664 wxPyEndAllowThreads(__tstate
);
16665 if (PyErr_Occurred()) SWIG_fail
;
16667 resultobj
= SWIG_From_int(static_cast< int >(result
));
16674 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16675 PyObject
*resultobj
= 0;
16676 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16679 PyObject
*swig_obj
[1] ;
16681 if (!args
) SWIG_fail
;
16682 swig_obj
[0] = args
;
16683 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16684 if (!SWIG_IsOK(res1
)) {
16685 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16687 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16690 (arg1
)->LineDownRectExtend();
16691 wxPyEndAllowThreads(__tstate
);
16692 if (PyErr_Occurred()) SWIG_fail
;
16694 resultobj
= SWIG_Py_Void();
16701 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16702 PyObject
*resultobj
= 0;
16703 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16706 PyObject
*swig_obj
[1] ;
16708 if (!args
) SWIG_fail
;
16709 swig_obj
[0] = args
;
16710 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16711 if (!SWIG_IsOK(res1
)) {
16712 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16714 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16716 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16717 (arg1
)->LineUpRectExtend();
16718 wxPyEndAllowThreads(__tstate
);
16719 if (PyErr_Occurred()) SWIG_fail
;
16721 resultobj
= SWIG_Py_Void();
16728 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16729 PyObject
*resultobj
= 0;
16730 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16733 PyObject
*swig_obj
[1] ;
16735 if (!args
) SWIG_fail
;
16736 swig_obj
[0] = args
;
16737 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16738 if (!SWIG_IsOK(res1
)) {
16739 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16741 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16743 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16744 (arg1
)->CharLeftRectExtend();
16745 wxPyEndAllowThreads(__tstate
);
16746 if (PyErr_Occurred()) SWIG_fail
;
16748 resultobj
= SWIG_Py_Void();
16755 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16756 PyObject
*resultobj
= 0;
16757 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16760 PyObject
*swig_obj
[1] ;
16762 if (!args
) SWIG_fail
;
16763 swig_obj
[0] = args
;
16764 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16765 if (!SWIG_IsOK(res1
)) {
16766 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16768 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16771 (arg1
)->CharRightRectExtend();
16772 wxPyEndAllowThreads(__tstate
);
16773 if (PyErr_Occurred()) SWIG_fail
;
16775 resultobj
= SWIG_Py_Void();
16782 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16783 PyObject
*resultobj
= 0;
16784 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16787 PyObject
*swig_obj
[1] ;
16789 if (!args
) SWIG_fail
;
16790 swig_obj
[0] = args
;
16791 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16792 if (!SWIG_IsOK(res1
)) {
16793 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16795 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16798 (arg1
)->HomeRectExtend();
16799 wxPyEndAllowThreads(__tstate
);
16800 if (PyErr_Occurred()) SWIG_fail
;
16802 resultobj
= SWIG_Py_Void();
16809 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16810 PyObject
*resultobj
= 0;
16811 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16814 PyObject
*swig_obj
[1] ;
16816 if (!args
) SWIG_fail
;
16817 swig_obj
[0] = args
;
16818 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16819 if (!SWIG_IsOK(res1
)) {
16820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16822 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16825 (arg1
)->VCHomeRectExtend();
16826 wxPyEndAllowThreads(__tstate
);
16827 if (PyErr_Occurred()) SWIG_fail
;
16829 resultobj
= SWIG_Py_Void();
16836 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16837 PyObject
*resultobj
= 0;
16838 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16841 PyObject
*swig_obj
[1] ;
16843 if (!args
) SWIG_fail
;
16844 swig_obj
[0] = args
;
16845 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16846 if (!SWIG_IsOK(res1
)) {
16847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16849 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16852 (arg1
)->LineEndRectExtend();
16853 wxPyEndAllowThreads(__tstate
);
16854 if (PyErr_Occurred()) SWIG_fail
;
16856 resultobj
= SWIG_Py_Void();
16863 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16864 PyObject
*resultobj
= 0;
16865 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16868 PyObject
*swig_obj
[1] ;
16870 if (!args
) SWIG_fail
;
16871 swig_obj
[0] = args
;
16872 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16873 if (!SWIG_IsOK(res1
)) {
16874 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16876 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16878 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16879 (arg1
)->PageUpRectExtend();
16880 wxPyEndAllowThreads(__tstate
);
16881 if (PyErr_Occurred()) SWIG_fail
;
16883 resultobj
= SWIG_Py_Void();
16890 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16891 PyObject
*resultobj
= 0;
16892 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16895 PyObject
*swig_obj
[1] ;
16897 if (!args
) SWIG_fail
;
16898 swig_obj
[0] = args
;
16899 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16900 if (!SWIG_IsOK(res1
)) {
16901 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16903 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16905 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16906 (arg1
)->PageDownRectExtend();
16907 wxPyEndAllowThreads(__tstate
);
16908 if (PyErr_Occurred()) SWIG_fail
;
16910 resultobj
= SWIG_Py_Void();
16917 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16918 PyObject
*resultobj
= 0;
16919 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16922 PyObject
*swig_obj
[1] ;
16924 if (!args
) SWIG_fail
;
16925 swig_obj
[0] = args
;
16926 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16927 if (!SWIG_IsOK(res1
)) {
16928 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16930 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16932 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16933 (arg1
)->StutteredPageUp();
16934 wxPyEndAllowThreads(__tstate
);
16935 if (PyErr_Occurred()) SWIG_fail
;
16937 resultobj
= SWIG_Py_Void();
16944 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16945 PyObject
*resultobj
= 0;
16946 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16949 PyObject
*swig_obj
[1] ;
16951 if (!args
) SWIG_fail
;
16952 swig_obj
[0] = args
;
16953 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16954 if (!SWIG_IsOK(res1
)) {
16955 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16957 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16959 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16960 (arg1
)->StutteredPageUpExtend();
16961 wxPyEndAllowThreads(__tstate
);
16962 if (PyErr_Occurred()) SWIG_fail
;
16964 resultobj
= SWIG_Py_Void();
16971 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16972 PyObject
*resultobj
= 0;
16973 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16976 PyObject
*swig_obj
[1] ;
16978 if (!args
) SWIG_fail
;
16979 swig_obj
[0] = args
;
16980 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16981 if (!SWIG_IsOK(res1
)) {
16982 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16984 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16987 (arg1
)->StutteredPageDown();
16988 wxPyEndAllowThreads(__tstate
);
16989 if (PyErr_Occurred()) SWIG_fail
;
16991 resultobj
= SWIG_Py_Void();
16998 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16999 PyObject
*resultobj
= 0;
17000 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17003 PyObject
*swig_obj
[1] ;
17005 if (!args
) SWIG_fail
;
17006 swig_obj
[0] = args
;
17007 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17008 if (!SWIG_IsOK(res1
)) {
17009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17011 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17014 (arg1
)->StutteredPageDownExtend();
17015 wxPyEndAllowThreads(__tstate
);
17016 if (PyErr_Occurred()) SWIG_fail
;
17018 resultobj
= SWIG_Py_Void();
17025 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17026 PyObject
*resultobj
= 0;
17027 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17030 PyObject
*swig_obj
[1] ;
17032 if (!args
) SWIG_fail
;
17033 swig_obj
[0] = args
;
17034 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17035 if (!SWIG_IsOK(res1
)) {
17036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17038 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17040 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17041 (arg1
)->WordLeftEnd();
17042 wxPyEndAllowThreads(__tstate
);
17043 if (PyErr_Occurred()) SWIG_fail
;
17045 resultobj
= SWIG_Py_Void();
17052 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17053 PyObject
*resultobj
= 0;
17054 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17057 PyObject
*swig_obj
[1] ;
17059 if (!args
) SWIG_fail
;
17060 swig_obj
[0] = args
;
17061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17062 if (!SWIG_IsOK(res1
)) {
17063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17068 (arg1
)->WordLeftEndExtend();
17069 wxPyEndAllowThreads(__tstate
);
17070 if (PyErr_Occurred()) SWIG_fail
;
17072 resultobj
= SWIG_Py_Void();
17079 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17080 PyObject
*resultobj
= 0;
17081 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17084 PyObject
*swig_obj
[1] ;
17086 if (!args
) SWIG_fail
;
17087 swig_obj
[0] = args
;
17088 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17089 if (!SWIG_IsOK(res1
)) {
17090 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17092 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17095 (arg1
)->WordRightEnd();
17096 wxPyEndAllowThreads(__tstate
);
17097 if (PyErr_Occurred()) SWIG_fail
;
17099 resultobj
= SWIG_Py_Void();
17106 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17107 PyObject
*resultobj
= 0;
17108 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17111 PyObject
*swig_obj
[1] ;
17113 if (!args
) SWIG_fail
;
17114 swig_obj
[0] = args
;
17115 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17116 if (!SWIG_IsOK(res1
)) {
17117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17119 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17121 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17122 (arg1
)->WordRightEndExtend();
17123 wxPyEndAllowThreads(__tstate
);
17124 if (PyErr_Occurred()) SWIG_fail
;
17126 resultobj
= SWIG_Py_Void();
17133 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17134 PyObject
*resultobj
= 0;
17135 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17136 wxString
*arg2
= 0 ;
17139 bool temp2
= false ;
17140 PyObject
* obj0
= 0 ;
17141 PyObject
* obj1
= 0 ;
17142 char * kwnames
[] = {
17143 (char *) "self",(char *) "characters", NULL
17146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWhitespaceChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17148 if (!SWIG_IsOK(res1
)) {
17149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17151 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17153 arg2
= wxString_in_helper(obj1
);
17154 if (arg2
== NULL
) SWIG_fail
;
17158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17159 (arg1
)->SetWhitespaceChars((wxString
const &)*arg2
);
17160 wxPyEndAllowThreads(__tstate
);
17161 if (PyErr_Occurred()) SWIG_fail
;
17163 resultobj
= SWIG_Py_Void();
17178 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCharsDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17179 PyObject
*resultobj
= 0;
17180 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17183 PyObject
*swig_obj
[1] ;
17185 if (!args
) SWIG_fail
;
17186 swig_obj
[0] = args
;
17187 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17188 if (!SWIG_IsOK(res1
)) {
17189 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCharsDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17191 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17193 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17194 (arg1
)->SetCharsDefault();
17195 wxPyEndAllowThreads(__tstate
);
17196 if (PyErr_Occurred()) SWIG_fail
;
17198 resultobj
= SWIG_Py_Void();
17205 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17206 PyObject
*resultobj
= 0;
17207 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17211 PyObject
*swig_obj
[1] ;
17213 if (!args
) SWIG_fail
;
17214 swig_obj
[0] = args
;
17215 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17216 if (!SWIG_IsOK(res1
)) {
17217 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCurrent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17219 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17221 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17222 result
= (int)(arg1
)->AutoCompGetCurrent();
17223 wxPyEndAllowThreads(__tstate
);
17224 if (PyErr_Occurred()) SWIG_fail
;
17226 resultobj
= SWIG_From_int(static_cast< int >(result
));
17233 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Allocate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17234 PyObject
*resultobj
= 0;
17235 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17241 PyObject
* obj0
= 0 ;
17242 PyObject
* obj1
= 0 ;
17243 char * kwnames
[] = {
17244 (char *) "self",(char *) "bytes", NULL
17247 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_Allocate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17248 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17249 if (!SWIG_IsOK(res1
)) {
17250 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17252 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17253 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17254 if (!SWIG_IsOK(ecode2
)) {
17255 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "2"" of type '" "int""'");
17257 arg2
= static_cast< int >(val2
);
17259 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17260 (arg1
)->Allocate(arg2
);
17261 wxPyEndAllowThreads(__tstate
);
17262 if (PyErr_Occurred()) SWIG_fail
;
17264 resultobj
= SWIG_Py_Void();
17271 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17272 PyObject
*resultobj
= 0;
17273 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17283 PyObject
* obj0
= 0 ;
17284 PyObject
* obj1
= 0 ;
17285 PyObject
* obj2
= 0 ;
17286 char * kwnames
[] = {
17287 (char *) "self",(char *) "line",(char *) "column", NULL
17290 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_FindColumn",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17291 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17292 if (!SWIG_IsOK(res1
)) {
17293 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17295 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17296 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17297 if (!SWIG_IsOK(ecode2
)) {
17298 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "2"" of type '" "int""'");
17300 arg2
= static_cast< int >(val2
);
17301 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17302 if (!SWIG_IsOK(ecode3
)) {
17303 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "3"" of type '" "int""'");
17305 arg3
= static_cast< int >(val3
);
17307 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17308 result
= (int)(arg1
)->FindColumn(arg2
,arg3
);
17309 wxPyEndAllowThreads(__tstate
);
17310 if (PyErr_Occurred()) SWIG_fail
;
17312 resultobj
= SWIG_From_int(static_cast< int >(result
));
17319 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17320 PyObject
*resultobj
= 0;
17321 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17325 PyObject
*swig_obj
[1] ;
17327 if (!args
) SWIG_fail
;
17328 swig_obj
[0] = args
;
17329 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17330 if (!SWIG_IsOK(res1
)) {
17331 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17333 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17336 result
= (bool)(arg1
)->GetCaretSticky();
17337 wxPyEndAllowThreads(__tstate
);
17338 if (PyErr_Occurred()) SWIG_fail
;
17341 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17349 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17350 PyObject
*resultobj
= 0;
17351 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17357 PyObject
* obj0
= 0 ;
17358 PyObject
* obj1
= 0 ;
17359 char * kwnames
[] = {
17360 (char *) "self",(char *) "useCaretStickyBehaviour", NULL
17363 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretSticky",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17364 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17365 if (!SWIG_IsOK(res1
)) {
17366 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17368 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17369 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17370 if (!SWIG_IsOK(ecode2
)) {
17371 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "2"" of type '" "bool""'");
17373 arg2
= static_cast< bool >(val2
);
17375 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17376 (arg1
)->SetCaretSticky(arg2
);
17377 wxPyEndAllowThreads(__tstate
);
17378 if (PyErr_Occurred()) SWIG_fail
;
17380 resultobj
= SWIG_Py_Void();
17387 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17388 PyObject
*resultobj
= 0;
17389 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17392 PyObject
*swig_obj
[1] ;
17394 if (!args
) SWIG_fail
;
17395 swig_obj
[0] = args
;
17396 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17397 if (!SWIG_IsOK(res1
)) {
17398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17400 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17402 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17403 (arg1
)->ToggleCaretSticky();
17404 wxPyEndAllowThreads(__tstate
);
17405 if (PyErr_Occurred()) SWIG_fail
;
17407 resultobj
= SWIG_Py_Void();
17414 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17415 PyObject
*resultobj
= 0;
17416 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17422 PyObject
* obj0
= 0 ;
17423 PyObject
* obj1
= 0 ;
17424 char * kwnames
[] = {
17425 (char *) "self",(char *) "convert", NULL
17428 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPasteConvertEndings",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17429 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17430 if (!SWIG_IsOK(res1
)) {
17431 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17433 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17434 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17435 if (!SWIG_IsOK(ecode2
)) {
17436 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "2"" of type '" "bool""'");
17438 arg2
= static_cast< bool >(val2
);
17440 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17441 (arg1
)->SetPasteConvertEndings(arg2
);
17442 wxPyEndAllowThreads(__tstate
);
17443 if (PyErr_Occurred()) SWIG_fail
;
17445 resultobj
= SWIG_Py_Void();
17452 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17453 PyObject
*resultobj
= 0;
17454 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17458 PyObject
*swig_obj
[1] ;
17460 if (!args
) SWIG_fail
;
17461 swig_obj
[0] = args
;
17462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17463 if (!SWIG_IsOK(res1
)) {
17464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17466 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17469 result
= (bool)(arg1
)->GetPasteConvertEndings();
17470 wxPyEndAllowThreads(__tstate
);
17471 if (PyErr_Occurred()) SWIG_fail
;
17474 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17482 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17483 PyObject
*resultobj
= 0;
17484 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17487 PyObject
*swig_obj
[1] ;
17489 if (!args
) SWIG_fail
;
17490 swig_obj
[0] = args
;
17491 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17492 if (!SWIG_IsOK(res1
)) {
17493 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17495 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17498 (arg1
)->SelectionDuplicate();
17499 wxPyEndAllowThreads(__tstate
);
17500 if (PyErr_Occurred()) SWIG_fail
;
17502 resultobj
= SWIG_Py_Void();
17509 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17510 PyObject
*resultobj
= 0;
17511 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17514 PyObject
*swig_obj
[1] ;
17516 if (!args
) SWIG_fail
;
17517 swig_obj
[0] = args
;
17518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17519 if (!SWIG_IsOK(res1
)) {
17520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17522 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17525 (arg1
)->StartRecord();
17526 wxPyEndAllowThreads(__tstate
);
17527 if (PyErr_Occurred()) SWIG_fail
;
17529 resultobj
= SWIG_Py_Void();
17536 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StopRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17537 PyObject
*resultobj
= 0;
17538 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17541 PyObject
*swig_obj
[1] ;
17543 if (!args
) SWIG_fail
;
17544 swig_obj
[0] = args
;
17545 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17546 if (!SWIG_IsOK(res1
)) {
17547 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StopRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17549 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17551 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17552 (arg1
)->StopRecord();
17553 wxPyEndAllowThreads(__tstate
);
17554 if (PyErr_Occurred()) SWIG_fail
;
17556 resultobj
= SWIG_Py_Void();
17563 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17564 PyObject
*resultobj
= 0;
17565 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17571 PyObject
* obj0
= 0 ;
17572 PyObject
* obj1
= 0 ;
17573 char * kwnames
[] = {
17574 (char *) "self",(char *) "lexer", NULL
17577 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17578 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17579 if (!SWIG_IsOK(res1
)) {
17580 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17582 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17583 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17584 if (!SWIG_IsOK(ecode2
)) {
17585 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "2"" of type '" "int""'");
17587 arg2
= static_cast< int >(val2
);
17589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17590 (arg1
)->SetLexer(arg2
);
17591 wxPyEndAllowThreads(__tstate
);
17592 if (PyErr_Occurred()) SWIG_fail
;
17594 resultobj
= SWIG_Py_Void();
17601 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17602 PyObject
*resultobj
= 0;
17603 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17607 PyObject
*swig_obj
[1] ;
17609 if (!args
) SWIG_fail
;
17610 swig_obj
[0] = args
;
17611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17612 if (!SWIG_IsOK(res1
)) {
17613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17615 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17618 result
= (int)(arg1
)->GetLexer();
17619 wxPyEndAllowThreads(__tstate
);
17620 if (PyErr_Occurred()) SWIG_fail
;
17622 resultobj
= SWIG_From_int(static_cast< int >(result
));
17629 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Colourise(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17630 PyObject
*resultobj
= 0;
17631 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17640 PyObject
* obj0
= 0 ;
17641 PyObject
* obj1
= 0 ;
17642 PyObject
* obj2
= 0 ;
17643 char * kwnames
[] = {
17644 (char *) "self",(char *) "start",(char *) "end", NULL
17647 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_Colourise",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17648 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17649 if (!SWIG_IsOK(res1
)) {
17650 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17652 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17653 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17654 if (!SWIG_IsOK(ecode2
)) {
17655 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "2"" of type '" "int""'");
17657 arg2
= static_cast< int >(val2
);
17658 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17659 if (!SWIG_IsOK(ecode3
)) {
17660 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "3"" of type '" "int""'");
17662 arg3
= static_cast< int >(val3
);
17664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17665 (arg1
)->Colourise(arg2
,arg3
);
17666 wxPyEndAllowThreads(__tstate
);
17667 if (PyErr_Occurred()) SWIG_fail
;
17669 resultobj
= SWIG_Py_Void();
17676 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17677 PyObject
*resultobj
= 0;
17678 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17679 wxString
*arg2
= 0 ;
17680 wxString
*arg3
= 0 ;
17683 bool temp2
= false ;
17684 bool temp3
= false ;
17685 PyObject
* obj0
= 0 ;
17686 PyObject
* obj1
= 0 ;
17687 PyObject
* obj2
= 0 ;
17688 char * kwnames
[] = {
17689 (char *) "self",(char *) "key",(char *) "value", NULL
17692 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetProperty",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17693 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17694 if (!SWIG_IsOK(res1
)) {
17695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17697 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17699 arg2
= wxString_in_helper(obj1
);
17700 if (arg2
== NULL
) SWIG_fail
;
17704 arg3
= wxString_in_helper(obj2
);
17705 if (arg3
== NULL
) SWIG_fail
;
17709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17710 (arg1
)->SetProperty((wxString
const &)*arg2
,(wxString
const &)*arg3
);
17711 wxPyEndAllowThreads(__tstate
);
17712 if (PyErr_Occurred()) SWIG_fail
;
17714 resultobj
= SWIG_Py_Void();
17737 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetKeyWords(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17738 PyObject
*resultobj
= 0;
17739 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17741 wxString
*arg3
= 0 ;
17746 bool temp3
= false ;
17747 PyObject
* obj0
= 0 ;
17748 PyObject
* obj1
= 0 ;
17749 PyObject
* obj2
= 0 ;
17750 char * kwnames
[] = {
17751 (char *) "self",(char *) "keywordSet",(char *) "keyWords", NULL
17754 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetKeyWords",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17755 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17756 if (!SWIG_IsOK(res1
)) {
17757 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17759 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17760 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17761 if (!SWIG_IsOK(ecode2
)) {
17762 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "2"" of type '" "int""'");
17764 arg2
= static_cast< int >(val2
);
17766 arg3
= wxString_in_helper(obj2
);
17767 if (arg3
== NULL
) SWIG_fail
;
17771 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17772 (arg1
)->SetKeyWords(arg2
,(wxString
const &)*arg3
);
17773 wxPyEndAllowThreads(__tstate
);
17774 if (PyErr_Occurred()) SWIG_fail
;
17776 resultobj
= SWIG_Py_Void();
17791 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexerLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17792 PyObject
*resultobj
= 0;
17793 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17794 wxString
*arg2
= 0 ;
17797 bool temp2
= false ;
17798 PyObject
* obj0
= 0 ;
17799 PyObject
* obj1
= 0 ;
17800 char * kwnames
[] = {
17801 (char *) "self",(char *) "language", NULL
17804 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexerLanguage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17805 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17806 if (!SWIG_IsOK(res1
)) {
17807 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexerLanguage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17809 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17811 arg2
= wxString_in_helper(obj1
);
17812 if (arg2
== NULL
) SWIG_fail
;
17816 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17817 (arg1
)->SetLexerLanguage((wxString
const &)*arg2
);
17818 wxPyEndAllowThreads(__tstate
);
17819 if (PyErr_Occurred()) SWIG_fail
;
17821 resultobj
= SWIG_Py_Void();
17836 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17837 PyObject
*resultobj
= 0;
17838 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17839 wxString
*arg2
= 0 ;
17843 bool temp2
= false ;
17844 PyObject
* obj0
= 0 ;
17845 PyObject
* obj1
= 0 ;
17846 char * kwnames
[] = {
17847 (char *) "self",(char *) "key", NULL
17850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetProperty",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17852 if (!SWIG_IsOK(res1
)) {
17853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17857 arg2
= wxString_in_helper(obj1
);
17858 if (arg2
== NULL
) SWIG_fail
;
17862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17863 result
= (arg1
)->GetProperty((wxString
const &)*arg2
);
17864 wxPyEndAllowThreads(__tstate
);
17865 if (PyErr_Occurred()) SWIG_fail
;
17869 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17871 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17888 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17889 PyObject
*resultobj
= 0;
17890 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17891 wxString
*arg2
= 0 ;
17895 bool temp2
= false ;
17896 PyObject
* obj0
= 0 ;
17897 PyObject
* obj1
= 0 ;
17898 char * kwnames
[] = {
17899 (char *) "self",(char *) "key", NULL
17902 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17903 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17904 if (!SWIG_IsOK(res1
)) {
17905 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17907 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17909 arg2
= wxString_in_helper(obj1
);
17910 if (arg2
== NULL
) SWIG_fail
;
17914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17915 result
= (arg1
)->GetPropertyExpanded((wxString
const &)*arg2
);
17916 wxPyEndAllowThreads(__tstate
);
17917 if (PyErr_Occurred()) SWIG_fail
;
17921 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17923 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17940 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17941 PyObject
*resultobj
= 0;
17942 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17943 wxString
*arg2
= 0 ;
17947 bool temp2
= false ;
17948 PyObject
* obj0
= 0 ;
17949 PyObject
* obj1
= 0 ;
17950 char * kwnames
[] = {
17951 (char *) "self",(char *) "key", NULL
17954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyInt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17956 if (!SWIG_IsOK(res1
)) {
17957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyInt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17959 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17961 arg2
= wxString_in_helper(obj1
);
17962 if (arg2
== NULL
) SWIG_fail
;
17966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17967 result
= (int)(arg1
)->GetPropertyInt((wxString
const &)*arg2
);
17968 wxPyEndAllowThreads(__tstate
);
17969 if (PyErr_Occurred()) SWIG_fail
;
17971 resultobj
= SWIG_From_int(static_cast< int >(result
));
17986 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBitsNeeded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17987 PyObject
*resultobj
= 0;
17988 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17992 PyObject
*swig_obj
[1] ;
17994 if (!args
) SWIG_fail
;
17995 swig_obj
[0] = args
;
17996 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17997 if (!SWIG_IsOK(res1
)) {
17998 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBitsNeeded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18000 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18003 result
= (int)(arg1
)->GetStyleBitsNeeded();
18004 wxPyEndAllowThreads(__tstate
);
18005 if (PyErr_Occurred()) SWIG_fail
;
18007 resultobj
= SWIG_From_int(static_cast< int >(result
));
18014 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18015 PyObject
*resultobj
= 0;
18016 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18020 PyObject
*swig_obj
[1] ;
18022 if (!args
) SWIG_fail
;
18023 swig_obj
[0] = args
;
18024 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18025 if (!SWIG_IsOK(res1
)) {
18026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18028 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18031 result
= (int)(arg1
)->GetCurrentLine();
18032 wxPyEndAllowThreads(__tstate
);
18033 if (PyErr_Occurred()) SWIG_fail
;
18035 resultobj
= SWIG_From_int(static_cast< int >(result
));
18042 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSpec(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18043 PyObject
*resultobj
= 0;
18044 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18046 wxString
*arg3
= 0 ;
18051 bool temp3
= false ;
18052 PyObject
* obj0
= 0 ;
18053 PyObject
* obj1
= 0 ;
18054 PyObject
* obj2
= 0 ;
18055 char * kwnames
[] = {
18056 (char *) "self",(char *) "styleNum",(char *) "spec", NULL
18059 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSpec",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18060 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18061 if (!SWIG_IsOK(res1
)) {
18062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18064 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18065 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18066 if (!SWIG_IsOK(ecode2
)) {
18067 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "2"" of type '" "int""'");
18069 arg2
= static_cast< int >(val2
);
18071 arg3
= wxString_in_helper(obj2
);
18072 if (arg3
== NULL
) SWIG_fail
;
18076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18077 (arg1
)->StyleSetSpec(arg2
,(wxString
const &)*arg3
);
18078 wxPyEndAllowThreads(__tstate
);
18079 if (PyErr_Occurred()) SWIG_fail
;
18081 resultobj
= SWIG_Py_Void();
18096 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18097 PyObject
*resultobj
= 0;
18098 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18107 PyObject
* obj0
= 0 ;
18108 PyObject
* obj1
= 0 ;
18109 PyObject
* obj2
= 0 ;
18110 char * kwnames
[] = {
18111 (char *) "self",(char *) "styleNum",(char *) "font", NULL
18114 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18115 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18116 if (!SWIG_IsOK(res1
)) {
18117 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18119 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18120 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18121 if (!SWIG_IsOK(ecode2
)) {
18122 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "2"" of type '" "int""'");
18124 arg2
= static_cast< int >(val2
);
18125 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 );
18126 if (!SWIG_IsOK(res3
)) {
18127 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18130 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18132 arg3
= reinterpret_cast< wxFont
* >(argp3
);
18134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18135 (arg1
)->StyleSetFont(arg2
,*arg3
);
18136 wxPyEndAllowThreads(__tstate
);
18137 if (PyErr_Occurred()) SWIG_fail
;
18139 resultobj
= SWIG_Py_Void();
18146 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontAttr(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18147 PyObject
*resultobj
= 0;
18148 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18151 wxString
*arg4
= 0 ;
18155 wxFontEncoding arg8
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
18162 bool temp4
= false ;
18171 PyObject
* obj0
= 0 ;
18172 PyObject
* obj1
= 0 ;
18173 PyObject
* obj2
= 0 ;
18174 PyObject
* obj3
= 0 ;
18175 PyObject
* obj4
= 0 ;
18176 PyObject
* obj5
= 0 ;
18177 PyObject
* obj6
= 0 ;
18178 PyObject
* obj7
= 0 ;
18179 char * kwnames
[] = {
18180 (char *) "self",(char *) "styleNum",(char *) "size",(char *) "faceName",(char *) "bold",(char *) "italic",(char *) "underline",(char *) "encoding", NULL
18183 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO|O:StyledTextCtrl_StyleSetFontAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
18184 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18185 if (!SWIG_IsOK(res1
)) {
18186 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18188 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18189 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18190 if (!SWIG_IsOK(ecode2
)) {
18191 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "2"" of type '" "int""'");
18193 arg2
= static_cast< int >(val2
);
18194 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18195 if (!SWIG_IsOK(ecode3
)) {
18196 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "3"" of type '" "int""'");
18198 arg3
= static_cast< int >(val3
);
18200 arg4
= wxString_in_helper(obj3
);
18201 if (arg4
== NULL
) SWIG_fail
;
18204 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
18205 if (!SWIG_IsOK(ecode5
)) {
18206 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "5"" of type '" "bool""'");
18208 arg5
= static_cast< bool >(val5
);
18209 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
18210 if (!SWIG_IsOK(ecode6
)) {
18211 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "6"" of type '" "bool""'");
18213 arg6
= static_cast< bool >(val6
);
18214 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
18215 if (!SWIG_IsOK(ecode7
)) {
18216 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "7"" of type '" "bool""'");
18218 arg7
= static_cast< bool >(val7
);
18220 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
18221 if (!SWIG_IsOK(ecode8
)) {
18222 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "8"" of type '" "wxFontEncoding""'");
18224 arg8
= static_cast< wxFontEncoding
>(val8
);
18227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18228 (arg1
)->StyleSetFontAttr(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
,arg8
);
18229 wxPyEndAllowThreads(__tstate
);
18230 if (PyErr_Occurred()) SWIG_fail
;
18232 resultobj
= SWIG_Py_Void();
18247 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCharacterSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18248 PyObject
*resultobj
= 0;
18249 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18258 PyObject
* obj0
= 0 ;
18259 PyObject
* obj1
= 0 ;
18260 PyObject
* obj2
= 0 ;
18261 char * kwnames
[] = {
18262 (char *) "self",(char *) "style",(char *) "characterSet", NULL
18265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCharacterSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18267 if (!SWIG_IsOK(res1
)) {
18268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18270 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18271 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18272 if (!SWIG_IsOK(ecode2
)) {
18273 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "2"" of type '" "int""'");
18275 arg2
= static_cast< int >(val2
);
18276 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18277 if (!SWIG_IsOK(ecode3
)) {
18278 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "3"" of type '" "int""'");
18280 arg3
= static_cast< int >(val3
);
18282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18283 (arg1
)->StyleSetCharacterSet(arg2
,arg3
);
18284 wxPyEndAllowThreads(__tstate
);
18285 if (PyErr_Occurred()) SWIG_fail
;
18287 resultobj
= SWIG_Py_Void();
18294 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18295 PyObject
*resultobj
= 0;
18296 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18298 wxFontEncoding arg3
;
18305 PyObject
* obj0
= 0 ;
18306 PyObject
* obj1
= 0 ;
18307 PyObject
* obj2
= 0 ;
18308 char * kwnames
[] = {
18309 (char *) "self",(char *) "style",(char *) "encoding", NULL
18312 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFontEncoding",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18313 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18314 if (!SWIG_IsOK(res1
)) {
18315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18317 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18318 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18319 if (!SWIG_IsOK(ecode2
)) {
18320 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "2"" of type '" "int""'");
18322 arg2
= static_cast< int >(val2
);
18323 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18324 if (!SWIG_IsOK(ecode3
)) {
18325 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "3"" of type '" "wxFontEncoding""'");
18327 arg3
= static_cast< wxFontEncoding
>(val3
);
18329 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18330 (arg1
)->StyleSetFontEncoding(arg2
,arg3
);
18331 wxPyEndAllowThreads(__tstate
);
18332 if (PyErr_Occurred()) SWIG_fail
;
18334 resultobj
= SWIG_Py_Void();
18341 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyExecute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18342 PyObject
*resultobj
= 0;
18343 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18349 PyObject
* obj0
= 0 ;
18350 PyObject
* obj1
= 0 ;
18351 char * kwnames
[] = {
18352 (char *) "self",(char *) "cmd", NULL
18355 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CmdKeyExecute",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18356 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18357 if (!SWIG_IsOK(res1
)) {
18358 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18360 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18361 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18362 if (!SWIG_IsOK(ecode2
)) {
18363 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "2"" of type '" "int""'");
18365 arg2
= static_cast< int >(val2
);
18367 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18368 (arg1
)->CmdKeyExecute(arg2
);
18369 wxPyEndAllowThreads(__tstate
);
18370 if (PyErr_Occurred()) SWIG_fail
;
18372 resultobj
= SWIG_Py_Void();
18379 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18380 PyObject
*resultobj
= 0;
18381 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18390 PyObject
* obj0
= 0 ;
18391 PyObject
* obj1
= 0 ;
18392 PyObject
* obj2
= 0 ;
18393 char * kwnames
[] = {
18394 (char *) "self",(char *) "left",(char *) "right", NULL
18397 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18398 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18399 if (!SWIG_IsOK(res1
)) {
18400 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18402 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18403 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18404 if (!SWIG_IsOK(ecode2
)) {
18405 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "2"" of type '" "int""'");
18407 arg2
= static_cast< int >(val2
);
18408 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18409 if (!SWIG_IsOK(ecode3
)) {
18410 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "3"" of type '" "int""'");
18412 arg3
= static_cast< int >(val3
);
18414 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18415 (arg1
)->SetMargins(arg2
,arg3
);
18416 wxPyEndAllowThreads(__tstate
);
18417 if (PyErr_Occurred()) SWIG_fail
;
18419 resultobj
= SWIG_Py_Void();
18426 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18427 PyObject
*resultobj
= 0;
18428 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18429 int *arg2
= (int *) 0 ;
18430 int *arg3
= (int *) 0 ;
18434 int res2
= SWIG_TMPOBJ
;
18436 int res3
= SWIG_TMPOBJ
;
18437 PyObject
*swig_obj
[1] ;
18441 if (!args
) SWIG_fail
;
18442 swig_obj
[0] = args
;
18443 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18444 if (!SWIG_IsOK(res1
)) {
18445 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18447 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18449 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18450 (arg1
)->GetSelection(arg2
,arg3
);
18451 wxPyEndAllowThreads(__tstate
);
18452 if (PyErr_Occurred()) SWIG_fail
;
18454 resultobj
= SWIG_Py_Void();
18455 if (SWIG_IsTmpObj(res2
)) {
18456 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
18458 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18459 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
18461 if (SWIG_IsTmpObj(res3
)) {
18462 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
18464 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18465 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
18473 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PointFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18474 PyObject
*resultobj
= 0;
18475 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18482 PyObject
* obj0
= 0 ;
18483 PyObject
* obj1
= 0 ;
18484 char * kwnames
[] = {
18485 (char *) "self",(char *) "pos", NULL
18488 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PointFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18489 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18490 if (!SWIG_IsOK(res1
)) {
18491 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18493 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18494 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18495 if (!SWIG_IsOK(ecode2
)) {
18496 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "2"" of type '" "int""'");
18498 arg2
= static_cast< int >(val2
);
18500 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18501 result
= (arg1
)->PointFromPosition(arg2
);
18502 wxPyEndAllowThreads(__tstate
);
18503 if (PyErr_Occurred()) SWIG_fail
;
18505 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
18512 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18513 PyObject
*resultobj
= 0;
18514 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18520 PyObject
* obj0
= 0 ;
18521 PyObject
* obj1
= 0 ;
18522 char * kwnames
[] = {
18523 (char *) "self",(char *) "line", NULL
18526 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18527 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18528 if (!SWIG_IsOK(res1
)) {
18529 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18531 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18532 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18533 if (!SWIG_IsOK(ecode2
)) {
18534 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "2"" of type '" "int""'");
18536 arg2
= static_cast< int >(val2
);
18538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18539 (arg1
)->ScrollToLine(arg2
);
18540 wxPyEndAllowThreads(__tstate
);
18541 if (PyErr_Occurred()) SWIG_fail
;
18543 resultobj
= SWIG_Py_Void();
18550 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18551 PyObject
*resultobj
= 0;
18552 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18558 PyObject
* obj0
= 0 ;
18559 PyObject
* obj1
= 0 ;
18560 char * kwnames
[] = {
18561 (char *) "self",(char *) "column", NULL
18564 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18565 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18566 if (!SWIG_IsOK(res1
)) {
18567 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18569 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18570 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18571 if (!SWIG_IsOK(ecode2
)) {
18572 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "2"" of type '" "int""'");
18574 arg2
= static_cast< int >(val2
);
18576 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18577 (arg1
)->ScrollToColumn(arg2
);
18578 wxPyEndAllowThreads(__tstate
);
18579 if (PyErr_Occurred()) SWIG_fail
;
18581 resultobj
= SWIG_Py_Void();
18588 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SendMsg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18589 PyObject
*resultobj
= 0;
18590 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18592 long arg3
= (long) 0 ;
18593 long arg4
= (long) 0 ;
18603 PyObject
* obj0
= 0 ;
18604 PyObject
* obj1
= 0 ;
18605 PyObject
* obj2
= 0 ;
18606 PyObject
* obj3
= 0 ;
18607 char * kwnames
[] = {
18608 (char *) "self",(char *) "msg",(char *) "wp",(char *) "lp", NULL
18611 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:StyledTextCtrl_SendMsg",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18612 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18613 if (!SWIG_IsOK(res1
)) {
18614 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18616 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18617 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18618 if (!SWIG_IsOK(ecode2
)) {
18619 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "2"" of type '" "int""'");
18621 arg2
= static_cast< int >(val2
);
18623 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18624 if (!SWIG_IsOK(ecode3
)) {
18625 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "3"" of type '" "long""'");
18627 arg3
= static_cast< long >(val3
);
18630 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
18631 if (!SWIG_IsOK(ecode4
)) {
18632 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "4"" of type '" "long""'");
18634 arg4
= static_cast< long >(val4
);
18637 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18638 result
= (long)(arg1
)->SendMsg(arg2
,arg3
,arg4
);
18639 wxPyEndAllowThreads(__tstate
);
18640 if (PyErr_Occurred()) SWIG_fail
;
18642 resultobj
= SWIG_From_long(static_cast< long >(result
));
18649 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18650 PyObject
*resultobj
= 0;
18651 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18652 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18657 PyObject
* obj0
= 0 ;
18658 PyObject
* obj1
= 0 ;
18659 char * kwnames
[] = {
18660 (char *) "self",(char *) "bar", NULL
18663 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetVScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18664 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18665 if (!SWIG_IsOK(res1
)) {
18666 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18668 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18669 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18670 if (!SWIG_IsOK(res2
)) {
18671 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18673 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18675 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18676 (arg1
)->SetVScrollBar(arg2
);
18677 wxPyEndAllowThreads(__tstate
);
18678 if (PyErr_Occurred()) SWIG_fail
;
18680 resultobj
= SWIG_Py_Void();
18687 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18688 PyObject
*resultobj
= 0;
18689 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18690 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18695 PyObject
* obj0
= 0 ;
18696 PyObject
* obj1
= 0 ;
18697 char * kwnames
[] = {
18698 (char *) "self",(char *) "bar", NULL
18701 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18702 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18703 if (!SWIG_IsOK(res1
)) {
18704 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18706 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18707 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18708 if (!SWIG_IsOK(res2
)) {
18709 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18711 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18713 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18714 (arg1
)->SetHScrollBar(arg2
);
18715 wxPyEndAllowThreads(__tstate
);
18716 if (PyErr_Occurred()) SWIG_fail
;
18718 resultobj
= SWIG_Py_Void();
18725 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18726 PyObject
*resultobj
= 0;
18727 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18731 PyObject
*swig_obj
[1] ;
18733 if (!args
) SWIG_fail
;
18734 swig_obj
[0] = args
;
18735 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18736 if (!SWIG_IsOK(res1
)) {
18737 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18739 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18741 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18742 result
= (bool)(arg1
)->GetLastKeydownProcessed();
18743 wxPyEndAllowThreads(__tstate
);
18744 if (PyErr_Occurred()) SWIG_fail
;
18747 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18755 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18756 PyObject
*resultobj
= 0;
18757 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18763 PyObject
* obj0
= 0 ;
18764 PyObject
* obj1
= 0 ;
18765 char * kwnames
[] = {
18766 (char *) "self",(char *) "val", NULL
18769 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLastKeydownProcessed",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18770 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18771 if (!SWIG_IsOK(res1
)) {
18772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18774 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18775 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18776 if (!SWIG_IsOK(ecode2
)) {
18777 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "2"" of type '" "bool""'");
18779 arg2
= static_cast< bool >(val2
);
18781 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18782 (arg1
)->SetLastKeydownProcessed(arg2
);
18783 wxPyEndAllowThreads(__tstate
);
18784 if (PyErr_Occurred()) SWIG_fail
;
18786 resultobj
= SWIG_Py_Void();
18793 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SaveFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18794 PyObject
*resultobj
= 0;
18795 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18796 wxString
*arg2
= 0 ;
18800 bool temp2
= false ;
18801 PyObject
* obj0
= 0 ;
18802 PyObject
* obj1
= 0 ;
18803 char * kwnames
[] = {
18804 (char *) "self",(char *) "filename", NULL
18807 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18808 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18809 if (!SWIG_IsOK(res1
)) {
18810 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SaveFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18812 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18814 arg2
= wxString_in_helper(obj1
);
18815 if (arg2
== NULL
) SWIG_fail
;
18819 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18820 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
);
18821 wxPyEndAllowThreads(__tstate
);
18822 if (PyErr_Occurred()) SWIG_fail
;
18825 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18841 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LoadFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18842 PyObject
*resultobj
= 0;
18843 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18844 wxString
*arg2
= 0 ;
18848 bool temp2
= false ;
18849 PyObject
* obj0
= 0 ;
18850 PyObject
* obj1
= 0 ;
18851 char * kwnames
[] = {
18852 (char *) "self",(char *) "filename", NULL
18855 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18856 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18857 if (!SWIG_IsOK(res1
)) {
18858 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LoadFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18860 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18862 arg2
= wxString_in_helper(obj1
);
18863 if (arg2
== NULL
) SWIG_fail
;
18867 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18868 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
);
18869 wxPyEndAllowThreads(__tstate
);
18870 if (PyErr_Occurred()) SWIG_fail
;
18873 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18889 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18890 PyObject
*resultobj
= 0;
18891 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18894 wxDragResult arg4
;
18895 wxDragResult result
;
18904 PyObject
* obj0
= 0 ;
18905 PyObject
* obj1
= 0 ;
18906 PyObject
* obj2
= 0 ;
18907 PyObject
* obj3
= 0 ;
18908 char * kwnames
[] = {
18909 (char *) "self",(char *) "x",(char *) "y",(char *) "_def", NULL
18912 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18913 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18914 if (!SWIG_IsOK(res1
)) {
18915 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18917 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18918 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18919 if (!SWIG_IsOK(ecode2
)) {
18920 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "2"" of type '" "int""'");
18922 arg2
= static_cast< int >(val2
);
18923 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18924 if (!SWIG_IsOK(ecode3
)) {
18925 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "3"" of type '" "int""'");
18927 arg3
= static_cast< int >(val3
);
18928 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18929 if (!SWIG_IsOK(ecode4
)) {
18930 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
18932 arg4
= static_cast< wxDragResult
>(val4
);
18934 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18935 result
= (wxDragResult
)(arg1
)->DoDragOver(arg2
,arg3
,arg4
);
18936 wxPyEndAllowThreads(__tstate
);
18937 if (PyErr_Occurred()) SWIG_fail
;
18939 resultobj
= SWIG_From_int(static_cast< int >(result
));
18946 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDropText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18947 PyObject
*resultobj
= 0;
18948 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18951 wxString
*arg4
= 0 ;
18959 bool temp4
= false ;
18960 PyObject
* obj0
= 0 ;
18961 PyObject
* obj1
= 0 ;
18962 PyObject
* obj2
= 0 ;
18963 PyObject
* obj3
= 0 ;
18964 char * kwnames
[] = {
18965 (char *) "self",(char *) "x",(char *) "y",(char *) "data", NULL
18968 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDropText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18969 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18970 if (!SWIG_IsOK(res1
)) {
18971 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18973 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18974 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
18975 if (!SWIG_IsOK(ecode2
)) {
18976 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "2"" of type '" "long""'");
18978 arg2
= static_cast< long >(val2
);
18979 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18980 if (!SWIG_IsOK(ecode3
)) {
18981 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "3"" of type '" "long""'");
18983 arg3
= static_cast< long >(val3
);
18985 arg4
= wxString_in_helper(obj3
);
18986 if (arg4
== NULL
) SWIG_fail
;
18990 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18991 result
= (bool)(arg1
)->DoDropText(arg2
,arg3
,(wxString
const &)*arg4
);
18992 wxPyEndAllowThreads(__tstate
);
18993 if (PyErr_Occurred()) SWIG_fail
;
18996 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19012 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19013 PyObject
*resultobj
= 0;
19014 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19020 PyObject
* obj0
= 0 ;
19021 PyObject
* obj1
= 0 ;
19022 char * kwnames
[] = {
19023 (char *) "self",(char *) "useAA", NULL
19026 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseAntiAliasing",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19027 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19028 if (!SWIG_IsOK(res1
)) {
19029 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19031 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19032 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19033 if (!SWIG_IsOK(ecode2
)) {
19034 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "2"" of type '" "bool""'");
19036 arg2
= static_cast< bool >(val2
);
19038 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19039 (arg1
)->SetUseAntiAliasing(arg2
);
19040 wxPyEndAllowThreads(__tstate
);
19041 if (PyErr_Occurred()) SWIG_fail
;
19043 resultobj
= SWIG_Py_Void();
19050 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19051 PyObject
*resultobj
= 0;
19052 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19056 PyObject
*swig_obj
[1] ;
19058 if (!args
) SWIG_fail
;
19059 swig_obj
[0] = args
;
19060 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19061 if (!SWIG_IsOK(res1
)) {
19062 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19064 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19066 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19067 result
= (bool)(arg1
)->GetUseAntiAliasing();
19068 wxPyEndAllowThreads(__tstate
);
19069 if (PyErr_Occurred()) SWIG_fail
;
19072 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19080 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19081 PyObject
*resultobj
= 0;
19082 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19083 char *arg2
= (char *) 0 ;
19089 PyObject
* obj0
= 0 ;
19090 PyObject
* obj1
= 0 ;
19091 char * kwnames
[] = {
19092 (char *) "self",(char *) "text", NULL
19095 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19096 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19097 if (!SWIG_IsOK(res1
)) {
19098 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19100 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19101 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19102 if (!SWIG_IsOK(res2
)) {
19103 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19107 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19108 (arg1
)->AddTextRaw((char const *)arg2
);
19109 wxPyEndAllowThreads(__tstate
);
19110 if (PyErr_Occurred()) SWIG_fail
;
19112 resultobj
= SWIG_Py_Void();
19113 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19116 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19121 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19122 PyObject
*resultobj
= 0;
19123 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19125 char *arg3
= (char *) 0 ;
19133 PyObject
* obj0
= 0 ;
19134 PyObject
* obj1
= 0 ;
19135 PyObject
* obj2
= 0 ;
19136 char * kwnames
[] = {
19137 (char *) "self",(char *) "pos",(char *) "text", NULL
19140 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertTextRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19141 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19142 if (!SWIG_IsOK(res1
)) {
19143 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19145 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19146 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19147 if (!SWIG_IsOK(ecode2
)) {
19148 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "2"" of type '" "int""'");
19150 arg2
= static_cast< int >(val2
);
19151 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
19152 if (!SWIG_IsOK(res3
)) {
19153 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "3"" of type '" "char const *""'");
19157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19158 (arg1
)->InsertTextRaw(arg2
,(char const *)arg3
);
19159 wxPyEndAllowThreads(__tstate
);
19160 if (PyErr_Occurred()) SWIG_fail
;
19162 resultobj
= SWIG_Py_Void();
19163 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19166 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19171 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19172 PyObject
*resultobj
= 0;
19173 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19174 int *arg2
= (int *) 0 ;
19175 wxCharBuffer result
;
19179 int res2
= SWIG_TMPOBJ
;
19180 PyObject
*swig_obj
[1] ;
19183 if (!args
) SWIG_fail
;
19184 swig_obj
[0] = args
;
19185 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19186 if (!SWIG_IsOK(res1
)) {
19187 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19189 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19191 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19192 result
= (arg1
)->GetCurLineRaw(arg2
);
19193 wxPyEndAllowThreads(__tstate
);
19194 if (PyErr_Occurred()) SWIG_fail
;
19197 resultobj
= PyString_FromString((char*)(&result
)->data());
19199 if (SWIG_IsTmpObj(res2
)) {
19200 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
19202 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
19203 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
19211 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19212 PyObject
*resultobj
= 0;
19213 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19215 wxCharBuffer result
;
19220 PyObject
* obj0
= 0 ;
19221 PyObject
* obj1
= 0 ;
19222 char * kwnames
[] = {
19223 (char *) "self",(char *) "line", NULL
19226 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19227 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19228 if (!SWIG_IsOK(res1
)) {
19229 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19231 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19232 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19233 if (!SWIG_IsOK(ecode2
)) {
19234 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "2"" of type '" "int""'");
19236 arg2
= static_cast< int >(val2
);
19238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19239 result
= (arg1
)->GetLineRaw(arg2
);
19240 wxPyEndAllowThreads(__tstate
);
19241 if (PyErr_Occurred()) SWIG_fail
;
19244 resultobj
= PyString_FromString((char*)(&result
)->data());
19252 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19253 PyObject
*resultobj
= 0;
19254 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19255 wxCharBuffer result
;
19258 PyObject
*swig_obj
[1] ;
19260 if (!args
) SWIG_fail
;
19261 swig_obj
[0] = args
;
19262 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19263 if (!SWIG_IsOK(res1
)) {
19264 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19266 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19268 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19269 result
= (arg1
)->GetSelectedTextRaw();
19270 wxPyEndAllowThreads(__tstate
);
19271 if (PyErr_Occurred()) SWIG_fail
;
19274 resultobj
= PyString_FromString((char*)(&result
)->data());
19282 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRangeRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19283 PyObject
*resultobj
= 0;
19284 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19287 wxCharBuffer result
;
19294 PyObject
* obj0
= 0 ;
19295 PyObject
* obj1
= 0 ;
19296 PyObject
* obj2
= 0 ;
19297 char * kwnames
[] = {
19298 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
19301 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRangeRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19302 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19303 if (!SWIG_IsOK(res1
)) {
19304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19306 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19307 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19308 if (!SWIG_IsOK(ecode2
)) {
19309 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "2"" of type '" "int""'");
19311 arg2
= static_cast< int >(val2
);
19312 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19313 if (!SWIG_IsOK(ecode3
)) {
19314 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "3"" of type '" "int""'");
19316 arg3
= static_cast< int >(val3
);
19318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19319 result
= (arg1
)->GetTextRangeRaw(arg2
,arg3
);
19320 wxPyEndAllowThreads(__tstate
);
19321 if (PyErr_Occurred()) SWIG_fail
;
19324 resultobj
= PyString_FromString((char*)(&result
)->data());
19332 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19333 PyObject
*resultobj
= 0;
19334 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19335 char *arg2
= (char *) 0 ;
19341 PyObject
* obj0
= 0 ;
19342 PyObject
* obj1
= 0 ;
19343 char * kwnames
[] = {
19344 (char *) "self",(char *) "text", NULL
19347 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19348 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19349 if (!SWIG_IsOK(res1
)) {
19350 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19352 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19353 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19354 if (!SWIG_IsOK(res2
)) {
19355 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19359 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19360 (arg1
)->SetTextRaw((char const *)arg2
);
19361 wxPyEndAllowThreads(__tstate
);
19362 if (PyErr_Occurred()) SWIG_fail
;
19364 resultobj
= SWIG_Py_Void();
19365 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19368 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19373 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19374 PyObject
*resultobj
= 0;
19375 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19376 wxCharBuffer result
;
19379 PyObject
*swig_obj
[1] ;
19381 if (!args
) SWIG_fail
;
19382 swig_obj
[0] = args
;
19383 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19384 if (!SWIG_IsOK(res1
)) {
19385 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19387 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19389 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19390 result
= (arg1
)->GetTextRaw();
19391 wxPyEndAllowThreads(__tstate
);
19392 if (PyErr_Occurred()) SWIG_fail
;
19395 resultobj
= PyString_FromString((char*)(&result
)->data());
19403 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19404 PyObject
*resultobj
= 0;
19405 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19406 char *arg2
= (char *) 0 ;
19412 PyObject
* obj0
= 0 ;
19413 PyObject
* obj1
= 0 ;
19414 char * kwnames
[] = {
19415 (char *) "self",(char *) "text", NULL
19418 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19419 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19420 if (!SWIG_IsOK(res1
)) {
19421 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19423 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19424 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19425 if (!SWIG_IsOK(res2
)) {
19426 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19430 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19431 (arg1
)->AppendTextRaw((char const *)arg2
);
19432 wxPyEndAllowThreads(__tstate
);
19433 if (PyErr_Occurred()) SWIG_fail
;
19435 resultobj
= SWIG_Py_Void();
19436 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19439 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19444 SWIGINTERN PyObject
*StyledTextCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19446 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19447 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextCtrl
, SWIG_NewClientData(obj
));
19448 return SWIG_Py_Void();
19451 SWIGINTERN PyObject
*StyledTextCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19452 return SWIG_Python_InitShadowInstance(args
);
19455 SWIGINTERN PyObject
*_wrap_new_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19456 PyObject
*resultobj
= 0;
19457 wxEventType arg1
= (wxEventType
) 0 ;
19458 int arg2
= (int) 0 ;
19459 wxStyledTextEvent
*result
= 0 ;
19464 PyObject
* obj0
= 0 ;
19465 PyObject
* obj1
= 0 ;
19466 char * kwnames
[] = {
19467 (char *) "commandType",(char *) "id", NULL
19470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_StyledTextEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19472 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19473 if (!SWIG_IsOK(ecode1
)) {
19474 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_StyledTextEvent" "', expected argument " "1"" of type '" "wxEventType""'");
19476 arg1
= static_cast< wxEventType
>(val1
);
19479 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19480 if (!SWIG_IsOK(ecode2
)) {
19481 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextEvent" "', expected argument " "2"" of type '" "int""'");
19483 arg2
= static_cast< int >(val2
);
19486 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19487 result
= (wxStyledTextEvent
*)new wxStyledTextEvent(arg1
,arg2
);
19488 wxPyEndAllowThreads(__tstate
);
19489 if (PyErr_Occurred()) SWIG_fail
;
19491 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_NEW
| 0 );
19498 SWIGINTERN PyObject
*_wrap_delete_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19499 PyObject
*resultobj
= 0;
19500 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19503 PyObject
*swig_obj
[1] ;
19505 if (!args
) SWIG_fail
;
19506 swig_obj
[0] = args
;
19507 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_DISOWN
| 0 );
19508 if (!SWIG_IsOK(res1
)) {
19509 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_StyledTextEvent" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19511 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19513 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19516 wxPyEndAllowThreads(__tstate
);
19517 if (PyErr_Occurred()) SWIG_fail
;
19519 resultobj
= SWIG_Py_Void();
19526 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19527 PyObject
*resultobj
= 0;
19528 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19534 PyObject
* obj0
= 0 ;
19535 PyObject
* obj1
= 0 ;
19536 char * kwnames
[] = {
19537 (char *) "self",(char *) "pos", NULL
19540 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19541 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19542 if (!SWIG_IsOK(res1
)) {
19543 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19545 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19546 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19547 if (!SWIG_IsOK(ecode2
)) {
19548 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "2"" of type '" "int""'");
19550 arg2
= static_cast< int >(val2
);
19552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19553 (arg1
)->SetPosition(arg2
);
19554 wxPyEndAllowThreads(__tstate
);
19555 if (PyErr_Occurred()) SWIG_fail
;
19557 resultobj
= SWIG_Py_Void();
19564 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19565 PyObject
*resultobj
= 0;
19566 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19572 PyObject
* obj0
= 0 ;
19573 PyObject
* obj1
= 0 ;
19574 char * kwnames
[] = {
19575 (char *) "self",(char *) "k", NULL
19578 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetKey",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19579 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19580 if (!SWIG_IsOK(res1
)) {
19581 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19583 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19584 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19585 if (!SWIG_IsOK(ecode2
)) {
19586 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "2"" of type '" "int""'");
19588 arg2
= static_cast< int >(val2
);
19590 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19591 (arg1
)->SetKey(arg2
);
19592 wxPyEndAllowThreads(__tstate
);
19593 if (PyErr_Occurred()) SWIG_fail
;
19595 resultobj
= SWIG_Py_Void();
19602 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19603 PyObject
*resultobj
= 0;
19604 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19610 PyObject
* obj0
= 0 ;
19611 PyObject
* obj1
= 0 ;
19612 char * kwnames
[] = {
19613 (char *) "self",(char *) "m", NULL
19616 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModifiers",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19617 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19618 if (!SWIG_IsOK(res1
)) {
19619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19621 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19622 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19623 if (!SWIG_IsOK(ecode2
)) {
19624 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "2"" of type '" "int""'");
19626 arg2
= static_cast< int >(val2
);
19628 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19629 (arg1
)->SetModifiers(arg2
);
19630 wxPyEndAllowThreads(__tstate
);
19631 if (PyErr_Occurred()) SWIG_fail
;
19633 resultobj
= SWIG_Py_Void();
19640 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19641 PyObject
*resultobj
= 0;
19642 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19648 PyObject
* obj0
= 0 ;
19649 PyObject
* obj1
= 0 ;
19650 char * kwnames
[] = {
19651 (char *) "self",(char *) "t", NULL
19654 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModificationType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19655 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19656 if (!SWIG_IsOK(res1
)) {
19657 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19659 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19660 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19661 if (!SWIG_IsOK(ecode2
)) {
19662 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "2"" of type '" "int""'");
19664 arg2
= static_cast< int >(val2
);
19666 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19667 (arg1
)->SetModificationType(arg2
);
19668 wxPyEndAllowThreads(__tstate
);
19669 if (PyErr_Occurred()) SWIG_fail
;
19671 resultobj
= SWIG_Py_Void();
19678 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19679 PyObject
*resultobj
= 0;
19680 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19681 wxString
*arg2
= 0 ;
19684 bool temp2
= false ;
19685 PyObject
* obj0
= 0 ;
19686 PyObject
* obj1
= 0 ;
19687 char * kwnames
[] = {
19688 (char *) "self",(char *) "t", NULL
19691 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19692 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19693 if (!SWIG_IsOK(res1
)) {
19694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19696 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19698 arg2
= wxString_in_helper(obj1
);
19699 if (arg2
== NULL
) SWIG_fail
;
19703 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19704 (arg1
)->SetText((wxString
const &)*arg2
);
19705 wxPyEndAllowThreads(__tstate
);
19706 if (PyErr_Occurred()) SWIG_fail
;
19708 resultobj
= SWIG_Py_Void();
19723 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19724 PyObject
*resultobj
= 0;
19725 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19731 PyObject
* obj0
= 0 ;
19732 PyObject
* obj1
= 0 ;
19733 char * kwnames
[] = {
19734 (char *) "self",(char *) "len", NULL
19737 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19738 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19739 if (!SWIG_IsOK(res1
)) {
19740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19742 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19743 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19744 if (!SWIG_IsOK(ecode2
)) {
19745 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "2"" of type '" "int""'");
19747 arg2
= static_cast< int >(val2
);
19749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19750 (arg1
)->SetLength(arg2
);
19751 wxPyEndAllowThreads(__tstate
);
19752 if (PyErr_Occurred()) SWIG_fail
;
19754 resultobj
= SWIG_Py_Void();
19761 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19762 PyObject
*resultobj
= 0;
19763 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19769 PyObject
* obj0
= 0 ;
19770 PyObject
* obj1
= 0 ;
19771 char * kwnames
[] = {
19772 (char *) "self",(char *) "num", NULL
19775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLinesAdded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19777 if (!SWIG_IsOK(res1
)) {
19778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19780 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19781 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19782 if (!SWIG_IsOK(ecode2
)) {
19783 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "2"" of type '" "int""'");
19785 arg2
= static_cast< int >(val2
);
19787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19788 (arg1
)->SetLinesAdded(arg2
);
19789 wxPyEndAllowThreads(__tstate
);
19790 if (PyErr_Occurred()) SWIG_fail
;
19792 resultobj
= SWIG_Py_Void();
19799 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19800 PyObject
*resultobj
= 0;
19801 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19807 PyObject
* obj0
= 0 ;
19808 PyObject
* obj1
= 0 ;
19809 char * kwnames
[] = {
19810 (char *) "self",(char *) "val", NULL
19813 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19814 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19815 if (!SWIG_IsOK(res1
)) {
19816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19818 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19819 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19820 if (!SWIG_IsOK(ecode2
)) {
19821 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "2"" of type '" "int""'");
19823 arg2
= static_cast< int >(val2
);
19825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19826 (arg1
)->SetLine(arg2
);
19827 wxPyEndAllowThreads(__tstate
);
19828 if (PyErr_Occurred()) SWIG_fail
;
19830 resultobj
= SWIG_Py_Void();
19837 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19838 PyObject
*resultobj
= 0;
19839 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19845 PyObject
* obj0
= 0 ;
19846 PyObject
* obj1
= 0 ;
19847 char * kwnames
[] = {
19848 (char *) "self",(char *) "val", NULL
19851 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelNow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19852 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19853 if (!SWIG_IsOK(res1
)) {
19854 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19856 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19857 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19858 if (!SWIG_IsOK(ecode2
)) {
19859 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "2"" of type '" "int""'");
19861 arg2
= static_cast< int >(val2
);
19863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19864 (arg1
)->SetFoldLevelNow(arg2
);
19865 wxPyEndAllowThreads(__tstate
);
19866 if (PyErr_Occurred()) SWIG_fail
;
19868 resultobj
= SWIG_Py_Void();
19875 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19876 PyObject
*resultobj
= 0;
19877 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19883 PyObject
* obj0
= 0 ;
19884 PyObject
* obj1
= 0 ;
19885 char * kwnames
[] = {
19886 (char *) "self",(char *) "val", NULL
19889 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelPrev",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19890 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19891 if (!SWIG_IsOK(res1
)) {
19892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19894 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19895 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19896 if (!SWIG_IsOK(ecode2
)) {
19897 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "2"" of type '" "int""'");
19899 arg2
= static_cast< int >(val2
);
19901 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19902 (arg1
)->SetFoldLevelPrev(arg2
);
19903 wxPyEndAllowThreads(__tstate
);
19904 if (PyErr_Occurred()) SWIG_fail
;
19906 resultobj
= SWIG_Py_Void();
19913 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19914 PyObject
*resultobj
= 0;
19915 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19921 PyObject
* obj0
= 0 ;
19922 PyObject
* obj1
= 0 ;
19923 char * kwnames
[] = {
19924 (char *) "self",(char *) "val", NULL
19927 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19928 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19929 if (!SWIG_IsOK(res1
)) {
19930 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19932 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19933 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19934 if (!SWIG_IsOK(ecode2
)) {
19935 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "2"" of type '" "int""'");
19937 arg2
= static_cast< int >(val2
);
19939 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19940 (arg1
)->SetMargin(arg2
);
19941 wxPyEndAllowThreads(__tstate
);
19942 if (PyErr_Occurred()) SWIG_fail
;
19944 resultobj
= SWIG_Py_Void();
19951 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19952 PyObject
*resultobj
= 0;
19953 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19959 PyObject
* obj0
= 0 ;
19960 PyObject
* obj1
= 0 ;
19961 char * kwnames
[] = {
19962 (char *) "self",(char *) "val", NULL
19965 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19966 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19967 if (!SWIG_IsOK(res1
)) {
19968 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19970 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19971 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19972 if (!SWIG_IsOK(ecode2
)) {
19973 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "2"" of type '" "int""'");
19975 arg2
= static_cast< int >(val2
);
19977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19978 (arg1
)->SetMessage(arg2
);
19979 wxPyEndAllowThreads(__tstate
);
19980 if (PyErr_Occurred()) SWIG_fail
;
19982 resultobj
= SWIG_Py_Void();
19989 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19990 PyObject
*resultobj
= 0;
19991 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19997 PyObject
* obj0
= 0 ;
19998 PyObject
* obj1
= 0 ;
19999 char * kwnames
[] = {
20000 (char *) "self",(char *) "val", NULL
20003 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetWParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20004 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20005 if (!SWIG_IsOK(res1
)) {
20006 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20008 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20009 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20010 if (!SWIG_IsOK(ecode2
)) {
20011 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "2"" of type '" "int""'");
20013 arg2
= static_cast< int >(val2
);
20015 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20016 (arg1
)->SetWParam(arg2
);
20017 wxPyEndAllowThreads(__tstate
);
20018 if (PyErr_Occurred()) SWIG_fail
;
20020 resultobj
= SWIG_Py_Void();
20027 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20028 PyObject
*resultobj
= 0;
20029 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20035 PyObject
* obj0
= 0 ;
20036 PyObject
* obj1
= 0 ;
20037 char * kwnames
[] = {
20038 (char *) "self",(char *) "val", NULL
20041 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20042 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20043 if (!SWIG_IsOK(res1
)) {
20044 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20046 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20047 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20048 if (!SWIG_IsOK(ecode2
)) {
20049 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "2"" of type '" "int""'");
20051 arg2
= static_cast< int >(val2
);
20053 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20054 (arg1
)->SetLParam(arg2
);
20055 wxPyEndAllowThreads(__tstate
);
20056 if (PyErr_Occurred()) SWIG_fail
;
20058 resultobj
= SWIG_Py_Void();
20065 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetListType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20066 PyObject
*resultobj
= 0;
20067 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20073 PyObject
* obj0
= 0 ;
20074 PyObject
* obj1
= 0 ;
20075 char * kwnames
[] = {
20076 (char *) "self",(char *) "val", NULL
20079 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetListType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20080 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20081 if (!SWIG_IsOK(res1
)) {
20082 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20084 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20085 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20086 if (!SWIG_IsOK(ecode2
)) {
20087 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "2"" of type '" "int""'");
20089 arg2
= static_cast< int >(val2
);
20091 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20092 (arg1
)->SetListType(arg2
);
20093 wxPyEndAllowThreads(__tstate
);
20094 if (PyErr_Occurred()) SWIG_fail
;
20096 resultobj
= SWIG_Py_Void();
20103 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20104 PyObject
*resultobj
= 0;
20105 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20111 PyObject
* obj0
= 0 ;
20112 PyObject
* obj1
= 0 ;
20113 char * kwnames
[] = {
20114 (char *) "self",(char *) "val", NULL
20117 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20118 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20119 if (!SWIG_IsOK(res1
)) {
20120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetX" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20122 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20123 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20124 if (!SWIG_IsOK(ecode2
)) {
20125 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetX" "', expected argument " "2"" of type '" "int""'");
20127 arg2
= static_cast< int >(val2
);
20129 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20130 (arg1
)->SetX(arg2
);
20131 wxPyEndAllowThreads(__tstate
);
20132 if (PyErr_Occurred()) SWIG_fail
;
20134 resultobj
= SWIG_Py_Void();
20141 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20142 PyObject
*resultobj
= 0;
20143 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20149 PyObject
* obj0
= 0 ;
20150 PyObject
* obj1
= 0 ;
20151 char * kwnames
[] = {
20152 (char *) "self",(char *) "val", NULL
20155 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20156 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20157 if (!SWIG_IsOK(res1
)) {
20158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetY" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20160 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20161 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20162 if (!SWIG_IsOK(ecode2
)) {
20163 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetY" "', expected argument " "2"" of type '" "int""'");
20165 arg2
= static_cast< int >(val2
);
20167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20168 (arg1
)->SetY(arg2
);
20169 wxPyEndAllowThreads(__tstate
);
20170 if (PyErr_Occurred()) SWIG_fail
;
20172 resultobj
= SWIG_Py_Void();
20179 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20180 PyObject
*resultobj
= 0;
20181 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20182 wxString
*arg2
= 0 ;
20185 bool temp2
= false ;
20186 PyObject
* obj0
= 0 ;
20187 PyObject
* obj1
= 0 ;
20188 char * kwnames
[] = {
20189 (char *) "self",(char *) "val", NULL
20192 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20193 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20194 if (!SWIG_IsOK(res1
)) {
20195 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20197 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20199 arg2
= wxString_in_helper(obj1
);
20200 if (arg2
== NULL
) SWIG_fail
;
20204 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20205 (arg1
)->SetDragText((wxString
const &)*arg2
);
20206 wxPyEndAllowThreads(__tstate
);
20207 if (PyErr_Occurred()) SWIG_fail
;
20209 resultobj
= SWIG_Py_Void();
20224 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20225 PyObject
*resultobj
= 0;
20226 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20232 PyObject
* obj0
= 0 ;
20233 PyObject
* obj1
= 0 ;
20234 char * kwnames
[] = {
20235 (char *) "self",(char *) "val", NULL
20238 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragAllowMove",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20239 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20240 if (!SWIG_IsOK(res1
)) {
20241 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20243 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20244 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20245 if (!SWIG_IsOK(ecode2
)) {
20246 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "2"" of type '" "bool""'");
20248 arg2
= static_cast< bool >(val2
);
20250 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20251 (arg1
)->SetDragAllowMove(arg2
);
20252 wxPyEndAllowThreads(__tstate
);
20253 if (PyErr_Occurred()) SWIG_fail
;
20255 resultobj
= SWIG_Py_Void();
20262 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20263 PyObject
*resultobj
= 0;
20264 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20265 wxDragResult arg2
;
20270 PyObject
* obj0
= 0 ;
20271 PyObject
* obj1
= 0 ;
20272 char * kwnames
[] = {
20273 (char *) "self",(char *) "val", NULL
20276 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragResult",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20277 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20278 if (!SWIG_IsOK(res1
)) {
20279 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20281 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20282 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20283 if (!SWIG_IsOK(ecode2
)) {
20284 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "2"" of type '" "wxDragResult""'");
20286 arg2
= static_cast< wxDragResult
>(val2
);
20288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20289 (arg1
)->SetDragResult(arg2
);
20290 wxPyEndAllowThreads(__tstate
);
20291 if (PyErr_Occurred()) SWIG_fail
;
20293 resultobj
= SWIG_Py_Void();
20300 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20301 PyObject
*resultobj
= 0;
20302 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20306 PyObject
*swig_obj
[1] ;
20308 if (!args
) SWIG_fail
;
20309 swig_obj
[0] = args
;
20310 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20311 if (!SWIG_IsOK(res1
)) {
20312 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20314 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20316 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20317 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetPosition();
20318 wxPyEndAllowThreads(__tstate
);
20319 if (PyErr_Occurred()) SWIG_fail
;
20321 resultobj
= SWIG_From_int(static_cast< int >(result
));
20328 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20329 PyObject
*resultobj
= 0;
20330 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20334 PyObject
*swig_obj
[1] ;
20336 if (!args
) SWIG_fail
;
20337 swig_obj
[0] = args
;
20338 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20339 if (!SWIG_IsOK(res1
)) {
20340 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20342 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20344 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20345 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetKey();
20346 wxPyEndAllowThreads(__tstate
);
20347 if (PyErr_Occurred()) SWIG_fail
;
20349 resultobj
= SWIG_From_int(static_cast< int >(result
));
20356 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20357 PyObject
*resultobj
= 0;
20358 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20362 PyObject
*swig_obj
[1] ;
20364 if (!args
) SWIG_fail
;
20365 swig_obj
[0] = args
;
20366 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20367 if (!SWIG_IsOK(res1
)) {
20368 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20370 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20372 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20373 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModifiers();
20374 wxPyEndAllowThreads(__tstate
);
20375 if (PyErr_Occurred()) SWIG_fail
;
20377 resultobj
= SWIG_From_int(static_cast< int >(result
));
20384 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20385 PyObject
*resultobj
= 0;
20386 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20390 PyObject
*swig_obj
[1] ;
20392 if (!args
) SWIG_fail
;
20393 swig_obj
[0] = args
;
20394 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20395 if (!SWIG_IsOK(res1
)) {
20396 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20398 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20400 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20401 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModificationType();
20402 wxPyEndAllowThreads(__tstate
);
20403 if (PyErr_Occurred()) SWIG_fail
;
20405 resultobj
= SWIG_From_int(static_cast< int >(result
));
20412 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20413 PyObject
*resultobj
= 0;
20414 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20418 PyObject
*swig_obj
[1] ;
20420 if (!args
) SWIG_fail
;
20421 swig_obj
[0] = args
;
20422 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20423 if (!SWIG_IsOK(res1
)) {
20424 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetText" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20426 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20429 result
= ((wxStyledTextEvent
const *)arg1
)->GetText();
20430 wxPyEndAllowThreads(__tstate
);
20431 if (PyErr_Occurred()) SWIG_fail
;
20435 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20437 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20446 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20447 PyObject
*resultobj
= 0;
20448 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20452 PyObject
*swig_obj
[1] ;
20454 if (!args
) SWIG_fail
;
20455 swig_obj
[0] = args
;
20456 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20457 if (!SWIG_IsOK(res1
)) {
20458 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20460 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20462 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20463 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLength();
20464 wxPyEndAllowThreads(__tstate
);
20465 if (PyErr_Occurred()) SWIG_fail
;
20467 resultobj
= SWIG_From_int(static_cast< int >(result
));
20474 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20475 PyObject
*resultobj
= 0;
20476 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20480 PyObject
*swig_obj
[1] ;
20482 if (!args
) SWIG_fail
;
20483 swig_obj
[0] = args
;
20484 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20485 if (!SWIG_IsOK(res1
)) {
20486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20488 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20490 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20491 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLinesAdded();
20492 wxPyEndAllowThreads(__tstate
);
20493 if (PyErr_Occurred()) SWIG_fail
;
20495 resultobj
= SWIG_From_int(static_cast< int >(result
));
20502 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20503 PyObject
*resultobj
= 0;
20504 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20508 PyObject
*swig_obj
[1] ;
20510 if (!args
) SWIG_fail
;
20511 swig_obj
[0] = args
;
20512 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20513 if (!SWIG_IsOK(res1
)) {
20514 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20516 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20518 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20519 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLine();
20520 wxPyEndAllowThreads(__tstate
);
20521 if (PyErr_Occurred()) SWIG_fail
;
20523 resultobj
= SWIG_From_int(static_cast< int >(result
));
20530 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20531 PyObject
*resultobj
= 0;
20532 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20536 PyObject
*swig_obj
[1] ;
20538 if (!args
) SWIG_fail
;
20539 swig_obj
[0] = args
;
20540 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20541 if (!SWIG_IsOK(res1
)) {
20542 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20544 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20546 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20547 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelNow();
20548 wxPyEndAllowThreads(__tstate
);
20549 if (PyErr_Occurred()) SWIG_fail
;
20551 resultobj
= SWIG_From_int(static_cast< int >(result
));
20558 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20559 PyObject
*resultobj
= 0;
20560 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20564 PyObject
*swig_obj
[1] ;
20566 if (!args
) SWIG_fail
;
20567 swig_obj
[0] = args
;
20568 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20569 if (!SWIG_IsOK(res1
)) {
20570 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20572 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20574 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20575 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelPrev();
20576 wxPyEndAllowThreads(__tstate
);
20577 if (PyErr_Occurred()) SWIG_fail
;
20579 resultobj
= SWIG_From_int(static_cast< int >(result
));
20586 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20587 PyObject
*resultobj
= 0;
20588 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20592 PyObject
*swig_obj
[1] ;
20594 if (!args
) SWIG_fail
;
20595 swig_obj
[0] = args
;
20596 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20597 if (!SWIG_IsOK(res1
)) {
20598 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20600 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20602 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20603 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMargin();
20604 wxPyEndAllowThreads(__tstate
);
20605 if (PyErr_Occurred()) SWIG_fail
;
20607 resultobj
= SWIG_From_int(static_cast< int >(result
));
20614 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20615 PyObject
*resultobj
= 0;
20616 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20620 PyObject
*swig_obj
[1] ;
20622 if (!args
) SWIG_fail
;
20623 swig_obj
[0] = args
;
20624 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20625 if (!SWIG_IsOK(res1
)) {
20626 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20628 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20630 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20631 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMessage();
20632 wxPyEndAllowThreads(__tstate
);
20633 if (PyErr_Occurred()) SWIG_fail
;
20635 resultobj
= SWIG_From_int(static_cast< int >(result
));
20642 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20643 PyObject
*resultobj
= 0;
20644 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20648 PyObject
*swig_obj
[1] ;
20650 if (!args
) SWIG_fail
;
20651 swig_obj
[0] = args
;
20652 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20653 if (!SWIG_IsOK(res1
)) {
20654 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20656 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20658 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20659 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetWParam();
20660 wxPyEndAllowThreads(__tstate
);
20661 if (PyErr_Occurred()) SWIG_fail
;
20663 resultobj
= SWIG_From_int(static_cast< int >(result
));
20670 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLParam(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_GetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20684 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20686 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20687 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLParam();
20688 wxPyEndAllowThreads(__tstate
);
20689 if (PyErr_Occurred()) SWIG_fail
;
20691 resultobj
= SWIG_From_int(static_cast< int >(result
));
20698 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetListType(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_GetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20712 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20715 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetListType();
20716 wxPyEndAllowThreads(__tstate
);
20717 if (PyErr_Occurred()) SWIG_fail
;
20719 resultobj
= SWIG_From_int(static_cast< int >(result
));
20726 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetX(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_GetX" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20740 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20742 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20743 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetX();
20744 wxPyEndAllowThreads(__tstate
);
20745 if (PyErr_Occurred()) SWIG_fail
;
20747 resultobj
= SWIG_From_int(static_cast< int >(result
));
20754 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetY(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_GetY" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20768 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20770 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20771 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetY();
20772 wxPyEndAllowThreads(__tstate
);
20773 if (PyErr_Occurred()) SWIG_fail
;
20775 resultobj
= SWIG_From_int(static_cast< int >(result
));
20782 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragText(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_GetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20796 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20798 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20799 result
= (arg1
)->GetDragText();
20800 wxPyEndAllowThreads(__tstate
);
20801 if (PyErr_Occurred()) SWIG_fail
;
20805 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20807 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20816 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20817 PyObject
*resultobj
= 0;
20818 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20822 PyObject
*swig_obj
[1] ;
20824 if (!args
) SWIG_fail
;
20825 swig_obj
[0] = args
;
20826 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20827 if (!SWIG_IsOK(res1
)) {
20828 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20830 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20833 result
= (bool)(arg1
)->GetDragAllowMove();
20834 wxPyEndAllowThreads(__tstate
);
20835 if (PyErr_Occurred()) SWIG_fail
;
20838 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20846 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20847 PyObject
*resultobj
= 0;
20848 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20849 wxDragResult result
;
20852 PyObject
*swig_obj
[1] ;
20854 if (!args
) SWIG_fail
;
20855 swig_obj
[0] = args
;
20856 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20857 if (!SWIG_IsOK(res1
)) {
20858 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20860 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20863 result
= (wxDragResult
)(arg1
)->GetDragResult();
20864 wxPyEndAllowThreads(__tstate
);
20865 if (PyErr_Occurred()) SWIG_fail
;
20867 resultobj
= SWIG_From_int(static_cast< int >(result
));
20874 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetShift(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20875 PyObject
*resultobj
= 0;
20876 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20880 PyObject
*swig_obj
[1] ;
20882 if (!args
) SWIG_fail
;
20883 swig_obj
[0] = args
;
20884 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20885 if (!SWIG_IsOK(res1
)) {
20886 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetShift" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20888 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20890 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20891 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetShift();
20892 wxPyEndAllowThreads(__tstate
);
20893 if (PyErr_Occurred()) SWIG_fail
;
20896 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20904 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20905 PyObject
*resultobj
= 0;
20906 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20910 PyObject
*swig_obj
[1] ;
20912 if (!args
) SWIG_fail
;
20913 swig_obj
[0] = args
;
20914 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20915 if (!SWIG_IsOK(res1
)) {
20916 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetControl" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20918 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20921 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetControl();
20922 wxPyEndAllowThreads(__tstate
);
20923 if (PyErr_Occurred()) SWIG_fail
;
20926 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20934 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetAlt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20935 PyObject
*resultobj
= 0;
20936 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20940 PyObject
*swig_obj
[1] ;
20942 if (!args
) SWIG_fail
;
20943 swig_obj
[0] = args
;
20944 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20945 if (!SWIG_IsOK(res1
)) {
20946 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetAlt" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20948 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20950 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20951 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetAlt();
20952 wxPyEndAllowThreads(__tstate
);
20953 if (PyErr_Occurred()) SWIG_fail
;
20956 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20964 SWIGINTERN PyObject
*StyledTextEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20966 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20967 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextEvent
, SWIG_NewClientData(obj
));
20968 return SWIG_Py_Void();
20971 SWIGINTERN PyObject
*StyledTextEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20972 return SWIG_Python_InitShadowInstance(args
);
20975 static PyMethodDef SwigMethods
[] = {
20976 { (char *)"new_StyledTextCtrl", (PyCFunction
) _wrap_new_StyledTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20977 { (char *)"new_PreStyledTextCtrl", (PyCFunction
)_wrap_new_PreStyledTextCtrl
, METH_NOARGS
, NULL
},
20978 { (char *)"StyledTextCtrl_Create", (PyCFunction
) _wrap_StyledTextCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20979 { (char *)"StyledTextCtrl_AddText", (PyCFunction
) _wrap_StyledTextCtrl_AddText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20980 { (char *)"StyledTextCtrl_AddStyledText", (PyCFunction
) _wrap_StyledTextCtrl_AddStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20981 { (char *)"StyledTextCtrl_InsertText", (PyCFunction
) _wrap_StyledTextCtrl_InsertText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20982 { (char *)"StyledTextCtrl_ClearAll", (PyCFunction
)_wrap_StyledTextCtrl_ClearAll
, METH_O
, NULL
},
20983 { (char *)"StyledTextCtrl_ClearDocumentStyle", (PyCFunction
)_wrap_StyledTextCtrl_ClearDocumentStyle
, METH_O
, NULL
},
20984 { (char *)"StyledTextCtrl_GetLength", (PyCFunction
)_wrap_StyledTextCtrl_GetLength
, METH_O
, NULL
},
20985 { (char *)"StyledTextCtrl_GetCharAt", (PyCFunction
) _wrap_StyledTextCtrl_GetCharAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20986 { (char *)"StyledTextCtrl_GetCurrentPos", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentPos
, METH_O
, NULL
},
20987 { (char *)"StyledTextCtrl_GetAnchor", (PyCFunction
)_wrap_StyledTextCtrl_GetAnchor
, METH_O
, NULL
},
20988 { (char *)"StyledTextCtrl_GetStyleAt", (PyCFunction
) _wrap_StyledTextCtrl_GetStyleAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20989 { (char *)"StyledTextCtrl_Redo", (PyCFunction
)_wrap_StyledTextCtrl_Redo
, METH_O
, NULL
},
20990 { (char *)"StyledTextCtrl_SetUndoCollection", (PyCFunction
) _wrap_StyledTextCtrl_SetUndoCollection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20991 { (char *)"StyledTextCtrl_SelectAll", (PyCFunction
)_wrap_StyledTextCtrl_SelectAll
, METH_O
, NULL
},
20992 { (char *)"StyledTextCtrl_SetSavePoint", (PyCFunction
)_wrap_StyledTextCtrl_SetSavePoint
, METH_O
, NULL
},
20993 { (char *)"StyledTextCtrl_GetStyledText", (PyCFunction
) _wrap_StyledTextCtrl_GetStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20994 { (char *)"StyledTextCtrl_CanRedo", (PyCFunction
)_wrap_StyledTextCtrl_CanRedo
, METH_O
, NULL
},
20995 { (char *)"StyledTextCtrl_MarkerLineFromHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerLineFromHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20996 { (char *)"StyledTextCtrl_MarkerDeleteHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20997 { (char *)"StyledTextCtrl_GetUndoCollection", (PyCFunction
)_wrap_StyledTextCtrl_GetUndoCollection
, METH_O
, NULL
},
20998 { (char *)"StyledTextCtrl_GetViewWhiteSpace", (PyCFunction
)_wrap_StyledTextCtrl_GetViewWhiteSpace
, METH_O
, NULL
},
20999 { (char *)"StyledTextCtrl_SetViewWhiteSpace", (PyCFunction
) _wrap_StyledTextCtrl_SetViewWhiteSpace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21000 { (char *)"StyledTextCtrl_PositionFromPoint", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21001 { (char *)"StyledTextCtrl_PositionFromPointClose", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPointClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21002 { (char *)"StyledTextCtrl_GotoLine", (PyCFunction
) _wrap_StyledTextCtrl_GotoLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21003 { (char *)"StyledTextCtrl_GotoPos", (PyCFunction
) _wrap_StyledTextCtrl_GotoPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21004 { (char *)"StyledTextCtrl_SetAnchor", (PyCFunction
) _wrap_StyledTextCtrl_SetAnchor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21005 { (char *)"StyledTextCtrl_GetCurLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLine
, METH_O
, NULL
},
21006 { (char *)"StyledTextCtrl_GetEndStyled", (PyCFunction
)_wrap_StyledTextCtrl_GetEndStyled
, METH_O
, NULL
},
21007 { (char *)"StyledTextCtrl_ConvertEOLs", (PyCFunction
) _wrap_StyledTextCtrl_ConvertEOLs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21008 { (char *)"StyledTextCtrl_GetEOLMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEOLMode
, METH_O
, NULL
},
21009 { (char *)"StyledTextCtrl_SetEOLMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEOLMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21010 { (char *)"StyledTextCtrl_StartStyling", (PyCFunction
) _wrap_StyledTextCtrl_StartStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21011 { (char *)"StyledTextCtrl_SetStyling", (PyCFunction
) _wrap_StyledTextCtrl_SetStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21012 { (char *)"StyledTextCtrl_GetBufferedDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetBufferedDraw
, METH_O
, NULL
},
21013 { (char *)"StyledTextCtrl_SetBufferedDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetBufferedDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21014 { (char *)"StyledTextCtrl_SetTabWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetTabWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21015 { (char *)"StyledTextCtrl_GetTabWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetTabWidth
, METH_O
, NULL
},
21016 { (char *)"StyledTextCtrl_SetCodePage", (PyCFunction
) _wrap_StyledTextCtrl_SetCodePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21017 { (char *)"StyledTextCtrl_MarkerDefine", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21018 { (char *)"StyledTextCtrl_MarkerSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21019 { (char *)"StyledTextCtrl_MarkerSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21020 { (char *)"StyledTextCtrl_MarkerAdd", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAdd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21021 { (char *)"StyledTextCtrl_MarkerDelete", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDelete
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21022 { (char *)"StyledTextCtrl_MarkerDeleteAll", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21023 { (char *)"StyledTextCtrl_MarkerGet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerGet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21024 { (char *)"StyledTextCtrl_MarkerNext", (PyCFunction
) _wrap_StyledTextCtrl_MarkerNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21025 { (char *)"StyledTextCtrl_MarkerPrevious", (PyCFunction
) _wrap_StyledTextCtrl_MarkerPrevious
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21026 { (char *)"StyledTextCtrl_MarkerDefineBitmap", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefineBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21027 { (char *)"StyledTextCtrl_MarkerAddSet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAddSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21028 { (char *)"StyledTextCtrl_SetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21029 { (char *)"StyledTextCtrl_GetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21030 { (char *)"StyledTextCtrl_SetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21031 { (char *)"StyledTextCtrl_GetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21032 { (char *)"StyledTextCtrl_SetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21033 { (char *)"StyledTextCtrl_GetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21034 { (char *)"StyledTextCtrl_SetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21035 { (char *)"StyledTextCtrl_GetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21036 { (char *)"StyledTextCtrl_StyleClearAll", (PyCFunction
)_wrap_StyledTextCtrl_StyleClearAll
, METH_O
, NULL
},
21037 { (char *)"StyledTextCtrl_StyleSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21038 { (char *)"StyledTextCtrl_StyleSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21039 { (char *)"StyledTextCtrl_StyleSetBold", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21040 { (char *)"StyledTextCtrl_StyleSetItalic", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetItalic
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21041 { (char *)"StyledTextCtrl_StyleSetSize", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21042 { (char *)"StyledTextCtrl_StyleSetFaceName", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFaceName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21043 { (char *)"StyledTextCtrl_StyleSetEOLFilled", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetEOLFilled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21044 { (char *)"StyledTextCtrl_StyleResetDefault", (PyCFunction
)_wrap_StyledTextCtrl_StyleResetDefault
, METH_O
, NULL
},
21045 { (char *)"StyledTextCtrl_StyleSetUnderline", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21046 { (char *)"StyledTextCtrl_StyleSetCase", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21047 { (char *)"StyledTextCtrl_StyleSetHotSpot", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetHotSpot
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21048 { (char *)"StyledTextCtrl_SetSelForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21049 { (char *)"StyledTextCtrl_SetSelBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21050 { (char *)"StyledTextCtrl_SetCaretForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21051 { (char *)"StyledTextCtrl_CmdKeyAssign", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyAssign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21052 { (char *)"StyledTextCtrl_CmdKeyClear", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyClear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21053 { (char *)"StyledTextCtrl_CmdKeyClearAll", (PyCFunction
)_wrap_StyledTextCtrl_CmdKeyClearAll
, METH_O
, NULL
},
21054 { (char *)"StyledTextCtrl_SetStyleBytes", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBytes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21055 { (char *)"StyledTextCtrl_StyleSetVisible", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21056 { (char *)"StyledTextCtrl_GetCaretPeriod", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretPeriod
, METH_O
, NULL
},
21057 { (char *)"StyledTextCtrl_SetCaretPeriod", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretPeriod
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21058 { (char *)"StyledTextCtrl_SetWordChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWordChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21059 { (char *)"StyledTextCtrl_BeginUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_BeginUndoAction
, METH_O
, NULL
},
21060 { (char *)"StyledTextCtrl_EndUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_EndUndoAction
, METH_O
, NULL
},
21061 { (char *)"StyledTextCtrl_IndicatorSetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21062 { (char *)"StyledTextCtrl_IndicatorGetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21063 { (char *)"StyledTextCtrl_IndicatorSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21064 { (char *)"StyledTextCtrl_IndicatorGetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21065 { (char *)"StyledTextCtrl_SetWhitespaceForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21066 { (char *)"StyledTextCtrl_SetWhitespaceBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21067 { (char *)"StyledTextCtrl_SetStyleBits", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21068 { (char *)"StyledTextCtrl_GetStyleBits", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBits
, METH_O
, NULL
},
21069 { (char *)"StyledTextCtrl_SetLineState", (PyCFunction
) _wrap_StyledTextCtrl_SetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21070 { (char *)"StyledTextCtrl_GetLineState", (PyCFunction
) _wrap_StyledTextCtrl_GetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21071 { (char *)"StyledTextCtrl_GetMaxLineState", (PyCFunction
)_wrap_StyledTextCtrl_GetMaxLineState
, METH_O
, NULL
},
21072 { (char *)"StyledTextCtrl_GetCaretLineVisible", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineVisible
, METH_O
, NULL
},
21073 { (char *)"StyledTextCtrl_SetCaretLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21074 { (char *)"StyledTextCtrl_GetCaretLineBack", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineBack
, METH_O
, NULL
},
21075 { (char *)"StyledTextCtrl_SetCaretLineBack", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineBack
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21076 { (char *)"StyledTextCtrl_StyleSetChangeable", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetChangeable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21077 { (char *)"StyledTextCtrl_AutoCompShow", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21078 { (char *)"StyledTextCtrl_AutoCompCancel", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompCancel
, METH_O
, NULL
},
21079 { (char *)"StyledTextCtrl_AutoCompActive", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompActive
, METH_O
, NULL
},
21080 { (char *)"StyledTextCtrl_AutoCompPosStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompPosStart
, METH_O
, NULL
},
21081 { (char *)"StyledTextCtrl_AutoCompComplete", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompComplete
, METH_O
, NULL
},
21082 { (char *)"StyledTextCtrl_AutoCompStops", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompStops
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21083 { (char *)"StyledTextCtrl_AutoCompSetSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21084 { (char *)"StyledTextCtrl_AutoCompGetSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetSeparator
, METH_O
, NULL
},
21085 { (char *)"StyledTextCtrl_AutoCompSelect", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSelect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21086 { (char *)"StyledTextCtrl_AutoCompSetCancelAtStart", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetCancelAtStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21087 { (char *)"StyledTextCtrl_AutoCompGetCancelAtStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCancelAtStart
, METH_O
, NULL
},
21088 { (char *)"StyledTextCtrl_AutoCompSetFillUps", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetFillUps
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21089 { (char *)"StyledTextCtrl_AutoCompSetChooseSingle", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetChooseSingle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21090 { (char *)"StyledTextCtrl_AutoCompGetChooseSingle", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetChooseSingle
, METH_O
, NULL
},
21091 { (char *)"StyledTextCtrl_AutoCompSetIgnoreCase", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetIgnoreCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21092 { (char *)"StyledTextCtrl_AutoCompGetIgnoreCase", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetIgnoreCase
, METH_O
, NULL
},
21093 { (char *)"StyledTextCtrl_UserListShow", (PyCFunction
) _wrap_StyledTextCtrl_UserListShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21094 { (char *)"StyledTextCtrl_AutoCompSetAutoHide", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetAutoHide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21095 { (char *)"StyledTextCtrl_AutoCompGetAutoHide", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetAutoHide
, METH_O
, NULL
},
21096 { (char *)"StyledTextCtrl_AutoCompSetDropRestOfWord", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetDropRestOfWord
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21097 { (char *)"StyledTextCtrl_AutoCompGetDropRestOfWord", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord
, METH_O
, NULL
},
21098 { (char *)"StyledTextCtrl_RegisterImage", (PyCFunction
) _wrap_StyledTextCtrl_RegisterImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21099 { (char *)"StyledTextCtrl_ClearRegisteredImages", (PyCFunction
)_wrap_StyledTextCtrl_ClearRegisteredImages
, METH_O
, NULL
},
21100 { (char *)"StyledTextCtrl_AutoCompGetTypeSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetTypeSeparator
, METH_O
, NULL
},
21101 { (char *)"StyledTextCtrl_AutoCompSetTypeSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetTypeSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21102 { (char *)"StyledTextCtrl_AutoCompSetMaxWidth", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21103 { (char *)"StyledTextCtrl_AutoCompGetMaxWidth", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxWidth
, METH_O
, NULL
},
21104 { (char *)"StyledTextCtrl_AutoCompSetMaxHeight", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21105 { (char *)"StyledTextCtrl_AutoCompGetMaxHeight", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxHeight
, METH_O
, NULL
},
21106 { (char *)"StyledTextCtrl_SetIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21107 { (char *)"StyledTextCtrl_GetIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetIndent
, METH_O
, NULL
},
21108 { (char *)"StyledTextCtrl_SetUseTabs", (PyCFunction
) _wrap_StyledTextCtrl_SetUseTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21109 { (char *)"StyledTextCtrl_GetUseTabs", (PyCFunction
)_wrap_StyledTextCtrl_GetUseTabs
, METH_O
, NULL
},
21110 { (char *)"StyledTextCtrl_SetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_SetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21111 { (char *)"StyledTextCtrl_GetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21112 { (char *)"StyledTextCtrl_GetLineIndentPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21113 { (char *)"StyledTextCtrl_GetColumn", (PyCFunction
) _wrap_StyledTextCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21114 { (char *)"StyledTextCtrl_SetUseHorizontalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseHorizontalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21115 { (char *)"StyledTextCtrl_GetUseHorizontalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseHorizontalScrollBar
, METH_O
, NULL
},
21116 { (char *)"StyledTextCtrl_SetIndentationGuides", (PyCFunction
) _wrap_StyledTextCtrl_SetIndentationGuides
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21117 { (char *)"StyledTextCtrl_GetIndentationGuides", (PyCFunction
)_wrap_StyledTextCtrl_GetIndentationGuides
, METH_O
, NULL
},
21118 { (char *)"StyledTextCtrl_SetHighlightGuide", (PyCFunction
) _wrap_StyledTextCtrl_SetHighlightGuide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21119 { (char *)"StyledTextCtrl_GetHighlightGuide", (PyCFunction
)_wrap_StyledTextCtrl_GetHighlightGuide
, METH_O
, NULL
},
21120 { (char *)"StyledTextCtrl_GetLineEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21121 { (char *)"StyledTextCtrl_GetCodePage", (PyCFunction
)_wrap_StyledTextCtrl_GetCodePage
, METH_O
, NULL
},
21122 { (char *)"StyledTextCtrl_GetCaretForeground", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretForeground
, METH_O
, NULL
},
21123 { (char *)"StyledTextCtrl_GetReadOnly", (PyCFunction
)_wrap_StyledTextCtrl_GetReadOnly
, METH_O
, NULL
},
21124 { (char *)"StyledTextCtrl_SetCurrentPos", (PyCFunction
) _wrap_StyledTextCtrl_SetCurrentPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21125 { (char *)"StyledTextCtrl_SetSelectionStart", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21126 { (char *)"StyledTextCtrl_GetSelectionStart", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionStart
, METH_O
, NULL
},
21127 { (char *)"StyledTextCtrl_SetSelectionEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21128 { (char *)"StyledTextCtrl_GetSelectionEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionEnd
, METH_O
, NULL
},
21129 { (char *)"StyledTextCtrl_SetPrintMagnification", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintMagnification
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21130 { (char *)"StyledTextCtrl_GetPrintMagnification", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintMagnification
, METH_O
, NULL
},
21131 { (char *)"StyledTextCtrl_SetPrintColourMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintColourMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21132 { (char *)"StyledTextCtrl_GetPrintColourMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintColourMode
, METH_O
, NULL
},
21133 { (char *)"StyledTextCtrl_FindText", (PyCFunction
) _wrap_StyledTextCtrl_FindText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21134 { (char *)"StyledTextCtrl_FormatRange", (PyCFunction
) _wrap_StyledTextCtrl_FormatRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21135 { (char *)"StyledTextCtrl_GetFirstVisibleLine", (PyCFunction
)_wrap_StyledTextCtrl_GetFirstVisibleLine
, METH_O
, NULL
},
21136 { (char *)"StyledTextCtrl_GetLine", (PyCFunction
) _wrap_StyledTextCtrl_GetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21137 { (char *)"StyledTextCtrl_GetLineCount", (PyCFunction
)_wrap_StyledTextCtrl_GetLineCount
, METH_O
, NULL
},
21138 { (char *)"StyledTextCtrl_SetMarginLeft", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21139 { (char *)"StyledTextCtrl_GetMarginLeft", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginLeft
, METH_O
, NULL
},
21140 { (char *)"StyledTextCtrl_SetMarginRight", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21141 { (char *)"StyledTextCtrl_GetMarginRight", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginRight
, METH_O
, NULL
},
21142 { (char *)"StyledTextCtrl_GetModify", (PyCFunction
)_wrap_StyledTextCtrl_GetModify
, METH_O
, NULL
},
21143 { (char *)"StyledTextCtrl_SetSelection", (PyCFunction
) _wrap_StyledTextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21144 { (char *)"StyledTextCtrl_GetSelectedText", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedText
, METH_O
, NULL
},
21145 { (char *)"StyledTextCtrl_GetTextRange", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21146 { (char *)"StyledTextCtrl_HideSelection", (PyCFunction
) _wrap_StyledTextCtrl_HideSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21147 { (char *)"StyledTextCtrl_LineFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_LineFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21148 { (char *)"StyledTextCtrl_PositionFromLine", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21149 { (char *)"StyledTextCtrl_LineScroll", (PyCFunction
) _wrap_StyledTextCtrl_LineScroll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21150 { (char *)"StyledTextCtrl_EnsureCaretVisible", (PyCFunction
)_wrap_StyledTextCtrl_EnsureCaretVisible
, METH_O
, NULL
},
21151 { (char *)"StyledTextCtrl_ReplaceSelection", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21152 { (char *)"StyledTextCtrl_SetReadOnly", (PyCFunction
) _wrap_StyledTextCtrl_SetReadOnly
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21153 { (char *)"StyledTextCtrl_CanPaste", (PyCFunction
)_wrap_StyledTextCtrl_CanPaste
, METH_O
, NULL
},
21154 { (char *)"StyledTextCtrl_CanUndo", (PyCFunction
)_wrap_StyledTextCtrl_CanUndo
, METH_O
, NULL
},
21155 { (char *)"StyledTextCtrl_EmptyUndoBuffer", (PyCFunction
)_wrap_StyledTextCtrl_EmptyUndoBuffer
, METH_O
, NULL
},
21156 { (char *)"StyledTextCtrl_Undo", (PyCFunction
)_wrap_StyledTextCtrl_Undo
, METH_O
, NULL
},
21157 { (char *)"StyledTextCtrl_Cut", (PyCFunction
)_wrap_StyledTextCtrl_Cut
, METH_O
, NULL
},
21158 { (char *)"StyledTextCtrl_Copy", (PyCFunction
)_wrap_StyledTextCtrl_Copy
, METH_O
, NULL
},
21159 { (char *)"StyledTextCtrl_Paste", (PyCFunction
)_wrap_StyledTextCtrl_Paste
, METH_O
, NULL
},
21160 { (char *)"StyledTextCtrl_Clear", (PyCFunction
)_wrap_StyledTextCtrl_Clear
, METH_O
, NULL
},
21161 { (char *)"StyledTextCtrl_SetText", (PyCFunction
) _wrap_StyledTextCtrl_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21162 { (char *)"StyledTextCtrl_GetText", (PyCFunction
)_wrap_StyledTextCtrl_GetText
, METH_O
, NULL
},
21163 { (char *)"StyledTextCtrl_GetTextLength", (PyCFunction
)_wrap_StyledTextCtrl_GetTextLength
, METH_O
, NULL
},
21164 { (char *)"StyledTextCtrl_SetOvertype", (PyCFunction
) _wrap_StyledTextCtrl_SetOvertype
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21165 { (char *)"StyledTextCtrl_GetOvertype", (PyCFunction
)_wrap_StyledTextCtrl_GetOvertype
, METH_O
, NULL
},
21166 { (char *)"StyledTextCtrl_SetCaretWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21167 { (char *)"StyledTextCtrl_GetCaretWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretWidth
, METH_O
, NULL
},
21168 { (char *)"StyledTextCtrl_SetTargetStart", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21169 { (char *)"StyledTextCtrl_GetTargetStart", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetStart
, METH_O
, NULL
},
21170 { (char *)"StyledTextCtrl_SetTargetEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21171 { (char *)"StyledTextCtrl_GetTargetEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetEnd
, METH_O
, NULL
},
21172 { (char *)"StyledTextCtrl_ReplaceTarget", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21173 { (char *)"StyledTextCtrl_ReplaceTargetRE", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTargetRE
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21174 { (char *)"StyledTextCtrl_SearchInTarget", (PyCFunction
) _wrap_StyledTextCtrl_SearchInTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21175 { (char *)"StyledTextCtrl_SetSearchFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetSearchFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21176 { (char *)"StyledTextCtrl_GetSearchFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetSearchFlags
, METH_O
, NULL
},
21177 { (char *)"StyledTextCtrl_CallTipShow", (PyCFunction
) _wrap_StyledTextCtrl_CallTipShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21178 { (char *)"StyledTextCtrl_CallTipCancel", (PyCFunction
)_wrap_StyledTextCtrl_CallTipCancel
, METH_O
, NULL
},
21179 { (char *)"StyledTextCtrl_CallTipActive", (PyCFunction
)_wrap_StyledTextCtrl_CallTipActive
, METH_O
, NULL
},
21180 { (char *)"StyledTextCtrl_CallTipPosAtStart", (PyCFunction
)_wrap_StyledTextCtrl_CallTipPosAtStart
, METH_O
, NULL
},
21181 { (char *)"StyledTextCtrl_CallTipSetHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21182 { (char *)"StyledTextCtrl_CallTipSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21183 { (char *)"StyledTextCtrl_CallTipSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21184 { (char *)"StyledTextCtrl_CallTipSetForegroundHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForegroundHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21185 { (char *)"StyledTextCtrl_VisibleFromDocLine", (PyCFunction
) _wrap_StyledTextCtrl_VisibleFromDocLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21186 { (char *)"StyledTextCtrl_DocLineFromVisible", (PyCFunction
) _wrap_StyledTextCtrl_DocLineFromVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21187 { (char *)"StyledTextCtrl_WrapCount", (PyCFunction
) _wrap_StyledTextCtrl_WrapCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21188 { (char *)"StyledTextCtrl_SetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21189 { (char *)"StyledTextCtrl_GetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21190 { (char *)"StyledTextCtrl_GetLastChild", (PyCFunction
) _wrap_StyledTextCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21191 { (char *)"StyledTextCtrl_GetFoldParent", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21192 { (char *)"StyledTextCtrl_ShowLines", (PyCFunction
) _wrap_StyledTextCtrl_ShowLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21193 { (char *)"StyledTextCtrl_HideLines", (PyCFunction
) _wrap_StyledTextCtrl_HideLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21194 { (char *)"StyledTextCtrl_GetLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_GetLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21195 { (char *)"StyledTextCtrl_SetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21196 { (char *)"StyledTextCtrl_GetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21197 { (char *)"StyledTextCtrl_ToggleFold", (PyCFunction
) _wrap_StyledTextCtrl_ToggleFold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21198 { (char *)"StyledTextCtrl_EnsureVisible", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21199 { (char *)"StyledTextCtrl_SetFoldFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21200 { (char *)"StyledTextCtrl_EnsureVisibleEnforcePolicy", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21201 { (char *)"StyledTextCtrl_SetTabIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetTabIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21202 { (char *)"StyledTextCtrl_GetTabIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetTabIndents
, METH_O
, NULL
},
21203 { (char *)"StyledTextCtrl_SetBackSpaceUnIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetBackSpaceUnIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21204 { (char *)"StyledTextCtrl_GetBackSpaceUnIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetBackSpaceUnIndents
, METH_O
, NULL
},
21205 { (char *)"StyledTextCtrl_SetMouseDwellTime", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDwellTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21206 { (char *)"StyledTextCtrl_GetMouseDwellTime", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDwellTime
, METH_O
, NULL
},
21207 { (char *)"StyledTextCtrl_WordStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21208 { (char *)"StyledTextCtrl_WordEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21209 { (char *)"StyledTextCtrl_SetWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21210 { (char *)"StyledTextCtrl_GetWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapMode
, METH_O
, NULL
},
21211 { (char *)"StyledTextCtrl_SetWrapVisualFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21212 { (char *)"StyledTextCtrl_GetWrapVisualFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlags
, METH_O
, NULL
},
21213 { (char *)"StyledTextCtrl_SetWrapVisualFlagsLocation", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlagsLocation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21214 { (char *)"StyledTextCtrl_GetWrapVisualFlagsLocation", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation
, METH_O
, NULL
},
21215 { (char *)"StyledTextCtrl_SetWrapStartIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapStartIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21216 { (char *)"StyledTextCtrl_GetWrapStartIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapStartIndent
, METH_O
, NULL
},
21217 { (char *)"StyledTextCtrl_SetLayoutCache", (PyCFunction
) _wrap_StyledTextCtrl_SetLayoutCache
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21218 { (char *)"StyledTextCtrl_GetLayoutCache", (PyCFunction
)_wrap_StyledTextCtrl_GetLayoutCache
, METH_O
, NULL
},
21219 { (char *)"StyledTextCtrl_SetScrollWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetScrollWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21220 { (char *)"StyledTextCtrl_GetScrollWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetScrollWidth
, METH_O
, NULL
},
21221 { (char *)"StyledTextCtrl_TextWidth", (PyCFunction
) _wrap_StyledTextCtrl_TextWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21222 { (char *)"StyledTextCtrl_SetEndAtLastLine", (PyCFunction
) _wrap_StyledTextCtrl_SetEndAtLastLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21223 { (char *)"StyledTextCtrl_GetEndAtLastLine", (PyCFunction
)_wrap_StyledTextCtrl_GetEndAtLastLine
, METH_O
, NULL
},
21224 { (char *)"StyledTextCtrl_TextHeight", (PyCFunction
) _wrap_StyledTextCtrl_TextHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21225 { (char *)"StyledTextCtrl_SetUseVerticalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseVerticalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21226 { (char *)"StyledTextCtrl_GetUseVerticalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseVerticalScrollBar
, METH_O
, NULL
},
21227 { (char *)"StyledTextCtrl_AppendText", (PyCFunction
) _wrap_StyledTextCtrl_AppendText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21228 { (char *)"StyledTextCtrl_GetTwoPhaseDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetTwoPhaseDraw
, METH_O
, NULL
},
21229 { (char *)"StyledTextCtrl_SetTwoPhaseDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetTwoPhaseDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21230 { (char *)"StyledTextCtrl_TargetFromSelection", (PyCFunction
)_wrap_StyledTextCtrl_TargetFromSelection
, METH_O
, NULL
},
21231 { (char *)"StyledTextCtrl_LinesJoin", (PyCFunction
)_wrap_StyledTextCtrl_LinesJoin
, METH_O
, NULL
},
21232 { (char *)"StyledTextCtrl_LinesSplit", (PyCFunction
) _wrap_StyledTextCtrl_LinesSplit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21233 { (char *)"StyledTextCtrl_SetFoldMarginColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21234 { (char *)"StyledTextCtrl_SetFoldMarginHiColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginHiColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21235 { (char *)"StyledTextCtrl_LineDown", (PyCFunction
)_wrap_StyledTextCtrl_LineDown
, METH_O
, NULL
},
21236 { (char *)"StyledTextCtrl_LineDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownExtend
, METH_O
, NULL
},
21237 { (char *)"StyledTextCtrl_LineUp", (PyCFunction
)_wrap_StyledTextCtrl_LineUp
, METH_O
, NULL
},
21238 { (char *)"StyledTextCtrl_LineUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpExtend
, METH_O
, NULL
},
21239 { (char *)"StyledTextCtrl_CharLeft", (PyCFunction
)_wrap_StyledTextCtrl_CharLeft
, METH_O
, NULL
},
21240 { (char *)"StyledTextCtrl_CharLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftExtend
, METH_O
, NULL
},
21241 { (char *)"StyledTextCtrl_CharRight", (PyCFunction
)_wrap_StyledTextCtrl_CharRight
, METH_O
, NULL
},
21242 { (char *)"StyledTextCtrl_CharRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightExtend
, METH_O
, NULL
},
21243 { (char *)"StyledTextCtrl_WordLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordLeft
, METH_O
, NULL
},
21244 { (char *)"StyledTextCtrl_WordLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftExtend
, METH_O
, NULL
},
21245 { (char *)"StyledTextCtrl_WordRight", (PyCFunction
)_wrap_StyledTextCtrl_WordRight
, METH_O
, NULL
},
21246 { (char *)"StyledTextCtrl_WordRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightExtend
, METH_O
, NULL
},
21247 { (char *)"StyledTextCtrl_Home", (PyCFunction
)_wrap_StyledTextCtrl_Home
, METH_O
, NULL
},
21248 { (char *)"StyledTextCtrl_HomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeExtend
, METH_O
, NULL
},
21249 { (char *)"StyledTextCtrl_LineEnd", (PyCFunction
)_wrap_StyledTextCtrl_LineEnd
, METH_O
, NULL
},
21250 { (char *)"StyledTextCtrl_LineEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndExtend
, METH_O
, NULL
},
21251 { (char *)"StyledTextCtrl_DocumentStart", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStart
, METH_O
, NULL
},
21252 { (char *)"StyledTextCtrl_DocumentStartExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStartExtend
, METH_O
, NULL
},
21253 { (char *)"StyledTextCtrl_DocumentEnd", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEnd
, METH_O
, NULL
},
21254 { (char *)"StyledTextCtrl_DocumentEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEndExtend
, METH_O
, NULL
},
21255 { (char *)"StyledTextCtrl_PageUp", (PyCFunction
)_wrap_StyledTextCtrl_PageUp
, METH_O
, NULL
},
21256 { (char *)"StyledTextCtrl_PageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpExtend
, METH_O
, NULL
},
21257 { (char *)"StyledTextCtrl_PageDown", (PyCFunction
)_wrap_StyledTextCtrl_PageDown
, METH_O
, NULL
},
21258 { (char *)"StyledTextCtrl_PageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownExtend
, METH_O
, NULL
},
21259 { (char *)"StyledTextCtrl_EditToggleOvertype", (PyCFunction
)_wrap_StyledTextCtrl_EditToggleOvertype
, METH_O
, NULL
},
21260 { (char *)"StyledTextCtrl_Cancel", (PyCFunction
)_wrap_StyledTextCtrl_Cancel
, METH_O
, NULL
},
21261 { (char *)"StyledTextCtrl_DeleteBack", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBack
, METH_O
, NULL
},
21262 { (char *)"StyledTextCtrl_Tab", (PyCFunction
)_wrap_StyledTextCtrl_Tab
, METH_O
, NULL
},
21263 { (char *)"StyledTextCtrl_BackTab", (PyCFunction
)_wrap_StyledTextCtrl_BackTab
, METH_O
, NULL
},
21264 { (char *)"StyledTextCtrl_NewLine", (PyCFunction
)_wrap_StyledTextCtrl_NewLine
, METH_O
, NULL
},
21265 { (char *)"StyledTextCtrl_FormFeed", (PyCFunction
)_wrap_StyledTextCtrl_FormFeed
, METH_O
, NULL
},
21266 { (char *)"StyledTextCtrl_VCHome", (PyCFunction
)_wrap_StyledTextCtrl_VCHome
, METH_O
, NULL
},
21267 { (char *)"StyledTextCtrl_VCHomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeExtend
, METH_O
, NULL
},
21268 { (char *)"StyledTextCtrl_ZoomIn", (PyCFunction
)_wrap_StyledTextCtrl_ZoomIn
, METH_O
, NULL
},
21269 { (char *)"StyledTextCtrl_ZoomOut", (PyCFunction
)_wrap_StyledTextCtrl_ZoomOut
, METH_O
, NULL
},
21270 { (char *)"StyledTextCtrl_DelWordLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelWordLeft
, METH_O
, NULL
},
21271 { (char *)"StyledTextCtrl_DelWordRight", (PyCFunction
)_wrap_StyledTextCtrl_DelWordRight
, METH_O
, NULL
},
21272 { (char *)"StyledTextCtrl_LineCut", (PyCFunction
)_wrap_StyledTextCtrl_LineCut
, METH_O
, NULL
},
21273 { (char *)"StyledTextCtrl_LineDelete", (PyCFunction
)_wrap_StyledTextCtrl_LineDelete
, METH_O
, NULL
},
21274 { (char *)"StyledTextCtrl_LineTranspose", (PyCFunction
)_wrap_StyledTextCtrl_LineTranspose
, METH_O
, NULL
},
21275 { (char *)"StyledTextCtrl_LineDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_LineDuplicate
, METH_O
, NULL
},
21276 { (char *)"StyledTextCtrl_LowerCase", (PyCFunction
)_wrap_StyledTextCtrl_LowerCase
, METH_O
, NULL
},
21277 { (char *)"StyledTextCtrl_UpperCase", (PyCFunction
)_wrap_StyledTextCtrl_UpperCase
, METH_O
, NULL
},
21278 { (char *)"StyledTextCtrl_LineScrollDown", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollDown
, METH_O
, NULL
},
21279 { (char *)"StyledTextCtrl_LineScrollUp", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollUp
, METH_O
, NULL
},
21280 { (char *)"StyledTextCtrl_DeleteBackNotLine", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBackNotLine
, METH_O
, NULL
},
21281 { (char *)"StyledTextCtrl_HomeDisplay", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplay
, METH_O
, NULL
},
21282 { (char *)"StyledTextCtrl_HomeDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplayExtend
, METH_O
, NULL
},
21283 { (char *)"StyledTextCtrl_LineEndDisplay", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplay
, METH_O
, NULL
},
21284 { (char *)"StyledTextCtrl_LineEndDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplayExtend
, METH_O
, NULL
},
21285 { (char *)"StyledTextCtrl_HomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrap
, METH_O
, NULL
},
21286 { (char *)"StyledTextCtrl_HomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrapExtend
, METH_O
, NULL
},
21287 { (char *)"StyledTextCtrl_LineEndWrap", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrap
, METH_O
, NULL
},
21288 { (char *)"StyledTextCtrl_LineEndWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrapExtend
, METH_O
, NULL
},
21289 { (char *)"StyledTextCtrl_VCHomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrap
, METH_O
, NULL
},
21290 { (char *)"StyledTextCtrl_VCHomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrapExtend
, METH_O
, NULL
},
21291 { (char *)"StyledTextCtrl_LineCopy", (PyCFunction
)_wrap_StyledTextCtrl_LineCopy
, METH_O
, NULL
},
21292 { (char *)"StyledTextCtrl_MoveCaretInsideView", (PyCFunction
)_wrap_StyledTextCtrl_MoveCaretInsideView
, METH_O
, NULL
},
21293 { (char *)"StyledTextCtrl_LineLength", (PyCFunction
) _wrap_StyledTextCtrl_LineLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21294 { (char *)"StyledTextCtrl_BraceHighlight", (PyCFunction
) _wrap_StyledTextCtrl_BraceHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21295 { (char *)"StyledTextCtrl_BraceBadLight", (PyCFunction
) _wrap_StyledTextCtrl_BraceBadLight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21296 { (char *)"StyledTextCtrl_BraceMatch", (PyCFunction
) _wrap_StyledTextCtrl_BraceMatch
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21297 { (char *)"StyledTextCtrl_GetViewEOL", (PyCFunction
)_wrap_StyledTextCtrl_GetViewEOL
, METH_O
, NULL
},
21298 { (char *)"StyledTextCtrl_SetViewEOL", (PyCFunction
) _wrap_StyledTextCtrl_SetViewEOL
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21299 { (char *)"StyledTextCtrl_GetDocPointer", (PyCFunction
)_wrap_StyledTextCtrl_GetDocPointer
, METH_O
, NULL
},
21300 { (char *)"StyledTextCtrl_SetDocPointer", (PyCFunction
) _wrap_StyledTextCtrl_SetDocPointer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21301 { (char *)"StyledTextCtrl_SetModEventMask", (PyCFunction
) _wrap_StyledTextCtrl_SetModEventMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21302 { (char *)"StyledTextCtrl_GetEdgeColumn", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColumn
, METH_O
, NULL
},
21303 { (char *)"StyledTextCtrl_SetEdgeColumn", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21304 { (char *)"StyledTextCtrl_GetEdgeMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeMode
, METH_O
, NULL
},
21305 { (char *)"StyledTextCtrl_SetEdgeMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21306 { (char *)"StyledTextCtrl_GetEdgeColour", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColour
, METH_O
, NULL
},
21307 { (char *)"StyledTextCtrl_SetEdgeColour", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21308 { (char *)"StyledTextCtrl_SearchAnchor", (PyCFunction
)_wrap_StyledTextCtrl_SearchAnchor
, METH_O
, NULL
},
21309 { (char *)"StyledTextCtrl_SearchNext", (PyCFunction
) _wrap_StyledTextCtrl_SearchNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21310 { (char *)"StyledTextCtrl_SearchPrev", (PyCFunction
) _wrap_StyledTextCtrl_SearchPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21311 { (char *)"StyledTextCtrl_LinesOnScreen", (PyCFunction
)_wrap_StyledTextCtrl_LinesOnScreen
, METH_O
, NULL
},
21312 { (char *)"StyledTextCtrl_UsePopUp", (PyCFunction
) _wrap_StyledTextCtrl_UsePopUp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21313 { (char *)"StyledTextCtrl_SelectionIsRectangle", (PyCFunction
)_wrap_StyledTextCtrl_SelectionIsRectangle
, METH_O
, NULL
},
21314 { (char *)"StyledTextCtrl_SetZoom", (PyCFunction
) _wrap_StyledTextCtrl_SetZoom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21315 { (char *)"StyledTextCtrl_GetZoom", (PyCFunction
)_wrap_StyledTextCtrl_GetZoom
, METH_O
, NULL
},
21316 { (char *)"StyledTextCtrl_CreateDocument", (PyCFunction
)_wrap_StyledTextCtrl_CreateDocument
, METH_O
, NULL
},
21317 { (char *)"StyledTextCtrl_AddRefDocument", (PyCFunction
) _wrap_StyledTextCtrl_AddRefDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21318 { (char *)"StyledTextCtrl_ReleaseDocument", (PyCFunction
) _wrap_StyledTextCtrl_ReleaseDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21319 { (char *)"StyledTextCtrl_GetModEventMask", (PyCFunction
)_wrap_StyledTextCtrl_GetModEventMask
, METH_O
, NULL
},
21320 { (char *)"StyledTextCtrl_SetSTCFocus", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21321 { (char *)"StyledTextCtrl_GetSTCFocus", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCFocus
, METH_O
, NULL
},
21322 { (char *)"StyledTextCtrl_SetStatus", (PyCFunction
) _wrap_StyledTextCtrl_SetStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21323 { (char *)"StyledTextCtrl_GetStatus", (PyCFunction
)_wrap_StyledTextCtrl_GetStatus
, METH_O
, NULL
},
21324 { (char *)"StyledTextCtrl_SetMouseDownCaptures", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDownCaptures
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21325 { (char *)"StyledTextCtrl_GetMouseDownCaptures", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDownCaptures
, METH_O
, NULL
},
21326 { (char *)"StyledTextCtrl_SetSTCCursor", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21327 { (char *)"StyledTextCtrl_GetSTCCursor", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCCursor
, METH_O
, NULL
},
21328 { (char *)"StyledTextCtrl_SetControlCharSymbol", (PyCFunction
) _wrap_StyledTextCtrl_SetControlCharSymbol
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21329 { (char *)"StyledTextCtrl_GetControlCharSymbol", (PyCFunction
)_wrap_StyledTextCtrl_GetControlCharSymbol
, METH_O
, NULL
},
21330 { (char *)"StyledTextCtrl_WordPartLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeft
, METH_O
, NULL
},
21331 { (char *)"StyledTextCtrl_WordPartLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeftExtend
, METH_O
, NULL
},
21332 { (char *)"StyledTextCtrl_WordPartRight", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRight
, METH_O
, NULL
},
21333 { (char *)"StyledTextCtrl_WordPartRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRightExtend
, METH_O
, NULL
},
21334 { (char *)"StyledTextCtrl_SetVisiblePolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetVisiblePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21335 { (char *)"StyledTextCtrl_DelLineLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelLineLeft
, METH_O
, NULL
},
21336 { (char *)"StyledTextCtrl_DelLineRight", (PyCFunction
)_wrap_StyledTextCtrl_DelLineRight
, METH_O
, NULL
},
21337 { (char *)"StyledTextCtrl_SetXOffset", (PyCFunction
) _wrap_StyledTextCtrl_SetXOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21338 { (char *)"StyledTextCtrl_GetXOffset", (PyCFunction
)_wrap_StyledTextCtrl_GetXOffset
, METH_O
, NULL
},
21339 { (char *)"StyledTextCtrl_ChooseCaretX", (PyCFunction
)_wrap_StyledTextCtrl_ChooseCaretX
, METH_O
, NULL
},
21340 { (char *)"StyledTextCtrl_SetXCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetXCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21341 { (char *)"StyledTextCtrl_SetYCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetYCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21342 { (char *)"StyledTextCtrl_SetPrintWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21343 { (char *)"StyledTextCtrl_GetPrintWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintWrapMode
, METH_O
, NULL
},
21344 { (char *)"StyledTextCtrl_SetHotspotActiveForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21345 { (char *)"StyledTextCtrl_SetHotspotActiveBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21346 { (char *)"StyledTextCtrl_SetHotspotActiveUnderline", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21347 { (char *)"StyledTextCtrl_SetHotspotSingleLine", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotSingleLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21348 { (char *)"StyledTextCtrl_ParaDown", (PyCFunction
)_wrap_StyledTextCtrl_ParaDown
, METH_O
, NULL
},
21349 { (char *)"StyledTextCtrl_ParaDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaDownExtend
, METH_O
, NULL
},
21350 { (char *)"StyledTextCtrl_ParaUp", (PyCFunction
)_wrap_StyledTextCtrl_ParaUp
, METH_O
, NULL
},
21351 { (char *)"StyledTextCtrl_ParaUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaUpExtend
, METH_O
, NULL
},
21352 { (char *)"StyledTextCtrl_PositionBefore", (PyCFunction
) _wrap_StyledTextCtrl_PositionBefore
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21353 { (char *)"StyledTextCtrl_PositionAfter", (PyCFunction
) _wrap_StyledTextCtrl_PositionAfter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21354 { (char *)"StyledTextCtrl_CopyRange", (PyCFunction
) _wrap_StyledTextCtrl_CopyRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21355 { (char *)"StyledTextCtrl_CopyText", (PyCFunction
) _wrap_StyledTextCtrl_CopyText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21356 { (char *)"StyledTextCtrl_SetSelectionMode", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21357 { (char *)"StyledTextCtrl_GetSelectionMode", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionMode
, METH_O
, NULL
},
21358 { (char *)"StyledTextCtrl_GetLineSelStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21359 { (char *)"StyledTextCtrl_GetLineSelEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21360 { (char *)"StyledTextCtrl_LineDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownRectExtend
, METH_O
, NULL
},
21361 { (char *)"StyledTextCtrl_LineUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpRectExtend
, METH_O
, NULL
},
21362 { (char *)"StyledTextCtrl_CharLeftRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftRectExtend
, METH_O
, NULL
},
21363 { (char *)"StyledTextCtrl_CharRightRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightRectExtend
, METH_O
, NULL
},
21364 { (char *)"StyledTextCtrl_HomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeRectExtend
, METH_O
, NULL
},
21365 { (char *)"StyledTextCtrl_VCHomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeRectExtend
, METH_O
, NULL
},
21366 { (char *)"StyledTextCtrl_LineEndRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndRectExtend
, METH_O
, NULL
},
21367 { (char *)"StyledTextCtrl_PageUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpRectExtend
, METH_O
, NULL
},
21368 { (char *)"StyledTextCtrl_PageDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownRectExtend
, METH_O
, NULL
},
21369 { (char *)"StyledTextCtrl_StutteredPageUp", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUp
, METH_O
, NULL
},
21370 { (char *)"StyledTextCtrl_StutteredPageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUpExtend
, METH_O
, NULL
},
21371 { (char *)"StyledTextCtrl_StutteredPageDown", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDown
, METH_O
, NULL
},
21372 { (char *)"StyledTextCtrl_StutteredPageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDownExtend
, METH_O
, NULL
},
21373 { (char *)"StyledTextCtrl_WordLeftEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEnd
, METH_O
, NULL
},
21374 { (char *)"StyledTextCtrl_WordLeftEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEndExtend
, METH_O
, NULL
},
21375 { (char *)"StyledTextCtrl_WordRightEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEnd
, METH_O
, NULL
},
21376 { (char *)"StyledTextCtrl_WordRightEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEndExtend
, METH_O
, NULL
},
21377 { (char *)"StyledTextCtrl_SetWhitespaceChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21378 { (char *)"StyledTextCtrl_SetCharsDefault", (PyCFunction
)_wrap_StyledTextCtrl_SetCharsDefault
, METH_O
, NULL
},
21379 { (char *)"StyledTextCtrl_AutoCompGetCurrent", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCurrent
, METH_O
, NULL
},
21380 { (char *)"StyledTextCtrl_Allocate", (PyCFunction
) _wrap_StyledTextCtrl_Allocate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21381 { (char *)"StyledTextCtrl_FindColumn", (PyCFunction
) _wrap_StyledTextCtrl_FindColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21382 { (char *)"StyledTextCtrl_GetCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretSticky
, METH_O
, NULL
},
21383 { (char *)"StyledTextCtrl_SetCaretSticky", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretSticky
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21384 { (char *)"StyledTextCtrl_ToggleCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_ToggleCaretSticky
, METH_O
, NULL
},
21385 { (char *)"StyledTextCtrl_SetPasteConvertEndings", (PyCFunction
) _wrap_StyledTextCtrl_SetPasteConvertEndings
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21386 { (char *)"StyledTextCtrl_GetPasteConvertEndings", (PyCFunction
)_wrap_StyledTextCtrl_GetPasteConvertEndings
, METH_O
, NULL
},
21387 { (char *)"StyledTextCtrl_SelectionDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_SelectionDuplicate
, METH_O
, NULL
},
21388 { (char *)"StyledTextCtrl_StartRecord", (PyCFunction
)_wrap_StyledTextCtrl_StartRecord
, METH_O
, NULL
},
21389 { (char *)"StyledTextCtrl_StopRecord", (PyCFunction
)_wrap_StyledTextCtrl_StopRecord
, METH_O
, NULL
},
21390 { (char *)"StyledTextCtrl_SetLexer", (PyCFunction
) _wrap_StyledTextCtrl_SetLexer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21391 { (char *)"StyledTextCtrl_GetLexer", (PyCFunction
)_wrap_StyledTextCtrl_GetLexer
, METH_O
, NULL
},
21392 { (char *)"StyledTextCtrl_Colourise", (PyCFunction
) _wrap_StyledTextCtrl_Colourise
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21393 { (char *)"StyledTextCtrl_SetProperty", (PyCFunction
) _wrap_StyledTextCtrl_SetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21394 { (char *)"StyledTextCtrl_SetKeyWords", (PyCFunction
) _wrap_StyledTextCtrl_SetKeyWords
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21395 { (char *)"StyledTextCtrl_SetLexerLanguage", (PyCFunction
) _wrap_StyledTextCtrl_SetLexerLanguage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21396 { (char *)"StyledTextCtrl_GetProperty", (PyCFunction
) _wrap_StyledTextCtrl_GetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21397 { (char *)"StyledTextCtrl_GetPropertyExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21398 { (char *)"StyledTextCtrl_GetPropertyInt", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21399 { (char *)"StyledTextCtrl_GetStyleBitsNeeded", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBitsNeeded
, METH_O
, NULL
},
21400 { (char *)"StyledTextCtrl_GetCurrentLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentLine
, METH_O
, NULL
},
21401 { (char *)"StyledTextCtrl_StyleSetSpec", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSpec
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21402 { (char *)"StyledTextCtrl_StyleSetFont", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21403 { (char *)"StyledTextCtrl_StyleSetFontAttr", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21404 { (char *)"StyledTextCtrl_StyleSetCharacterSet", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCharacterSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21405 { (char *)"StyledTextCtrl_StyleSetFontEncoding", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21406 { (char *)"StyledTextCtrl_CmdKeyExecute", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyExecute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21407 { (char *)"StyledTextCtrl_SetMargins", (PyCFunction
) _wrap_StyledTextCtrl_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21408 { (char *)"StyledTextCtrl_GetSelection", (PyCFunction
)_wrap_StyledTextCtrl_GetSelection
, METH_O
, NULL
},
21409 { (char *)"StyledTextCtrl_PointFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_PointFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21410 { (char *)"StyledTextCtrl_ScrollToLine", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21411 { (char *)"StyledTextCtrl_ScrollToColumn", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21412 { (char *)"StyledTextCtrl_SendMsg", (PyCFunction
) _wrap_StyledTextCtrl_SendMsg
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21413 { (char *)"StyledTextCtrl_SetVScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetVScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21414 { (char *)"StyledTextCtrl_SetHScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetHScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21415 { (char *)"StyledTextCtrl_GetLastKeydownProcessed", (PyCFunction
)_wrap_StyledTextCtrl_GetLastKeydownProcessed
, METH_O
, NULL
},
21416 { (char *)"StyledTextCtrl_SetLastKeydownProcessed", (PyCFunction
) _wrap_StyledTextCtrl_SetLastKeydownProcessed
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21417 { (char *)"StyledTextCtrl_SaveFile", (PyCFunction
) _wrap_StyledTextCtrl_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21418 { (char *)"StyledTextCtrl_LoadFile", (PyCFunction
) _wrap_StyledTextCtrl_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21419 { (char *)"StyledTextCtrl_DoDragOver", (PyCFunction
) _wrap_StyledTextCtrl_DoDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21420 { (char *)"StyledTextCtrl_DoDropText", (PyCFunction
) _wrap_StyledTextCtrl_DoDropText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21421 { (char *)"StyledTextCtrl_SetUseAntiAliasing", (PyCFunction
) _wrap_StyledTextCtrl_SetUseAntiAliasing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21422 { (char *)"StyledTextCtrl_GetUseAntiAliasing", (PyCFunction
)_wrap_StyledTextCtrl_GetUseAntiAliasing
, METH_O
, NULL
},
21423 { (char *)"StyledTextCtrl_AddTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AddTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21424 { (char *)"StyledTextCtrl_InsertTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_InsertTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21425 { (char *)"StyledTextCtrl_GetCurLineRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLineRaw
, METH_O
, NULL
},
21426 { (char *)"StyledTextCtrl_GetLineRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetLineRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21427 { (char *)"StyledTextCtrl_GetSelectedTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedTextRaw
, METH_O
, NULL
},
21428 { (char *)"StyledTextCtrl_GetTextRangeRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRangeRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21429 { (char *)"StyledTextCtrl_SetTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_SetTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21430 { (char *)"StyledTextCtrl_GetTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetTextRaw
, METH_O
, NULL
},
21431 { (char *)"StyledTextCtrl_AppendTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AppendTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21432 { (char *)"StyledTextCtrl_swigregister", StyledTextCtrl_swigregister
, METH_VARARGS
, NULL
},
21433 { (char *)"StyledTextCtrl_swiginit", StyledTextCtrl_swiginit
, METH_VARARGS
, NULL
},
21434 { (char *)"new_StyledTextEvent", (PyCFunction
) _wrap_new_StyledTextEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21435 { (char *)"delete_StyledTextEvent", (PyCFunction
)_wrap_delete_StyledTextEvent
, METH_O
, NULL
},
21436 { (char *)"StyledTextEvent_SetPosition", (PyCFunction
) _wrap_StyledTextEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21437 { (char *)"StyledTextEvent_SetKey", (PyCFunction
) _wrap_StyledTextEvent_SetKey
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21438 { (char *)"StyledTextEvent_SetModifiers", (PyCFunction
) _wrap_StyledTextEvent_SetModifiers
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21439 { (char *)"StyledTextEvent_SetModificationType", (PyCFunction
) _wrap_StyledTextEvent_SetModificationType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21440 { (char *)"StyledTextEvent_SetText", (PyCFunction
) _wrap_StyledTextEvent_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21441 { (char *)"StyledTextEvent_SetLength", (PyCFunction
) _wrap_StyledTextEvent_SetLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21442 { (char *)"StyledTextEvent_SetLinesAdded", (PyCFunction
) _wrap_StyledTextEvent_SetLinesAdded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21443 { (char *)"StyledTextEvent_SetLine", (PyCFunction
) _wrap_StyledTextEvent_SetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21444 { (char *)"StyledTextEvent_SetFoldLevelNow", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelNow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21445 { (char *)"StyledTextEvent_SetFoldLevelPrev", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21446 { (char *)"StyledTextEvent_SetMargin", (PyCFunction
) _wrap_StyledTextEvent_SetMargin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21447 { (char *)"StyledTextEvent_SetMessage", (PyCFunction
) _wrap_StyledTextEvent_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21448 { (char *)"StyledTextEvent_SetWParam", (PyCFunction
) _wrap_StyledTextEvent_SetWParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21449 { (char *)"StyledTextEvent_SetLParam", (PyCFunction
) _wrap_StyledTextEvent_SetLParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21450 { (char *)"StyledTextEvent_SetListType", (PyCFunction
) _wrap_StyledTextEvent_SetListType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21451 { (char *)"StyledTextEvent_SetX", (PyCFunction
) _wrap_StyledTextEvent_SetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21452 { (char *)"StyledTextEvent_SetY", (PyCFunction
) _wrap_StyledTextEvent_SetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21453 { (char *)"StyledTextEvent_SetDragText", (PyCFunction
) _wrap_StyledTextEvent_SetDragText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21454 { (char *)"StyledTextEvent_SetDragAllowMove", (PyCFunction
) _wrap_StyledTextEvent_SetDragAllowMove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21455 { (char *)"StyledTextEvent_SetDragResult", (PyCFunction
) _wrap_StyledTextEvent_SetDragResult
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21456 { (char *)"StyledTextEvent_GetPosition", (PyCFunction
)_wrap_StyledTextEvent_GetPosition
, METH_O
, NULL
},
21457 { (char *)"StyledTextEvent_GetKey", (PyCFunction
)_wrap_StyledTextEvent_GetKey
, METH_O
, NULL
},
21458 { (char *)"StyledTextEvent_GetModifiers", (PyCFunction
)_wrap_StyledTextEvent_GetModifiers
, METH_O
, NULL
},
21459 { (char *)"StyledTextEvent_GetModificationType", (PyCFunction
)_wrap_StyledTextEvent_GetModificationType
, METH_O
, NULL
},
21460 { (char *)"StyledTextEvent_GetText", (PyCFunction
)_wrap_StyledTextEvent_GetText
, METH_O
, NULL
},
21461 { (char *)"StyledTextEvent_GetLength", (PyCFunction
)_wrap_StyledTextEvent_GetLength
, METH_O
, NULL
},
21462 { (char *)"StyledTextEvent_GetLinesAdded", (PyCFunction
)_wrap_StyledTextEvent_GetLinesAdded
, METH_O
, NULL
},
21463 { (char *)"StyledTextEvent_GetLine", (PyCFunction
)_wrap_StyledTextEvent_GetLine
, METH_O
, NULL
},
21464 { (char *)"StyledTextEvent_GetFoldLevelNow", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelNow
, METH_O
, NULL
},
21465 { (char *)"StyledTextEvent_GetFoldLevelPrev", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelPrev
, METH_O
, NULL
},
21466 { (char *)"StyledTextEvent_GetMargin", (PyCFunction
)_wrap_StyledTextEvent_GetMargin
, METH_O
, NULL
},
21467 { (char *)"StyledTextEvent_GetMessage", (PyCFunction
)_wrap_StyledTextEvent_GetMessage
, METH_O
, NULL
},
21468 { (char *)"StyledTextEvent_GetWParam", (PyCFunction
)_wrap_StyledTextEvent_GetWParam
, METH_O
, NULL
},
21469 { (char *)"StyledTextEvent_GetLParam", (PyCFunction
)_wrap_StyledTextEvent_GetLParam
, METH_O
, NULL
},
21470 { (char *)"StyledTextEvent_GetListType", (PyCFunction
)_wrap_StyledTextEvent_GetListType
, METH_O
, NULL
},
21471 { (char *)"StyledTextEvent_GetX", (PyCFunction
)_wrap_StyledTextEvent_GetX
, METH_O
, NULL
},
21472 { (char *)"StyledTextEvent_GetY", (PyCFunction
)_wrap_StyledTextEvent_GetY
, METH_O
, NULL
},
21473 { (char *)"StyledTextEvent_GetDragText", (PyCFunction
)_wrap_StyledTextEvent_GetDragText
, METH_O
, NULL
},
21474 { (char *)"StyledTextEvent_GetDragAllowMove", (PyCFunction
)_wrap_StyledTextEvent_GetDragAllowMove
, METH_O
, NULL
},
21475 { (char *)"StyledTextEvent_GetDragResult", (PyCFunction
)_wrap_StyledTextEvent_GetDragResult
, METH_O
, NULL
},
21476 { (char *)"StyledTextEvent_GetShift", (PyCFunction
)_wrap_StyledTextEvent_GetShift
, METH_O
, NULL
},
21477 { (char *)"StyledTextEvent_GetControl", (PyCFunction
)_wrap_StyledTextEvent_GetControl
, METH_O
, NULL
},
21478 { (char *)"StyledTextEvent_GetAlt", (PyCFunction
)_wrap_StyledTextEvent_GetAlt
, METH_O
, NULL
},
21479 { (char *)"StyledTextEvent_swigregister", StyledTextEvent_swigregister
, METH_VARARGS
, NULL
},
21480 { (char *)"StyledTextEvent_swiginit", StyledTextEvent_swiginit
, METH_VARARGS
, NULL
},
21481 { NULL
, NULL
, 0, NULL
}
21485 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
21487 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
21488 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
21490 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
21491 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
21493 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
21494 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
21496 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
21497 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
21499 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
21500 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
21502 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
21503 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
21505 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
21506 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
21508 static void *_p_wxSizerTo_p_wxObject(void *x
) {
21509 return (void *)((wxObject
*) ((wxSizer
*) x
));
21511 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
21512 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
21514 static void *_p_wxFileHistoryTo_p_wxObject(void *x
) {
21515 return (void *)((wxObject
*) ((wxFileHistory
*) x
));
21517 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
21518 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21520 static void *_p_wxEventTo_p_wxObject(void *x
) {
21521 return (void *)((wxObject
*) ((wxEvent
*) x
));
21523 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
21524 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
21526 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
21527 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
21529 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
21530 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
21532 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
21533 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
21535 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
21536 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
21538 static void *_p_wxStyledTextEventTo_p_wxObject(void *x
) {
21539 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21541 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
21542 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21544 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
21545 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21547 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
21548 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21550 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
21551 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21553 static void *_p_wxControlTo_p_wxObject(void *x
) {
21554 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
21556 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
21557 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
21559 static void *_p_wxTimerEventTo_p_wxObject(void *x
) {
21560 return (void *)((wxObject
*) (wxEvent
*) ((wxTimerEvent
*) x
));
21562 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
21563 return (void *)((wxObject
*) ((wxFSFile
*) x
));
21565 static void *_p_wxClipboardTo_p_wxObject(void *x
) {
21566 return (void *)((wxObject
*) ((wxClipboard
*) x
));
21568 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
21569 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
21571 static void *_p_wxStyledTextCtrlTo_p_wxObject(void *x
) {
21572 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21574 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
21575 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
21577 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
21578 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21580 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
21581 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
21583 static void *_p_wxToolTipTo_p_wxObject(void *x
) {
21584 return (void *)((wxObject
*) ((wxToolTip
*) x
));
21586 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
21587 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
21589 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
21590 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
21592 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
21593 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
21595 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
21596 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21598 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
21599 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21601 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
21602 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
21604 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
21605 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
21607 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
21608 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
21610 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
21611 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
21613 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
21614 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
21616 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
21617 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
21619 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
21620 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
21622 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
21623 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
21625 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
21626 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
21628 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
21629 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
21631 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
21632 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
21634 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
21635 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
21637 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
21638 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
21640 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
21641 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
21643 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
21644 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
21646 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
21647 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
21649 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
21650 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
21652 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
21653 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
21655 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
21656 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
21658 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
21659 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
21661 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
21662 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
21664 static void *_p_wxImageTo_p_wxObject(void *x
) {
21665 return (void *)((wxObject
*) ((wxImage
*) x
));
21667 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
21668 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
21670 static void *_p_wxSystemOptionsTo_p_wxObject(void *x
) {
21671 return (void *)((wxObject
*) ((wxSystemOptions
*) x
));
21673 static void *_p_wxJoystickEventTo_p_wxObject(void *x
) {
21674 return (void *)((wxObject
*) (wxEvent
*) ((wxJoystickEvent
*) x
));
21676 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
21677 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21679 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
21680 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21682 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
21683 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
21685 static void *_p_wxWindowTo_p_wxObject(void *x
) {
21686 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
21688 static void *_p_wxMenuTo_p_wxObject(void *x
) {
21689 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
21691 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
21692 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
21694 static void *_p_wxPyProcessTo_p_wxObject(void *x
) {
21695 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyProcess
*) x
));
21697 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
21698 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
21700 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
21701 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21703 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
21704 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
21706 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
21707 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
21709 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
21710 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
21712 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
21713 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
21715 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
21716 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
21718 static void *_p_wxBusyInfoTo_p_wxObject(void *x
) {
21719 return (void *)((wxObject
*) ((wxBusyInfo
*) x
));
21721 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
21722 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21724 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
21725 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
21727 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
21728 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
21730 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
21731 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
21733 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
21734 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21736 static void *_p_wxProcessEventTo_p_wxObject(void *x
) {
21737 return (void *)((wxObject
*) (wxEvent
*) ((wxProcessEvent
*) x
));
21739 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
21740 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21742 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
21743 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
21745 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
21746 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
21748 static void *_p_wxPyTimerTo_p_wxObject(void *x
) {
21749 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTimer
*) x
));
21751 static void *_p_wxControlTo_p_wxWindow(void *x
) {
21752 return (void *)((wxWindow
*) ((wxControl
*) x
));
21754 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
21755 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
21757 static void *_p_wxStyledTextCtrlTo_p_wxWindow(void *x
) {
21758 return (void *)((wxWindow
*) (wxControl
*) ((wxStyledTextCtrl
*) x
));
21760 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
21761 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
21763 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
21764 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21766 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
21767 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
21769 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
21770 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21772 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
21773 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
21775 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
21776 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21778 static void *_p_wxStyledTextEventTo_p_wxCommandEvent(void *x
) {
21779 return (void *)((wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21781 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
21782 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21784 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
21785 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21787 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
21788 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21790 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
21791 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21793 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
21794 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
21796 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
21797 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
21799 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
21800 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21802 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
21803 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
21805 static void *_p_wxPyTimerTo_p_wxEvtHandler(void *x
) {
21806 return (void *)((wxEvtHandler
*) ((wxPyTimer
*) x
));
21808 static void *_p_wxStyledTextCtrlTo_p_wxEvtHandler(void *x
) {
21809 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21811 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
21812 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
21814 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
21815 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
21817 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
21818 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
21820 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
21821 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
21823 static void *_p_wxPyProcessTo_p_wxEvtHandler(void *x
) {
21824 return (void *)((wxEvtHandler
*) ((wxPyProcess
*) x
));
21826 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
21827 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
21829 static void *_p_wxStyledTextCtrlTo_p_wxControl(void *x
) {
21830 return (void *)((wxControl
*) ((wxStyledTextCtrl
*) x
));
21832 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
21833 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21835 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
21836 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
21838 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
21839 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
21841 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
21842 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
21844 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
21845 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
21847 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
21848 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
21850 static void *_p_wxTimerEventTo_p_wxEvent(void *x
) {
21851 return (void *)((wxEvent
*) ((wxTimerEvent
*) x
));
21853 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
21854 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
21856 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
21857 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
21859 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
21860 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
21862 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
21863 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21865 static void *_p_wxJoystickEventTo_p_wxEvent(void *x
) {
21866 return (void *)((wxEvent
*) ((wxJoystickEvent
*) x
));
21868 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
21869 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
21871 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
21872 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21874 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
21875 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21877 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
21878 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
21880 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
21881 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
21883 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
21884 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
21886 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
21887 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
21889 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
21890 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
21892 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
21893 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
21895 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
21896 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
21898 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
21899 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
21901 static void *_p_wxStyledTextEventTo_p_wxEvent(void *x
) {
21902 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21904 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
21905 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21907 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
21908 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21910 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
21911 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21913 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
21914 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21916 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
21917 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21919 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
21920 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
21922 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
21923 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
21925 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
21926 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21928 static void *_p_wxProcessEventTo_p_wxEvent(void *x
) {
21929 return (void *)((wxEvent
*) ((wxProcessEvent
*) x
));
21931 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
21932 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
21934 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
21935 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
21937 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
21938 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21940 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
21941 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21943 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
21944 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21946 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
21947 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
21949 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
21950 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
21952 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
21953 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};
21954 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
21955 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
21956 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
21957 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxLogLevel *", 0, 0, (void*)0, 0};
21958 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, (void*)0, 0};
21959 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
21960 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
21961 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
21962 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
21963 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
21964 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
21965 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
21966 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
21967 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
21968 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
21969 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
21970 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
21971 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
21972 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
21973 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
21974 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
21975 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
21976 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
21977 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
21978 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
21979 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
21980 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
21981 static swig_type_info _swigt__p_wxTimerEvent
= {"_p_wxTimerEvent", 0, 0, 0, 0, 0};
21982 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
21983 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
21984 static swig_type_info _swigt__p_wxJoystickEvent
= {"_p_wxJoystickEvent", 0, 0, 0, 0, 0};
21985 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
21986 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
21987 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
21988 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
21989 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
21990 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
21991 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
21992 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
21993 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
21994 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
21995 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
21996 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
21997 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
21998 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
21999 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
22000 static swig_type_info _swigt__p_wxProcessEvent
= {"_p_wxProcessEvent", 0, 0, 0, 0, 0};
22001 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
22002 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
22003 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
22004 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
22005 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
22006 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
22007 static swig_type_info _swigt__p_wxPyTimer
= {"_p_wxPyTimer", 0, 0, 0, 0, 0};
22008 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
22009 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
22010 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
22011 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
22012 static swig_type_info _swigt__p_wxPyProcess
= {"_p_wxPyProcess", 0, 0, 0, 0, 0};
22013 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
22014 static swig_type_info _swigt__p_wxMemoryBuffer
= {"_p_wxMemoryBuffer", "wxMemoryBuffer *", 0, 0, (void*)0, 0};
22015 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
22016 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
22017 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
22018 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
22019 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
22020 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
22021 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
22022 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
22023 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
22024 static swig_type_info _swigt__p_wxFileHistory
= {"_p_wxFileHistory", 0, 0, 0, 0, 0};
22025 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
22026 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
22027 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
22028 static swig_type_info _swigt__p_wxClipboard
= {"_p_wxClipboard", 0, 0, 0, 0, 0};
22029 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
22030 static swig_type_info _swigt__p_wxToolTip
= {"_p_wxToolTip", 0, 0, 0, 0, 0};
22031 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
22032 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
22033 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
22034 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
22035 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
22036 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
22037 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
22038 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
22039 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
22040 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
22041 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
22042 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
22043 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
22044 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
22045 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
22046 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
22047 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
22048 static swig_type_info _swigt__p_wxSystemOptions
= {"_p_wxSystemOptions", 0, 0, 0, 0, 0};
22049 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
22050 static swig_type_info _swigt__p_wxBusyInfo
= {"_p_wxBusyInfo", 0, 0, 0, 0, 0};
22051 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
22052 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
22053 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
22054 static swig_type_info _swigt__p_wxScrollBar
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, (void*)0, 0};
22055 static swig_type_info _swigt__p_wxStyledTextCtrl
= {"_p_wxStyledTextCtrl", "wxStyledTextCtrl *", 0, 0, (void*)0, 0};
22056 static swig_type_info _swigt__p_wxStyledTextEvent
= {"_p_wxStyledTextEvent", "wxStyledTextEvent *", 0, 0, (void*)0, 0};
22057 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
22059 static swig_type_info
*swig_type_initial
[] = {
22061 &_swigt__p_form_ops_t
,
22063 &_swigt__p_unsigned_char
,
22064 &_swigt__p_unsigned_int
,
22065 &_swigt__p_unsigned_long
,
22067 &_swigt__p_wxANIHandler
,
22068 &_swigt__p_wxAcceleratorTable
,
22069 &_swigt__p_wxActivateEvent
,
22070 &_swigt__p_wxBMPHandler
,
22071 &_swigt__p_wxBitmap
,
22072 &_swigt__p_wxBoxSizer
,
22073 &_swigt__p_wxBusyInfo
,
22074 &_swigt__p_wxCURHandler
,
22075 &_swigt__p_wxChildFocusEvent
,
22076 &_swigt__p_wxClipboard
,
22077 &_swigt__p_wxCloseEvent
,
22078 &_swigt__p_wxColour
,
22079 &_swigt__p_wxCommandEvent
,
22080 &_swigt__p_wxContextMenuEvent
,
22081 &_swigt__p_wxControl
,
22082 &_swigt__p_wxControlWithItems
,
22084 &_swigt__p_wxDateEvent
,
22085 &_swigt__p_wxDisplayChangedEvent
,
22086 &_swigt__p_wxDropFilesEvent
,
22087 &_swigt__p_wxDuplexMode
,
22088 &_swigt__p_wxEraseEvent
,
22089 &_swigt__p_wxEvent
,
22090 &_swigt__p_wxEvtHandler
,
22091 &_swigt__p_wxFSFile
,
22092 &_swigt__p_wxFileHistory
,
22093 &_swigt__p_wxFileSystem
,
22094 &_swigt__p_wxFlexGridSizer
,
22095 &_swigt__p_wxFocusEvent
,
22097 &_swigt__p_wxGBSizerItem
,
22098 &_swigt__p_wxGIFHandler
,
22099 &_swigt__p_wxGridBagSizer
,
22100 &_swigt__p_wxGridSizer
,
22101 &_swigt__p_wxICOHandler
,
22102 &_swigt__p_wxIconizeEvent
,
22103 &_swigt__p_wxIdleEvent
,
22104 &_swigt__p_wxImage
,
22105 &_swigt__p_wxImageHandler
,
22106 &_swigt__p_wxIndividualLayoutConstraint
,
22107 &_swigt__p_wxInitDialogEvent
,
22108 &_swigt__p_wxJPEGHandler
,
22109 &_swigt__p_wxJoystickEvent
,
22110 &_swigt__p_wxKeyEvent
,
22111 &_swigt__p_wxLayoutConstraints
,
22112 &_swigt__p_wxMaximizeEvent
,
22113 &_swigt__p_wxMemoryBuffer
,
22115 &_swigt__p_wxMenuBar
,
22116 &_swigt__p_wxMenuEvent
,
22117 &_swigt__p_wxMenuItem
,
22118 &_swigt__p_wxMouseCaptureChangedEvent
,
22119 &_swigt__p_wxMouseEvent
,
22120 &_swigt__p_wxMoveEvent
,
22121 &_swigt__p_wxNavigationKeyEvent
,
22122 &_swigt__p_wxNcPaintEvent
,
22123 &_swigt__p_wxNotifyEvent
,
22124 &_swigt__p_wxObject
,
22125 &_swigt__p_wxPCXHandler
,
22126 &_swigt__p_wxPNGHandler
,
22127 &_swigt__p_wxPNMHandler
,
22128 &_swigt__p_wxPaintEvent
,
22129 &_swigt__p_wxPaletteChangedEvent
,
22130 &_swigt__p_wxPaperSize
,
22131 &_swigt__p_wxPoint
,
22132 &_swigt__p_wxProcessEvent
,
22133 &_swigt__p_wxPyApp
,
22134 &_swigt__p_wxPyCommandEvent
,
22135 &_swigt__p_wxPyEvent
,
22136 &_swigt__p_wxPyImageHandler
,
22137 &_swigt__p_wxPyProcess
,
22138 &_swigt__p_wxPySizer
,
22139 &_swigt__p_wxPyTimer
,
22140 &_swigt__p_wxPyValidator
,
22141 &_swigt__p_wxQueryNewPaletteEvent
,
22143 &_swigt__p_wxScrollBar
,
22144 &_swigt__p_wxScrollEvent
,
22145 &_swigt__p_wxScrollWinEvent
,
22146 &_swigt__p_wxSetCursorEvent
,
22147 &_swigt__p_wxShowEvent
,
22148 &_swigt__p_wxSizeEvent
,
22149 &_swigt__p_wxSizer
,
22150 &_swigt__p_wxSizerItem
,
22151 &_swigt__p_wxStaticBoxSizer
,
22152 &_swigt__p_wxStdDialogButtonSizer
,
22153 &_swigt__p_wxStyledTextCtrl
,
22154 &_swigt__p_wxStyledTextEvent
,
22155 &_swigt__p_wxSysColourChangedEvent
,
22156 &_swigt__p_wxSystemOptions
,
22157 &_swigt__p_wxTIFFHandler
,
22158 &_swigt__p_wxTimerEvent
,
22159 &_swigt__p_wxToolTip
,
22160 &_swigt__p_wxUpdateUIEvent
,
22161 &_swigt__p_wxValidator
,
22162 &_swigt__p_wxWindow
,
22163 &_swigt__p_wxWindowCreateEvent
,
22164 &_swigt__p_wxWindowDestroyEvent
,
22165 &_swigt__p_wxXPMHandler
,
22168 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
22169 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
22170 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
22171 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
22172 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
22173 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
22174 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
22175 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
22176 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
22177 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22178 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
22179 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22180 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22181 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
22182 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22183 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22184 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22185 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
22186 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_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}};
22187 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
22188 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}};
22189 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
22190 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
22191 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22192 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22193 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22194 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22195 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
22196 static swig_cast_info _swigc__p_wxTimerEvent
[] = {{&_swigt__p_wxTimerEvent
, 0, 0, 0},{0, 0, 0, 0}};
22197 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
22198 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22199 static swig_cast_info _swigc__p_wxJoystickEvent
[] = {{&_swigt__p_wxJoystickEvent
, 0, 0, 0},{0, 0, 0, 0}};
22200 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
22201 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
22202 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22203 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22204 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22205 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22206 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
22207 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22208 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22209 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22210 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22211 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22212 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22213 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
22214 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22215 static swig_cast_info _swigc__p_wxProcessEvent
[] = {{&_swigt__p_wxProcessEvent
, 0, 0, 0},{0, 0, 0, 0}};
22216 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
22217 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22218 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22219 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
22220 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_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_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_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}};
22221 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
22222 static swig_cast_info _swigc__p_wxPyTimer
[] = {{&_swigt__p_wxPyTimer
, 0, 0, 0},{0, 0, 0, 0}};
22223 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
22224 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
22225 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
22226 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
22227 static swig_cast_info _swigc__p_wxPyProcess
[] = {{&_swigt__p_wxPyProcess
, 0, 0, 0},{0, 0, 0, 0}};
22228 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}};
22229 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
22230 static swig_cast_info _swigc__p_wxMemoryBuffer
[] = { {&_swigt__p_wxMemoryBuffer
, 0, 0, 0},{0, 0, 0, 0}};
22231 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
22232 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22233 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22234 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
22235 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22236 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22237 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22238 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
22239 static swig_cast_info _swigc__p_wxFileHistory
[] = {{&_swigt__p_wxFileHistory
, 0, 0, 0},{0, 0, 0, 0}};
22240 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22241 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22242 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
22243 static swig_cast_info _swigc__p_wxClipboard
[] = {{&_swigt__p_wxClipboard
, 0, 0, 0},{0, 0, 0, 0}};
22244 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
22245 static swig_cast_info _swigc__p_wxToolTip
[] = {{&_swigt__p_wxToolTip
, 0, 0, 0},{0, 0, 0, 0}};
22246 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
22247 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22248 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22249 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22250 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22251 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
22252 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
22253 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
22254 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
22255 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22256 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22257 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
22258 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22259 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22260 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
22261 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
22262 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
22263 static swig_cast_info _swigc__p_wxSystemOptions
[] = {{&_swigt__p_wxSystemOptions
, 0, 0, 0},{0, 0, 0, 0}};
22264 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
22265 static swig_cast_info _swigc__p_wxBusyInfo
[] = {{&_swigt__p_wxBusyInfo
, 0, 0, 0},{0, 0, 0, 0}};
22266 static swig_cast_info _swigc__p_wxObject
[] = { {&_swigt__p_wxLayoutConstraints
, _p_wxLayoutConstraintsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGBSizerItem
, _p_wxGBSizerItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSizerItem
, _p_wxSizerItemTo_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_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_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_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_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_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_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxXPMHandler
, _p_wxXPMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxTIFFHandler
, _p_wxTIFFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEvtHandler
, _p_wxEvtHandlerTo_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_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_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}};
22267 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
22268 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
22269 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
22270 static swig_cast_info _swigc__p_wxScrollBar
[] = { {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}};
22271 static swig_cast_info _swigc__p_wxStyledTextCtrl
[] = { {&_swigt__p_wxStyledTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
22272 static swig_cast_info _swigc__p_wxStyledTextEvent
[] = { {&_swigt__p_wxStyledTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
22273 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}};
22275 static swig_cast_info
*swig_cast_initial
[] = {
22277 _swigc__p_form_ops_t
,
22279 _swigc__p_unsigned_char
,
22280 _swigc__p_unsigned_int
,
22281 _swigc__p_unsigned_long
,
22283 _swigc__p_wxANIHandler
,
22284 _swigc__p_wxAcceleratorTable
,
22285 _swigc__p_wxActivateEvent
,
22286 _swigc__p_wxBMPHandler
,
22287 _swigc__p_wxBitmap
,
22288 _swigc__p_wxBoxSizer
,
22289 _swigc__p_wxBusyInfo
,
22290 _swigc__p_wxCURHandler
,
22291 _swigc__p_wxChildFocusEvent
,
22292 _swigc__p_wxClipboard
,
22293 _swigc__p_wxCloseEvent
,
22294 _swigc__p_wxColour
,
22295 _swigc__p_wxCommandEvent
,
22296 _swigc__p_wxContextMenuEvent
,
22297 _swigc__p_wxControl
,
22298 _swigc__p_wxControlWithItems
,
22300 _swigc__p_wxDateEvent
,
22301 _swigc__p_wxDisplayChangedEvent
,
22302 _swigc__p_wxDropFilesEvent
,
22303 _swigc__p_wxDuplexMode
,
22304 _swigc__p_wxEraseEvent
,
22306 _swigc__p_wxEvtHandler
,
22307 _swigc__p_wxFSFile
,
22308 _swigc__p_wxFileHistory
,
22309 _swigc__p_wxFileSystem
,
22310 _swigc__p_wxFlexGridSizer
,
22311 _swigc__p_wxFocusEvent
,
22313 _swigc__p_wxGBSizerItem
,
22314 _swigc__p_wxGIFHandler
,
22315 _swigc__p_wxGridBagSizer
,
22316 _swigc__p_wxGridSizer
,
22317 _swigc__p_wxICOHandler
,
22318 _swigc__p_wxIconizeEvent
,
22319 _swigc__p_wxIdleEvent
,
22321 _swigc__p_wxImageHandler
,
22322 _swigc__p_wxIndividualLayoutConstraint
,
22323 _swigc__p_wxInitDialogEvent
,
22324 _swigc__p_wxJPEGHandler
,
22325 _swigc__p_wxJoystickEvent
,
22326 _swigc__p_wxKeyEvent
,
22327 _swigc__p_wxLayoutConstraints
,
22328 _swigc__p_wxMaximizeEvent
,
22329 _swigc__p_wxMemoryBuffer
,
22331 _swigc__p_wxMenuBar
,
22332 _swigc__p_wxMenuEvent
,
22333 _swigc__p_wxMenuItem
,
22334 _swigc__p_wxMouseCaptureChangedEvent
,
22335 _swigc__p_wxMouseEvent
,
22336 _swigc__p_wxMoveEvent
,
22337 _swigc__p_wxNavigationKeyEvent
,
22338 _swigc__p_wxNcPaintEvent
,
22339 _swigc__p_wxNotifyEvent
,
22340 _swigc__p_wxObject
,
22341 _swigc__p_wxPCXHandler
,
22342 _swigc__p_wxPNGHandler
,
22343 _swigc__p_wxPNMHandler
,
22344 _swigc__p_wxPaintEvent
,
22345 _swigc__p_wxPaletteChangedEvent
,
22346 _swigc__p_wxPaperSize
,
22348 _swigc__p_wxProcessEvent
,
22350 _swigc__p_wxPyCommandEvent
,
22351 _swigc__p_wxPyEvent
,
22352 _swigc__p_wxPyImageHandler
,
22353 _swigc__p_wxPyProcess
,
22354 _swigc__p_wxPySizer
,
22355 _swigc__p_wxPyTimer
,
22356 _swigc__p_wxPyValidator
,
22357 _swigc__p_wxQueryNewPaletteEvent
,
22359 _swigc__p_wxScrollBar
,
22360 _swigc__p_wxScrollEvent
,
22361 _swigc__p_wxScrollWinEvent
,
22362 _swigc__p_wxSetCursorEvent
,
22363 _swigc__p_wxShowEvent
,
22364 _swigc__p_wxSizeEvent
,
22366 _swigc__p_wxSizerItem
,
22367 _swigc__p_wxStaticBoxSizer
,
22368 _swigc__p_wxStdDialogButtonSizer
,
22369 _swigc__p_wxStyledTextCtrl
,
22370 _swigc__p_wxStyledTextEvent
,
22371 _swigc__p_wxSysColourChangedEvent
,
22372 _swigc__p_wxSystemOptions
,
22373 _swigc__p_wxTIFFHandler
,
22374 _swigc__p_wxTimerEvent
,
22375 _swigc__p_wxToolTip
,
22376 _swigc__p_wxUpdateUIEvent
,
22377 _swigc__p_wxValidator
,
22378 _swigc__p_wxWindow
,
22379 _swigc__p_wxWindowCreateEvent
,
22380 _swigc__p_wxWindowDestroyEvent
,
22381 _swigc__p_wxXPMHandler
,
22385 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
22387 static swig_const_info swig_const_table
[] = {
22388 {0, 0, 0, 0.0, 0, 0}};
22393 /* -----------------------------------------------------------------------------
22394 * Type initialization:
22395 * This problem is tough by the requirement that no dynamic
22396 * memory is used. Also, since swig_type_info structures store pointers to
22397 * swig_cast_info structures and swig_cast_info structures store pointers back
22398 * to swig_type_info structures, we need some lookup code at initialization.
22399 * The idea is that swig generates all the structures that are needed.
22400 * The runtime then collects these partially filled structures.
22401 * The SWIG_InitializeModule function takes these initial arrays out of
22402 * swig_module, and does all the lookup, filling in the swig_module.types
22403 * array with the correct data and linking the correct swig_cast_info
22404 * structures together.
22406 * The generated swig_type_info structures are assigned staticly to an initial
22407 * array. We just loop though that array, and handle each type individually.
22408 * First we lookup if this type has been already loaded, and if so, use the
22409 * loaded structure instead of the generated one. Then we have to fill in the
22410 * cast linked list. The cast data is initially stored in something like a
22411 * two-dimensional array. Each row corresponds to a type (there are the same
22412 * number of rows as there are in the swig_type_initial array). Each entry in
22413 * a column is one of the swig_cast_info structures for that type.
22414 * The cast_initial array is actually an array of arrays, because each row has
22415 * a variable number of columns. So to actually build the cast linked list,
22416 * we find the array of casts associated with the type, and loop through it
22417 * adding the casts to the list. The one last trick we need to do is making
22418 * sure the type pointer in the swig_cast_info struct is correct.
22420 * First off, we lookup the cast->type name to see if it is already loaded.
22421 * There are three cases to handle:
22422 * 1) If the cast->type has already been loaded AND the type we are adding
22423 * casting info to has not been loaded (it is in this module), THEN we
22424 * replace the cast->type pointer with the type pointer that has already
22426 * 2) If BOTH types (the one we are adding casting info to, and the
22427 * cast->type) are loaded, THEN the cast info has already been loaded by
22428 * the previous module so we just ignore it.
22429 * 3) Finally, if cast->type has not already been loaded, then we add that
22430 * swig_cast_info to the linked list (because the cast->type) pointer will
22432 * ----------------------------------------------------------------------------- */
22442 #define SWIGRUNTIME_DEBUG
22446 SWIG_InitializeModule(void *clientdata
) {
22448 swig_module_info
*module_head
;
22449 static int init_run
= 0;
22451 clientdata
= clientdata
;
22453 if (init_run
) return;
22456 /* Initialize the swig_module */
22457 swig_module
.type_initial
= swig_type_initial
;
22458 swig_module
.cast_initial
= swig_cast_initial
;
22460 /* Try and load any already created modules */
22461 module_head
= SWIG_GetModule(clientdata
);
22463 swig_module
.next
= module_head
->next
;
22464 module_head
->next
= &swig_module
;
22466 /* This is the first module loaded */
22467 swig_module
.next
= &swig_module
;
22468 SWIG_SetModule(clientdata
, &swig_module
);
22471 /* Now work on filling in swig_module.types */
22472 #ifdef SWIGRUNTIME_DEBUG
22473 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
22475 for (i
= 0; i
< swig_module
.size
; ++i
) {
22476 swig_type_info
*type
= 0;
22477 swig_type_info
*ret
;
22478 swig_cast_info
*cast
;
22480 #ifdef SWIGRUNTIME_DEBUG
22481 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22484 /* if there is another module already loaded */
22485 if (swig_module
.next
!= &swig_module
) {
22486 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
22489 /* Overwrite clientdata field */
22490 #ifdef SWIGRUNTIME_DEBUG
22491 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
22493 if (swig_module
.type_initial
[i
]->clientdata
) {
22494 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
22495 #ifdef SWIGRUNTIME_DEBUG
22496 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
22500 type
= swig_module
.type_initial
[i
];
22503 /* Insert casting types */
22504 cast
= swig_module
.cast_initial
[i
];
22505 while (cast
->type
) {
22506 /* Don't need to add information already in the list */
22508 #ifdef SWIGRUNTIME_DEBUG
22509 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
22511 if (swig_module
.next
!= &swig_module
) {
22512 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
22513 #ifdef SWIGRUNTIME_DEBUG
22514 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
22518 if (type
== swig_module
.type_initial
[i
]) {
22519 #ifdef SWIGRUNTIME_DEBUG
22520 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
22525 /* Check for casting already in the list */
22526 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
22527 #ifdef SWIGRUNTIME_DEBUG
22528 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
22530 if (!ocast
) ret
= 0;
22535 #ifdef SWIGRUNTIME_DEBUG
22536 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
22539 type
->cast
->prev
= cast
;
22540 cast
->next
= type
->cast
;
22546 /* Set entry in modules->types array equal to the type */
22547 swig_module
.types
[i
] = type
;
22549 swig_module
.types
[i
] = 0;
22551 #ifdef SWIGRUNTIME_DEBUG
22552 printf("**** SWIG_InitializeModule: Cast List ******\n");
22553 for (i
= 0; i
< swig_module
.size
; ++i
) {
22555 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
22556 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22557 while (cast
->type
) {
22558 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
22562 printf("---- Total casts: %d\n",j
);
22564 printf("**** SWIG_InitializeModule: Cast List ******\n");
22568 /* This function will propagate the clientdata field of type to
22569 * any new swig_type_info structures that have been added into the list
22570 * of equivalent types. It is like calling
22571 * SWIG_TypeClientData(type, clientdata) a second time.
22574 SWIG_PropagateClientData(void) {
22576 swig_cast_info
*equiv
;
22577 static int init_run
= 0;
22579 if (init_run
) return;
22582 for (i
= 0; i
< swig_module
.size
; i
++) {
22583 if (swig_module
.types
[i
]->clientdata
) {
22584 equiv
= swig_module
.types
[i
]->cast
;
22586 if (!equiv
->converter
) {
22587 if (equiv
->type
&& !equiv
->type
->clientdata
)
22588 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
22590 equiv
= equiv
->next
;
22610 /* Python-specific SWIG API */
22611 #define SWIG_newvarlink() SWIG_Python_newvarlink()
22612 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
22613 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
22615 /* -----------------------------------------------------------------------------
22616 * global variable support code.
22617 * ----------------------------------------------------------------------------- */
22619 typedef struct swig_globalvar
{
22620 char *name
; /* Name of global variable */
22621 PyObject
*(*get_attr
)(void); /* Return the current value */
22622 int (*set_attr
)(PyObject
*); /* Set the value */
22623 struct swig_globalvar
*next
;
22626 typedef struct swig_varlinkobject
{
22628 swig_globalvar
*vars
;
22629 } swig_varlinkobject
;
22631 SWIGINTERN PyObject
*
22632 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
22633 return PyString_FromString("<Swig global variables>");
22636 SWIGINTERN PyObject
*
22637 swig_varlink_str(swig_varlinkobject
*v
) {
22638 PyObject
*str
= PyString_FromString("(");
22639 swig_globalvar
*var
;
22640 for (var
= v
->vars
; var
; var
=var
->next
) {
22641 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
22642 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
22644 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
22649 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
22650 PyObject
*str
= swig_varlink_str(v
);
22651 fprintf(fp
,"Swig global variables ");
22652 fprintf(fp
,"%s\n", PyString_AsString(str
));
22658 swig_varlink_dealloc(swig_varlinkobject
*v
) {
22659 swig_globalvar
*var
= v
->vars
;
22661 swig_globalvar
*n
= var
->next
;
22668 SWIGINTERN PyObject
*
22669 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
22670 PyObject
*res
= NULL
;
22671 swig_globalvar
*var
= v
->vars
;
22673 if (strcmp(var
->name
,n
) == 0) {
22674 res
= (*var
->get_attr
)();
22679 if (res
== NULL
&& !PyErr_Occurred()) {
22680 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22686 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
22688 swig_globalvar
*var
= v
->vars
;
22690 if (strcmp(var
->name
,n
) == 0) {
22691 res
= (*var
->set_attr
)(p
);
22696 if (res
== 1 && !PyErr_Occurred()) {
22697 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22702 SWIGINTERN PyTypeObject
*
22703 swig_varlink_type(void) {
22704 static char varlink__doc__
[] = "Swig var link object";
22705 static PyTypeObject varlink_type
;
22706 static int type_init
= 0;
22708 const PyTypeObject tmp
22710 PyObject_HEAD_INIT(NULL
)
22711 0, /* Number of items in variable part (ob_size) */
22712 (char *)"swigvarlink", /* Type name (tp_name) */
22713 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
22714 0, /* Itemsize (tp_itemsize) */
22715 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
22716 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
22717 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
22718 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
22719 0, /* tp_compare */
22720 (reprfunc
) swig_varlink_repr
, /* tp_repr */
22721 0, /* tp_as_number */
22722 0, /* tp_as_sequence */
22723 0, /* tp_as_mapping */
22726 (reprfunc
)swig_varlink_str
, /* tp_str */
22727 0, /* tp_getattro */
22728 0, /* tp_setattro */
22729 0, /* tp_as_buffer */
22731 varlink__doc__
, /* tp_doc */
22732 0, /* tp_traverse */
22734 0, /* tp_richcompare */
22735 0, /* tp_weaklistoffset */
22736 #if PY_VERSION_HEX >= 0x02020000
22737 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
22739 #if PY_VERSION_HEX >= 0x02030000
22742 #ifdef COUNT_ALLOCS
22743 0,0,0,0 /* tp_alloc -> tp_next */
22746 varlink_type
= tmp
;
22747 varlink_type
.ob_type
= &PyType_Type
;
22750 return &varlink_type
;
22753 /* Create a variable linking object for use later */
22754 SWIGINTERN PyObject
*
22755 SWIG_Python_newvarlink(void) {
22756 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
22760 return ((PyObject
*) result
);
22764 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
22765 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
22766 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
22768 size_t size
= strlen(name
)+1;
22769 gv
->name
= (char *)malloc(size
);
22771 strncpy(gv
->name
,name
,size
);
22772 gv
->get_attr
= get_attr
;
22773 gv
->set_attr
= set_attr
;
22774 gv
->next
= v
->vars
;
22780 SWIGINTERN PyObject
*
22782 static PyObject
*_SWIG_globals
= 0;
22783 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
22784 return _SWIG_globals
;
22787 /* -----------------------------------------------------------------------------
22788 * constants/methods manipulation
22789 * ----------------------------------------------------------------------------- */
22791 /* Install Constants */
22793 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
22796 for (i
= 0; constants
[i
].type
; ++i
) {
22797 switch(constants
[i
].type
) {
22798 case SWIG_PY_POINTER
:
22799 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
22801 case SWIG_PY_BINARY
:
22802 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
22809 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
22815 /* -----------------------------------------------------------------------------*/
22816 /* Fix SwigMethods to carry the callback ptrs when needed */
22817 /* -----------------------------------------------------------------------------*/
22820 SWIG_Python_FixMethods(PyMethodDef
*methods
,
22821 swig_const_info
*const_table
,
22822 swig_type_info
**types
,
22823 swig_type_info
**types_initial
) {
22825 for (i
= 0; methods
[i
].ml_name
; ++i
) {
22826 char *c
= methods
[i
].ml_doc
;
22827 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
22829 swig_const_info
*ci
= 0;
22830 char *name
= c
+ 10;
22831 for (j
= 0; const_table
[j
].type
; ++j
) {
22832 if (strncmp(const_table
[j
].name
, name
,
22833 strlen(const_table
[j
].name
)) == 0) {
22834 ci
= &(const_table
[j
]);
22839 size_t shift
= (ci
->ptype
) - types
;
22840 swig_type_info
*ty
= types_initial
[shift
];
22841 size_t ldoc
= (c
- methods
[i
].ml_doc
);
22842 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
22843 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
22846 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
22848 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
22850 strncpy(buff
, "swig_ptr: ", 10);
22852 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
22853 methods
[i
].ml_doc
= ndoc
;
22865 /* -----------------------------------------------------------------------------*
22866 * Partial Init method
22867 * -----------------------------------------------------------------------------*/
22872 SWIGEXPORT
void SWIG_init(void) {
22875 /* Fix SwigMethods to carry the callback ptrs when needed */
22876 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
22878 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
22879 d
= PyModule_GetDict(m
);
22881 SWIG_InitializeModule(0);
22882 SWIG_InstallConstants(d
,swig_const_table
);
22885 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
22886 SWIG_addvarlink(SWIG_globals(),(char*)"STCNameStr",STCNameStr_get
, STCNameStr_set
);
22887 SWIG_Python_SetConstant(d
, "STC_USE_DND",SWIG_From_int(static_cast< int >(1)));
22888 SWIG_Python_SetConstant(d
, "STC_USE_POPUP",SWIG_From_int(static_cast< int >(1)));
22889 SWIG_Python_SetConstant(d
, "STC_INVALID_POSITION",SWIG_From_int(static_cast< int >(-1)));
22890 SWIG_Python_SetConstant(d
, "STC_START",SWIG_From_int(static_cast< int >(2000)));
22891 SWIG_Python_SetConstant(d
, "STC_OPTIONAL_START",SWIG_From_int(static_cast< int >(3000)));
22892 SWIG_Python_SetConstant(d
, "STC_LEXER_START",SWIG_From_int(static_cast< int >(4000)));
22893 SWIG_Python_SetConstant(d
, "STC_WS_INVISIBLE",SWIG_From_int(static_cast< int >(0)));
22894 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEALWAYS",SWIG_From_int(static_cast< int >(1)));
22895 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEAFTERINDENT",SWIG_From_int(static_cast< int >(2)));
22896 SWIG_Python_SetConstant(d
, "STC_EOL_CRLF",SWIG_From_int(static_cast< int >(0)));
22897 SWIG_Python_SetConstant(d
, "STC_EOL_CR",SWIG_From_int(static_cast< int >(1)));
22898 SWIG_Python_SetConstant(d
, "STC_EOL_LF",SWIG_From_int(static_cast< int >(2)));
22899 SWIG_Python_SetConstant(d
, "STC_CP_UTF8",SWIG_From_int(static_cast< int >(65001)));
22900 SWIG_Python_SetConstant(d
, "STC_CP_DBCS",SWIG_From_int(static_cast< int >(1)));
22901 SWIG_Python_SetConstant(d
, "STC_MARKER_MAX",SWIG_From_int(static_cast< int >(31)));
22902 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLE",SWIG_From_int(static_cast< int >(0)));
22903 SWIG_Python_SetConstant(d
, "STC_MARK_ROUNDRECT",SWIG_From_int(static_cast< int >(1)));
22904 SWIG_Python_SetConstant(d
, "STC_MARK_ARROW",SWIG_From_int(static_cast< int >(2)));
22905 SWIG_Python_SetConstant(d
, "STC_MARK_SMALLRECT",SWIG_From_int(static_cast< int >(3)));
22906 SWIG_Python_SetConstant(d
, "STC_MARK_SHORTARROW",SWIG_From_int(static_cast< int >(4)));
22907 SWIG_Python_SetConstant(d
, "STC_MARK_EMPTY",SWIG_From_int(static_cast< int >(5)));
22908 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWDOWN",SWIG_From_int(static_cast< int >(6)));
22909 SWIG_Python_SetConstant(d
, "STC_MARK_MINUS",SWIG_From_int(static_cast< int >(7)));
22910 SWIG_Python_SetConstant(d
, "STC_MARK_PLUS",SWIG_From_int(static_cast< int >(8)));
22911 SWIG_Python_SetConstant(d
, "STC_MARK_VLINE",SWIG_From_int(static_cast< int >(9)));
22912 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNER",SWIG_From_int(static_cast< int >(10)));
22913 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNER",SWIG_From_int(static_cast< int >(11)));
22914 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUS",SWIG_From_int(static_cast< int >(12)));
22915 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUSCONNECTED",SWIG_From_int(static_cast< int >(13)));
22916 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUS",SWIG_From_int(static_cast< int >(14)));
22917 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUSCONNECTED",SWIG_From_int(static_cast< int >(15)));
22918 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNERCURVE",SWIG_From_int(static_cast< int >(16)));
22919 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNERCURVE",SWIG_From_int(static_cast< int >(17)));
22920 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUS",SWIG_From_int(static_cast< int >(18)));
22921 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUSCONNECTED",SWIG_From_int(static_cast< int >(19)));
22922 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUS",SWIG_From_int(static_cast< int >(20)));
22923 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUSCONNECTED",SWIG_From_int(static_cast< int >(21)));
22924 SWIG_Python_SetConstant(d
, "STC_MARK_BACKGROUND",SWIG_From_int(static_cast< int >(22)));
22925 SWIG_Python_SetConstant(d
, "STC_MARK_DOTDOTDOT",SWIG_From_int(static_cast< int >(23)));
22926 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWS",SWIG_From_int(static_cast< int >(24)));
22927 SWIG_Python_SetConstant(d
, "STC_MARK_PIXMAP",SWIG_From_int(static_cast< int >(25)));
22928 SWIG_Python_SetConstant(d
, "STC_MARK_FULLRECT",SWIG_From_int(static_cast< int >(26)));
22929 SWIG_Python_SetConstant(d
, "STC_MARK_CHARACTER",SWIG_From_int(static_cast< int >(10000)));
22930 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEREND",SWIG_From_int(static_cast< int >(25)));
22931 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPENMID",SWIG_From_int(static_cast< int >(26)));
22932 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERMIDTAIL",SWIG_From_int(static_cast< int >(27)));
22933 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERTAIL",SWIG_From_int(static_cast< int >(28)));
22934 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERSUB",SWIG_From_int(static_cast< int >(29)));
22935 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDER",SWIG_From_int(static_cast< int >(30)));
22936 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPEN",SWIG_From_int(static_cast< int >(31)));
22937 SWIG_Python_SetConstant(d
, "STC_MASK_FOLDERS",SWIG_From_int(static_cast< int >(0xFE000000)));
22938 SWIG_Python_SetConstant(d
, "STC_MARGIN_SYMBOL",SWIG_From_int(static_cast< int >(0)));
22939 SWIG_Python_SetConstant(d
, "STC_MARGIN_NUMBER",SWIG_From_int(static_cast< int >(1)));
22940 SWIG_Python_SetConstant(d
, "STC_STYLE_DEFAULT",SWIG_From_int(static_cast< int >(32)));
22941 SWIG_Python_SetConstant(d
, "STC_STYLE_LINENUMBER",SWIG_From_int(static_cast< int >(33)));
22942 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACELIGHT",SWIG_From_int(static_cast< int >(34)));
22943 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACEBAD",SWIG_From_int(static_cast< int >(35)));
22944 SWIG_Python_SetConstant(d
, "STC_STYLE_CONTROLCHAR",SWIG_From_int(static_cast< int >(36)));
22945 SWIG_Python_SetConstant(d
, "STC_STYLE_INDENTGUIDE",SWIG_From_int(static_cast< int >(37)));
22946 SWIG_Python_SetConstant(d
, "STC_STYLE_LASTPREDEFINED",SWIG_From_int(static_cast< int >(39)));
22947 SWIG_Python_SetConstant(d
, "STC_STYLE_MAX",SWIG_From_int(static_cast< int >(127)));
22948 SWIG_Python_SetConstant(d
, "STC_CHARSET_ANSI",SWIG_From_int(static_cast< int >(0)));
22949 SWIG_Python_SetConstant(d
, "STC_CHARSET_DEFAULT",SWIG_From_int(static_cast< int >(1)));
22950 SWIG_Python_SetConstant(d
, "STC_CHARSET_BALTIC",SWIG_From_int(static_cast< int >(186)));
22951 SWIG_Python_SetConstant(d
, "STC_CHARSET_CHINESEBIG5",SWIG_From_int(static_cast< int >(136)));
22952 SWIG_Python_SetConstant(d
, "STC_CHARSET_EASTEUROPE",SWIG_From_int(static_cast< int >(238)));
22953 SWIG_Python_SetConstant(d
, "STC_CHARSET_GB2312",SWIG_From_int(static_cast< int >(134)));
22954 SWIG_Python_SetConstant(d
, "STC_CHARSET_GREEK",SWIG_From_int(static_cast< int >(161)));
22955 SWIG_Python_SetConstant(d
, "STC_CHARSET_HANGUL",SWIG_From_int(static_cast< int >(129)));
22956 SWIG_Python_SetConstant(d
, "STC_CHARSET_MAC",SWIG_From_int(static_cast< int >(77)));
22957 SWIG_Python_SetConstant(d
, "STC_CHARSET_OEM",SWIG_From_int(static_cast< int >(255)));
22958 SWIG_Python_SetConstant(d
, "STC_CHARSET_RUSSIAN",SWIG_From_int(static_cast< int >(204)));
22959 SWIG_Python_SetConstant(d
, "STC_CHARSET_CYRILLIC",SWIG_From_int(static_cast< int >(1251)));
22960 SWIG_Python_SetConstant(d
, "STC_CHARSET_SHIFTJIS",SWIG_From_int(static_cast< int >(128)));
22961 SWIG_Python_SetConstant(d
, "STC_CHARSET_SYMBOL",SWIG_From_int(static_cast< int >(2)));
22962 SWIG_Python_SetConstant(d
, "STC_CHARSET_TURKISH",SWIG_From_int(static_cast< int >(162)));
22963 SWIG_Python_SetConstant(d
, "STC_CHARSET_JOHAB",SWIG_From_int(static_cast< int >(130)));
22964 SWIG_Python_SetConstant(d
, "STC_CHARSET_HEBREW",SWIG_From_int(static_cast< int >(177)));
22965 SWIG_Python_SetConstant(d
, "STC_CHARSET_ARABIC",SWIG_From_int(static_cast< int >(178)));
22966 SWIG_Python_SetConstant(d
, "STC_CHARSET_VIETNAMESE",SWIG_From_int(static_cast< int >(163)));
22967 SWIG_Python_SetConstant(d
, "STC_CHARSET_THAI",SWIG_From_int(static_cast< int >(222)));
22968 SWIG_Python_SetConstant(d
, "STC_CHARSET_8859_15",SWIG_From_int(static_cast< int >(1000)));
22969 SWIG_Python_SetConstant(d
, "STC_CASE_MIXED",SWIG_From_int(static_cast< int >(0)));
22970 SWIG_Python_SetConstant(d
, "STC_CASE_UPPER",SWIG_From_int(static_cast< int >(1)));
22971 SWIG_Python_SetConstant(d
, "STC_CASE_LOWER",SWIG_From_int(static_cast< int >(2)));
22972 SWIG_Python_SetConstant(d
, "STC_INDIC_MAX",SWIG_From_int(static_cast< int >(7)));
22973 SWIG_Python_SetConstant(d
, "STC_INDIC_PLAIN",SWIG_From_int(static_cast< int >(0)));
22974 SWIG_Python_SetConstant(d
, "STC_INDIC_SQUIGGLE",SWIG_From_int(static_cast< int >(1)));
22975 SWIG_Python_SetConstant(d
, "STC_INDIC_TT",SWIG_From_int(static_cast< int >(2)));
22976 SWIG_Python_SetConstant(d
, "STC_INDIC_DIAGONAL",SWIG_From_int(static_cast< int >(3)));
22977 SWIG_Python_SetConstant(d
, "STC_INDIC_STRIKE",SWIG_From_int(static_cast< int >(4)));
22978 SWIG_Python_SetConstant(d
, "STC_INDIC_HIDDEN",SWIG_From_int(static_cast< int >(5)));
22979 SWIG_Python_SetConstant(d
, "STC_INDIC_BOX",SWIG_From_int(static_cast< int >(6)));
22980 SWIG_Python_SetConstant(d
, "STC_INDIC0_MASK",SWIG_From_int(static_cast< int >(0x20)));
22981 SWIG_Python_SetConstant(d
, "STC_INDIC1_MASK",SWIG_From_int(static_cast< int >(0x40)));
22982 SWIG_Python_SetConstant(d
, "STC_INDIC2_MASK",SWIG_From_int(static_cast< int >(0x80)));
22983 SWIG_Python_SetConstant(d
, "STC_INDICS_MASK",SWIG_From_int(static_cast< int >(0xE0)));
22984 SWIG_Python_SetConstant(d
, "STC_PRINT_NORMAL",SWIG_From_int(static_cast< int >(0)));
22985 SWIG_Python_SetConstant(d
, "STC_PRINT_INVERTLIGHT",SWIG_From_int(static_cast< int >(1)));
22986 SWIG_Python_SetConstant(d
, "STC_PRINT_BLACKONWHITE",SWIG_From_int(static_cast< int >(2)));
22987 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITE",SWIG_From_int(static_cast< int >(3)));
22988 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITEDEFAULTBG",SWIG_From_int(static_cast< int >(4)));
22989 SWIG_Python_SetConstant(d
, "STC_FIND_WHOLEWORD",SWIG_From_int(static_cast< int >(2)));
22990 SWIG_Python_SetConstant(d
, "STC_FIND_MATCHCASE",SWIG_From_int(static_cast< int >(4)));
22991 SWIG_Python_SetConstant(d
, "STC_FIND_WORDSTART",SWIG_From_int(static_cast< int >(0x00100000)));
22992 SWIG_Python_SetConstant(d
, "STC_FIND_REGEXP",SWIG_From_int(static_cast< int >(0x00200000)));
22993 SWIG_Python_SetConstant(d
, "STC_FIND_POSIX",SWIG_From_int(static_cast< int >(0x00400000)));
22994 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBASE",SWIG_From_int(static_cast< int >(0x400)));
22995 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELWHITEFLAG",SWIG_From_int(static_cast< int >(0x1000)));
22996 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELHEADERFLAG",SWIG_From_int(static_cast< int >(0x2000)));
22997 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXHEADERFLAG",SWIG_From_int(static_cast< int >(0x4000)));
22998 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXFOOTERFLAG",SWIG_From_int(static_cast< int >(0x8000)));
22999 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELCONTRACTED",SWIG_From_int(static_cast< int >(0x10000)));
23000 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELUNINDENT",SWIG_From_int(static_cast< int >(0x20000)));
23001 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELNUMBERMASK",SWIG_From_int(static_cast< int >(0x0FFF)));
23002 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_EXPANDED",SWIG_From_int(static_cast< int >(0x0002)));
23003 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_CONTRACTED",SWIG_From_int(static_cast< int >(0x0004)));
23004 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_EXPANDED",SWIG_From_int(static_cast< int >(0x0008)));
23005 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_CONTRACTED",SWIG_From_int(static_cast< int >(0x0010)));
23006 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LEVELNUMBERS",SWIG_From_int(static_cast< int >(0x0040)));
23007 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_BOX",SWIG_From_int(static_cast< int >(0x0001)));
23008 SWIG_Python_SetConstant(d
, "STC_TIME_FOREVER",SWIG_From_int(static_cast< int >(10000000)));
23009 SWIG_Python_SetConstant(d
, "STC_WRAP_NONE",SWIG_From_int(static_cast< int >(0)));
23010 SWIG_Python_SetConstant(d
, "STC_WRAP_WORD",SWIG_From_int(static_cast< int >(1)));
23011 SWIG_Python_SetConstant(d
, "STC_WRAP_CHAR",SWIG_From_int(static_cast< int >(2)));
23012 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_NONE",SWIG_From_int(static_cast< int >(0x0000)));
23013 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_END",SWIG_From_int(static_cast< int >(0x0001)));
23014 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_START",SWIG_From_int(static_cast< int >(0x0002)));
23015 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_DEFAULT",SWIG_From_int(static_cast< int >(0x0000)));
23016 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_END_BY_TEXT",SWIG_From_int(static_cast< int >(0x0001)));
23017 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_START_BY_TEXT",SWIG_From_int(static_cast< int >(0x0002)));
23018 SWIG_Python_SetConstant(d
, "STC_CACHE_NONE",SWIG_From_int(static_cast< int >(0)));
23019 SWIG_Python_SetConstant(d
, "STC_CACHE_CARET",SWIG_From_int(static_cast< int >(1)));
23020 SWIG_Python_SetConstant(d
, "STC_CACHE_PAGE",SWIG_From_int(static_cast< int >(2)));
23021 SWIG_Python_SetConstant(d
, "STC_CACHE_DOCUMENT",SWIG_From_int(static_cast< int >(3)));
23022 SWIG_Python_SetConstant(d
, "STC_EDGE_NONE",SWIG_From_int(static_cast< int >(0)));
23023 SWIG_Python_SetConstant(d
, "STC_EDGE_LINE",SWIG_From_int(static_cast< int >(1)));
23024 SWIG_Python_SetConstant(d
, "STC_EDGE_BACKGROUND",SWIG_From_int(static_cast< int >(2)));
23025 SWIG_Python_SetConstant(d
, "STC_CURSORNORMAL",SWIG_From_int(static_cast< int >(-1)));
23026 SWIG_Python_SetConstant(d
, "STC_CURSORWAIT",SWIG_From_int(static_cast< int >(4)));
23027 SWIG_Python_SetConstant(d
, "STC_VISIBLE_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23028 SWIG_Python_SetConstant(d
, "STC_VISIBLE_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23029 SWIG_Python_SetConstant(d
, "STC_CARET_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23030 SWIG_Python_SetConstant(d
, "STC_CARET_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23031 SWIG_Python_SetConstant(d
, "STC_CARET_JUMPS",SWIG_From_int(static_cast< int >(0x10)));
23032 SWIG_Python_SetConstant(d
, "STC_CARET_EVEN",SWIG_From_int(static_cast< int >(0x08)));
23033 SWIG_Python_SetConstant(d
, "STC_SEL_STREAM",SWIG_From_int(static_cast< int >(0)));
23034 SWIG_Python_SetConstant(d
, "STC_SEL_RECTANGLE",SWIG_From_int(static_cast< int >(1)));
23035 SWIG_Python_SetConstant(d
, "STC_SEL_LINES",SWIG_From_int(static_cast< int >(2)));
23036 SWIG_Python_SetConstant(d
, "STC_KEYWORDSET_MAX",SWIG_From_int(static_cast< int >(8)));
23037 SWIG_Python_SetConstant(d
, "STC_MOD_INSERTTEXT",SWIG_From_int(static_cast< int >(0x1)));
23038 SWIG_Python_SetConstant(d
, "STC_MOD_DELETETEXT",SWIG_From_int(static_cast< int >(0x2)));
23039 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGESTYLE",SWIG_From_int(static_cast< int >(0x4)));
23040 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEFOLD",SWIG_From_int(static_cast< int >(0x8)));
23041 SWIG_Python_SetConstant(d
, "STC_PERFORMED_USER",SWIG_From_int(static_cast< int >(0x10)));
23042 SWIG_Python_SetConstant(d
, "STC_PERFORMED_UNDO",SWIG_From_int(static_cast< int >(0x20)));
23043 SWIG_Python_SetConstant(d
, "STC_PERFORMED_REDO",SWIG_From_int(static_cast< int >(0x40)));
23044 SWIG_Python_SetConstant(d
, "STC_MULTISTEPUNDOREDO",SWIG_From_int(static_cast< int >(0x80)));
23045 SWIG_Python_SetConstant(d
, "STC_LASTSTEPINUNDOREDO",SWIG_From_int(static_cast< int >(0x100)));
23046 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEMARKER",SWIG_From_int(static_cast< int >(0x200)));
23047 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREINSERT",SWIG_From_int(static_cast< int >(0x400)));
23048 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREDELETE",SWIG_From_int(static_cast< int >(0x800)));
23049 SWIG_Python_SetConstant(d
, "STC_MULTILINEUNDOREDO",SWIG_From_int(static_cast< int >(0x1000)));
23050 SWIG_Python_SetConstant(d
, "STC_MODEVENTMASKALL",SWIG_From_int(static_cast< int >(0x1FFF)));
23051 SWIG_Python_SetConstant(d
, "STC_KEY_DOWN",SWIG_From_int(static_cast< int >(300)));
23052 SWIG_Python_SetConstant(d
, "STC_KEY_UP",SWIG_From_int(static_cast< int >(301)));
23053 SWIG_Python_SetConstant(d
, "STC_KEY_LEFT",SWIG_From_int(static_cast< int >(302)));
23054 SWIG_Python_SetConstant(d
, "STC_KEY_RIGHT",SWIG_From_int(static_cast< int >(303)));
23055 SWIG_Python_SetConstant(d
, "STC_KEY_HOME",SWIG_From_int(static_cast< int >(304)));
23056 SWIG_Python_SetConstant(d
, "STC_KEY_END",SWIG_From_int(static_cast< int >(305)));
23057 SWIG_Python_SetConstant(d
, "STC_KEY_PRIOR",SWIG_From_int(static_cast< int >(306)));
23058 SWIG_Python_SetConstant(d
, "STC_KEY_NEXT",SWIG_From_int(static_cast< int >(307)));
23059 SWIG_Python_SetConstant(d
, "STC_KEY_DELETE",SWIG_From_int(static_cast< int >(308)));
23060 SWIG_Python_SetConstant(d
, "STC_KEY_INSERT",SWIG_From_int(static_cast< int >(309)));
23061 SWIG_Python_SetConstant(d
, "STC_KEY_ESCAPE",SWIG_From_int(static_cast< int >(7)));
23062 SWIG_Python_SetConstant(d
, "STC_KEY_BACK",SWIG_From_int(static_cast< int >(8)));
23063 SWIG_Python_SetConstant(d
, "STC_KEY_TAB",SWIG_From_int(static_cast< int >(9)));
23064 SWIG_Python_SetConstant(d
, "STC_KEY_RETURN",SWIG_From_int(static_cast< int >(13)));
23065 SWIG_Python_SetConstant(d
, "STC_KEY_ADD",SWIG_From_int(static_cast< int >(310)));
23066 SWIG_Python_SetConstant(d
, "STC_KEY_SUBTRACT",SWIG_From_int(static_cast< int >(311)));
23067 SWIG_Python_SetConstant(d
, "STC_KEY_DIVIDE",SWIG_From_int(static_cast< int >(312)));
23068 SWIG_Python_SetConstant(d
, "STC_SCMOD_NORM",SWIG_From_int(static_cast< int >(0)));
23069 SWIG_Python_SetConstant(d
, "STC_SCMOD_SHIFT",SWIG_From_int(static_cast< int >(1)));
23070 SWIG_Python_SetConstant(d
, "STC_SCMOD_CTRL",SWIG_From_int(static_cast< int >(2)));
23071 SWIG_Python_SetConstant(d
, "STC_SCMOD_ALT",SWIG_From_int(static_cast< int >(4)));
23072 SWIG_Python_SetConstant(d
, "STC_LEX_CONTAINER",SWIG_From_int(static_cast< int >(0)));
23073 SWIG_Python_SetConstant(d
, "STC_LEX_NULL",SWIG_From_int(static_cast< int >(1)));
23074 SWIG_Python_SetConstant(d
, "STC_LEX_PYTHON",SWIG_From_int(static_cast< int >(2)));
23075 SWIG_Python_SetConstant(d
, "STC_LEX_CPP",SWIG_From_int(static_cast< int >(3)));
23076 SWIG_Python_SetConstant(d
, "STC_LEX_HTML",SWIG_From_int(static_cast< int >(4)));
23077 SWIG_Python_SetConstant(d
, "STC_LEX_XML",SWIG_From_int(static_cast< int >(5)));
23078 SWIG_Python_SetConstant(d
, "STC_LEX_PERL",SWIG_From_int(static_cast< int >(6)));
23079 SWIG_Python_SetConstant(d
, "STC_LEX_SQL",SWIG_From_int(static_cast< int >(7)));
23080 SWIG_Python_SetConstant(d
, "STC_LEX_VB",SWIG_From_int(static_cast< int >(8)));
23081 SWIG_Python_SetConstant(d
, "STC_LEX_PROPERTIES",SWIG_From_int(static_cast< int >(9)));
23082 SWIG_Python_SetConstant(d
, "STC_LEX_ERRORLIST",SWIG_From_int(static_cast< int >(10)));
23083 SWIG_Python_SetConstant(d
, "STC_LEX_MAKEFILE",SWIG_From_int(static_cast< int >(11)));
23084 SWIG_Python_SetConstant(d
, "STC_LEX_BATCH",SWIG_From_int(static_cast< int >(12)));
23085 SWIG_Python_SetConstant(d
, "STC_LEX_XCODE",SWIG_From_int(static_cast< int >(13)));
23086 SWIG_Python_SetConstant(d
, "STC_LEX_LATEX",SWIG_From_int(static_cast< int >(14)));
23087 SWIG_Python_SetConstant(d
, "STC_LEX_LUA",SWIG_From_int(static_cast< int >(15)));
23088 SWIG_Python_SetConstant(d
, "STC_LEX_DIFF",SWIG_From_int(static_cast< int >(16)));
23089 SWIG_Python_SetConstant(d
, "STC_LEX_CONF",SWIG_From_int(static_cast< int >(17)));
23090 SWIG_Python_SetConstant(d
, "STC_LEX_PASCAL",SWIG_From_int(static_cast< int >(18)));
23091 SWIG_Python_SetConstant(d
, "STC_LEX_AVE",SWIG_From_int(static_cast< int >(19)));
23092 SWIG_Python_SetConstant(d
, "STC_LEX_ADA",SWIG_From_int(static_cast< int >(20)));
23093 SWIG_Python_SetConstant(d
, "STC_LEX_LISP",SWIG_From_int(static_cast< int >(21)));
23094 SWIG_Python_SetConstant(d
, "STC_LEX_RUBY",SWIG_From_int(static_cast< int >(22)));
23095 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFEL",SWIG_From_int(static_cast< int >(23)));
23096 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFELKW",SWIG_From_int(static_cast< int >(24)));
23097 SWIG_Python_SetConstant(d
, "STC_LEX_TCL",SWIG_From_int(static_cast< int >(25)));
23098 SWIG_Python_SetConstant(d
, "STC_LEX_NNCRONTAB",SWIG_From_int(static_cast< int >(26)));
23099 SWIG_Python_SetConstant(d
, "STC_LEX_BULLANT",SWIG_From_int(static_cast< int >(27)));
23100 SWIG_Python_SetConstant(d
, "STC_LEX_VBSCRIPT",SWIG_From_int(static_cast< int >(28)));
23101 SWIG_Python_SetConstant(d
, "STC_LEX_BAAN",SWIG_From_int(static_cast< int >(31)));
23102 SWIG_Python_SetConstant(d
, "STC_LEX_MATLAB",SWIG_From_int(static_cast< int >(32)));
23103 SWIG_Python_SetConstant(d
, "STC_LEX_SCRIPTOL",SWIG_From_int(static_cast< int >(33)));
23104 SWIG_Python_SetConstant(d
, "STC_LEX_ASM",SWIG_From_int(static_cast< int >(34)));
23105 SWIG_Python_SetConstant(d
, "STC_LEX_CPPNOCASE",SWIG_From_int(static_cast< int >(35)));
23106 SWIG_Python_SetConstant(d
, "STC_LEX_FORTRAN",SWIG_From_int(static_cast< int >(36)));
23107 SWIG_Python_SetConstant(d
, "STC_LEX_F77",SWIG_From_int(static_cast< int >(37)));
23108 SWIG_Python_SetConstant(d
, "STC_LEX_CSS",SWIG_From_int(static_cast< int >(38)));
23109 SWIG_Python_SetConstant(d
, "STC_LEX_POV",SWIG_From_int(static_cast< int >(39)));
23110 SWIG_Python_SetConstant(d
, "STC_LEX_LOUT",SWIG_From_int(static_cast< int >(40)));
23111 SWIG_Python_SetConstant(d
, "STC_LEX_ESCRIPT",SWIG_From_int(static_cast< int >(41)));
23112 SWIG_Python_SetConstant(d
, "STC_LEX_PS",SWIG_From_int(static_cast< int >(42)));
23113 SWIG_Python_SetConstant(d
, "STC_LEX_NSIS",SWIG_From_int(static_cast< int >(43)));
23114 SWIG_Python_SetConstant(d
, "STC_LEX_MMIXAL",SWIG_From_int(static_cast< int >(44)));
23115 SWIG_Python_SetConstant(d
, "STC_LEX_CLW",SWIG_From_int(static_cast< int >(45)));
23116 SWIG_Python_SetConstant(d
, "STC_LEX_CLWNOCASE",SWIG_From_int(static_cast< int >(46)));
23117 SWIG_Python_SetConstant(d
, "STC_LEX_LOT",SWIG_From_int(static_cast< int >(47)));
23118 SWIG_Python_SetConstant(d
, "STC_LEX_YAML",SWIG_From_int(static_cast< int >(48)));
23119 SWIG_Python_SetConstant(d
, "STC_LEX_TEX",SWIG_From_int(static_cast< int >(49)));
23120 SWIG_Python_SetConstant(d
, "STC_LEX_METAPOST",SWIG_From_int(static_cast< int >(50)));
23121 SWIG_Python_SetConstant(d
, "STC_LEX_POWERBASIC",SWIG_From_int(static_cast< int >(51)));
23122 SWIG_Python_SetConstant(d
, "STC_LEX_FORTH",SWIG_From_int(static_cast< int >(52)));
23123 SWIG_Python_SetConstant(d
, "STC_LEX_ERLANG",SWIG_From_int(static_cast< int >(53)));
23124 SWIG_Python_SetConstant(d
, "STC_LEX_OCTAVE",SWIG_From_int(static_cast< int >(54)));
23125 SWIG_Python_SetConstant(d
, "STC_LEX_MSSQL",SWIG_From_int(static_cast< int >(55)));
23126 SWIG_Python_SetConstant(d
, "STC_LEX_VERILOG",SWIG_From_int(static_cast< int >(56)));
23127 SWIG_Python_SetConstant(d
, "STC_LEX_KIX",SWIG_From_int(static_cast< int >(57)));
23128 SWIG_Python_SetConstant(d
, "STC_LEX_GUI4CLI",SWIG_From_int(static_cast< int >(58)));
23129 SWIG_Python_SetConstant(d
, "STC_LEX_SPECMAN",SWIG_From_int(static_cast< int >(59)));
23130 SWIG_Python_SetConstant(d
, "STC_LEX_AU3",SWIG_From_int(static_cast< int >(60)));
23131 SWIG_Python_SetConstant(d
, "STC_LEX_APDL",SWIG_From_int(static_cast< int >(61)));
23132 SWIG_Python_SetConstant(d
, "STC_LEX_BASH",SWIG_From_int(static_cast< int >(62)));
23133 SWIG_Python_SetConstant(d
, "STC_LEX_ASN1",SWIG_From_int(static_cast< int >(63)));
23134 SWIG_Python_SetConstant(d
, "STC_LEX_VHDL",SWIG_From_int(static_cast< int >(64)));
23135 SWIG_Python_SetConstant(d
, "STC_LEX_CAML",SWIG_From_int(static_cast< int >(65)));
23136 SWIG_Python_SetConstant(d
, "STC_LEX_BLITZBASIC",SWIG_From_int(static_cast< int >(66)));
23137 SWIG_Python_SetConstant(d
, "STC_LEX_PUREBASIC",SWIG_From_int(static_cast< int >(67)));
23138 SWIG_Python_SetConstant(d
, "STC_LEX_HASKELL",SWIG_From_int(static_cast< int >(68)));
23139 SWIG_Python_SetConstant(d
, "STC_LEX_PHPSCRIPT",SWIG_From_int(static_cast< int >(69)));
23140 SWIG_Python_SetConstant(d
, "STC_LEX_TADS3",SWIG_From_int(static_cast< int >(70)));
23141 SWIG_Python_SetConstant(d
, "STC_LEX_REBOL",SWIG_From_int(static_cast< int >(71)));
23142 SWIG_Python_SetConstant(d
, "STC_LEX_SMALLTALK",SWIG_From_int(static_cast< int >(72)));
23143 SWIG_Python_SetConstant(d
, "STC_LEX_FLAGSHIP",SWIG_From_int(static_cast< int >(73)));
23144 SWIG_Python_SetConstant(d
, "STC_LEX_CSOUND",SWIG_From_int(static_cast< int >(74)));
23145 SWIG_Python_SetConstant(d
, "STC_LEX_FREEBASIC",SWIG_From_int(static_cast< int >(75)));
23146 SWIG_Python_SetConstant(d
, "STC_LEX_ASP",SWIG_From_int(static_cast< int >(29)));
23147 SWIG_Python_SetConstant(d
, "STC_LEX_PHP",SWIG_From_int(static_cast< int >(30)));
23148 SWIG_Python_SetConstant(d
, "STC_LEX_AUTOMATIC",SWIG_From_int(static_cast< int >(1000)));
23149 SWIG_Python_SetConstant(d
, "STC_P_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23150 SWIG_Python_SetConstant(d
, "STC_P_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23151 SWIG_Python_SetConstant(d
, "STC_P_NUMBER",SWIG_From_int(static_cast< int >(2)));
23152 SWIG_Python_SetConstant(d
, "STC_P_STRING",SWIG_From_int(static_cast< int >(3)));
23153 SWIG_Python_SetConstant(d
, "STC_P_CHARACTER",SWIG_From_int(static_cast< int >(4)));
23154 SWIG_Python_SetConstant(d
, "STC_P_WORD",SWIG_From_int(static_cast< int >(5)));
23155 SWIG_Python_SetConstant(d
, "STC_P_TRIPLE",SWIG_From_int(static_cast< int >(6)));
23156 SWIG_Python_SetConstant(d
, "STC_P_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(7)));
23157 SWIG_Python_SetConstant(d
, "STC_P_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23158 SWIG_Python_SetConstant(d
, "STC_P_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23159 SWIG_Python_SetConstant(d
, "STC_P_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23160 SWIG_Python_SetConstant(d
, "STC_P_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23161 SWIG_Python_SetConstant(d
, "STC_P_COMMENTBLOCK",SWIG_From_int(static_cast< int >(12)));
23162 SWIG_Python_SetConstant(d
, "STC_P_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23163 SWIG_Python_SetConstant(d
, "STC_P_WORD2",SWIG_From_int(static_cast< int >(14)));
23164 SWIG_Python_SetConstant(d
, "STC_P_DECORATOR",SWIG_From_int(static_cast< int >(15)));
23165 SWIG_Python_SetConstant(d
, "STC_C_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23166 SWIG_Python_SetConstant(d
, "STC_C_COMMENT",SWIG_From_int(static_cast< int >(1)));
23167 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23168 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23169 SWIG_Python_SetConstant(d
, "STC_C_NUMBER",SWIG_From_int(static_cast< int >(4)));
23170 SWIG_Python_SetConstant(d
, "STC_C_WORD",SWIG_From_int(static_cast< int >(5)));
23171 SWIG_Python_SetConstant(d
, "STC_C_STRING",SWIG_From_int(static_cast< int >(6)));
23172 SWIG_Python_SetConstant(d
, "STC_C_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23173 SWIG_Python_SetConstant(d
, "STC_C_UUID",SWIG_From_int(static_cast< int >(8)));
23174 SWIG_Python_SetConstant(d
, "STC_C_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23175 SWIG_Python_SetConstant(d
, "STC_C_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23176 SWIG_Python_SetConstant(d
, "STC_C_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23177 SWIG_Python_SetConstant(d
, "STC_C_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23178 SWIG_Python_SetConstant(d
, "STC_C_VERBATIM",SWIG_From_int(static_cast< int >(13)));
23179 SWIG_Python_SetConstant(d
, "STC_C_REGEX",SWIG_From_int(static_cast< int >(14)));
23180 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
23181 SWIG_Python_SetConstant(d
, "STC_C_WORD2",SWIG_From_int(static_cast< int >(16)));
23182 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
23183 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
23184 SWIG_Python_SetConstant(d
, "STC_C_GLOBALCLASS",SWIG_From_int(static_cast< int >(19)));
23185 SWIG_Python_SetConstant(d
, "STC_H_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23186 SWIG_Python_SetConstant(d
, "STC_H_TAG",SWIG_From_int(static_cast< int >(1)));
23187 SWIG_Python_SetConstant(d
, "STC_H_TAGUNKNOWN",SWIG_From_int(static_cast< int >(2)));
23188 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTE",SWIG_From_int(static_cast< int >(3)));
23189 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTEUNKNOWN",SWIG_From_int(static_cast< int >(4)));
23190 SWIG_Python_SetConstant(d
, "STC_H_NUMBER",SWIG_From_int(static_cast< int >(5)));
23191 SWIG_Python_SetConstant(d
, "STC_H_DOUBLESTRING",SWIG_From_int(static_cast< int >(6)));
23192 SWIG_Python_SetConstant(d
, "STC_H_SINGLESTRING",SWIG_From_int(static_cast< int >(7)));
23193 SWIG_Python_SetConstant(d
, "STC_H_OTHER",SWIG_From_int(static_cast< int >(8)));
23194 SWIG_Python_SetConstant(d
, "STC_H_COMMENT",SWIG_From_int(static_cast< int >(9)));
23195 SWIG_Python_SetConstant(d
, "STC_H_ENTITY",SWIG_From_int(static_cast< int >(10)));
23196 SWIG_Python_SetConstant(d
, "STC_H_TAGEND",SWIG_From_int(static_cast< int >(11)));
23197 SWIG_Python_SetConstant(d
, "STC_H_XMLSTART",SWIG_From_int(static_cast< int >(12)));
23198 SWIG_Python_SetConstant(d
, "STC_H_XMLEND",SWIG_From_int(static_cast< int >(13)));
23199 SWIG_Python_SetConstant(d
, "STC_H_SCRIPT",SWIG_From_int(static_cast< int >(14)));
23200 SWIG_Python_SetConstant(d
, "STC_H_ASP",SWIG_From_int(static_cast< int >(15)));
23201 SWIG_Python_SetConstant(d
, "STC_H_ASPAT",SWIG_From_int(static_cast< int >(16)));
23202 SWIG_Python_SetConstant(d
, "STC_H_CDATA",SWIG_From_int(static_cast< int >(17)));
23203 SWIG_Python_SetConstant(d
, "STC_H_QUESTION",SWIG_From_int(static_cast< int >(18)));
23204 SWIG_Python_SetConstant(d
, "STC_H_VALUE",SWIG_From_int(static_cast< int >(19)));
23205 SWIG_Python_SetConstant(d
, "STC_H_XCCOMMENT",SWIG_From_int(static_cast< int >(20)));
23206 SWIG_Python_SetConstant(d
, "STC_H_SGML_DEFAULT",SWIG_From_int(static_cast< int >(21)));
23207 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMAND",SWIG_From_int(static_cast< int >(22)));
23208 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM",SWIG_From_int(static_cast< int >(23)));
23209 SWIG_Python_SetConstant(d
, "STC_H_SGML_DOUBLESTRING",SWIG_From_int(static_cast< int >(24)));
23210 SWIG_Python_SetConstant(d
, "STC_H_SGML_SIMPLESTRING",SWIG_From_int(static_cast< int >(25)));
23211 SWIG_Python_SetConstant(d
, "STC_H_SGML_ERROR",SWIG_From_int(static_cast< int >(26)));
23212 SWIG_Python_SetConstant(d
, "STC_H_SGML_SPECIAL",SWIG_From_int(static_cast< int >(27)));
23213 SWIG_Python_SetConstant(d
, "STC_H_SGML_ENTITY",SWIG_From_int(static_cast< int >(28)));
23214 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMENT",SWIG_From_int(static_cast< int >(29)));
23215 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM_COMMENT",SWIG_From_int(static_cast< int >(30)));
23216 SWIG_Python_SetConstant(d
, "STC_H_SGML_BLOCK_DEFAULT",SWIG_From_int(static_cast< int >(31)));
23217 SWIG_Python_SetConstant(d
, "STC_HJ_START",SWIG_From_int(static_cast< int >(40)));
23218 SWIG_Python_SetConstant(d
, "STC_HJ_DEFAULT",SWIG_From_int(static_cast< int >(41)));
23219 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENT",SWIG_From_int(static_cast< int >(42)));
23220 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTLINE",SWIG_From_int(static_cast< int >(43)));
23221 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTDOC",SWIG_From_int(static_cast< int >(44)));
23222 SWIG_Python_SetConstant(d
, "STC_HJ_NUMBER",SWIG_From_int(static_cast< int >(45)));
23223 SWIG_Python_SetConstant(d
, "STC_HJ_WORD",SWIG_From_int(static_cast< int >(46)));
23224 SWIG_Python_SetConstant(d
, "STC_HJ_KEYWORD",SWIG_From_int(static_cast< int >(47)));
23225 SWIG_Python_SetConstant(d
, "STC_HJ_DOUBLESTRING",SWIG_From_int(static_cast< int >(48)));
23226 SWIG_Python_SetConstant(d
, "STC_HJ_SINGLESTRING",SWIG_From_int(static_cast< int >(49)));
23227 SWIG_Python_SetConstant(d
, "STC_HJ_SYMBOLS",SWIG_From_int(static_cast< int >(50)));
23228 SWIG_Python_SetConstant(d
, "STC_HJ_STRINGEOL",SWIG_From_int(static_cast< int >(51)));
23229 SWIG_Python_SetConstant(d
, "STC_HJ_REGEX",SWIG_From_int(static_cast< int >(52)));
23230 SWIG_Python_SetConstant(d
, "STC_HJA_START",SWIG_From_int(static_cast< int >(55)));
23231 SWIG_Python_SetConstant(d
, "STC_HJA_DEFAULT",SWIG_From_int(static_cast< int >(56)));
23232 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENT",SWIG_From_int(static_cast< int >(57)));
23233 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTLINE",SWIG_From_int(static_cast< int >(58)));
23234 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTDOC",SWIG_From_int(static_cast< int >(59)));
23235 SWIG_Python_SetConstant(d
, "STC_HJA_NUMBER",SWIG_From_int(static_cast< int >(60)));
23236 SWIG_Python_SetConstant(d
, "STC_HJA_WORD",SWIG_From_int(static_cast< int >(61)));
23237 SWIG_Python_SetConstant(d
, "STC_HJA_KEYWORD",SWIG_From_int(static_cast< int >(62)));
23238 SWIG_Python_SetConstant(d
, "STC_HJA_DOUBLESTRING",SWIG_From_int(static_cast< int >(63)));
23239 SWIG_Python_SetConstant(d
, "STC_HJA_SINGLESTRING",SWIG_From_int(static_cast< int >(64)));
23240 SWIG_Python_SetConstant(d
, "STC_HJA_SYMBOLS",SWIG_From_int(static_cast< int >(65)));
23241 SWIG_Python_SetConstant(d
, "STC_HJA_STRINGEOL",SWIG_From_int(static_cast< int >(66)));
23242 SWIG_Python_SetConstant(d
, "STC_HJA_REGEX",SWIG_From_int(static_cast< int >(67)));
23243 SWIG_Python_SetConstant(d
, "STC_HB_START",SWIG_From_int(static_cast< int >(70)));
23244 SWIG_Python_SetConstant(d
, "STC_HB_DEFAULT",SWIG_From_int(static_cast< int >(71)));
23245 SWIG_Python_SetConstant(d
, "STC_HB_COMMENTLINE",SWIG_From_int(static_cast< int >(72)));
23246 SWIG_Python_SetConstant(d
, "STC_HB_NUMBER",SWIG_From_int(static_cast< int >(73)));
23247 SWIG_Python_SetConstant(d
, "STC_HB_WORD",SWIG_From_int(static_cast< int >(74)));
23248 SWIG_Python_SetConstant(d
, "STC_HB_STRING",SWIG_From_int(static_cast< int >(75)));
23249 SWIG_Python_SetConstant(d
, "STC_HB_IDENTIFIER",SWIG_From_int(static_cast< int >(76)));
23250 SWIG_Python_SetConstant(d
, "STC_HB_STRINGEOL",SWIG_From_int(static_cast< int >(77)));
23251 SWIG_Python_SetConstant(d
, "STC_HBA_START",SWIG_From_int(static_cast< int >(80)));
23252 SWIG_Python_SetConstant(d
, "STC_HBA_DEFAULT",SWIG_From_int(static_cast< int >(81)));
23253 SWIG_Python_SetConstant(d
, "STC_HBA_COMMENTLINE",SWIG_From_int(static_cast< int >(82)));
23254 SWIG_Python_SetConstant(d
, "STC_HBA_NUMBER",SWIG_From_int(static_cast< int >(83)));
23255 SWIG_Python_SetConstant(d
, "STC_HBA_WORD",SWIG_From_int(static_cast< int >(84)));
23256 SWIG_Python_SetConstant(d
, "STC_HBA_STRING",SWIG_From_int(static_cast< int >(85)));
23257 SWIG_Python_SetConstant(d
, "STC_HBA_IDENTIFIER",SWIG_From_int(static_cast< int >(86)));
23258 SWIG_Python_SetConstant(d
, "STC_HBA_STRINGEOL",SWIG_From_int(static_cast< int >(87)));
23259 SWIG_Python_SetConstant(d
, "STC_HP_START",SWIG_From_int(static_cast< int >(90)));
23260 SWIG_Python_SetConstant(d
, "STC_HP_DEFAULT",SWIG_From_int(static_cast< int >(91)));
23261 SWIG_Python_SetConstant(d
, "STC_HP_COMMENTLINE",SWIG_From_int(static_cast< int >(92)));
23262 SWIG_Python_SetConstant(d
, "STC_HP_NUMBER",SWIG_From_int(static_cast< int >(93)));
23263 SWIG_Python_SetConstant(d
, "STC_HP_STRING",SWIG_From_int(static_cast< int >(94)));
23264 SWIG_Python_SetConstant(d
, "STC_HP_CHARACTER",SWIG_From_int(static_cast< int >(95)));
23265 SWIG_Python_SetConstant(d
, "STC_HP_WORD",SWIG_From_int(static_cast< int >(96)));
23266 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLE",SWIG_From_int(static_cast< int >(97)));
23267 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(98)));
23268 SWIG_Python_SetConstant(d
, "STC_HP_CLASSNAME",SWIG_From_int(static_cast< int >(99)));
23269 SWIG_Python_SetConstant(d
, "STC_HP_DEFNAME",SWIG_From_int(static_cast< int >(100)));
23270 SWIG_Python_SetConstant(d
, "STC_HP_OPERATOR",SWIG_From_int(static_cast< int >(101)));
23271 SWIG_Python_SetConstant(d
, "STC_HP_IDENTIFIER",SWIG_From_int(static_cast< int >(102)));
23272 SWIG_Python_SetConstant(d
, "STC_HPHP_COMPLEX_VARIABLE",SWIG_From_int(static_cast< int >(104)));
23273 SWIG_Python_SetConstant(d
, "STC_HPA_START",SWIG_From_int(static_cast< int >(105)));
23274 SWIG_Python_SetConstant(d
, "STC_HPA_DEFAULT",SWIG_From_int(static_cast< int >(106)));
23275 SWIG_Python_SetConstant(d
, "STC_HPA_COMMENTLINE",SWIG_From_int(static_cast< int >(107)));
23276 SWIG_Python_SetConstant(d
, "STC_HPA_NUMBER",SWIG_From_int(static_cast< int >(108)));
23277 SWIG_Python_SetConstant(d
, "STC_HPA_STRING",SWIG_From_int(static_cast< int >(109)));
23278 SWIG_Python_SetConstant(d
, "STC_HPA_CHARACTER",SWIG_From_int(static_cast< int >(110)));
23279 SWIG_Python_SetConstant(d
, "STC_HPA_WORD",SWIG_From_int(static_cast< int >(111)));
23280 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLE",SWIG_From_int(static_cast< int >(112)));
23281 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(113)));
23282 SWIG_Python_SetConstant(d
, "STC_HPA_CLASSNAME",SWIG_From_int(static_cast< int >(114)));
23283 SWIG_Python_SetConstant(d
, "STC_HPA_DEFNAME",SWIG_From_int(static_cast< int >(115)));
23284 SWIG_Python_SetConstant(d
, "STC_HPA_OPERATOR",SWIG_From_int(static_cast< int >(116)));
23285 SWIG_Python_SetConstant(d
, "STC_HPA_IDENTIFIER",SWIG_From_int(static_cast< int >(117)));
23286 SWIG_Python_SetConstant(d
, "STC_HPHP_DEFAULT",SWIG_From_int(static_cast< int >(118)));
23287 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING",SWIG_From_int(static_cast< int >(119)));
23288 SWIG_Python_SetConstant(d
, "STC_HPHP_SIMPLESTRING",SWIG_From_int(static_cast< int >(120)));
23289 SWIG_Python_SetConstant(d
, "STC_HPHP_WORD",SWIG_From_int(static_cast< int >(121)));
23290 SWIG_Python_SetConstant(d
, "STC_HPHP_NUMBER",SWIG_From_int(static_cast< int >(122)));
23291 SWIG_Python_SetConstant(d
, "STC_HPHP_VARIABLE",SWIG_From_int(static_cast< int >(123)));
23292 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENT",SWIG_From_int(static_cast< int >(124)));
23293 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENTLINE",SWIG_From_int(static_cast< int >(125)));
23294 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING_VARIABLE",SWIG_From_int(static_cast< int >(126)));
23295 SWIG_Python_SetConstant(d
, "STC_HPHP_OPERATOR",SWIG_From_int(static_cast< int >(127)));
23296 SWIG_Python_SetConstant(d
, "STC_PL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23297 SWIG_Python_SetConstant(d
, "STC_PL_ERROR",SWIG_From_int(static_cast< int >(1)));
23298 SWIG_Python_SetConstant(d
, "STC_PL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23299 SWIG_Python_SetConstant(d
, "STC_PL_POD",SWIG_From_int(static_cast< int >(3)));
23300 SWIG_Python_SetConstant(d
, "STC_PL_NUMBER",SWIG_From_int(static_cast< int >(4)));
23301 SWIG_Python_SetConstant(d
, "STC_PL_WORD",SWIG_From_int(static_cast< int >(5)));
23302 SWIG_Python_SetConstant(d
, "STC_PL_STRING",SWIG_From_int(static_cast< int >(6)));
23303 SWIG_Python_SetConstant(d
, "STC_PL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23304 SWIG_Python_SetConstant(d
, "STC_PL_PUNCTUATION",SWIG_From_int(static_cast< int >(8)));
23305 SWIG_Python_SetConstant(d
, "STC_PL_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23306 SWIG_Python_SetConstant(d
, "STC_PL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23307 SWIG_Python_SetConstant(d
, "STC_PL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23308 SWIG_Python_SetConstant(d
, "STC_PL_SCALAR",SWIG_From_int(static_cast< int >(12)));
23309 SWIG_Python_SetConstant(d
, "STC_PL_ARRAY",SWIG_From_int(static_cast< int >(13)));
23310 SWIG_Python_SetConstant(d
, "STC_PL_HASH",SWIG_From_int(static_cast< int >(14)));
23311 SWIG_Python_SetConstant(d
, "STC_PL_SYMBOLTABLE",SWIG_From_int(static_cast< int >(15)));
23312 SWIG_Python_SetConstant(d
, "STC_PL_VARIABLE_INDEXER",SWIG_From_int(static_cast< int >(16)));
23313 SWIG_Python_SetConstant(d
, "STC_PL_REGEX",SWIG_From_int(static_cast< int >(17)));
23314 SWIG_Python_SetConstant(d
, "STC_PL_REGSUBST",SWIG_From_int(static_cast< int >(18)));
23315 SWIG_Python_SetConstant(d
, "STC_PL_LONGQUOTE",SWIG_From_int(static_cast< int >(19)));
23316 SWIG_Python_SetConstant(d
, "STC_PL_BACKTICKS",SWIG_From_int(static_cast< int >(20)));
23317 SWIG_Python_SetConstant(d
, "STC_PL_DATASECTION",SWIG_From_int(static_cast< int >(21)));
23318 SWIG_Python_SetConstant(d
, "STC_PL_HERE_DELIM",SWIG_From_int(static_cast< int >(22)));
23319 SWIG_Python_SetConstant(d
, "STC_PL_HERE_Q",SWIG_From_int(static_cast< int >(23)));
23320 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QQ",SWIG_From_int(static_cast< int >(24)));
23321 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QX",SWIG_From_int(static_cast< int >(25)));
23322 SWIG_Python_SetConstant(d
, "STC_PL_STRING_Q",SWIG_From_int(static_cast< int >(26)));
23323 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QQ",SWIG_From_int(static_cast< int >(27)));
23324 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QX",SWIG_From_int(static_cast< int >(28)));
23325 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QR",SWIG_From_int(static_cast< int >(29)));
23326 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QW",SWIG_From_int(static_cast< int >(30)));
23327 SWIG_Python_SetConstant(d
, "STC_PL_POD_VERB",SWIG_From_int(static_cast< int >(31)));
23328 SWIG_Python_SetConstant(d
, "STC_RB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23329 SWIG_Python_SetConstant(d
, "STC_RB_ERROR",SWIG_From_int(static_cast< int >(1)));
23330 SWIG_Python_SetConstant(d
, "STC_RB_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23331 SWIG_Python_SetConstant(d
, "STC_RB_POD",SWIG_From_int(static_cast< int >(3)));
23332 SWIG_Python_SetConstant(d
, "STC_RB_NUMBER",SWIG_From_int(static_cast< int >(4)));
23333 SWIG_Python_SetConstant(d
, "STC_RB_WORD",SWIG_From_int(static_cast< int >(5)));
23334 SWIG_Python_SetConstant(d
, "STC_RB_STRING",SWIG_From_int(static_cast< int >(6)));
23335 SWIG_Python_SetConstant(d
, "STC_RB_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23336 SWIG_Python_SetConstant(d
, "STC_RB_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23337 SWIG_Python_SetConstant(d
, "STC_RB_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23338 SWIG_Python_SetConstant(d
, "STC_RB_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23339 SWIG_Python_SetConstant(d
, "STC_RB_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23340 SWIG_Python_SetConstant(d
, "STC_RB_REGEX",SWIG_From_int(static_cast< int >(12)));
23341 SWIG_Python_SetConstant(d
, "STC_RB_GLOBAL",SWIG_From_int(static_cast< int >(13)));
23342 SWIG_Python_SetConstant(d
, "STC_RB_SYMBOL",SWIG_From_int(static_cast< int >(14)));
23343 SWIG_Python_SetConstant(d
, "STC_RB_MODULE_NAME",SWIG_From_int(static_cast< int >(15)));
23344 SWIG_Python_SetConstant(d
, "STC_RB_INSTANCE_VAR",SWIG_From_int(static_cast< int >(16)));
23345 SWIG_Python_SetConstant(d
, "STC_RB_CLASS_VAR",SWIG_From_int(static_cast< int >(17)));
23346 SWIG_Python_SetConstant(d
, "STC_RB_BACKTICKS",SWIG_From_int(static_cast< int >(18)));
23347 SWIG_Python_SetConstant(d
, "STC_RB_DATASECTION",SWIG_From_int(static_cast< int >(19)));
23348 SWIG_Python_SetConstant(d
, "STC_RB_HERE_DELIM",SWIG_From_int(static_cast< int >(20)));
23349 SWIG_Python_SetConstant(d
, "STC_RB_HERE_Q",SWIG_From_int(static_cast< int >(21)));
23350 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QQ",SWIG_From_int(static_cast< int >(22)));
23351 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QX",SWIG_From_int(static_cast< int >(23)));
23352 SWIG_Python_SetConstant(d
, "STC_RB_STRING_Q",SWIG_From_int(static_cast< int >(24)));
23353 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QQ",SWIG_From_int(static_cast< int >(25)));
23354 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QX",SWIG_From_int(static_cast< int >(26)));
23355 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QR",SWIG_From_int(static_cast< int >(27)));
23356 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QW",SWIG_From_int(static_cast< int >(28)));
23357 SWIG_Python_SetConstant(d
, "STC_RB_WORD_DEMOTED",SWIG_From_int(static_cast< int >(29)));
23358 SWIG_Python_SetConstant(d
, "STC_RB_STDIN",SWIG_From_int(static_cast< int >(30)));
23359 SWIG_Python_SetConstant(d
, "STC_RB_STDOUT",SWIG_From_int(static_cast< int >(31)));
23360 SWIG_Python_SetConstant(d
, "STC_RB_STDERR",SWIG_From_int(static_cast< int >(40)));
23361 SWIG_Python_SetConstant(d
, "STC_RB_UPPER_BOUND",SWIG_From_int(static_cast< int >(41)));
23362 SWIG_Python_SetConstant(d
, "STC_B_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23363 SWIG_Python_SetConstant(d
, "STC_B_COMMENT",SWIG_From_int(static_cast< int >(1)));
23364 SWIG_Python_SetConstant(d
, "STC_B_NUMBER",SWIG_From_int(static_cast< int >(2)));
23365 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23366 SWIG_Python_SetConstant(d
, "STC_B_STRING",SWIG_From_int(static_cast< int >(4)));
23367 SWIG_Python_SetConstant(d
, "STC_B_PREPROCESSOR",SWIG_From_int(static_cast< int >(5)));
23368 SWIG_Python_SetConstant(d
, "STC_B_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23369 SWIG_Python_SetConstant(d
, "STC_B_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23370 SWIG_Python_SetConstant(d
, "STC_B_DATE",SWIG_From_int(static_cast< int >(8)));
23371 SWIG_Python_SetConstant(d
, "STC_B_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23372 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD2",SWIG_From_int(static_cast< int >(10)));
23373 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD3",SWIG_From_int(static_cast< int >(11)));
23374 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD4",SWIG_From_int(static_cast< int >(12)));
23375 SWIG_Python_SetConstant(d
, "STC_B_CONSTANT",SWIG_From_int(static_cast< int >(13)));
23376 SWIG_Python_SetConstant(d
, "STC_B_ASM",SWIG_From_int(static_cast< int >(14)));
23377 SWIG_Python_SetConstant(d
, "STC_B_LABEL",SWIG_From_int(static_cast< int >(15)));
23378 SWIG_Python_SetConstant(d
, "STC_B_ERROR",SWIG_From_int(static_cast< int >(16)));
23379 SWIG_Python_SetConstant(d
, "STC_B_HEXNUMBER",SWIG_From_int(static_cast< int >(17)));
23380 SWIG_Python_SetConstant(d
, "STC_B_BINNUMBER",SWIG_From_int(static_cast< int >(18)));
23381 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23382 SWIG_Python_SetConstant(d
, "STC_PROPS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23383 SWIG_Python_SetConstant(d
, "STC_PROPS_SECTION",SWIG_From_int(static_cast< int >(2)));
23384 SWIG_Python_SetConstant(d
, "STC_PROPS_ASSIGNMENT",SWIG_From_int(static_cast< int >(3)));
23385 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFVAL",SWIG_From_int(static_cast< int >(4)));
23386 SWIG_Python_SetConstant(d
, "STC_L_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23387 SWIG_Python_SetConstant(d
, "STC_L_COMMAND",SWIG_From_int(static_cast< int >(1)));
23388 SWIG_Python_SetConstant(d
, "STC_L_TAG",SWIG_From_int(static_cast< int >(2)));
23389 SWIG_Python_SetConstant(d
, "STC_L_MATH",SWIG_From_int(static_cast< int >(3)));
23390 SWIG_Python_SetConstant(d
, "STC_L_COMMENT",SWIG_From_int(static_cast< int >(4)));
23391 SWIG_Python_SetConstant(d
, "STC_LUA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23392 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENT",SWIG_From_int(static_cast< int >(1)));
23393 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23394 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23395 SWIG_Python_SetConstant(d
, "STC_LUA_NUMBER",SWIG_From_int(static_cast< int >(4)));
23396 SWIG_Python_SetConstant(d
, "STC_LUA_WORD",SWIG_From_int(static_cast< int >(5)));
23397 SWIG_Python_SetConstant(d
, "STC_LUA_STRING",SWIG_From_int(static_cast< int >(6)));
23398 SWIG_Python_SetConstant(d
, "STC_LUA_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23399 SWIG_Python_SetConstant(d
, "STC_LUA_LITERALSTRING",SWIG_From_int(static_cast< int >(8)));
23400 SWIG_Python_SetConstant(d
, "STC_LUA_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23401 SWIG_Python_SetConstant(d
, "STC_LUA_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23402 SWIG_Python_SetConstant(d
, "STC_LUA_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23403 SWIG_Python_SetConstant(d
, "STC_LUA_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23404 SWIG_Python_SetConstant(d
, "STC_LUA_WORD2",SWIG_From_int(static_cast< int >(13)));
23405 SWIG_Python_SetConstant(d
, "STC_LUA_WORD3",SWIG_From_int(static_cast< int >(14)));
23406 SWIG_Python_SetConstant(d
, "STC_LUA_WORD4",SWIG_From_int(static_cast< int >(15)));
23407 SWIG_Python_SetConstant(d
, "STC_LUA_WORD5",SWIG_From_int(static_cast< int >(16)));
23408 SWIG_Python_SetConstant(d
, "STC_LUA_WORD6",SWIG_From_int(static_cast< int >(17)));
23409 SWIG_Python_SetConstant(d
, "STC_LUA_WORD7",SWIG_From_int(static_cast< int >(18)));
23410 SWIG_Python_SetConstant(d
, "STC_LUA_WORD8",SWIG_From_int(static_cast< int >(19)));
23411 SWIG_Python_SetConstant(d
, "STC_ERR_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23412 SWIG_Python_SetConstant(d
, "STC_ERR_PYTHON",SWIG_From_int(static_cast< int >(1)));
23413 SWIG_Python_SetConstant(d
, "STC_ERR_GCC",SWIG_From_int(static_cast< int >(2)));
23414 SWIG_Python_SetConstant(d
, "STC_ERR_MS",SWIG_From_int(static_cast< int >(3)));
23415 SWIG_Python_SetConstant(d
, "STC_ERR_CMD",SWIG_From_int(static_cast< int >(4)));
23416 SWIG_Python_SetConstant(d
, "STC_ERR_BORLAND",SWIG_From_int(static_cast< int >(5)));
23417 SWIG_Python_SetConstant(d
, "STC_ERR_PERL",SWIG_From_int(static_cast< int >(6)));
23418 SWIG_Python_SetConstant(d
, "STC_ERR_NET",SWIG_From_int(static_cast< int >(7)));
23419 SWIG_Python_SetConstant(d
, "STC_ERR_LUA",SWIG_From_int(static_cast< int >(8)));
23420 SWIG_Python_SetConstant(d
, "STC_ERR_CTAG",SWIG_From_int(static_cast< int >(9)));
23421 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_CHANGED",SWIG_From_int(static_cast< int >(10)));
23422 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_ADDITION",SWIG_From_int(static_cast< int >(11)));
23423 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_DELETION",SWIG_From_int(static_cast< int >(12)));
23424 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_MESSAGE",SWIG_From_int(static_cast< int >(13)));
23425 SWIG_Python_SetConstant(d
, "STC_ERR_PHP",SWIG_From_int(static_cast< int >(14)));
23426 SWIG_Python_SetConstant(d
, "STC_ERR_ELF",SWIG_From_int(static_cast< int >(15)));
23427 SWIG_Python_SetConstant(d
, "STC_ERR_IFC",SWIG_From_int(static_cast< int >(16)));
23428 SWIG_Python_SetConstant(d
, "STC_ERR_IFORT",SWIG_From_int(static_cast< int >(17)));
23429 SWIG_Python_SetConstant(d
, "STC_ERR_ABSF",SWIG_From_int(static_cast< int >(18)));
23430 SWIG_Python_SetConstant(d
, "STC_ERR_TIDY",SWIG_From_int(static_cast< int >(19)));
23431 SWIG_Python_SetConstant(d
, "STC_ERR_JAVA_STACK",SWIG_From_int(static_cast< int >(20)));
23432 SWIG_Python_SetConstant(d
, "STC_BAT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23433 SWIG_Python_SetConstant(d
, "STC_BAT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23434 SWIG_Python_SetConstant(d
, "STC_BAT_WORD",SWIG_From_int(static_cast< int >(2)));
23435 SWIG_Python_SetConstant(d
, "STC_BAT_LABEL",SWIG_From_int(static_cast< int >(3)));
23436 SWIG_Python_SetConstant(d
, "STC_BAT_HIDE",SWIG_From_int(static_cast< int >(4)));
23437 SWIG_Python_SetConstant(d
, "STC_BAT_COMMAND",SWIG_From_int(static_cast< int >(5)));
23438 SWIG_Python_SetConstant(d
, "STC_BAT_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23439 SWIG_Python_SetConstant(d
, "STC_BAT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23440 SWIG_Python_SetConstant(d
, "STC_MAKE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23441 SWIG_Python_SetConstant(d
, "STC_MAKE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23442 SWIG_Python_SetConstant(d
, "STC_MAKE_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23443 SWIG_Python_SetConstant(d
, "STC_MAKE_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23444 SWIG_Python_SetConstant(d
, "STC_MAKE_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23445 SWIG_Python_SetConstant(d
, "STC_MAKE_TARGET",SWIG_From_int(static_cast< int >(5)));
23446 SWIG_Python_SetConstant(d
, "STC_MAKE_IDEOL",SWIG_From_int(static_cast< int >(9)));
23447 SWIG_Python_SetConstant(d
, "STC_DIFF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23448 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23449 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMAND",SWIG_From_int(static_cast< int >(2)));
23450 SWIG_Python_SetConstant(d
, "STC_DIFF_HEADER",SWIG_From_int(static_cast< int >(3)));
23451 SWIG_Python_SetConstant(d
, "STC_DIFF_POSITION",SWIG_From_int(static_cast< int >(4)));
23452 SWIG_Python_SetConstant(d
, "STC_DIFF_DELETED",SWIG_From_int(static_cast< int >(5)));
23453 SWIG_Python_SetConstant(d
, "STC_DIFF_ADDED",SWIG_From_int(static_cast< int >(6)));
23454 SWIG_Python_SetConstant(d
, "STC_CONF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23455 SWIG_Python_SetConstant(d
, "STC_CONF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23456 SWIG_Python_SetConstant(d
, "STC_CONF_NUMBER",SWIG_From_int(static_cast< int >(2)));
23457 SWIG_Python_SetConstant(d
, "STC_CONF_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23458 SWIG_Python_SetConstant(d
, "STC_CONF_EXTENSION",SWIG_From_int(static_cast< int >(4)));
23459 SWIG_Python_SetConstant(d
, "STC_CONF_PARAMETER",SWIG_From_int(static_cast< int >(5)));
23460 SWIG_Python_SetConstant(d
, "STC_CONF_STRING",SWIG_From_int(static_cast< int >(6)));
23461 SWIG_Python_SetConstant(d
, "STC_CONF_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23462 SWIG_Python_SetConstant(d
, "STC_CONF_IP",SWIG_From_int(static_cast< int >(8)));
23463 SWIG_Python_SetConstant(d
, "STC_CONF_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23464 SWIG_Python_SetConstant(d
, "STC_AVE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23465 SWIG_Python_SetConstant(d
, "STC_AVE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23466 SWIG_Python_SetConstant(d
, "STC_AVE_NUMBER",SWIG_From_int(static_cast< int >(2)));
23467 SWIG_Python_SetConstant(d
, "STC_AVE_WORD",SWIG_From_int(static_cast< int >(3)));
23468 SWIG_Python_SetConstant(d
, "STC_AVE_STRING",SWIG_From_int(static_cast< int >(6)));
23469 SWIG_Python_SetConstant(d
, "STC_AVE_ENUM",SWIG_From_int(static_cast< int >(7)));
23470 SWIG_Python_SetConstant(d
, "STC_AVE_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23471 SWIG_Python_SetConstant(d
, "STC_AVE_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23472 SWIG_Python_SetConstant(d
, "STC_AVE_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23473 SWIG_Python_SetConstant(d
, "STC_AVE_WORD1",SWIG_From_int(static_cast< int >(11)));
23474 SWIG_Python_SetConstant(d
, "STC_AVE_WORD2",SWIG_From_int(static_cast< int >(12)));
23475 SWIG_Python_SetConstant(d
, "STC_AVE_WORD3",SWIG_From_int(static_cast< int >(13)));
23476 SWIG_Python_SetConstant(d
, "STC_AVE_WORD4",SWIG_From_int(static_cast< int >(14)));
23477 SWIG_Python_SetConstant(d
, "STC_AVE_WORD5",SWIG_From_int(static_cast< int >(15)));
23478 SWIG_Python_SetConstant(d
, "STC_AVE_WORD6",SWIG_From_int(static_cast< int >(16)));
23479 SWIG_Python_SetConstant(d
, "STC_ADA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23480 SWIG_Python_SetConstant(d
, "STC_ADA_WORD",SWIG_From_int(static_cast< int >(1)));
23481 SWIG_Python_SetConstant(d
, "STC_ADA_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23482 SWIG_Python_SetConstant(d
, "STC_ADA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23483 SWIG_Python_SetConstant(d
, "STC_ADA_DELIMITER",SWIG_From_int(static_cast< int >(4)));
23484 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23485 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTEREOL",SWIG_From_int(static_cast< int >(6)));
23486 SWIG_Python_SetConstant(d
, "STC_ADA_STRING",SWIG_From_int(static_cast< int >(7)));
23487 SWIG_Python_SetConstant(d
, "STC_ADA_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23488 SWIG_Python_SetConstant(d
, "STC_ADA_LABEL",SWIG_From_int(static_cast< int >(9)));
23489 SWIG_Python_SetConstant(d
, "STC_ADA_COMMENTLINE",SWIG_From_int(static_cast< int >(10)));
23490 SWIG_Python_SetConstant(d
, "STC_ADA_ILLEGAL",SWIG_From_int(static_cast< int >(11)));
23491 SWIG_Python_SetConstant(d
, "STC_BAAN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23492 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENT",SWIG_From_int(static_cast< int >(1)));
23493 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENTDOC",SWIG_From_int(static_cast< int >(2)));
23494 SWIG_Python_SetConstant(d
, "STC_BAAN_NUMBER",SWIG_From_int(static_cast< int >(3)));
23495 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD",SWIG_From_int(static_cast< int >(4)));
23496 SWIG_Python_SetConstant(d
, "STC_BAAN_STRING",SWIG_From_int(static_cast< int >(5)));
23497 SWIG_Python_SetConstant(d
, "STC_BAAN_PREPROCESSOR",SWIG_From_int(static_cast< int >(6)));
23498 SWIG_Python_SetConstant(d
, "STC_BAAN_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23499 SWIG_Python_SetConstant(d
, "STC_BAAN_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23500 SWIG_Python_SetConstant(d
, "STC_BAAN_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23501 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD2",SWIG_From_int(static_cast< int >(10)));
23502 SWIG_Python_SetConstant(d
, "STC_LISP_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23503 SWIG_Python_SetConstant(d
, "STC_LISP_COMMENT",SWIG_From_int(static_cast< int >(1)));
23504 SWIG_Python_SetConstant(d
, "STC_LISP_NUMBER",SWIG_From_int(static_cast< int >(2)));
23505 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23506 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD_KW",SWIG_From_int(static_cast< int >(4)));
23507 SWIG_Python_SetConstant(d
, "STC_LISP_SYMBOL",SWIG_From_int(static_cast< int >(5)));
23508 SWIG_Python_SetConstant(d
, "STC_LISP_STRING",SWIG_From_int(static_cast< int >(6)));
23509 SWIG_Python_SetConstant(d
, "STC_LISP_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23510 SWIG_Python_SetConstant(d
, "STC_LISP_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23511 SWIG_Python_SetConstant(d
, "STC_LISP_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23512 SWIG_Python_SetConstant(d
, "STC_LISP_SPECIAL",SWIG_From_int(static_cast< int >(11)));
23513 SWIG_Python_SetConstant(d
, "STC_LISP_MULTI_COMMENT",SWIG_From_int(static_cast< int >(12)));
23514 SWIG_Python_SetConstant(d
, "STC_EIFFEL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23515 SWIG_Python_SetConstant(d
, "STC_EIFFEL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23516 SWIG_Python_SetConstant(d
, "STC_EIFFEL_NUMBER",SWIG_From_int(static_cast< int >(2)));
23517 SWIG_Python_SetConstant(d
, "STC_EIFFEL_WORD",SWIG_From_int(static_cast< int >(3)));
23518 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRING",SWIG_From_int(static_cast< int >(4)));
23519 SWIG_Python_SetConstant(d
, "STC_EIFFEL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23520 SWIG_Python_SetConstant(d
, "STC_EIFFEL_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23521 SWIG_Python_SetConstant(d
, "STC_EIFFEL_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23522 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23523 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23524 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23525 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_TASK",SWIG_From_int(static_cast< int >(2)));
23526 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_SECTION",SWIG_From_int(static_cast< int >(3)));
23527 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23528 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_MODIFIER",SWIG_From_int(static_cast< int >(5)));
23529 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ASTERISK",SWIG_From_int(static_cast< int >(6)));
23530 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_NUMBER",SWIG_From_int(static_cast< int >(7)));
23531 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_STRING",SWIG_From_int(static_cast< int >(8)));
23532 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ENVIRONMENT",SWIG_From_int(static_cast< int >(9)));
23533 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_IDENTIFIER",SWIG_From_int(static_cast< int >(10)));
23534 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23535 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT",SWIG_From_int(static_cast< int >(1)));
23536 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT_ML",SWIG_From_int(static_cast< int >(2)));
23537 SWIG_Python_SetConstant(d
, "STC_FORTH_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23538 SWIG_Python_SetConstant(d
, "STC_FORTH_CONTROL",SWIG_From_int(static_cast< int >(4)));
23539 SWIG_Python_SetConstant(d
, "STC_FORTH_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23540 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFWORD",SWIG_From_int(static_cast< int >(6)));
23541 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD1",SWIG_From_int(static_cast< int >(7)));
23542 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD2",SWIG_From_int(static_cast< int >(8)));
23543 SWIG_Python_SetConstant(d
, "STC_FORTH_NUMBER",SWIG_From_int(static_cast< int >(9)));
23544 SWIG_Python_SetConstant(d
, "STC_FORTH_STRING",SWIG_From_int(static_cast< int >(10)));
23545 SWIG_Python_SetConstant(d
, "STC_FORTH_LOCALE",SWIG_From_int(static_cast< int >(11)));
23546 SWIG_Python_SetConstant(d
, "STC_MATLAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23547 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23548 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMAND",SWIG_From_int(static_cast< int >(2)));
23549 SWIG_Python_SetConstant(d
, "STC_MATLAB_NUMBER",SWIG_From_int(static_cast< int >(3)));
23550 SWIG_Python_SetConstant(d
, "STC_MATLAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23551 SWIG_Python_SetConstant(d
, "STC_MATLAB_STRING",SWIG_From_int(static_cast< int >(5)));
23552 SWIG_Python_SetConstant(d
, "STC_MATLAB_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23553 SWIG_Python_SetConstant(d
, "STC_MATLAB_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23554 SWIG_Python_SetConstant(d
, "STC_MATLAB_DOUBLEQUOTESTRING",SWIG_From_int(static_cast< int >(8)));
23555 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23556 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_WHITE",SWIG_From_int(static_cast< int >(1)));
23557 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23558 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PERSISTENT",SWIG_From_int(static_cast< int >(3)));
23559 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CSTYLE",SWIG_From_int(static_cast< int >(4)));
23560 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(5)));
23561 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_NUMBER",SWIG_From_int(static_cast< int >(6)));
23562 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRING",SWIG_From_int(static_cast< int >(7)));
23563 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CHARACTER",SWIG_From_int(static_cast< int >(8)));
23564 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23565 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_KEYWORD",SWIG_From_int(static_cast< int >(10)));
23566 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23567 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_IDENTIFIER",SWIG_From_int(static_cast< int >(12)));
23568 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_TRIPLE",SWIG_From_int(static_cast< int >(13)));
23569 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CLASSNAME",SWIG_From_int(static_cast< int >(14)));
23570 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PREPROCESSOR",SWIG_From_int(static_cast< int >(15)));
23571 SWIG_Python_SetConstant(d
, "STC_ASM_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23572 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENT",SWIG_From_int(static_cast< int >(1)));
23573 SWIG_Python_SetConstant(d
, "STC_ASM_NUMBER",SWIG_From_int(static_cast< int >(2)));
23574 SWIG_Python_SetConstant(d
, "STC_ASM_STRING",SWIG_From_int(static_cast< int >(3)));
23575 SWIG_Python_SetConstant(d
, "STC_ASM_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23576 SWIG_Python_SetConstant(d
, "STC_ASM_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23577 SWIG_Python_SetConstant(d
, "STC_ASM_CPUINSTRUCTION",SWIG_From_int(static_cast< int >(6)));
23578 SWIG_Python_SetConstant(d
, "STC_ASM_MATHINSTRUCTION",SWIG_From_int(static_cast< int >(7)));
23579 SWIG_Python_SetConstant(d
, "STC_ASM_REGISTER",SWIG_From_int(static_cast< int >(8)));
23580 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23581 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVEOPERAND",SWIG_From_int(static_cast< int >(10)));
23582 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENTBLOCK",SWIG_From_int(static_cast< int >(11)));
23583 SWIG_Python_SetConstant(d
, "STC_ASM_CHARACTER",SWIG_From_int(static_cast< int >(12)));
23584 SWIG_Python_SetConstant(d
, "STC_ASM_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23585 SWIG_Python_SetConstant(d
, "STC_ASM_EXTINSTRUCTION",SWIG_From_int(static_cast< int >(14)));
23586 SWIG_Python_SetConstant(d
, "STC_F_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23587 SWIG_Python_SetConstant(d
, "STC_F_COMMENT",SWIG_From_int(static_cast< int >(1)));
23588 SWIG_Python_SetConstant(d
, "STC_F_NUMBER",SWIG_From_int(static_cast< int >(2)));
23589 SWIG_Python_SetConstant(d
, "STC_F_STRING1",SWIG_From_int(static_cast< int >(3)));
23590 SWIG_Python_SetConstant(d
, "STC_F_STRING2",SWIG_From_int(static_cast< int >(4)));
23591 SWIG_Python_SetConstant(d
, "STC_F_STRINGEOL",SWIG_From_int(static_cast< int >(5)));
23592 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23593 SWIG_Python_SetConstant(d
, "STC_F_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23594 SWIG_Python_SetConstant(d
, "STC_F_WORD",SWIG_From_int(static_cast< int >(8)));
23595 SWIG_Python_SetConstant(d
, "STC_F_WORD2",SWIG_From_int(static_cast< int >(9)));
23596 SWIG_Python_SetConstant(d
, "STC_F_WORD3",SWIG_From_int(static_cast< int >(10)));
23597 SWIG_Python_SetConstant(d
, "STC_F_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23598 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR2",SWIG_From_int(static_cast< int >(12)));
23599 SWIG_Python_SetConstant(d
, "STC_F_LABEL",SWIG_From_int(static_cast< int >(13)));
23600 SWIG_Python_SetConstant(d
, "STC_F_CONTINUATION",SWIG_From_int(static_cast< int >(14)));
23601 SWIG_Python_SetConstant(d
, "STC_CSS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23602 SWIG_Python_SetConstant(d
, "STC_CSS_TAG",SWIG_From_int(static_cast< int >(1)));
23603 SWIG_Python_SetConstant(d
, "STC_CSS_CLASS",SWIG_From_int(static_cast< int >(2)));
23604 SWIG_Python_SetConstant(d
, "STC_CSS_PSEUDOCLASS",SWIG_From_int(static_cast< int >(3)));
23605 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_PSEUDOCLASS",SWIG_From_int(static_cast< int >(4)));
23606 SWIG_Python_SetConstant(d
, "STC_CSS_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23607 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23608 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23609 SWIG_Python_SetConstant(d
, "STC_CSS_VALUE",SWIG_From_int(static_cast< int >(8)));
23610 SWIG_Python_SetConstant(d
, "STC_CSS_COMMENT",SWIG_From_int(static_cast< int >(9)));
23611 SWIG_Python_SetConstant(d
, "STC_CSS_ID",SWIG_From_int(static_cast< int >(10)));
23612 SWIG_Python_SetConstant(d
, "STC_CSS_IMPORTANT",SWIG_From_int(static_cast< int >(11)));
23613 SWIG_Python_SetConstant(d
, "STC_CSS_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23614 SWIG_Python_SetConstant(d
, "STC_CSS_DOUBLESTRING",SWIG_From_int(static_cast< int >(13)));
23615 SWIG_Python_SetConstant(d
, "STC_CSS_SINGLESTRING",SWIG_From_int(static_cast< int >(14)));
23616 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER2",SWIG_From_int(static_cast< int >(15)));
23617 SWIG_Python_SetConstant(d
, "STC_CSS_ATTRIBUTE",SWIG_From_int(static_cast< int >(16)));
23618 SWIG_Python_SetConstant(d
, "STC_POV_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23619 SWIG_Python_SetConstant(d
, "STC_POV_COMMENT",SWIG_From_int(static_cast< int >(1)));
23620 SWIG_Python_SetConstant(d
, "STC_POV_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23621 SWIG_Python_SetConstant(d
, "STC_POV_NUMBER",SWIG_From_int(static_cast< int >(3)));
23622 SWIG_Python_SetConstant(d
, "STC_POV_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23623 SWIG_Python_SetConstant(d
, "STC_POV_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23624 SWIG_Python_SetConstant(d
, "STC_POV_STRING",SWIG_From_int(static_cast< int >(6)));
23625 SWIG_Python_SetConstant(d
, "STC_POV_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23626 SWIG_Python_SetConstant(d
, "STC_POV_DIRECTIVE",SWIG_From_int(static_cast< int >(8)));
23627 SWIG_Python_SetConstant(d
, "STC_POV_BADDIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23628 SWIG_Python_SetConstant(d
, "STC_POV_WORD2",SWIG_From_int(static_cast< int >(10)));
23629 SWIG_Python_SetConstant(d
, "STC_POV_WORD3",SWIG_From_int(static_cast< int >(11)));
23630 SWIG_Python_SetConstant(d
, "STC_POV_WORD4",SWIG_From_int(static_cast< int >(12)));
23631 SWIG_Python_SetConstant(d
, "STC_POV_WORD5",SWIG_From_int(static_cast< int >(13)));
23632 SWIG_Python_SetConstant(d
, "STC_POV_WORD6",SWIG_From_int(static_cast< int >(14)));
23633 SWIG_Python_SetConstant(d
, "STC_POV_WORD7",SWIG_From_int(static_cast< int >(15)));
23634 SWIG_Python_SetConstant(d
, "STC_POV_WORD8",SWIG_From_int(static_cast< int >(16)));
23635 SWIG_Python_SetConstant(d
, "STC_LOUT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23636 SWIG_Python_SetConstant(d
, "STC_LOUT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23637 SWIG_Python_SetConstant(d
, "STC_LOUT_NUMBER",SWIG_From_int(static_cast< int >(2)));
23638 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD",SWIG_From_int(static_cast< int >(3)));
23639 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD2",SWIG_From_int(static_cast< int >(4)));
23640 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD3",SWIG_From_int(static_cast< int >(5)));
23641 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD4",SWIG_From_int(static_cast< int >(6)));
23642 SWIG_Python_SetConstant(d
, "STC_LOUT_STRING",SWIG_From_int(static_cast< int >(7)));
23643 SWIG_Python_SetConstant(d
, "STC_LOUT_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23644 SWIG_Python_SetConstant(d
, "STC_LOUT_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23645 SWIG_Python_SetConstant(d
, "STC_LOUT_STRINGEOL",SWIG_From_int(static_cast< int >(10)));
23646 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23647 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23648 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23649 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23650 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_NUMBER",SWIG_From_int(static_cast< int >(4)));
23651 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD",SWIG_From_int(static_cast< int >(5)));
23652 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_STRING",SWIG_From_int(static_cast< int >(6)));
23653 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23654 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23655 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_BRACE",SWIG_From_int(static_cast< int >(9)));
23656 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD2",SWIG_From_int(static_cast< int >(10)));
23657 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD3",SWIG_From_int(static_cast< int >(11)));
23658 SWIG_Python_SetConstant(d
, "STC_PS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23659 SWIG_Python_SetConstant(d
, "STC_PS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23660 SWIG_Python_SetConstant(d
, "STC_PS_DSC_COMMENT",SWIG_From_int(static_cast< int >(2)));
23661 SWIG_Python_SetConstant(d
, "STC_PS_DSC_VALUE",SWIG_From_int(static_cast< int >(3)));
23662 SWIG_Python_SetConstant(d
, "STC_PS_NUMBER",SWIG_From_int(static_cast< int >(4)));
23663 SWIG_Python_SetConstant(d
, "STC_PS_NAME",SWIG_From_int(static_cast< int >(5)));
23664 SWIG_Python_SetConstant(d
, "STC_PS_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23665 SWIG_Python_SetConstant(d
, "STC_PS_LITERAL",SWIG_From_int(static_cast< int >(7)));
23666 SWIG_Python_SetConstant(d
, "STC_PS_IMMEVAL",SWIG_From_int(static_cast< int >(8)));
23667 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_ARRAY",SWIG_From_int(static_cast< int >(9)));
23668 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_DICT",SWIG_From_int(static_cast< int >(10)));
23669 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_PROC",SWIG_From_int(static_cast< int >(11)));
23670 SWIG_Python_SetConstant(d
, "STC_PS_TEXT",SWIG_From_int(static_cast< int >(12)));
23671 SWIG_Python_SetConstant(d
, "STC_PS_HEXSTRING",SWIG_From_int(static_cast< int >(13)));
23672 SWIG_Python_SetConstant(d
, "STC_PS_BASE85STRING",SWIG_From_int(static_cast< int >(14)));
23673 SWIG_Python_SetConstant(d
, "STC_PS_BADSTRINGCHAR",SWIG_From_int(static_cast< int >(15)));
23674 SWIG_Python_SetConstant(d
, "STC_NSIS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23675 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23676 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGDQ",SWIG_From_int(static_cast< int >(2)));
23677 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGLQ",SWIG_From_int(static_cast< int >(3)));
23678 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGRQ",SWIG_From_int(static_cast< int >(4)));
23679 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTION",SWIG_From_int(static_cast< int >(5)));
23680 SWIG_Python_SetConstant(d
, "STC_NSIS_VARIABLE",SWIG_From_int(static_cast< int >(6)));
23681 SWIG_Python_SetConstant(d
, "STC_NSIS_LABEL",SWIG_From_int(static_cast< int >(7)));
23682 SWIG_Python_SetConstant(d
, "STC_NSIS_USERDEFINED",SWIG_From_int(static_cast< int >(8)));
23683 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONDEF",SWIG_From_int(static_cast< int >(9)));
23684 SWIG_Python_SetConstant(d
, "STC_NSIS_SUBSECTIONDEF",SWIG_From_int(static_cast< int >(10)));
23685 SWIG_Python_SetConstant(d
, "STC_NSIS_IFDEFINEDEF",SWIG_From_int(static_cast< int >(11)));
23686 SWIG_Python_SetConstant(d
, "STC_NSIS_MACRODEF",SWIG_From_int(static_cast< int >(12)));
23687 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGVAR",SWIG_From_int(static_cast< int >(13)));
23688 SWIG_Python_SetConstant(d
, "STC_NSIS_NUMBER",SWIG_From_int(static_cast< int >(14)));
23689 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONGROUP",SWIG_From_int(static_cast< int >(15)));
23690 SWIG_Python_SetConstant(d
, "STC_NSIS_PAGEEX",SWIG_From_int(static_cast< int >(16)));
23691 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTIONDEF",SWIG_From_int(static_cast< int >(17)));
23692 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENTBOX",SWIG_From_int(static_cast< int >(18)));
23693 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LEADWS",SWIG_From_int(static_cast< int >(0)));
23694 SWIG_Python_SetConstant(d
, "STC_MMIXAL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23695 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LABEL",SWIG_From_int(static_cast< int >(2)));
23696 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE",SWIG_From_int(static_cast< int >(3)));
23697 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_PRE",SWIG_From_int(static_cast< int >(4)));
23698 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_VALID",SWIG_From_int(static_cast< int >(5)));
23699 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_UNKNOWN",SWIG_From_int(static_cast< int >(6)));
23700 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_POST",SWIG_From_int(static_cast< int >(7)));
23701 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERANDS",SWIG_From_int(static_cast< int >(8)));
23702 SWIG_Python_SetConstant(d
, "STC_MMIXAL_NUMBER",SWIG_From_int(static_cast< int >(9)));
23703 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REF",SWIG_From_int(static_cast< int >(10)));
23704 SWIG_Python_SetConstant(d
, "STC_MMIXAL_CHAR",SWIG_From_int(static_cast< int >(11)));
23705 SWIG_Python_SetConstant(d
, "STC_MMIXAL_STRING",SWIG_From_int(static_cast< int >(12)));
23706 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REGISTER",SWIG_From_int(static_cast< int >(13)));
23707 SWIG_Python_SetConstant(d
, "STC_MMIXAL_HEX",SWIG_From_int(static_cast< int >(14)));
23708 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERATOR",SWIG_From_int(static_cast< int >(15)));
23709 SWIG_Python_SetConstant(d
, "STC_MMIXAL_SYMBOL",SWIG_From_int(static_cast< int >(16)));
23710 SWIG_Python_SetConstant(d
, "STC_MMIXAL_INCLUDE",SWIG_From_int(static_cast< int >(17)));
23711 SWIG_Python_SetConstant(d
, "STC_CLW_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23712 SWIG_Python_SetConstant(d
, "STC_CLW_LABEL",SWIG_From_int(static_cast< int >(1)));
23713 SWIG_Python_SetConstant(d
, "STC_CLW_COMMENT",SWIG_From_int(static_cast< int >(2)));
23714 SWIG_Python_SetConstant(d
, "STC_CLW_STRING",SWIG_From_int(static_cast< int >(3)));
23715 SWIG_Python_SetConstant(d
, "STC_CLW_USER_IDENTIFIER",SWIG_From_int(static_cast< int >(4)));
23716 SWIG_Python_SetConstant(d
, "STC_CLW_INTEGER_CONSTANT",SWIG_From_int(static_cast< int >(5)));
23717 SWIG_Python_SetConstant(d
, "STC_CLW_REAL_CONSTANT",SWIG_From_int(static_cast< int >(6)));
23718 SWIG_Python_SetConstant(d
, "STC_CLW_PICTURE_STRING",SWIG_From_int(static_cast< int >(7)));
23719 SWIG_Python_SetConstant(d
, "STC_CLW_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23720 SWIG_Python_SetConstant(d
, "STC_CLW_COMPILER_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23721 SWIG_Python_SetConstant(d
, "STC_CLW_RUNTIME_EXPRESSIONS",SWIG_From_int(static_cast< int >(10)));
23722 SWIG_Python_SetConstant(d
, "STC_CLW_BUILTIN_PROCEDURES_FUNCTION",SWIG_From_int(static_cast< int >(11)));
23723 SWIG_Python_SetConstant(d
, "STC_CLW_STRUCTURE_DATA_TYPE",SWIG_From_int(static_cast< int >(12)));
23724 SWIG_Python_SetConstant(d
, "STC_CLW_ATTRIBUTE",SWIG_From_int(static_cast< int >(13)));
23725 SWIG_Python_SetConstant(d
, "STC_CLW_STANDARD_EQUATE",SWIG_From_int(static_cast< int >(14)));
23726 SWIG_Python_SetConstant(d
, "STC_CLW_ERROR",SWIG_From_int(static_cast< int >(15)));
23727 SWIG_Python_SetConstant(d
, "STC_CLW_DEPRECATED",SWIG_From_int(static_cast< int >(16)));
23728 SWIG_Python_SetConstant(d
, "STC_LOT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23729 SWIG_Python_SetConstant(d
, "STC_LOT_HEADER",SWIG_From_int(static_cast< int >(1)));
23730 SWIG_Python_SetConstant(d
, "STC_LOT_BREAK",SWIG_From_int(static_cast< int >(2)));
23731 SWIG_Python_SetConstant(d
, "STC_LOT_SET",SWIG_From_int(static_cast< int >(3)));
23732 SWIG_Python_SetConstant(d
, "STC_LOT_PASS",SWIG_From_int(static_cast< int >(4)));
23733 SWIG_Python_SetConstant(d
, "STC_LOT_FAIL",SWIG_From_int(static_cast< int >(5)));
23734 SWIG_Python_SetConstant(d
, "STC_LOT_ABORT",SWIG_From_int(static_cast< int >(6)));
23735 SWIG_Python_SetConstant(d
, "STC_YAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23736 SWIG_Python_SetConstant(d
, "STC_YAML_COMMENT",SWIG_From_int(static_cast< int >(1)));
23737 SWIG_Python_SetConstant(d
, "STC_YAML_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23738 SWIG_Python_SetConstant(d
, "STC_YAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23739 SWIG_Python_SetConstant(d
, "STC_YAML_NUMBER",SWIG_From_int(static_cast< int >(4)));
23740 SWIG_Python_SetConstant(d
, "STC_YAML_REFERENCE",SWIG_From_int(static_cast< int >(5)));
23741 SWIG_Python_SetConstant(d
, "STC_YAML_DOCUMENT",SWIG_From_int(static_cast< int >(6)));
23742 SWIG_Python_SetConstant(d
, "STC_YAML_TEXT",SWIG_From_int(static_cast< int >(7)));
23743 SWIG_Python_SetConstant(d
, "STC_YAML_ERROR",SWIG_From_int(static_cast< int >(8)));
23744 SWIG_Python_SetConstant(d
, "STC_TEX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23745 SWIG_Python_SetConstant(d
, "STC_TEX_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23746 SWIG_Python_SetConstant(d
, "STC_TEX_GROUP",SWIG_From_int(static_cast< int >(2)));
23747 SWIG_Python_SetConstant(d
, "STC_TEX_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23748 SWIG_Python_SetConstant(d
, "STC_TEX_COMMAND",SWIG_From_int(static_cast< int >(4)));
23749 SWIG_Python_SetConstant(d
, "STC_TEX_TEXT",SWIG_From_int(static_cast< int >(5)));
23750 SWIG_Python_SetConstant(d
, "STC_METAPOST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23751 SWIG_Python_SetConstant(d
, "STC_METAPOST_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23752 SWIG_Python_SetConstant(d
, "STC_METAPOST_GROUP",SWIG_From_int(static_cast< int >(2)));
23753 SWIG_Python_SetConstant(d
, "STC_METAPOST_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23754 SWIG_Python_SetConstant(d
, "STC_METAPOST_COMMAND",SWIG_From_int(static_cast< int >(4)));
23755 SWIG_Python_SetConstant(d
, "STC_METAPOST_TEXT",SWIG_From_int(static_cast< int >(5)));
23756 SWIG_Python_SetConstant(d
, "STC_METAPOST_EXTRA",SWIG_From_int(static_cast< int >(6)));
23757 SWIG_Python_SetConstant(d
, "STC_ERLANG_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23758 SWIG_Python_SetConstant(d
, "STC_ERLANG_COMMENT",SWIG_From_int(static_cast< int >(1)));
23759 SWIG_Python_SetConstant(d
, "STC_ERLANG_VARIABLE",SWIG_From_int(static_cast< int >(2)));
23760 SWIG_Python_SetConstant(d
, "STC_ERLANG_NUMBER",SWIG_From_int(static_cast< int >(3)));
23761 SWIG_Python_SetConstant(d
, "STC_ERLANG_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23762 SWIG_Python_SetConstant(d
, "STC_ERLANG_STRING",SWIG_From_int(static_cast< int >(5)));
23763 SWIG_Python_SetConstant(d
, "STC_ERLANG_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23764 SWIG_Python_SetConstant(d
, "STC_ERLANG_ATOM",SWIG_From_int(static_cast< int >(7)));
23765 SWIG_Python_SetConstant(d
, "STC_ERLANG_FUNCTION_NAME",SWIG_From_int(static_cast< int >(8)));
23766 SWIG_Python_SetConstant(d
, "STC_ERLANG_CHARACTER",SWIG_From_int(static_cast< int >(9)));
23767 SWIG_Python_SetConstant(d
, "STC_ERLANG_MACRO",SWIG_From_int(static_cast< int >(10)));
23768 SWIG_Python_SetConstant(d
, "STC_ERLANG_RECORD",SWIG_From_int(static_cast< int >(11)));
23769 SWIG_Python_SetConstant(d
, "STC_ERLANG_SEPARATOR",SWIG_From_int(static_cast< int >(12)));
23770 SWIG_Python_SetConstant(d
, "STC_ERLANG_NODE_NAME",SWIG_From_int(static_cast< int >(13)));
23771 SWIG_Python_SetConstant(d
, "STC_ERLANG_UNKNOWN",SWIG_From_int(static_cast< int >(31)));
23772 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23773 SWIG_Python_SetConstant(d
, "STC_MSSQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23774 SWIG_Python_SetConstant(d
, "STC_MSSQL_LINE_COMMENT",SWIG_From_int(static_cast< int >(2)));
23775 SWIG_Python_SetConstant(d
, "STC_MSSQL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23776 SWIG_Python_SetConstant(d
, "STC_MSSQL_STRING",SWIG_From_int(static_cast< int >(4)));
23777 SWIG_Python_SetConstant(d
, "STC_MSSQL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23778 SWIG_Python_SetConstant(d
, "STC_MSSQL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23779 SWIG_Python_SetConstant(d
, "STC_MSSQL_VARIABLE",SWIG_From_int(static_cast< int >(7)));
23780 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME",SWIG_From_int(static_cast< int >(8)));
23781 SWIG_Python_SetConstant(d
, "STC_MSSQL_STATEMENT",SWIG_From_int(static_cast< int >(9)));
23782 SWIG_Python_SetConstant(d
, "STC_MSSQL_DATATYPE",SWIG_From_int(static_cast< int >(10)));
23783 SWIG_Python_SetConstant(d
, "STC_MSSQL_SYSTABLE",SWIG_From_int(static_cast< int >(11)));
23784 SWIG_Python_SetConstant(d
, "STC_MSSQL_GLOBAL_VARIABLE",SWIG_From_int(static_cast< int >(12)));
23785 SWIG_Python_SetConstant(d
, "STC_MSSQL_FUNCTION",SWIG_From_int(static_cast< int >(13)));
23786 SWIG_Python_SetConstant(d
, "STC_MSSQL_STORED_PROCEDURE",SWIG_From_int(static_cast< int >(14)));
23787 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT_PREF_DATATYPE",SWIG_From_int(static_cast< int >(15)));
23788 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME_2",SWIG_From_int(static_cast< int >(16)));
23789 SWIG_Python_SetConstant(d
, "STC_V_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23790 SWIG_Python_SetConstant(d
, "STC_V_COMMENT",SWIG_From_int(static_cast< int >(1)));
23791 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23792 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23793 SWIG_Python_SetConstant(d
, "STC_V_NUMBER",SWIG_From_int(static_cast< int >(4)));
23794 SWIG_Python_SetConstant(d
, "STC_V_WORD",SWIG_From_int(static_cast< int >(5)));
23795 SWIG_Python_SetConstant(d
, "STC_V_STRING",SWIG_From_int(static_cast< int >(6)));
23796 SWIG_Python_SetConstant(d
, "STC_V_WORD2",SWIG_From_int(static_cast< int >(7)));
23797 SWIG_Python_SetConstant(d
, "STC_V_WORD3",SWIG_From_int(static_cast< int >(8)));
23798 SWIG_Python_SetConstant(d
, "STC_V_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23799 SWIG_Python_SetConstant(d
, "STC_V_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23800 SWIG_Python_SetConstant(d
, "STC_V_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23801 SWIG_Python_SetConstant(d
, "STC_V_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23802 SWIG_Python_SetConstant(d
, "STC_V_USER",SWIG_From_int(static_cast< int >(19)));
23803 SWIG_Python_SetConstant(d
, "STC_KIX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23804 SWIG_Python_SetConstant(d
, "STC_KIX_COMMENT",SWIG_From_int(static_cast< int >(1)));
23805 SWIG_Python_SetConstant(d
, "STC_KIX_STRING1",SWIG_From_int(static_cast< int >(2)));
23806 SWIG_Python_SetConstant(d
, "STC_KIX_STRING2",SWIG_From_int(static_cast< int >(3)));
23807 SWIG_Python_SetConstant(d
, "STC_KIX_NUMBER",SWIG_From_int(static_cast< int >(4)));
23808 SWIG_Python_SetConstant(d
, "STC_KIX_VAR",SWIG_From_int(static_cast< int >(5)));
23809 SWIG_Python_SetConstant(d
, "STC_KIX_MACRO",SWIG_From_int(static_cast< int >(6)));
23810 SWIG_Python_SetConstant(d
, "STC_KIX_KEYWORD",SWIG_From_int(static_cast< int >(7)));
23811 SWIG_Python_SetConstant(d
, "STC_KIX_FUNCTIONS",SWIG_From_int(static_cast< int >(8)));
23812 SWIG_Python_SetConstant(d
, "STC_KIX_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23813 SWIG_Python_SetConstant(d
, "STC_KIX_IDENTIFIER",SWIG_From_int(static_cast< int >(31)));
23814 SWIG_Python_SetConstant(d
, "STC_GC_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23815 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23816 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23817 SWIG_Python_SetConstant(d
, "STC_GC_GLOBAL",SWIG_From_int(static_cast< int >(3)));
23818 SWIG_Python_SetConstant(d
, "STC_GC_EVENT",SWIG_From_int(static_cast< int >(4)));
23819 SWIG_Python_SetConstant(d
, "STC_GC_ATTRIBUTE",SWIG_From_int(static_cast< int >(5)));
23820 SWIG_Python_SetConstant(d
, "STC_GC_CONTROL",SWIG_From_int(static_cast< int >(6)));
23821 SWIG_Python_SetConstant(d
, "STC_GC_COMMAND",SWIG_From_int(static_cast< int >(7)));
23822 SWIG_Python_SetConstant(d
, "STC_GC_STRING",SWIG_From_int(static_cast< int >(8)));
23823 SWIG_Python_SetConstant(d
, "STC_GC_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23824 SWIG_Python_SetConstant(d
, "STC_SN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23825 SWIG_Python_SetConstant(d
, "STC_SN_CODE",SWIG_From_int(static_cast< int >(1)));
23826 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23827 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23828 SWIG_Python_SetConstant(d
, "STC_SN_NUMBER",SWIG_From_int(static_cast< int >(4)));
23829 SWIG_Python_SetConstant(d
, "STC_SN_WORD",SWIG_From_int(static_cast< int >(5)));
23830 SWIG_Python_SetConstant(d
, "STC_SN_STRING",SWIG_From_int(static_cast< int >(6)));
23831 SWIG_Python_SetConstant(d
, "STC_SN_WORD2",SWIG_From_int(static_cast< int >(7)));
23832 SWIG_Python_SetConstant(d
, "STC_SN_WORD3",SWIG_From_int(static_cast< int >(8)));
23833 SWIG_Python_SetConstant(d
, "STC_SN_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23834 SWIG_Python_SetConstant(d
, "STC_SN_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23835 SWIG_Python_SetConstant(d
, "STC_SN_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23836 SWIG_Python_SetConstant(d
, "STC_SN_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23837 SWIG_Python_SetConstant(d
, "STC_SN_REGEXTAG",SWIG_From_int(static_cast< int >(13)));
23838 SWIG_Python_SetConstant(d
, "STC_SN_SIGNAL",SWIG_From_int(static_cast< int >(14)));
23839 SWIG_Python_SetConstant(d
, "STC_SN_USER",SWIG_From_int(static_cast< int >(19)));
23840 SWIG_Python_SetConstant(d
, "STC_AU3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23841 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENT",SWIG_From_int(static_cast< int >(1)));
23842 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23843 SWIG_Python_SetConstant(d
, "STC_AU3_NUMBER",SWIG_From_int(static_cast< int >(3)));
23844 SWIG_Python_SetConstant(d
, "STC_AU3_FUNCTION",SWIG_From_int(static_cast< int >(4)));
23845 SWIG_Python_SetConstant(d
, "STC_AU3_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23846 SWIG_Python_SetConstant(d
, "STC_AU3_MACRO",SWIG_From_int(static_cast< int >(6)));
23847 SWIG_Python_SetConstant(d
, "STC_AU3_STRING",SWIG_From_int(static_cast< int >(7)));
23848 SWIG_Python_SetConstant(d
, "STC_AU3_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23849 SWIG_Python_SetConstant(d
, "STC_AU3_VARIABLE",SWIG_From_int(static_cast< int >(9)));
23850 SWIG_Python_SetConstant(d
, "STC_AU3_SENT",SWIG_From_int(static_cast< int >(10)));
23851 SWIG_Python_SetConstant(d
, "STC_AU3_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23852 SWIG_Python_SetConstant(d
, "STC_AU3_SPECIAL",SWIG_From_int(static_cast< int >(12)));
23853 SWIG_Python_SetConstant(d
, "STC_AU3_EXPAND",SWIG_From_int(static_cast< int >(13)));
23854 SWIG_Python_SetConstant(d
, "STC_AU3_COMOBJ",SWIG_From_int(static_cast< int >(14)));
23855 SWIG_Python_SetConstant(d
, "STC_APDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23856 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23857 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23858 SWIG_Python_SetConstant(d
, "STC_APDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23859 SWIG_Python_SetConstant(d
, "STC_APDL_STRING",SWIG_From_int(static_cast< int >(4)));
23860 SWIG_Python_SetConstant(d
, "STC_APDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23861 SWIG_Python_SetConstant(d
, "STC_APDL_WORD",SWIG_From_int(static_cast< int >(6)));
23862 SWIG_Python_SetConstant(d
, "STC_APDL_PROCESSOR",SWIG_From_int(static_cast< int >(7)));
23863 SWIG_Python_SetConstant(d
, "STC_APDL_COMMAND",SWIG_From_int(static_cast< int >(8)));
23864 SWIG_Python_SetConstant(d
, "STC_APDL_SLASHCOMMAND",SWIG_From_int(static_cast< int >(9)));
23865 SWIG_Python_SetConstant(d
, "STC_APDL_STARCOMMAND",SWIG_From_int(static_cast< int >(10)));
23866 SWIG_Python_SetConstant(d
, "STC_APDL_ARGUMENT",SWIG_From_int(static_cast< int >(11)));
23867 SWIG_Python_SetConstant(d
, "STC_APDL_FUNCTION",SWIG_From_int(static_cast< int >(12)));
23868 SWIG_Python_SetConstant(d
, "STC_SH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23869 SWIG_Python_SetConstant(d
, "STC_SH_ERROR",SWIG_From_int(static_cast< int >(1)));
23870 SWIG_Python_SetConstant(d
, "STC_SH_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23871 SWIG_Python_SetConstant(d
, "STC_SH_NUMBER",SWIG_From_int(static_cast< int >(3)));
23872 SWIG_Python_SetConstant(d
, "STC_SH_WORD",SWIG_From_int(static_cast< int >(4)));
23873 SWIG_Python_SetConstant(d
, "STC_SH_STRING",SWIG_From_int(static_cast< int >(5)));
23874 SWIG_Python_SetConstant(d
, "STC_SH_CHARACTER",SWIG_From_int(static_cast< int >(6)));
23875 SWIG_Python_SetConstant(d
, "STC_SH_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23876 SWIG_Python_SetConstant(d
, "STC_SH_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23877 SWIG_Python_SetConstant(d
, "STC_SH_SCALAR",SWIG_From_int(static_cast< int >(9)));
23878 SWIG_Python_SetConstant(d
, "STC_SH_PARAM",SWIG_From_int(static_cast< int >(10)));
23879 SWIG_Python_SetConstant(d
, "STC_SH_BACKTICKS",SWIG_From_int(static_cast< int >(11)));
23880 SWIG_Python_SetConstant(d
, "STC_SH_HERE_DELIM",SWIG_From_int(static_cast< int >(12)));
23881 SWIG_Python_SetConstant(d
, "STC_SH_HERE_Q",SWIG_From_int(static_cast< int >(13)));
23882 SWIG_Python_SetConstant(d
, "STC_ASN1_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23883 SWIG_Python_SetConstant(d
, "STC_ASN1_COMMENT",SWIG_From_int(static_cast< int >(1)));
23884 SWIG_Python_SetConstant(d
, "STC_ASN1_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23885 SWIG_Python_SetConstant(d
, "STC_ASN1_STRING",SWIG_From_int(static_cast< int >(3)));
23886 SWIG_Python_SetConstant(d
, "STC_ASN1_OID",SWIG_From_int(static_cast< int >(4)));
23887 SWIG_Python_SetConstant(d
, "STC_ASN1_SCALAR",SWIG_From_int(static_cast< int >(5)));
23888 SWIG_Python_SetConstant(d
, "STC_ASN1_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23889 SWIG_Python_SetConstant(d
, "STC_ASN1_ATTRIBUTE",SWIG_From_int(static_cast< int >(7)));
23890 SWIG_Python_SetConstant(d
, "STC_ASN1_DESCRIPTOR",SWIG_From_int(static_cast< int >(8)));
23891 SWIG_Python_SetConstant(d
, "STC_ASN1_TYPE",SWIG_From_int(static_cast< int >(9)));
23892 SWIG_Python_SetConstant(d
, "STC_ASN1_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23893 SWIG_Python_SetConstant(d
, "STC_VHDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23894 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23895 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(2)));
23896 SWIG_Python_SetConstant(d
, "STC_VHDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23897 SWIG_Python_SetConstant(d
, "STC_VHDL_STRING",SWIG_From_int(static_cast< int >(4)));
23898 SWIG_Python_SetConstant(d
, "STC_VHDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23899 SWIG_Python_SetConstant(d
, "STC_VHDL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23900 SWIG_Python_SetConstant(d
, "STC_VHDL_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23901 SWIG_Python_SetConstant(d
, "STC_VHDL_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23902 SWIG_Python_SetConstant(d
, "STC_VHDL_STDOPERATOR",SWIG_From_int(static_cast< int >(9)));
23903 SWIG_Python_SetConstant(d
, "STC_VHDL_ATTRIBUTE",SWIG_From_int(static_cast< int >(10)));
23904 SWIG_Python_SetConstant(d
, "STC_VHDL_STDFUNCTION",SWIG_From_int(static_cast< int >(11)));
23905 SWIG_Python_SetConstant(d
, "STC_VHDL_STDPACKAGE",SWIG_From_int(static_cast< int >(12)));
23906 SWIG_Python_SetConstant(d
, "STC_VHDL_STDTYPE",SWIG_From_int(static_cast< int >(13)));
23907 SWIG_Python_SetConstant(d
, "STC_VHDL_USERWORD",SWIG_From_int(static_cast< int >(14)));
23908 SWIG_Python_SetConstant(d
, "STC_CAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23909 SWIG_Python_SetConstant(d
, "STC_CAML_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23910 SWIG_Python_SetConstant(d
, "STC_CAML_TAGNAME",SWIG_From_int(static_cast< int >(2)));
23911 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23912 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD2",SWIG_From_int(static_cast< int >(4)));
23913 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD3",SWIG_From_int(static_cast< int >(5)));
23914 SWIG_Python_SetConstant(d
, "STC_CAML_LINENUM",SWIG_From_int(static_cast< int >(6)));
23915 SWIG_Python_SetConstant(d
, "STC_CAML_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23916 SWIG_Python_SetConstant(d
, "STC_CAML_NUMBER",SWIG_From_int(static_cast< int >(8)));
23917 SWIG_Python_SetConstant(d
, "STC_CAML_CHAR",SWIG_From_int(static_cast< int >(9)));
23918 SWIG_Python_SetConstant(d
, "STC_CAML_STRING",SWIG_From_int(static_cast< int >(11)));
23919 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT",SWIG_From_int(static_cast< int >(12)));
23920 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT1",SWIG_From_int(static_cast< int >(13)));
23921 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT2",SWIG_From_int(static_cast< int >(14)));
23922 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT3",SWIG_From_int(static_cast< int >(15)));
23923 SWIG_Python_SetConstant(d
, "STC_HA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23924 SWIG_Python_SetConstant(d
, "STC_HA_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23925 SWIG_Python_SetConstant(d
, "STC_HA_KEYWORD",SWIG_From_int(static_cast< int >(2)));
23926 SWIG_Python_SetConstant(d
, "STC_HA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23927 SWIG_Python_SetConstant(d
, "STC_HA_STRING",SWIG_From_int(static_cast< int >(4)));
23928 SWIG_Python_SetConstant(d
, "STC_HA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23929 SWIG_Python_SetConstant(d
, "STC_HA_CLASS",SWIG_From_int(static_cast< int >(6)));
23930 SWIG_Python_SetConstant(d
, "STC_HA_MODULE",SWIG_From_int(static_cast< int >(7)));
23931 SWIG_Python_SetConstant(d
, "STC_HA_CAPITAL",SWIG_From_int(static_cast< int >(8)));
23932 SWIG_Python_SetConstant(d
, "STC_HA_DATA",SWIG_From_int(static_cast< int >(9)));
23933 SWIG_Python_SetConstant(d
, "STC_HA_IMPORT",SWIG_From_int(static_cast< int >(10)));
23934 SWIG_Python_SetConstant(d
, "STC_HA_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23935 SWIG_Python_SetConstant(d
, "STC_HA_INSTANCE",SWIG_From_int(static_cast< int >(12)));
23936 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTLINE",SWIG_From_int(static_cast< int >(13)));
23937 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK",SWIG_From_int(static_cast< int >(14)));
23938 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK2",SWIG_From_int(static_cast< int >(15)));
23939 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK3",SWIG_From_int(static_cast< int >(16)));
23940 SWIG_Python_SetConstant(d
, "STC_T3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23941 SWIG_Python_SetConstant(d
, "STC_T3_X_DEFAULT",SWIG_From_int(static_cast< int >(1)));
23942 SWIG_Python_SetConstant(d
, "STC_T3_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23943 SWIG_Python_SetConstant(d
, "STC_T3_BLOCK_COMMENT",SWIG_From_int(static_cast< int >(3)));
23944 SWIG_Python_SetConstant(d
, "STC_T3_LINE_COMMENT",SWIG_From_int(static_cast< int >(4)));
23945 SWIG_Python_SetConstant(d
, "STC_T3_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23946 SWIG_Python_SetConstant(d
, "STC_T3_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23947 SWIG_Python_SetConstant(d
, "STC_T3_NUMBER",SWIG_From_int(static_cast< int >(7)));
23948 SWIG_Python_SetConstant(d
, "STC_T3_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23949 SWIG_Python_SetConstant(d
, "STC_T3_S_STRING",SWIG_From_int(static_cast< int >(9)));
23950 SWIG_Python_SetConstant(d
, "STC_T3_D_STRING",SWIG_From_int(static_cast< int >(10)));
23951 SWIG_Python_SetConstant(d
, "STC_T3_X_STRING",SWIG_From_int(static_cast< int >(11)));
23952 SWIG_Python_SetConstant(d
, "STC_T3_LIB_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23953 SWIG_Python_SetConstant(d
, "STC_T3_MSG_PARAM",SWIG_From_int(static_cast< int >(13)));
23954 SWIG_Python_SetConstant(d
, "STC_T3_HTML_TAG",SWIG_From_int(static_cast< int >(14)));
23955 SWIG_Python_SetConstant(d
, "STC_T3_HTML_DEFAULT",SWIG_From_int(static_cast< int >(15)));
23956 SWIG_Python_SetConstant(d
, "STC_T3_HTML_STRING",SWIG_From_int(static_cast< int >(16)));
23957 SWIG_Python_SetConstant(d
, "STC_T3_USER1",SWIG_From_int(static_cast< int >(17)));
23958 SWIG_Python_SetConstant(d
, "STC_T3_USER2",SWIG_From_int(static_cast< int >(18)));
23959 SWIG_Python_SetConstant(d
, "STC_T3_USER3",SWIG_From_int(static_cast< int >(19)));
23960 SWIG_Python_SetConstant(d
, "STC_REBOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23961 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23962 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23963 SWIG_Python_SetConstant(d
, "STC_REBOL_PREFACE",SWIG_From_int(static_cast< int >(3)));
23964 SWIG_Python_SetConstant(d
, "STC_REBOL_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23965 SWIG_Python_SetConstant(d
, "STC_REBOL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23966 SWIG_Python_SetConstant(d
, "STC_REBOL_QUOTEDSTRING",SWIG_From_int(static_cast< int >(6)));
23967 SWIG_Python_SetConstant(d
, "STC_REBOL_BRACEDSTRING",SWIG_From_int(static_cast< int >(7)));
23968 SWIG_Python_SetConstant(d
, "STC_REBOL_NUMBER",SWIG_From_int(static_cast< int >(8)));
23969 SWIG_Python_SetConstant(d
, "STC_REBOL_PAIR",SWIG_From_int(static_cast< int >(9)));
23970 SWIG_Python_SetConstant(d
, "STC_REBOL_TUPLE",SWIG_From_int(static_cast< int >(10)));
23971 SWIG_Python_SetConstant(d
, "STC_REBOL_BINARY",SWIG_From_int(static_cast< int >(11)));
23972 SWIG_Python_SetConstant(d
, "STC_REBOL_MONEY",SWIG_From_int(static_cast< int >(12)));
23973 SWIG_Python_SetConstant(d
, "STC_REBOL_ISSUE",SWIG_From_int(static_cast< int >(13)));
23974 SWIG_Python_SetConstant(d
, "STC_REBOL_TAG",SWIG_From_int(static_cast< int >(14)));
23975 SWIG_Python_SetConstant(d
, "STC_REBOL_FILE",SWIG_From_int(static_cast< int >(15)));
23976 SWIG_Python_SetConstant(d
, "STC_REBOL_EMAIL",SWIG_From_int(static_cast< int >(16)));
23977 SWIG_Python_SetConstant(d
, "STC_REBOL_URL",SWIG_From_int(static_cast< int >(17)));
23978 SWIG_Python_SetConstant(d
, "STC_REBOL_DATE",SWIG_From_int(static_cast< int >(18)));
23979 SWIG_Python_SetConstant(d
, "STC_REBOL_TIME",SWIG_From_int(static_cast< int >(19)));
23980 SWIG_Python_SetConstant(d
, "STC_REBOL_IDENTIFIER",SWIG_From_int(static_cast< int >(20)));
23981 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD",SWIG_From_int(static_cast< int >(21)));
23982 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD2",SWIG_From_int(static_cast< int >(22)));
23983 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD3",SWIG_From_int(static_cast< int >(23)));
23984 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD4",SWIG_From_int(static_cast< int >(24)));
23985 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD5",SWIG_From_int(static_cast< int >(25)));
23986 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD6",SWIG_From_int(static_cast< int >(26)));
23987 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD7",SWIG_From_int(static_cast< int >(27)));
23988 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD8",SWIG_From_int(static_cast< int >(28)));
23989 SWIG_Python_SetConstant(d
, "STC_SQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23990 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23991 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23992 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23993 SWIG_Python_SetConstant(d
, "STC_SQL_NUMBER",SWIG_From_int(static_cast< int >(4)));
23994 SWIG_Python_SetConstant(d
, "STC_SQL_WORD",SWIG_From_int(static_cast< int >(5)));
23995 SWIG_Python_SetConstant(d
, "STC_SQL_STRING",SWIG_From_int(static_cast< int >(6)));
23996 SWIG_Python_SetConstant(d
, "STC_SQL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23997 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS",SWIG_From_int(static_cast< int >(8)));
23998 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_PROMPT",SWIG_From_int(static_cast< int >(9)));
23999 SWIG_Python_SetConstant(d
, "STC_SQL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
24000 SWIG_Python_SetConstant(d
, "STC_SQL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
24001 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_COMMENT",SWIG_From_int(static_cast< int >(13)));
24002 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
24003 SWIG_Python_SetConstant(d
, "STC_SQL_WORD2",SWIG_From_int(static_cast< int >(16)));
24004 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
24005 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
24006 SWIG_Python_SetConstant(d
, "STC_SQL_USER1",SWIG_From_int(static_cast< int >(19)));
24007 SWIG_Python_SetConstant(d
, "STC_SQL_USER2",SWIG_From_int(static_cast< int >(20)));
24008 SWIG_Python_SetConstant(d
, "STC_SQL_USER3",SWIG_From_int(static_cast< int >(21)));
24009 SWIG_Python_SetConstant(d
, "STC_SQL_USER4",SWIG_From_int(static_cast< int >(22)));
24010 SWIG_Python_SetConstant(d
, "STC_SQL_QUOTEDIDENTIFIER",SWIG_From_int(static_cast< int >(23)));
24011 SWIG_Python_SetConstant(d
, "STC_ST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24012 SWIG_Python_SetConstant(d
, "STC_ST_STRING",SWIG_From_int(static_cast< int >(1)));
24013 SWIG_Python_SetConstant(d
, "STC_ST_NUMBER",SWIG_From_int(static_cast< int >(2)));
24014 SWIG_Python_SetConstant(d
, "STC_ST_COMMENT",SWIG_From_int(static_cast< int >(3)));
24015 SWIG_Python_SetConstant(d
, "STC_ST_SYMBOL",SWIG_From_int(static_cast< int >(4)));
24016 SWIG_Python_SetConstant(d
, "STC_ST_BINARY",SWIG_From_int(static_cast< int >(5)));
24017 SWIG_Python_SetConstant(d
, "STC_ST_BOOL",SWIG_From_int(static_cast< int >(6)));
24018 SWIG_Python_SetConstant(d
, "STC_ST_SELF",SWIG_From_int(static_cast< int >(7)));
24019 SWIG_Python_SetConstant(d
, "STC_ST_SUPER",SWIG_From_int(static_cast< int >(8)));
24020 SWIG_Python_SetConstant(d
, "STC_ST_NIL",SWIG_From_int(static_cast< int >(9)));
24021 SWIG_Python_SetConstant(d
, "STC_ST_GLOBAL",SWIG_From_int(static_cast< int >(10)));
24022 SWIG_Python_SetConstant(d
, "STC_ST_RETURN",SWIG_From_int(static_cast< int >(11)));
24023 SWIG_Python_SetConstant(d
, "STC_ST_SPECIAL",SWIG_From_int(static_cast< int >(12)));
24024 SWIG_Python_SetConstant(d
, "STC_ST_KWSEND",SWIG_From_int(static_cast< int >(13)));
24025 SWIG_Python_SetConstant(d
, "STC_ST_ASSIGN",SWIG_From_int(static_cast< int >(14)));
24026 SWIG_Python_SetConstant(d
, "STC_ST_CHARACTER",SWIG_From_int(static_cast< int >(15)));
24027 SWIG_Python_SetConstant(d
, "STC_ST_SPEC_SEL",SWIG_From_int(static_cast< int >(16)));
24028 SWIG_Python_SetConstant(d
, "STC_FS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24029 SWIG_Python_SetConstant(d
, "STC_FS_COMMENT",SWIG_From_int(static_cast< int >(1)));
24030 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
24031 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
24032 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(4)));
24033 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(5)));
24034 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(6)));
24035 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD",SWIG_From_int(static_cast< int >(7)));
24036 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD2",SWIG_From_int(static_cast< int >(8)));
24037 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD3",SWIG_From_int(static_cast< int >(9)));
24038 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD4",SWIG_From_int(static_cast< int >(10)));
24039 SWIG_Python_SetConstant(d
, "STC_FS_NUMBER",SWIG_From_int(static_cast< int >(11)));
24040 SWIG_Python_SetConstant(d
, "STC_FS_STRING",SWIG_From_int(static_cast< int >(12)));
24041 SWIG_Python_SetConstant(d
, "STC_FS_PREPROCESSOR",SWIG_From_int(static_cast< int >(13)));
24042 SWIG_Python_SetConstant(d
, "STC_FS_OPERATOR",SWIG_From_int(static_cast< int >(14)));
24043 SWIG_Python_SetConstant(d
, "STC_FS_IDENTIFIER",SWIG_From_int(static_cast< int >(15)));
24044 SWIG_Python_SetConstant(d
, "STC_FS_DATE",SWIG_From_int(static_cast< int >(16)));
24045 SWIG_Python_SetConstant(d
, "STC_FS_STRINGEOL",SWIG_From_int(static_cast< int >(17)));
24046 SWIG_Python_SetConstant(d
, "STC_FS_CONSTANT",SWIG_From_int(static_cast< int >(18)));
24047 SWIG_Python_SetConstant(d
, "STC_FS_ASM",SWIG_From_int(static_cast< int >(19)));
24048 SWIG_Python_SetConstant(d
, "STC_FS_LABEL",SWIG_From_int(static_cast< int >(20)));
24049 SWIG_Python_SetConstant(d
, "STC_FS_ERROR",SWIG_From_int(static_cast< int >(21)));
24050 SWIG_Python_SetConstant(d
, "STC_FS_HEXNUMBER",SWIG_From_int(static_cast< int >(22)));
24051 SWIG_Python_SetConstant(d
, "STC_FS_BINNUMBER",SWIG_From_int(static_cast< int >(23)));
24052 SWIG_Python_SetConstant(d
, "STC_CSOUND_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24053 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENT",SWIG_From_int(static_cast< int >(1)));
24054 SWIG_Python_SetConstant(d
, "STC_CSOUND_NUMBER",SWIG_From_int(static_cast< int >(2)));
24055 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPERATOR",SWIG_From_int(static_cast< int >(3)));
24056 SWIG_Python_SetConstant(d
, "STC_CSOUND_INSTR",SWIG_From_int(static_cast< int >(4)));
24057 SWIG_Python_SetConstant(d
, "STC_CSOUND_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
24058 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPCODE",SWIG_From_int(static_cast< int >(6)));
24059 SWIG_Python_SetConstant(d
, "STC_CSOUND_HEADERSTMT",SWIG_From_int(static_cast< int >(7)));
24060 SWIG_Python_SetConstant(d
, "STC_CSOUND_USERKEYWORD",SWIG_From_int(static_cast< int >(8)));
24061 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENTBLOCK",SWIG_From_int(static_cast< int >(9)));
24062 SWIG_Python_SetConstant(d
, "STC_CSOUND_PARAM",SWIG_From_int(static_cast< int >(10)));
24063 SWIG_Python_SetConstant(d
, "STC_CSOUND_ARATE_VAR",SWIG_From_int(static_cast< int >(11)));
24064 SWIG_Python_SetConstant(d
, "STC_CSOUND_KRATE_VAR",SWIG_From_int(static_cast< int >(12)));
24065 SWIG_Python_SetConstant(d
, "STC_CSOUND_IRATE_VAR",SWIG_From_int(static_cast< int >(13)));
24066 SWIG_Python_SetConstant(d
, "STC_CSOUND_GLOBAL_VAR",SWIG_From_int(static_cast< int >(14)));
24067 SWIG_Python_SetConstant(d
, "STC_CSOUND_STRINGEOL",SWIG_From_int(static_cast< int >(15)));
24068 SWIG_Python_SetConstant(d
, "STC_CMD_REDO",SWIG_From_int(static_cast< int >(2011)));
24069 SWIG_Python_SetConstant(d
, "STC_CMD_SELECTALL",SWIG_From_int(static_cast< int >(2013)));
24070 SWIG_Python_SetConstant(d
, "STC_CMD_UNDO",SWIG_From_int(static_cast< int >(2176)));
24071 SWIG_Python_SetConstant(d
, "STC_CMD_CUT",SWIG_From_int(static_cast< int >(2177)));
24072 SWIG_Python_SetConstant(d
, "STC_CMD_COPY",SWIG_From_int(static_cast< int >(2178)));
24073 SWIG_Python_SetConstant(d
, "STC_CMD_PASTE",SWIG_From_int(static_cast< int >(2179)));
24074 SWIG_Python_SetConstant(d
, "STC_CMD_CLEAR",SWIG_From_int(static_cast< int >(2180)));
24075 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWN",SWIG_From_int(static_cast< int >(2300)));
24076 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNEXTEND",SWIG_From_int(static_cast< int >(2301)));
24077 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUP",SWIG_From_int(static_cast< int >(2302)));
24078 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPEXTEND",SWIG_From_int(static_cast< int >(2303)));
24079 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFT",SWIG_From_int(static_cast< int >(2304)));
24080 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTEXTEND",SWIG_From_int(static_cast< int >(2305)));
24081 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHT",SWIG_From_int(static_cast< int >(2306)));
24082 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTEXTEND",SWIG_From_int(static_cast< int >(2307)));
24083 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFT",SWIG_From_int(static_cast< int >(2308)));
24084 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEXTEND",SWIG_From_int(static_cast< int >(2309)));
24085 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHT",SWIG_From_int(static_cast< int >(2310)));
24086 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEXTEND",SWIG_From_int(static_cast< int >(2311)));
24087 SWIG_Python_SetConstant(d
, "STC_CMD_HOME",SWIG_From_int(static_cast< int >(2312)));
24088 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEEXTEND",SWIG_From_int(static_cast< int >(2313)));
24089 SWIG_Python_SetConstant(d
, "STC_CMD_LINEEND",SWIG_From_int(static_cast< int >(2314)));
24090 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDEXTEND",SWIG_From_int(static_cast< int >(2315)));
24091 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTART",SWIG_From_int(static_cast< int >(2316)));
24092 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTARTEXTEND",SWIG_From_int(static_cast< int >(2317)));
24093 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTEND",SWIG_From_int(static_cast< int >(2318)));
24094 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTENDEXTEND",SWIG_From_int(static_cast< int >(2319)));
24095 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUP",SWIG_From_int(static_cast< int >(2320)));
24096 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPEXTEND",SWIG_From_int(static_cast< int >(2321)));
24097 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWN",SWIG_From_int(static_cast< int >(2322)));
24098 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2323)));
24099 SWIG_Python_SetConstant(d
, "STC_CMD_EDITTOGGLEOVERTYPE",SWIG_From_int(static_cast< int >(2324)));
24100 SWIG_Python_SetConstant(d
, "STC_CMD_CANCEL",SWIG_From_int(static_cast< int >(2325)));
24101 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACK",SWIG_From_int(static_cast< int >(2326)));
24102 SWIG_Python_SetConstant(d
, "STC_CMD_TAB",SWIG_From_int(static_cast< int >(2327)));
24103 SWIG_Python_SetConstant(d
, "STC_CMD_BACKTAB",SWIG_From_int(static_cast< int >(2328)));
24104 SWIG_Python_SetConstant(d
, "STC_CMD_NEWLINE",SWIG_From_int(static_cast< int >(2329)));
24105 SWIG_Python_SetConstant(d
, "STC_CMD_FORMFEED",SWIG_From_int(static_cast< int >(2330)));
24106 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOME",SWIG_From_int(static_cast< int >(2331)));
24107 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEEXTEND",SWIG_From_int(static_cast< int >(2332)));
24108 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMIN",SWIG_From_int(static_cast< int >(2333)));
24109 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMOUT",SWIG_From_int(static_cast< int >(2334)));
24110 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDLEFT",SWIG_From_int(static_cast< int >(2335)));
24111 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDRIGHT",SWIG_From_int(static_cast< int >(2336)));
24112 SWIG_Python_SetConstant(d
, "STC_CMD_LINECUT",SWIG_From_int(static_cast< int >(2337)));
24113 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDELETE",SWIG_From_int(static_cast< int >(2338)));
24114 SWIG_Python_SetConstant(d
, "STC_CMD_LINETRANSPOSE",SWIG_From_int(static_cast< int >(2339)));
24115 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDUPLICATE",SWIG_From_int(static_cast< int >(2404)));
24116 SWIG_Python_SetConstant(d
, "STC_CMD_LOWERCASE",SWIG_From_int(static_cast< int >(2340)));
24117 SWIG_Python_SetConstant(d
, "STC_CMD_UPPERCASE",SWIG_From_int(static_cast< int >(2341)));
24118 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLDOWN",SWIG_From_int(static_cast< int >(2342)));
24119 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLUP",SWIG_From_int(static_cast< int >(2343)));
24120 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACKNOTLINE",SWIG_From_int(static_cast< int >(2344)));
24121 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAY",SWIG_From_int(static_cast< int >(2345)));
24122 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2346)));
24123 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAY",SWIG_From_int(static_cast< int >(2347)));
24124 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2348)));
24125 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAP",SWIG_From_int(static_cast< int >(2349)));
24126 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2450)));
24127 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAP",SWIG_From_int(static_cast< int >(2451)));
24128 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAPEXTEND",SWIG_From_int(static_cast< int >(2452)));
24129 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAP",SWIG_From_int(static_cast< int >(2453)));
24130 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2454)));
24131 SWIG_Python_SetConstant(d
, "STC_CMD_LINECOPY",SWIG_From_int(static_cast< int >(2455)));
24132 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFT",SWIG_From_int(static_cast< int >(2390)));
24133 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFTEXTEND",SWIG_From_int(static_cast< int >(2391)));
24134 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHT",SWIG_From_int(static_cast< int >(2392)));
24135 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHTEXTEND",SWIG_From_int(static_cast< int >(2393)));
24136 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINELEFT",SWIG_From_int(static_cast< int >(2395)));
24137 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINERIGHT",SWIG_From_int(static_cast< int >(2396)));
24138 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWN",SWIG_From_int(static_cast< int >(2413)));
24139 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWNEXTEND",SWIG_From_int(static_cast< int >(2414)));
24140 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUP",SWIG_From_int(static_cast< int >(2415)));
24141 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUPEXTEND",SWIG_From_int(static_cast< int >(2416)));
24142 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2426)));
24143 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2427)));
24144 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTRECTEXTEND",SWIG_From_int(static_cast< int >(2428)));
24145 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTRECTEXTEND",SWIG_From_int(static_cast< int >(2429)));
24146 SWIG_Python_SetConstant(d
, "STC_CMD_HOMERECTEXTEND",SWIG_From_int(static_cast< int >(2430)));
24147 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMERECTEXTEND",SWIG_From_int(static_cast< int >(2431)));
24148 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDRECTEXTEND",SWIG_From_int(static_cast< int >(2432)));
24149 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2433)));
24150 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2434)));
24151 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUP",SWIG_From_int(static_cast< int >(2435)));
24152 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUPEXTEND",SWIG_From_int(static_cast< int >(2436)));
24153 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWN",SWIG_From_int(static_cast< int >(2437)));
24154 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2438)));
24155 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEND",SWIG_From_int(static_cast< int >(2439)));
24156 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTENDEXTEND",SWIG_From_int(static_cast< int >(2440)));
24157 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEND",SWIG_From_int(static_cast< int >(2441)));
24158 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTENDEXTEND",SWIG_From_int(static_cast< int >(2442)));
24159 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHANGE",SWIG_From_int(static_cast< int >(wxEVT_STC_CHANGE
)));
24160 SWIG_Python_SetConstant(d
, "wxEVT_STC_STYLENEEDED",SWIG_From_int(static_cast< int >(wxEVT_STC_STYLENEEDED
)));
24161 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHARADDED",SWIG_From_int(static_cast< int >(wxEVT_STC_CHARADDED
)));
24162 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTREACHED",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTREACHED
)));
24163 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTLEFT",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTLEFT
)));
24164 SWIG_Python_SetConstant(d
, "wxEVT_STC_ROMODIFYATTEMPT",SWIG_From_int(static_cast< int >(wxEVT_STC_ROMODIFYATTEMPT
)));
24165 SWIG_Python_SetConstant(d
, "wxEVT_STC_KEY",SWIG_From_int(static_cast< int >(wxEVT_STC_KEY
)));
24166 SWIG_Python_SetConstant(d
, "wxEVT_STC_DOUBLECLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_DOUBLECLICK
)));
24167 SWIG_Python_SetConstant(d
, "wxEVT_STC_UPDATEUI",SWIG_From_int(static_cast< int >(wxEVT_STC_UPDATEUI
)));
24168 SWIG_Python_SetConstant(d
, "wxEVT_STC_MODIFIED",SWIG_From_int(static_cast< int >(wxEVT_STC_MODIFIED
)));
24169 SWIG_Python_SetConstant(d
, "wxEVT_STC_MACRORECORD",SWIG_From_int(static_cast< int >(wxEVT_STC_MACRORECORD
)));
24170 SWIG_Python_SetConstant(d
, "wxEVT_STC_MARGINCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_MARGINCLICK
)));
24171 SWIG_Python_SetConstant(d
, "wxEVT_STC_NEEDSHOWN",SWIG_From_int(static_cast< int >(wxEVT_STC_NEEDSHOWN
)));
24172 SWIG_Python_SetConstant(d
, "wxEVT_STC_PAINTED",SWIG_From_int(static_cast< int >(wxEVT_STC_PAINTED
)));
24173 SWIG_Python_SetConstant(d
, "wxEVT_STC_USERLISTSELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_USERLISTSELECTION
)));
24174 SWIG_Python_SetConstant(d
, "wxEVT_STC_URIDROPPED",SWIG_From_int(static_cast< int >(wxEVT_STC_URIDROPPED
)));
24175 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLSTART",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLSTART
)));
24176 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLEND",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLEND
)));
24177 SWIG_Python_SetConstant(d
, "wxEVT_STC_START_DRAG",SWIG_From_int(static_cast< int >(wxEVT_STC_START_DRAG
)));
24178 SWIG_Python_SetConstant(d
, "wxEVT_STC_DRAG_OVER",SWIG_From_int(static_cast< int >(wxEVT_STC_DRAG_OVER
)));
24179 SWIG_Python_SetConstant(d
, "wxEVT_STC_DO_DROP",SWIG_From_int(static_cast< int >(wxEVT_STC_DO_DROP
)));
24180 SWIG_Python_SetConstant(d
, "wxEVT_STC_ZOOM",SWIG_From_int(static_cast< int >(wxEVT_STC_ZOOM
)));
24181 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_CLICK
)));
24182 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_DCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_DCLICK
)));
24183 SWIG_Python_SetConstant(d
, "wxEVT_STC_CALLTIP_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_CALLTIP_CLICK
)));
24184 SWIG_Python_SetConstant(d
, "wxEVT_STC_AUTOCOMP_SELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_AUTOCOMP_SELECTION
)));