1 /* ----------------------------------------------------------------------------
2 * This file was automatically generated by SWIG (http://www.swig.org).
5 * This file is not intended to be easily readable and contains a number of
6 * coding conventions designed to improve portability and efficiency. Do not make
7 * changes to this file unless you know what you are doing--modify the SWIG
8 * interface file instead.
9 * ----------------------------------------------------------------------------- */
12 #define SWIG_PYTHON_DIRECTOR_NO_VTABLE
15 template<class T
> class SwigValueWrapper
{
18 SwigValueWrapper() : tt(0) { }
19 SwigValueWrapper(const SwigValueWrapper
<T
>& rhs
) : tt(new T(*rhs
.tt
)) { }
20 SwigValueWrapper(const T
& t
) : tt(new T(t
)) { }
21 ~SwigValueWrapper() { delete tt
; }
22 SwigValueWrapper
& operator=(const T
& t
) { delete tt
; tt
= new T(t
); return *this; }
23 operator T
&() const { return *tt
; }
24 T
*operator&() { return tt
; }
26 SwigValueWrapper
& operator=(const SwigValueWrapper
<T
>& rhs
);
30 /* -----------------------------------------------------------------------------
31 * This section contains generic SWIG labels for method/variable
32 * declarations/attributes, and other compiler dependent labels.
33 * ----------------------------------------------------------------------------- */
35 /* template workaround for compilers that cannot correctly implement the C++ standard */
36 #ifndef SWIGTEMPLATEDISAMBIGUATOR
37 # if defined(__SUNPRO_CC)
38 # if (__SUNPRO_CC <= 0x560)
39 # define SWIGTEMPLATEDISAMBIGUATOR template
41 # define SWIGTEMPLATEDISAMBIGUATOR
44 # define SWIGTEMPLATEDISAMBIGUATOR
48 /* inline attribute */
50 # if defined(__cplusplus) || (defined(__GNUC__) && !defined(__STRICT_ANSI__))
51 # define SWIGINLINE inline
57 /* attribute recognised by some compilers to avoid 'unused' warnings */
59 # if defined(__GNUC__)
60 # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))
61 # define SWIGUNUSED __attribute__ ((__unused__))
66 # define SWIGUNUSED __attribute__ ((__unused__))
72 #ifndef SWIGUNUSEDPARM
74 # define SWIGUNUSEDPARM(p)
76 # define SWIGUNUSEDPARM(p) p SWIGUNUSED
80 /* internal SWIG method */
82 # define SWIGINTERN static SWIGUNUSED
85 /* internal inline SWIG method */
86 #ifndef SWIGINTERNINLINE
87 # define SWIGINTERNINLINE SWIGINTERN SWIGINLINE
90 /* exporting methods */
91 #if (__GNUC__ >= 4) || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)
92 # ifndef GCC_HASCLASSVISIBILITY
93 # define GCC_HASCLASSVISIBILITY
98 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
99 # if defined(STATIC_LINKED)
102 # define SWIGEXPORT __declspec(dllexport)
105 # if defined(__GNUC__) && defined(GCC_HASCLASSVISIBILITY)
106 # define SWIGEXPORT __attribute__ ((visibility("default")))
113 /* calling conventions for Windows */
115 # if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
116 # define SWIGSTDCALL __stdcall
122 /* Deal with Microsoft's attempt at deprecating C standard runtime functions */
123 #if !defined(SWIG_NO_CRT_SECURE_NO_DEPRECATE) && defined(_MSC_VER)
124 # define _CRT_SECURE_NO_DEPRECATE
128 /* Python.h has to appear first */
131 /* -----------------------------------------------------------------------------
134 * This file contains generic CAPI SWIG runtime support for pointer
136 * ----------------------------------------------------------------------------- */
138 /* This should only be incremented when either the layout of swig_type_info changes,
139 or for whatever reason, the runtime changes incompatibly */
140 #define SWIG_RUNTIME_VERSION "2"
142 /* define SWIG_TYPE_TABLE_NAME as "SWIG_TYPE_TABLE" */
143 #ifdef SWIG_TYPE_TABLE
144 # define SWIG_QUOTE_STRING(x) #x
145 # define SWIG_EXPAND_AND_QUOTE_STRING(x) SWIG_QUOTE_STRING(x)
146 # define SWIG_TYPE_TABLE_NAME SWIG_EXPAND_AND_QUOTE_STRING(SWIG_TYPE_TABLE)
148 # define SWIG_TYPE_TABLE_NAME
152 You can use the SWIGRUNTIME and SWIGRUNTIMEINLINE macros for
153 creating a static or dynamic library from the swig runtime code.
154 In 99.9% of the cases, swig just needs to declare them as 'static'.
156 But only do this if is strictly necessary, ie, if you have problems
157 with your compiler or so.
161 # define SWIGRUNTIME SWIGINTERN
164 #ifndef SWIGRUNTIMEINLINE
165 # define SWIGRUNTIMEINLINE SWIGRUNTIME SWIGINLINE
168 /* Generic buffer size */
169 #ifndef SWIG_BUFFER_SIZE
170 # define SWIG_BUFFER_SIZE 1024
173 /* Flags for pointer conversions */
174 #define SWIG_POINTER_DISOWN 0x1
176 /* Flags for new pointer objects */
177 #define SWIG_POINTER_OWN 0x1
181 Flags/methods for returning states.
183 The swig conversion methods, as ConvertPtr, return and integer
184 that tells if the conversion was successful or not. And if not,
185 an error code can be returned (see swigerrors.swg for the codes).
187 Use the following macros/flags to set or process the returning
190 In old swig versions, you usually write code as:
192 if (SWIG_ConvertPtr(obj,vptr,ty.flags) != -1) {
198 Now you can be more explicit as:
200 int res = SWIG_ConvertPtr(obj,vptr,ty.flags);
201 if (SWIG_IsOK(res)) {
207 that seems to be the same, but now you can also do
210 int res = SWIG_ConvertPtr(obj,(void **)(&ptr),ty.flags);
211 if (SWIG_IsOK(res)) {
213 if (SWIG_IsNewObj(res) {
223 I.e., now SWIG_ConvertPtr can return new objects and you can
224 identify the case and take care of the deallocation. Of course that
225 requires also to SWIG_ConvertPtr to return new result values, as
227 int SWIG_ConvertPtr(obj, ptr,...) {
229 if (<need new object>) {
230 *ptr = <ptr to new allocated object>;
233 *ptr = <ptr to old object>;
241 Of course, returning the plain '0(success)/-1(fail)' still works, but you can be
242 more explicit by returning SWIG_BADOBJ, SWIG_ERROR or any of the
245 Finally, if the SWIG_CASTRANK_MODE is enabled, the result code
246 allows to return the 'cast rank', for example, if you have this
253 food(1) // cast rank '1' (1 -> 1.0)
254 fooi(1) // cast rank '0'
256 just use the SWIG_AddCast()/SWIG_CheckState()
261 #define SWIG_ERROR (-1)
262 #define SWIG_IsOK(r) (r >= 0)
263 #define SWIG_ArgError(r) ((r != SWIG_ERROR) ? r : SWIG_TypeError)
265 /* The CastRankLimit says how many bits are used for the cast rank */
266 #define SWIG_CASTRANKLIMIT (1 << 8)
267 /* The NewMask denotes the object was created (using new/malloc) */
268 #define SWIG_NEWOBJMASK (SWIG_CASTRANKLIMIT << 1)
269 /* The TmpMask is for in/out typemaps that use temporal objects */
270 #define SWIG_TMPOBJMASK (SWIG_NEWOBJMASK << 1)
271 /* Simple returning values */
272 #define SWIG_BADOBJ (SWIG_ERROR)
273 #define SWIG_OLDOBJ (SWIG_OK)
274 #define SWIG_NEWOBJ (SWIG_OK | SWIG_NEWOBJMASK)
275 #define SWIG_TMPOBJ (SWIG_OK | SWIG_TMPOBJMASK)
276 /* Check, add and del mask methods */
277 #define SWIG_AddNewMask(r) (SWIG_IsOK(r) ? (r | SWIG_NEWOBJMASK) : r)
278 #define SWIG_DelNewMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_NEWOBJMASK) : r)
279 #define SWIG_IsNewObj(r) (SWIG_IsOK(r) && (r & SWIG_NEWOBJMASK))
280 #define SWIG_AddTmpMask(r) (SWIG_IsOK(r) ? (r | SWIG_TMPOBJMASK) : r)
281 #define SWIG_DelTmpMask(r) (SWIG_IsOK(r) ? (r & ~SWIG_TMPOBJMASK) : r)
282 #define SWIG_IsTmpObj(r) (SWIG_IsOK(r) && (r & SWIG_TMPOBJMASK))
286 #if defined(SWIG_CASTRANK_MODE)
287 # ifndef SWIG_TypeRank
288 # define SWIG_TypeRank unsigned long
290 # ifndef SWIG_MAXCASTRANK /* Default cast allowed */
291 # define SWIG_MAXCASTRANK (2)
293 # define SWIG_CASTRANKMASK ((SWIG_CASTRANKLIMIT) -1)
294 # define SWIG_CastRank(r) (r & SWIG_CASTRANKMASK)
295 SWIGINTERNINLINE
int SWIG_AddCast(int r
) {
296 return SWIG_IsOK(r
) ? ((SWIG_CastRank(r
) < SWIG_MAXCASTRANK
) ? (r
+ 1) : SWIG_ERROR
) : r
;
298 SWIGINTERNINLINE
int SWIG_CheckState(int r
) {
299 return SWIG_IsOK(r
) ? SWIG_CastRank(r
) + 1 : 0;
301 #else /* no cast-rank mode */
302 # define SWIG_AddCast
303 # define SWIG_CheckState(r) (SWIG_IsOK(r) ? 1 : 0)
315 typedef void *(*swig_converter_func
)(void *);
316 typedef struct swig_type_info
*(*swig_dycast_func
)(void **);
318 /* Structure to store inforomation on one type */
319 typedef struct swig_type_info
{
320 const char *name
; /* mangled name of this type */
321 const char *str
; /* human readable name of this type */
322 swig_dycast_func dcast
; /* dynamic cast function down a hierarchy */
323 struct swig_cast_info
*cast
; /* linked list of types that can cast into this type */
324 void *clientdata
; /* language specific type data */
325 int owndata
; /* flag if the structure owns the clientdata */
328 /* Structure to store a type and conversion function used for casting */
329 typedef struct swig_cast_info
{
330 swig_type_info
*type
; /* pointer to type that is equivalent to this type */
331 swig_converter_func converter
; /* function to cast the void pointers */
332 struct swig_cast_info
*next
; /* pointer to next cast in linked list */
333 struct swig_cast_info
*prev
; /* pointer to the previous cast */
336 /* Structure used to store module information
337 * Each module generates one structure like this, and the runtime collects
338 * all of these structures and stores them in a circularly linked list.*/
339 typedef struct swig_module_info
{
340 swig_type_info
**types
; /* Array of pointers to swig_type_info structures that are in this module */
341 size_t size
; /* Number of types in this module */
342 struct swig_module_info
*next
; /* Pointer to next element in circularly linked list */
343 swig_type_info
**type_initial
; /* Array of initially generated type structures */
344 swig_cast_info
**cast_initial
; /* Array of initially generated casting structures */
345 void *clientdata
; /* Language specific module data */
349 Compare two type names skipping the space characters, therefore
350 "char*" == "char *" and "Class<int>" == "Class<int >", etc.
352 Return 0 when the two name types are equivalent, as in
353 strncmp, but skipping ' '.
356 SWIG_TypeNameComp(const char *f1
, const char *l1
,
357 const char *f2
, const char *l2
) {
358 for (;(f1
!= l1
) && (f2
!= l2
); ++f1
, ++f2
) {
359 while ((*f1
== ' ') && (f1
!= l1
)) ++f1
;
360 while ((*f2
== ' ') && (f2
!= l2
)) ++f2
;
361 if (*f1
!= *f2
) return (*f1
> *f2
) ? 1 : -1;
363 return (l1
- f1
) - (l2
- f2
);
367 Check type equivalence in a name list like <name1>|<name2>|...
368 Return 0 if not equal, 1 if equal
371 SWIG_TypeEquiv(const char *nb
, const char *tb
) {
373 const char* te
= tb
+ strlen(tb
);
375 while (!equiv
&& *ne
) {
376 for (nb
= ne
; *ne
; ++ne
) {
377 if (*ne
== '|') break;
379 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
386 Check type equivalence in a name list like <name1>|<name2>|...
387 Return 0 if equal, -1 if nb < tb, 1 if nb > tb
390 SWIG_TypeCompare(const char *nb
, const char *tb
) {
392 const char* te
= tb
+ strlen(tb
);
394 while (!equiv
&& *ne
) {
395 for (nb
= ne
; *ne
; ++ne
) {
396 if (*ne
== '|') break;
398 equiv
= (SWIG_TypeNameComp(nb
, ne
, tb
, te
) == 0) ? 1 : 0;
405 /* think of this as a c++ template<> or a scheme macro */
406 #define SWIG_TypeCheck_Template(comparison, ty) \
408 swig_cast_info *iter = ty->cast; \
411 if (iter == ty->cast) return iter; \
412 /* Move iter to the top of the linked list */ \
413 iter->prev->next = iter->next; \
415 iter->next->prev = iter->prev; \
416 iter->next = ty->cast; \
418 if (ty->cast) ty->cast->prev = iter; \
430 SWIGRUNTIME swig_cast_info
*
431 SWIG_TypeCheck(const char *c
, swig_type_info
*ty
) {
432 SWIG_TypeCheck_Template(strcmp(iter
->type
->name
, c
) == 0, ty
);
435 /* Same as previous function, except strcmp is replaced with a pointer comparison */
436 SWIGRUNTIME swig_cast_info
*
437 SWIG_TypeCheckStruct(swig_type_info
*from
, swig_type_info
*into
) {
438 SWIG_TypeCheck_Template(iter
->type
== from
, into
);
442 Cast a pointer up an inheritance hierarchy
444 SWIGRUNTIMEINLINE
void *
445 SWIG_TypeCast(swig_cast_info
*ty
, void *ptr
) {
446 return ((!ty
) || (!ty
->converter
)) ? ptr
: (*ty
->converter
)(ptr
);
450 Dynamic pointer casting. Down an inheritance hierarchy
452 SWIGRUNTIME swig_type_info
*
453 SWIG_TypeDynamicCast(swig_type_info
*ty
, void **ptr
) {
454 swig_type_info
*lastty
= ty
;
455 if (!ty
|| !ty
->dcast
) return ty
;
456 while (ty
&& (ty
->dcast
)) {
457 ty
= (*ty
->dcast
)(ptr
);
464 Return the name associated with this type
466 SWIGRUNTIMEINLINE
const char *
467 SWIG_TypeName(const swig_type_info
*ty
) {
472 Return the pretty name associated with this type,
473 that is an unmangled type name in a form presentable to the user.
475 SWIGRUNTIME
const char *
476 SWIG_TypePrettyName(const swig_type_info
*type
) {
477 /* The "str" field contains the equivalent pretty names of the
478 type, separated by vertical-bar characters. We choose
479 to print the last name, as it is often (?) the most
481 if (!type
) return NULL
;
482 if (type
->str
!= NULL
) {
483 const char *last_name
= type
->str
;
485 for (s
= type
->str
; *s
; s
++)
486 if (*s
== '|') last_name
= s
+1;
494 Set the clientdata field for a type
497 SWIG_TypeClientData(swig_type_info
*ti
, void *clientdata
) {
498 swig_cast_info
*cast
= ti
->cast
;
499 /* if (ti->clientdata == clientdata) return; */
500 ti
->clientdata
= clientdata
;
503 if (!cast
->converter
) {
504 swig_type_info
*tc
= cast
->type
;
505 if (!tc
->clientdata
) {
506 SWIG_TypeClientData(tc
, clientdata
);
513 SWIG_TypeNewClientData(swig_type_info
*ti
, void *clientdata
) {
514 SWIG_TypeClientData(ti
, clientdata
);
519 Search for a swig_type_info structure only by mangled name
520 Search is a O(log #types)
522 We start searching at module start, and finish searching when start == end.
523 Note: if start == end at the beginning of the function, we go all the way around
526 SWIGRUNTIME swig_type_info
*
527 SWIG_MangledTypeQueryModule(swig_module_info
*start
,
528 swig_module_info
*end
,
530 swig_module_info
*iter
= start
;
533 register size_t l
= 0;
534 register size_t r
= iter
->size
- 1;
536 /* since l+r >= 0, we can (>> 1) instead (/ 2) */
537 register size_t i
= (l
+ r
) >> 1;
538 const char *iname
= iter
->types
[i
]->name
;
540 register int compare
= strcmp(name
, iname
);
542 return iter
->types
[i
];
543 } else if (compare
< 0) {
549 } else if (compare
> 0) {
553 break; /* should never happen */
558 } while (iter
!= end
);
563 Search for a swig_type_info structure for either a mangled name or a human readable name.
564 It first searches the mangled names of the types, which is a O(log #types)
565 If a type is not found it then searches the human readable names, which is O(#types).
567 We start searching at module start, and finish searching when start == end.
568 Note: if start == end at the beginning of the function, we go all the way around
571 SWIGRUNTIME swig_type_info
*
572 SWIG_TypeQueryModule(swig_module_info
*start
,
573 swig_module_info
*end
,
575 /* STEP 1: Search the name field using binary search */
576 swig_type_info
*ret
= SWIG_MangledTypeQueryModule(start
, end
, name
);
580 /* STEP 2: If the type hasn't been found, do a complete search
581 of the str field (the human readable name) */
582 swig_module_info
*iter
= start
;
584 register size_t i
= 0;
585 for (; i
< iter
->size
; ++i
) {
586 if (iter
->types
[i
]->str
&& (SWIG_TypeEquiv(iter
->types
[i
]->str
, name
)))
587 return iter
->types
[i
];
590 } while (iter
!= end
);
593 /* neither found a match */
598 Pack binary data into a string
601 SWIG_PackData(char *c
, void *ptr
, size_t sz
) {
602 static const char hex
[17] = "0123456789abcdef";
603 register const unsigned char *u
= (unsigned char *) ptr
;
604 register const unsigned char *eu
= u
+ sz
;
605 for (; u
!= eu
; ++u
) {
606 register unsigned char uu
= *u
;
607 *(c
++) = hex
[(uu
& 0xf0) >> 4];
608 *(c
++) = hex
[uu
& 0xf];
614 Unpack binary data from a string
616 SWIGRUNTIME
const char *
617 SWIG_UnpackData(const char *c
, void *ptr
, size_t sz
) {
618 register unsigned char *u
= (unsigned char *) ptr
;
619 register const unsigned char *eu
= u
+ sz
;
620 for (; u
!= eu
; ++u
) {
621 register char d
= *(c
++);
622 register unsigned char uu
;
623 if ((d
>= '0') && (d
<= '9'))
624 uu
= ((d
- '0') << 4);
625 else if ((d
>= 'a') && (d
<= 'f'))
626 uu
= ((d
- ('a'-10)) << 4);
630 if ((d
>= '0') && (d
<= '9'))
632 else if ((d
>= 'a') && (d
<= 'f'))
633 uu
|= (d
- ('a'-10));
642 Pack 'void *' into a string buffer.
645 SWIG_PackVoidPtr(char *buff
, void *ptr
, const char *name
, size_t bsz
) {
647 if ((2*sizeof(void *) + 2) > bsz
) return 0;
649 r
= SWIG_PackData(r
,&ptr
,sizeof(void *));
650 if (strlen(name
) + 1 > (bsz
- (r
- buff
))) return 0;
655 SWIGRUNTIME
const char *
656 SWIG_UnpackVoidPtr(const char *c
, void **ptr
, const char *name
) {
658 if (strcmp(c
,"NULL") == 0) {
665 return SWIG_UnpackData(++c
,ptr
,sizeof(void *));
669 SWIG_PackDataName(char *buff
, void *ptr
, size_t sz
, const char *name
, size_t bsz
) {
671 size_t lname
= (name
? strlen(name
) : 0);
672 if ((2*sz
+ 2 + lname
) > bsz
) return 0;
674 r
= SWIG_PackData(r
,ptr
,sz
);
676 strncpy(r
,name
,lname
+1);
683 SWIGRUNTIME
const char *
684 SWIG_UnpackDataName(const char *c
, void *ptr
, size_t sz
, const char *name
) {
686 if (strcmp(c
,"NULL") == 0) {
693 return SWIG_UnpackData(++c
,ptr
,sz
);
701 #define SWIG_UnknownError -1
702 #define SWIG_IOError -2
703 #define SWIG_RuntimeError -3
704 #define SWIG_IndexError -4
705 #define SWIG_TypeError -5
706 #define SWIG_DivisionByZero -6
707 #define SWIG_OverflowError -7
708 #define SWIG_SyntaxError -8
709 #define SWIG_ValueError -9
710 #define SWIG_SystemError -10
711 #define SWIG_AttributeError -11
712 #define SWIG_MemoryError -12
713 #define SWIG_NullReferenceError -13
717 /* Python.h has to appear first */
720 /* Add PyOS_snprintf for old Pythons */
721 #if PY_VERSION_HEX < 0x02020000
722 # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(_WATCOM)
723 # define PyOS_snprintf _snprintf
725 # define PyOS_snprintf snprintf
729 /* A crude PyString_FromFormat implementation for old Pythons */
730 #if PY_VERSION_HEX < 0x02020000
732 #ifndef SWIG_PYBUFFER_SIZE
733 # define SWIG_PYBUFFER_SIZE 1024
737 PyString_FromFormat(const char *fmt
, ...) {
739 char buf
[SWIG_PYBUFFER_SIZE
* 2];
742 res
= vsnprintf(buf
, sizeof(buf
), fmt
, ap
);
744 return (res
< 0 || res
>= (int)sizeof(buf
)) ? 0 : PyString_FromString(buf
);
748 /* Add PyObject_Del for old Pythons */
749 #if PY_VERSION_HEX < 0x01060000
750 # define PyObject_Del(op) PyMem_DEL((op))
753 # define PyObject_DEL PyObject_Del
756 /* A crude PyExc_StopIteration exception for old Pythons */
757 #if PY_VERSION_HEX < 0x02020000
758 # ifndef PyExc_StopIteration
759 # define PyExc_StopIteration PyExc_RuntimeError
761 # ifndef PyObject_GenericGetAttr
762 # define PyObject_GenericGetAttr 0
765 /* Py_NotImplemented is defined in 2.1 and up. */
766 #if PY_VERSION_HEX < 0x02010000
767 # ifndef Py_NotImplemented
768 # define Py_NotImplemented PyExc_RuntimeError
773 /* A crude PyString_AsStringAndSize implementation for old Pythons */
774 #if PY_VERSION_HEX < 0x02010000
775 # ifndef PyString_AsStringAndSize
776 # define PyString_AsStringAndSize(obj, s, len) {*s = PyString_AsString(obj); *len = *s ? strlen(*s) : 0;}
780 /* PySequence_Size for old Pythons */
781 #if PY_VERSION_HEX < 0x02000000
782 # ifndef PySequence_Size
783 # define PySequence_Size PySequence_Length
788 /* PyBool_FromLong for old Pythons */
789 #if PY_VERSION_HEX < 0x02030000
791 PyObject
*PyBool_FromLong(long ok
)
793 PyObject
*result
= ok
? Py_True
: Py_False
;
800 /* -----------------------------------------------------------------------------
802 * ----------------------------------------------------------------------------- */
804 SWIGRUNTIME PyObject
*
805 SWIG_Python_ErrorType(int code
) {
808 case SWIG_MemoryError
:
809 type
= PyExc_MemoryError
;
812 type
= PyExc_IOError
;
814 case SWIG_RuntimeError
:
815 type
= PyExc_RuntimeError
;
817 case SWIG_IndexError
:
818 type
= PyExc_IndexError
;
821 type
= PyExc_TypeError
;
823 case SWIG_DivisionByZero
:
824 type
= PyExc_ZeroDivisionError
;
826 case SWIG_OverflowError
:
827 type
= PyExc_OverflowError
;
829 case SWIG_SyntaxError
:
830 type
= PyExc_SyntaxError
;
832 case SWIG_ValueError
:
833 type
= PyExc_ValueError
;
835 case SWIG_SystemError
:
836 type
= PyExc_SystemError
;
838 case SWIG_AttributeError
:
839 type
= PyExc_AttributeError
;
842 type
= PyExc_RuntimeError
;
849 SWIG_Python_AddErrorMsg(const char* mesg
)
853 PyObject
*traceback
= 0;
855 if (PyErr_Occurred()) PyErr_Fetch(&type
, &value
, &traceback
);
857 PyObject
*old_str
= PyObject_Str(value
);
860 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
864 PyErr_Format(PyExc_RuntimeError
, mesg
);
870 #if defined(SWIG_PYTHON_NO_THREADS)
871 # if defined(SWIG_PYTHON_THREADS)
872 # undef SWIG_PYTHON_THREADS
875 #if defined(SWIG_PYTHON_THREADS) /* Threading support is enabled */
876 # if !defined(SWIG_PYTHON_USE_GIL) && !defined(SWIG_PYTHON_NO_USE_GIL)
877 # if (PY_VERSION_HEX >= 0x02030000) /* For 2.3 or later, use the PyGILState calls */
878 # define SWIG_PYTHON_USE_GIL
881 # if defined(SWIG_PYTHON_USE_GIL) /* Use PyGILState threads calls */
882 # ifndef SWIG_PYTHON_INITIALIZE_THREADS
883 # define SWIG_PYTHON_INITIALIZE_THREADS PyEval_InitThreads()
885 # ifdef __cplusplus /* C++ code */
886 class SWIG_Python_Thread_Block
{
888 PyGILState_STATE state
;
890 void end() { if (status
) { PyGILState_Release(state
); status
= false;} }
891 SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {}
892 ~SWIG_Python_Thread_Block() { end(); }
894 class SWIG_Python_Thread_Allow
{
898 void end() { if (status
) { PyEval_RestoreThread(save
); status
= false; }}
899 SWIG_Python_Thread_Allow() : status(true), save(PyEval_SaveThread()) {}
900 ~SWIG_Python_Thread_Allow() { end(); }
902 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK SWIG_Python_Thread_Block _swig_thread_block
903 # define SWIG_PYTHON_THREAD_END_BLOCK _swig_thread_block.end()
904 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW SWIG_Python_Thread_Allow _swig_thread_allow
905 # define SWIG_PYTHON_THREAD_END_ALLOW _swig_thread_allow.end()
907 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK PyGILState_STATE _swig_thread_block = PyGILState_Ensure()
908 # define SWIG_PYTHON_THREAD_END_BLOCK PyGILState_Release(_swig_thread_block)
909 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW PyThreadState *_swig_thread_allow = PyEval_SaveThread()
910 # define SWIG_PYTHON_THREAD_END_ALLOW PyEval_RestoreThread(_swig_thread_allow)
912 # else /* Old thread way, not implemented, user must provide it */
913 # if !defined(SWIG_PYTHON_INITIALIZE_THREADS)
914 # define SWIG_PYTHON_INITIALIZE_THREADS
916 # if !defined(SWIG_PYTHON_THREAD_BEGIN_BLOCK)
917 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
919 # if !defined(SWIG_PYTHON_THREAD_END_BLOCK)
920 # define SWIG_PYTHON_THREAD_END_BLOCK
922 # if !defined(SWIG_PYTHON_THREAD_BEGIN_ALLOW)
923 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
925 # if !defined(SWIG_PYTHON_THREAD_END_ALLOW)
926 # define SWIG_PYTHON_THREAD_END_ALLOW
929 #else /* No thread support */
930 # define SWIG_PYTHON_INITIALIZE_THREADS
931 # define SWIG_PYTHON_THREAD_BEGIN_BLOCK
932 # define SWIG_PYTHON_THREAD_END_BLOCK
933 # define SWIG_PYTHON_THREAD_BEGIN_ALLOW
934 # define SWIG_PYTHON_THREAD_END_ALLOW
937 /* -----------------------------------------------------------------------------
938 * Python API portion that goes into the runtime
939 * ----------------------------------------------------------------------------- */
948 /* -----------------------------------------------------------------------------
949 * Constant declarations
950 * ----------------------------------------------------------------------------- */
953 #define SWIG_PY_POINTER 4
954 #define SWIG_PY_BINARY 5
956 /* Constant information structure */
957 typedef struct swig_const_info
{
963 swig_type_info
**ptype
;
974 /* -----------------------------------------------------------------------------
975 * See the LICENSE file for information on copyright, usage and redistribution
976 * of SWIG, and the README file for authors - http://www.swig.org/release.html.
980 * This file contains the runtime support for Python modules
981 * and includes code for managing global variables and pointer
984 * ----------------------------------------------------------------------------- */
986 /* Common SWIG API */
988 #if PY_VERSION_HEX < 0x02050000
989 typedef int Py_ssize_t
;
992 /* for raw pointers */
993 #define SWIG_Python_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, 0)
994 #define SWIG_ConvertPtr(obj, pptr, type, flags) SWIG_Python_ConvertPtr(obj, pptr, type, flags)
995 #define SWIG_ConvertPtrAndOwn(obj,pptr,type,flags,own) SWIG_Python_ConvertPtrAndOwn(obj, pptr, type, flags, own)
996 #define SWIG_NewPointerObj(ptr, type, flags) SWIG_Python_NewPointerObj(ptr, type, flags)
997 #define SWIG_CheckImplicit(ty) SWIG_Python_CheckImplicit(ty)
998 #define SWIG_AcquirePtr(ptr, src) SWIG_Python_AcquirePtr(ptr, src)
999 #define swig_owntype int
1001 /* for raw packed data */
1002 #define SWIG_ConvertPacked(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1003 #define SWIG_NewPackedObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1005 /* for class or struct pointers */
1006 #define SWIG_ConvertInstance(obj, pptr, type, flags) SWIG_ConvertPtr(obj, pptr, type, flags)
1007 #define SWIG_NewInstanceObj(ptr, type, flags) SWIG_NewPointerObj(ptr, type, flags)
1009 /* for C or C++ function pointers */
1010 #define SWIG_ConvertFunctionPtr(obj, pptr, type) SWIG_Python_ConvertFunctionPtr(obj, pptr, type)
1011 #define SWIG_NewFunctionPtrObj(ptr, type) SWIG_Python_NewPointerObj(ptr, type, 0)
1013 /* for C++ member pointers, ie, member methods */
1014 #define SWIG_ConvertMember(obj, ptr, sz, ty) SWIG_Python_ConvertPacked(obj, ptr, sz, ty)
1015 #define SWIG_NewMemberObj(ptr, sz, type) SWIG_Python_NewPackedObj(ptr, sz, type)
1020 #define SWIG_GetModule(clientdata) SWIG_Python_GetModule()
1021 #define SWIG_SetModule(clientdata, pointer) SWIG_Python_SetModule(pointer)
1022 #define SWIG_NewClientData(obj) PySwigClientData_New(obj)
1024 #define SWIG_SetErrorObj SWIG_Python_SetErrorObj
1025 #define SWIG_SetErrorMsg SWIG_Python_SetErrorMsg
1026 #define SWIG_ErrorType(code) SWIG_Python_ErrorType(code)
1027 #define SWIG_Error(code, msg) SWIG_Python_SetErrorMsg(SWIG_ErrorType(code), msg)
1028 #define SWIG_fail goto fail
1031 /* Runtime API implementation */
1033 /* Error manipulation */
1036 SWIG_Python_SetErrorObj(PyObject
*errtype
, PyObject
*obj
) {
1037 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1038 PyErr_SetObject(errtype
, obj
);
1040 SWIG_PYTHON_THREAD_END_BLOCK
;
1044 SWIG_Python_SetErrorMsg(PyObject
*errtype
, const char *msg
) {
1045 SWIG_PYTHON_THREAD_BEGIN_BLOCK
;
1046 PyErr_SetString(errtype
, (char *) msg
);
1047 SWIG_PYTHON_THREAD_END_BLOCK
;
1050 #define SWIG_Python_Raise(obj, type, desc) SWIG_Python_SetErrorObj(SWIG_Python_ExceptionType(desc), obj)
1052 /* Set a constant value */
1055 SWIG_Python_SetConstant(PyObject
*d
, const char *name
, PyObject
*obj
) {
1056 PyDict_SetItemString(d
, (char*) name
, obj
);
1060 /* Append a value to the result obj */
1062 SWIGINTERN PyObject
*
1063 SWIG_Python_AppendOutput(PyObject
* result
, PyObject
* obj
) {
1064 #if !defined(SWIG_PYTHON_OUTPUT_TUPLE)
1067 } else if (result
== Py_None
) {
1071 if (!PyList_Check(result
)) {
1072 PyObject
*o2
= result
;
1073 result
= PyList_New(1);
1074 PyList_SetItem(result
, 0, o2
);
1076 PyList_Append(result
,obj
);
1085 } else if (result
== Py_None
) {
1089 if (!PyTuple_Check(result
)) {
1091 result
= PyTuple_New(1);
1092 PyTuple_SET_ITEM(result
, 0, o2
);
1094 o3
= PyTuple_New(1);
1095 PyTuple_SET_ITEM(o3
, 0, obj
);
1097 result
= PySequence_Concat(o2
, o3
);
1105 /* Unpack the argument tuple */
1108 SWIG_Python_UnpackTuple(PyObject
*args
, const char *name
, int min
, int max
, PyObject
**objs
)
1114 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got none",
1115 name
, (min
== max
? "" : "at least "), min
);
1119 if (!PyTuple_Check(args
)) {
1120 PyErr_SetString(PyExc_SystemError
, "UnpackTuple() argument list is not a tuple");
1123 register int l
= PyTuple_GET_SIZE(args
);
1125 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1126 name
, (min
== max
? "" : "at least "), min
, l
);
1128 } else if (l
> max
) {
1129 PyErr_Format(PyExc_TypeError
, "%s expected %s%d arguments, got %d",
1130 name
, (min
== max
? "" : "at most "), max
, l
);
1134 for (i
= 0; i
< l
; ++i
) {
1135 objs
[i
] = PyTuple_GET_ITEM(args
, i
);
1137 for (; l
< max
; ++l
) {
1145 /* A functor is a function object with one single object argument */
1146 #if PY_VERSION_HEX >= 0x02020000
1147 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunctionObjArgs(functor, obj, NULL);
1149 #define SWIG_Python_CallFunctor(functor, obj) PyObject_CallFunction(functor, "O", obj);
1153 Helper for static pointer initialization for both C and C++ code, for example
1154 static PyObject *SWIG_STATIC_POINTER(MyVar) = NewSomething(...);
1157 #define SWIG_STATIC_POINTER(var) var
1159 #define SWIG_STATIC_POINTER(var) var = 0; if (!var) var
1162 /* -----------------------------------------------------------------------------
1163 * Pointer declarations
1164 * ----------------------------------------------------------------------------- */
1166 /* Flags for new pointer objects */
1167 #define SWIG_POINTER_NOSHADOW (SWIG_POINTER_OWN << 1)
1168 #define SWIG_POINTER_NEW (SWIG_POINTER_NOSHADOW | SWIG_POINTER_OWN)
1170 #define SWIG_POINTER_IMPLICIT_CONV (SWIG_POINTER_DISOWN << 1)
1179 /* How to access Py_None */
1180 #if defined(_WIN32) || defined(__WIN32__) || defined(__CYGWIN__)
1181 # ifndef SWIG_PYTHON_NO_BUILD_NONE
1182 # ifndef SWIG_PYTHON_BUILD_NONE
1183 # define SWIG_PYTHON_BUILD_NONE
1188 #ifdef SWIG_PYTHON_BUILD_NONE
1191 # define Py_None SWIG_Py_None()
1193 SWIGRUNTIMEINLINE PyObject
*
1196 PyObject
*none
= Py_BuildValue("");
1200 SWIGRUNTIME PyObject
*
1203 static PyObject
*SWIG_STATIC_POINTER(none
) = _SWIG_Py_None();
1208 /* The python void return value */
1210 SWIGRUNTIMEINLINE PyObject
*
1213 PyObject
*none
= Py_None
;
1218 /* PySwigClientData */
1229 SWIGRUNTIMEINLINE
int
1230 SWIG_Python_CheckImplicit(swig_type_info
*ty
)
1232 PySwigClientData
*data
= (PySwigClientData
*)ty
->clientdata
;
1233 return data
? data
->implicitconv
: 0;
1236 SWIGRUNTIMEINLINE PyObject
*
1237 SWIG_Python_ExceptionType(swig_type_info
*desc
) {
1238 PySwigClientData
*data
= desc
? (PySwigClientData
*) desc
->clientdata
: 0;
1239 PyObject
*klass
= data
? data
->klass
: 0;
1240 return (klass
? klass
: PyExc_RuntimeError
);
1244 SWIGRUNTIME PySwigClientData
*
1245 PySwigClientData_New(PyObject
* obj
)
1250 PySwigClientData
*data
= (PySwigClientData
*)malloc(sizeof(PySwigClientData
));
1251 /* the klass element */
1253 Py_INCREF(data
->klass
);
1254 /* the newraw method and newargs arguments used to create a new raw instance */
1255 if (PyClass_Check(obj
)) {
1257 data
->newargs
= obj
;
1260 #if (PY_VERSION_HEX < 0x02020000)
1263 data
->newraw
= PyObject_GetAttrString(data
->klass
, (char *)"__new__");
1266 Py_INCREF(data
->newraw
);
1267 data
->newargs
= PyTuple_New(1);
1268 PyTuple_SetItem(data
->newargs
, 0, obj
);
1270 data
->newargs
= obj
;
1272 Py_INCREF(data
->newargs
);
1274 /* the destroy method, aka as the C++ delete method */
1275 data
->destroy
= PyObject_GetAttrString(data
->klass
, (char *)"__swig_destroy__");
1276 if (PyErr_Occurred()) {
1280 if (data
->destroy
) {
1282 Py_INCREF(data
->destroy
);
1283 flags
= PyCFunction_GET_FLAGS(data
->destroy
);
1285 data
->delargs
= !(flags
& (METH_O
));
1292 data
->implicitconv
= 0;
1298 PySwigClientData_Del(PySwigClientData
* data
)
1300 Py_XDECREF(data
->newraw
);
1301 Py_XDECREF(data
->newargs
);
1302 Py_XDECREF(data
->destroy
);
1305 /* =============== PySwigObject =====================*/
1315 SWIGRUNTIME PyObject
*
1316 PySwigObject_long(PySwigObject
*v
)
1318 return PyLong_FromVoidPtr(v
->ptr
);
1321 SWIGRUNTIME PyObject
*
1322 PySwigObject_format(const char* fmt
, PySwigObject
*v
)
1324 PyObject
*res
= NULL
;
1325 PyObject
*args
= PyTuple_New(1);
1327 if (PyTuple_SetItem(args
, 0, PySwigObject_long(v
)) == 0) {
1328 PyObject
*ofmt
= PyString_FromString(fmt
);
1330 res
= PyString_Format(ofmt
,args
);
1339 SWIGRUNTIME PyObject
*
1340 PySwigObject_oct(PySwigObject
*v
)
1342 return PySwigObject_format("%o",v
);
1345 SWIGRUNTIME PyObject
*
1346 PySwigObject_hex(PySwigObject
*v
)
1348 return PySwigObject_format("%x",v
);
1351 SWIGRUNTIME PyObject
*
1353 PySwigObject_repr(PySwigObject
*v
)
1355 PySwigObject_repr(PySwigObject
*v
, PyObject
*args
)
1358 const char *name
= SWIG_TypePrettyName(v
->ty
);
1359 PyObject
*hex
= PySwigObject_hex(v
);
1360 PyObject
*repr
= PyString_FromFormat("<Swig Object of type '%s' at 0x%s>", name
, PyString_AsString(hex
));
1364 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
);
1366 PyObject
*nrep
= PySwigObject_repr((PySwigObject
*)v
->next
, args
);
1368 PyString_ConcatAndDel(&repr
,nrep
);
1374 PySwigObject_print(PySwigObject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1377 PyObject
*repr
= PySwigObject_repr(v
);
1379 PyObject
*repr
= PySwigObject_repr(v
, NULL
);
1382 fputs(PyString_AsString(repr
), fp
);
1390 SWIGRUNTIME PyObject
*
1391 PySwigObject_str(PySwigObject
*v
)
1393 char result
[SWIG_BUFFER_SIZE
];
1394 return SWIG_PackVoidPtr(result
, v
->ptr
, v
->ty
->name
, sizeof(result
)) ?
1395 PyString_FromString(result
) : 0;
1399 PySwigObject_compare(PySwigObject
*v
, PySwigObject
*w
)
1403 return (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1406 SWIGRUNTIME PyTypeObject
* _PySwigObject_type(void);
1408 SWIGRUNTIME PyTypeObject
*
1409 PySwigObject_type(void) {
1410 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigObject_type();
1414 SWIGRUNTIMEINLINE
int
1415 PySwigObject_Check(PyObject
*op
) {
1416 return ((op
)->ob_type
== PySwigObject_type())
1417 || (strcmp((op
)->ob_type
->tp_name
,"PySwigObject") == 0);
1420 SWIGRUNTIME PyObject
*
1421 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
);
1424 PySwigObject_dealloc(PyObject
*v
)
1426 PySwigObject
*sobj
= (PySwigObject
*) v
;
1427 PyObject
*next
= sobj
->next
;
1429 swig_type_info
*ty
= sobj
->ty
;
1430 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
1431 PyObject
*destroy
= data
? data
->destroy
: 0;
1433 /* destroy is always a VARARGS method */
1435 if (data
->delargs
) {
1436 /* we need to create a temporal object to carry the destroy operation */
1437 PyObject
*tmp
= PySwigObject_New(sobj
->ptr
, ty
, 0);
1438 res
= SWIG_Python_CallFunctor(destroy
, tmp
);
1441 PyCFunction meth
= PyCFunction_GET_FUNCTION(destroy
);
1442 PyObject
*mself
= PyCFunction_GET_SELF(destroy
);
1443 res
= ((*meth
)(mself
, v
));
1447 const char *name
= SWIG_TypePrettyName(ty
);
1448 #if !defined(SWIG_PYTHON_SILENT_MEMLEAK)
1449 printf("swig/python detected a memory leak of type '%s', no destructor found.\n", name
);
1457 SWIGRUNTIME PyObject
*
1458 PySwigObject_append(PyObject
* v
, PyObject
* next
)
1460 PySwigObject
*sobj
= (PySwigObject
*) v
;
1463 if (!PyArg_ParseTuple(next
,(char *)"O:append", &tmp
)) return NULL
;
1466 if (!PySwigObject_Check(next
)) {
1471 return SWIG_Py_Void();
1474 SWIGRUNTIME PyObject
*
1476 PySwigObject_next(PyObject
* v
)
1478 PySwigObject_next(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1481 PySwigObject
*sobj
= (PySwigObject
*) v
;
1483 Py_INCREF(sobj
->next
);
1486 return SWIG_Py_Void();
1490 SWIGINTERN PyObject
*
1492 PySwigObject_disown(PyObject
*v
)
1494 PySwigObject_disown(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1497 PySwigObject
*sobj
= (PySwigObject
*)v
;
1499 return SWIG_Py_Void();
1502 SWIGINTERN PyObject
*
1504 PySwigObject_acquire(PyObject
*v
)
1506 PySwigObject_acquire(PyObject
* v
, PyObject
*SWIGUNUSEDPARM(args
))
1509 PySwigObject
*sobj
= (PySwigObject
*)v
;
1510 sobj
->own
= SWIG_POINTER_OWN
;
1511 return SWIG_Py_Void();
1514 SWIGINTERN PyObject
*
1515 PySwigObject_own(PyObject
*v
, PyObject
*args
)
1518 #if (PY_VERSION_HEX < 0x02020000)
1519 if (!PyArg_ParseTuple(args
,(char *)"|O:own",&val
))
1521 if (!PyArg_UnpackTuple(args
, (char *)"own", 0, 1, &val
))
1528 PySwigObject
*sobj
= (PySwigObject
*)v
;
1529 PyObject
*obj
= PyBool_FromLong(sobj
->own
);
1532 if (PyObject_IsTrue(val
)) {
1533 PySwigObject_acquire(v
);
1535 PySwigObject_disown(v
);
1538 if (PyObject_IsTrue(val
)) {
1539 PySwigObject_acquire(v
,args
);
1541 PySwigObject_disown(v
,args
);
1551 swigobject_methods
[] = {
1552 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_NOARGS
, (char *)"releases ownership of the pointer"},
1553 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_NOARGS
, (char *)"aquires ownership of the pointer"},
1554 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1555 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_O
, (char *)"appends another 'this' object"},
1556 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_NOARGS
, (char *)"returns the next 'this' object"},
1557 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_NOARGS
, (char *)"returns object representation"},
1562 swigobject_methods
[] = {
1563 {(char *)"disown", (PyCFunction
)PySwigObject_disown
, METH_VARARGS
, (char *)"releases ownership of the pointer"},
1564 {(char *)"acquire", (PyCFunction
)PySwigObject_acquire
, METH_VARARGS
, (char *)"aquires ownership of the pointer"},
1565 {(char *)"own", (PyCFunction
)PySwigObject_own
, METH_VARARGS
, (char *)"returns/sets ownership of the pointer"},
1566 {(char *)"append", (PyCFunction
)PySwigObject_append
, METH_VARARGS
, (char *)"appends another 'this' object"},
1567 {(char *)"next", (PyCFunction
)PySwigObject_next
, METH_VARARGS
, (char *)"returns the next 'this' object"},
1568 {(char *)"__repr__",(PyCFunction
)PySwigObject_repr
, METH_VARARGS
, (char *)"returns object representation"},
1573 #if PY_VERSION_HEX < 0x02020000
1574 SWIGINTERN PyObject
*
1575 PySwigObject_getattr(PySwigObject
*sobj
,char *name
)
1577 return Py_FindMethod(swigobject_methods
, (PyObject
*)sobj
, name
);
1581 SWIGRUNTIME PyTypeObject
*
1582 _PySwigObject_type(void) {
1583 static char swigobject_doc
[] = "Swig object carries a C/C++ instance pointer";
1585 static PyNumberMethods PySwigObject_as_number
= {
1586 (binaryfunc
)0, /*nb_add*/
1587 (binaryfunc
)0, /*nb_subtract*/
1588 (binaryfunc
)0, /*nb_multiply*/
1589 (binaryfunc
)0, /*nb_divide*/
1590 (binaryfunc
)0, /*nb_remainder*/
1591 (binaryfunc
)0, /*nb_divmod*/
1592 (ternaryfunc
)0,/*nb_power*/
1593 (unaryfunc
)0, /*nb_negative*/
1594 (unaryfunc
)0, /*nb_positive*/
1595 (unaryfunc
)0, /*nb_absolute*/
1596 (inquiry
)0, /*nb_nonzero*/
1603 (coercion
)0, /*nb_coerce*/
1604 (unaryfunc
)PySwigObject_long
, /*nb_int*/
1605 (unaryfunc
)PySwigObject_long
, /*nb_long*/
1606 (unaryfunc
)0, /*nb_float*/
1607 (unaryfunc
)PySwigObject_oct
, /*nb_oct*/
1608 (unaryfunc
)PySwigObject_hex
, /*nb_hex*/
1609 #if PY_VERSION_HEX >= 0x02020000
1610 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_true_divide */
1611 #elif PY_VERSION_HEX >= 0x02000000
1612 0,0,0,0,0,0,0,0,0,0,0 /* nb_inplace_add -> nb_inplace_or */
1616 static PyTypeObject pyswigobject_type
;
1617 static int type_init
= 0;
1619 const PyTypeObject tmp
1621 PyObject_HEAD_INIT(NULL
)
1623 (char *)"PySwigObject", /* tp_name */
1624 sizeof(PySwigObject
), /* tp_basicsize */
1625 0, /* tp_itemsize */
1626 (destructor
)PySwigObject_dealloc
, /* tp_dealloc */
1627 (printfunc
)PySwigObject_print
, /* tp_print */
1628 #if PY_VERSION_HEX < 0x02020000
1629 (getattrfunc
)PySwigObject_getattr
, /* tp_getattr */
1631 (getattrfunc
)0, /* tp_getattr */
1633 (setattrfunc
)0, /* tp_setattr */
1634 (cmpfunc
)PySwigObject_compare
, /* tp_compare */
1635 (reprfunc
)PySwigObject_repr
, /* tp_repr */
1636 &PySwigObject_as_number
, /* tp_as_number */
1637 0, /* tp_as_sequence */
1638 0, /* tp_as_mapping */
1639 (hashfunc
)0, /* tp_hash */
1640 (ternaryfunc
)0, /* tp_call */
1641 (reprfunc
)PySwigObject_str
, /* tp_str */
1642 PyObject_GenericGetAttr
, /* tp_getattro */
1643 0, /* tp_setattro */
1644 0, /* tp_as_buffer */
1645 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1646 swigobject_doc
, /* tp_doc */
1647 0, /* tp_traverse */
1649 0, /* tp_richcompare */
1650 0, /* tp_weaklistoffset */
1651 #if PY_VERSION_HEX >= 0x02020000
1653 0, /* tp_iternext */
1654 swigobject_methods
, /* tp_methods */
1659 0, /* tp_descr_get */
1660 0, /* tp_descr_set */
1661 0, /* tp_dictoffset */
1670 0, /* tp_subclasses */
1671 0, /* tp_weaklist */
1673 #if PY_VERSION_HEX >= 0x02030000
1677 0,0,0,0 /* tp_alloc -> tp_next */
1680 pyswigobject_type
= tmp
;
1681 pyswigobject_type
.ob_type
= &PyType_Type
;
1684 return &pyswigobject_type
;
1687 SWIGRUNTIME PyObject
*
1688 PySwigObject_New(void *ptr
, swig_type_info
*ty
, int own
)
1690 PySwigObject
*sobj
= PyObject_NEW(PySwigObject
, PySwigObject_type());
1697 return (PyObject
*)sobj
;
1700 /* -----------------------------------------------------------------------------
1701 * Implements a simple Swig Packed type, and use it instead of string
1702 * ----------------------------------------------------------------------------- */
1712 PySwigPacked_print(PySwigPacked
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
))
1714 char result
[SWIG_BUFFER_SIZE
];
1715 fputs("<Swig Packed ", fp
);
1716 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1720 fputs(v
->ty
->name
,fp
);
1725 SWIGRUNTIME PyObject
*
1726 PySwigPacked_repr(PySwigPacked
*v
)
1728 char result
[SWIG_BUFFER_SIZE
];
1729 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))) {
1730 return PyString_FromFormat("<Swig Packed at %s%s>", result
, v
->ty
->name
);
1732 return PyString_FromFormat("<Swig Packed %s>", v
->ty
->name
);
1736 SWIGRUNTIME PyObject
*
1737 PySwigPacked_str(PySwigPacked
*v
)
1739 char result
[SWIG_BUFFER_SIZE
];
1740 if (SWIG_PackDataName(result
, v
->pack
, v
->size
, 0, sizeof(result
))){
1741 return PyString_FromFormat("%s%s", result
, v
->ty
->name
);
1743 return PyString_FromString(v
->ty
->name
);
1748 PySwigPacked_compare(PySwigPacked
*v
, PySwigPacked
*w
)
1752 int s
= (i
< j
) ? -1 : ((i
> j
) ? 1 : 0);
1753 return s
? s
: strncmp((char *)v
->pack
, (char *)w
->pack
, 2*v
->size
);
1756 SWIGRUNTIME PyTypeObject
* _PySwigPacked_type(void);
1758 SWIGRUNTIME PyTypeObject
*
1759 PySwigPacked_type(void) {
1760 static PyTypeObject
*SWIG_STATIC_POINTER(type
) = _PySwigPacked_type();
1764 SWIGRUNTIMEINLINE
int
1765 PySwigPacked_Check(PyObject
*op
) {
1766 return ((op
)->ob_type
== _PySwigPacked_type())
1767 || (strcmp((op
)->ob_type
->tp_name
,"PySwigPacked") == 0);
1771 PySwigPacked_dealloc(PyObject
*v
)
1773 if (PySwigPacked_Check(v
)) {
1774 PySwigPacked
*sobj
= (PySwigPacked
*) v
;
1780 SWIGRUNTIME PyTypeObject
*
1781 _PySwigPacked_type(void) {
1782 static char swigpacked_doc
[] = "Swig object carries a C/C++ instance pointer";
1783 static PyTypeObject pyswigpacked_type
;
1784 static int type_init
= 0;
1786 const PyTypeObject tmp
1788 PyObject_HEAD_INIT(NULL
)
1790 (char *)"PySwigPacked", /* tp_name */
1791 sizeof(PySwigPacked
), /* tp_basicsize */
1792 0, /* tp_itemsize */
1793 (destructor
)PySwigPacked_dealloc
, /* tp_dealloc */
1794 (printfunc
)PySwigPacked_print
, /* tp_print */
1795 (getattrfunc
)0, /* tp_getattr */
1796 (setattrfunc
)0, /* tp_setattr */
1797 (cmpfunc
)PySwigPacked_compare
, /* tp_compare */
1798 (reprfunc
)PySwigPacked_repr
, /* tp_repr */
1799 0, /* tp_as_number */
1800 0, /* tp_as_sequence */
1801 0, /* tp_as_mapping */
1802 (hashfunc
)0, /* tp_hash */
1803 (ternaryfunc
)0, /* tp_call */
1804 (reprfunc
)PySwigPacked_str
, /* tp_str */
1805 PyObject_GenericGetAttr
, /* tp_getattro */
1806 0, /* tp_setattro */
1807 0, /* tp_as_buffer */
1808 Py_TPFLAGS_DEFAULT
, /* tp_flags */
1809 swigpacked_doc
, /* tp_doc */
1810 0, /* tp_traverse */
1812 0, /* tp_richcompare */
1813 0, /* tp_weaklistoffset */
1814 #if PY_VERSION_HEX >= 0x02020000
1816 0, /* tp_iternext */
1822 0, /* tp_descr_get */
1823 0, /* tp_descr_set */
1824 0, /* tp_dictoffset */
1833 0, /* tp_subclasses */
1834 0, /* tp_weaklist */
1836 #if PY_VERSION_HEX >= 0x02030000
1840 0,0,0,0 /* tp_alloc -> tp_next */
1843 pyswigpacked_type
= tmp
;
1844 pyswigpacked_type
.ob_type
= &PyType_Type
;
1847 return &pyswigpacked_type
;
1850 SWIGRUNTIME PyObject
*
1851 PySwigPacked_New(void *ptr
, size_t size
, swig_type_info
*ty
)
1853 PySwigPacked
*sobj
= PyObject_NEW(PySwigPacked
, PySwigPacked_type());
1855 void *pack
= malloc(size
);
1857 memcpy(pack
, ptr
, size
);
1862 PyObject_DEL((PyObject
*) sobj
);
1866 return (PyObject
*) sobj
;
1869 SWIGRUNTIME swig_type_info
*
1870 PySwigPacked_UnpackData(PyObject
*obj
, void *ptr
, size_t size
)
1872 if (PySwigPacked_Check(obj
)) {
1873 PySwigPacked
*sobj
= (PySwigPacked
*)obj
;
1874 if (sobj
->size
!= size
) return 0;
1875 memcpy(ptr
, sobj
->pack
, size
);
1882 /* -----------------------------------------------------------------------------
1883 * pointers/data manipulation
1884 * ----------------------------------------------------------------------------- */
1886 SWIGRUNTIMEINLINE PyObject
*
1889 return PyString_FromString("this");
1892 SWIGRUNTIME PyObject
*
1895 static PyObject
*SWIG_STATIC_POINTER(swig_this
) = _SWIG_This();
1899 /* #define SWIG_PYTHON_SLOW_GETSET_THIS */
1901 SWIGRUNTIME PySwigObject
*
1902 SWIG_Python_GetSwigThis(PyObject
*pyobj
)
1904 if (PySwigObject_Check(pyobj
)) {
1905 return (PySwigObject
*) pyobj
;
1908 #if (!defined(SWIG_PYTHON_SLOW_GETSET_THIS) && (PY_VERSION_HEX >= 0x02030000))
1909 if (PyInstance_Check(pyobj
)) {
1910 obj
= _PyInstance_Lookup(pyobj
, SWIG_This());
1912 PyObject
**dictptr
= _PyObject_GetDictPtr(pyobj
);
1913 if (dictptr
!= NULL
) {
1914 PyObject
*dict
= *dictptr
;
1915 obj
= dict
? PyDict_GetItem(dict
, SWIG_This()) : 0;
1917 #ifdef PyWeakref_CheckProxy
1918 if (PyWeakref_CheckProxy(pyobj
)) {
1919 PyObject
*wobj
= PyWeakref_GET_OBJECT(pyobj
);
1920 return wobj
? SWIG_Python_GetSwigThis(wobj
) : 0;
1923 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1927 if (PyErr_Occurred()) PyErr_Clear();
1933 obj
= PyObject_GetAttr(pyobj
,SWIG_This());
1937 if (PyErr_Occurred()) PyErr_Clear();
1941 if (obj
&& !PySwigObject_Check(obj
)) {
1942 /* a PyObject is called 'this', try to get the 'real this'
1943 PySwigObject from it */
1944 return SWIG_Python_GetSwigThis(obj
);
1946 return (PySwigObject
*)obj
;
1950 /* Acquire a pointer value */
1953 SWIG_Python_AcquirePtr(PyObject
*obj
, int own
) {
1955 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1957 int oldown
= sobj
->own
;
1965 /* Convert a pointer value */
1968 SWIG_Python_ConvertPtrAndOwn(PyObject
*obj
, void **ptr
, swig_type_info
*ty
, int flags
, int *own
) {
1969 if (!obj
) return SWIG_ERROR
;
1970 if (obj
== Py_None
) {
1974 PySwigObject
*sobj
= SWIG_Python_GetSwigThis(obj
);
1976 void *vptr
= sobj
->ptr
;
1978 swig_type_info
*to
= sobj
->ty
;
1980 /* no type cast needed */
1981 if (ptr
) *ptr
= vptr
;
1984 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
1986 sobj
= (PySwigObject
*)sobj
->next
;
1988 if (ptr
) *ptr
= SWIG_TypeCast(tc
,vptr
);
1993 if (ptr
) *ptr
= vptr
;
1998 if (own
) *own
= sobj
->own
;
1999 if (flags
& SWIG_POINTER_DISOWN
) {
2004 int res
= SWIG_ERROR
;
2005 if (flags
& SWIG_POINTER_IMPLICIT_CONV
) {
2006 PySwigClientData
*data
= ty
? (PySwigClientData
*) ty
->clientdata
: 0;
2007 if (data
&& !data
->implicitconv
) {
2008 PyObject
*klass
= data
->klass
;
2011 data
->implicitconv
= 1; /* avoid recursion and call 'explicit' constructors*/
2012 impconv
= SWIG_Python_CallFunctor(klass
, obj
);
2013 data
->implicitconv
= 0;
2014 if (PyErr_Occurred()) {
2019 PySwigObject
*iobj
= SWIG_Python_GetSwigThis(impconv
);
2022 res
= SWIG_Python_ConvertPtrAndOwn((PyObject
*)iobj
, &vptr
, ty
, 0, 0);
2023 if (SWIG_IsOK(res
)) {
2026 /* transfer the ownership to 'ptr' */
2028 res
= SWIG_AddCast(res
);
2029 res
= SWIG_AddNewMask(res
);
2031 res
= SWIG_AddCast(res
);
2045 /* Convert a function ptr value */
2048 SWIG_Python_ConvertFunctionPtr(PyObject
*obj
, void **ptr
, swig_type_info
*ty
) {
2049 if (!PyCFunction_Check(obj
)) {
2050 return SWIG_ConvertPtr(obj
, ptr
, ty
, 0);
2054 /* here we get the method pointer for callbacks */
2055 const char *doc
= (((PyCFunctionObject
*)obj
) -> m_ml
-> ml_doc
);
2056 const char *desc
= doc
? strstr(doc
, "swig_ptr: ") : 0;
2058 desc
= ty
? SWIG_UnpackVoidPtr(desc
+ 10, &vptr
, ty
->name
) : 0;
2059 if (!desc
) return SWIG_ERROR
;
2062 swig_cast_info
*tc
= SWIG_TypeCheck(desc
,ty
);
2063 if (!tc
) return SWIG_ERROR
;
2064 *ptr
= SWIG_TypeCast(tc
,vptr
);
2072 /* Convert a packed value value */
2075 SWIG_Python_ConvertPacked(PyObject
*obj
, void *ptr
, size_t sz
, swig_type_info
*ty
) {
2076 swig_type_info
*to
= PySwigPacked_UnpackData(obj
, ptr
, sz
);
2077 if (!to
) return SWIG_ERROR
;
2080 /* check type cast? */
2081 swig_cast_info
*tc
= SWIG_TypeCheck(to
->name
,ty
);
2082 if (!tc
) return SWIG_ERROR
;
2088 /* -----------------------------------------------------------------------------
2089 * Create a new pointer object
2090 * ----------------------------------------------------------------------------- */
2093 Create a new instance object, whitout calling __init__, and set the
2097 SWIGRUNTIME PyObject
*
2098 SWIG_Python_NewShadowInstance(PySwigClientData
*data
, PyObject
*swig_this
)
2100 #if (PY_VERSION_HEX >= 0x02020000)
2102 PyObject
*newraw
= data
->newraw
;
2104 inst
= PyObject_Call(newraw
, data
->newargs
, NULL
);
2106 #if !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2107 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2108 if (dictptr
!= NULL
) {
2109 PyObject
*dict
= *dictptr
;
2111 dict
= PyDict_New();
2113 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2117 PyObject
*key
= SWIG_This();
2118 PyObject_SetAttr(inst
, key
, swig_this
);
2122 PyObject
*dict
= PyDict_New();
2123 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2124 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2129 #if (PY_VERSION_HEX >= 0x02010000)
2131 PyObject
*dict
= PyDict_New();
2132 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2133 inst
= PyInstance_NewRaw(data
->newargs
, dict
);
2135 return (PyObject
*) inst
;
2137 PyInstanceObject
*inst
= PyObject_NEW(PyInstanceObject
, &PyInstance_Type
);
2141 inst
->in_class
= (PyClassObject
*)data
->newargs
;
2142 Py_INCREF(inst
->in_class
);
2143 inst
->in_dict
= PyDict_New();
2144 if (inst
->in_dict
== NULL
) {
2148 #ifdef Py_TPFLAGS_HAVE_WEAKREFS
2149 inst
->in_weakreflist
= NULL
;
2151 #ifdef Py_TPFLAGS_GC
2152 PyObject_GC_Init(inst
);
2154 PyDict_SetItem(inst
->in_dict
, SWIG_This(), swig_this
);
2155 return (PyObject
*) inst
;
2161 SWIG_Python_SetSwigThis(PyObject
*inst
, PyObject
*swig_this
)
2164 #if (PY_VERSION_HEX >= 0x02020000) && !defined(SWIG_PYTHON_SLOW_GETSET_THIS)
2165 PyObject
**dictptr
= _PyObject_GetDictPtr(inst
);
2166 if (dictptr
!= NULL
) {
2169 dict
= PyDict_New();
2172 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2176 dict
= PyObject_GetAttrString(inst
, "__dict__");
2177 PyDict_SetItem(dict
, SWIG_This(), swig_this
);
2182 SWIGINTERN PyObject
*
2183 SWIG_Python_InitShadowInstance(PyObject
*args
) {
2185 if (!SWIG_Python_UnpackTuple(args
,(char*)"swiginit", 2, 2, obj
)) {
2188 PySwigObject
*sthis
= SWIG_Python_GetSwigThis(obj
[0]);
2190 PySwigObject_append((PyObject
*) sthis
, obj
[1]);
2192 SWIG_Python_SetSwigThis(obj
[0], obj
[1]);
2194 return SWIG_Py_Void();
2198 /* Create a new pointer object */
2200 SWIGRUNTIME PyObject
*
2201 SWIG_Python_NewPointerObj(void *ptr
, swig_type_info
*type
, int flags
) {
2203 return SWIG_Py_Void();
2205 int own
= (flags
& SWIG_POINTER_OWN
) ? SWIG_POINTER_OWN
: 0;
2206 PyObject
*robj
= PySwigObject_New(ptr
, type
, own
);
2207 PySwigClientData
*clientdata
= type
? (PySwigClientData
*)(type
->clientdata
) : 0;
2208 if (clientdata
&& !(flags
& SWIG_POINTER_NOSHADOW
)) {
2209 PyObject
*inst
= SWIG_Python_NewShadowInstance(clientdata
, robj
);
2219 /* Create a new packed object */
2221 SWIGRUNTIMEINLINE PyObject
*
2222 SWIG_Python_NewPackedObj(void *ptr
, size_t sz
, swig_type_info
*type
) {
2223 return ptr
? PySwigPacked_New((void *) ptr
, sz
, type
) : SWIG_Py_Void();
2226 /* -----------------------------------------------------------------------------*
2228 * -----------------------------------------------------------------------------*/
2230 #ifdef SWIG_LINK_RUNTIME
2231 void *SWIG_ReturnGlobalTypeList(void *);
2234 SWIGRUNTIME swig_module_info
*
2235 SWIG_Python_GetModule(void) {
2236 static void *type_pointer
= (void *)0;
2237 /* first check if module already created */
2238 if (!type_pointer
) {
2239 #ifdef SWIG_LINK_RUNTIME
2240 type_pointer
= SWIG_ReturnGlobalTypeList((void *)0);
2242 type_pointer
= PyCObject_Import((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2243 (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
);
2244 if (PyErr_Occurred()) {
2246 type_pointer
= (void *)0;
2250 return (swig_module_info
*) type_pointer
;
2253 #if PY_MAJOR_VERSION < 2
2254 /* PyModule_AddObject function was introduced in Python 2.0. The following function
2255 is copied out of Python/modsupport.c in python version 2.3.4 */
2257 PyModule_AddObject(PyObject
*m
, char *name
, PyObject
*o
)
2260 if (!PyModule_Check(m
)) {
2261 PyErr_SetString(PyExc_TypeError
,
2262 "PyModule_AddObject() needs module as first arg");
2266 PyErr_SetString(PyExc_TypeError
,
2267 "PyModule_AddObject() needs non-NULL value");
2271 dict
= PyModule_GetDict(m
);
2273 /* Internal error -- modules must have a dict! */
2274 PyErr_Format(PyExc_SystemError
, "module '%s' has no __dict__",
2275 PyModule_GetName(m
));
2278 if (PyDict_SetItemString(dict
, name
, o
))
2286 SWIG_Python_DestroyModule(void *vptr
)
2288 swig_module_info
*swig_module
= (swig_module_info
*) vptr
;
2289 swig_type_info
**types
= swig_module
->types
;
2291 for (i
=0; i
< swig_module
->size
; ++i
) {
2292 swig_type_info
*ty
= types
[i
];
2294 PySwigClientData
*data
= (PySwigClientData
*) ty
->clientdata
;
2295 if (data
) PySwigClientData_Del(data
);
2298 Py_DECREF(SWIG_This());
2302 SWIG_Python_SetModule(swig_module_info
*swig_module
) {
2303 static PyMethodDef swig_empty_runtime_method_table
[] = { {NULL
, NULL
, 0, NULL
} };/* Sentinel */
2305 PyObject
*module = Py_InitModule((char*)"swig_runtime_data" SWIG_RUNTIME_VERSION
,
2306 swig_empty_runtime_method_table
);
2307 PyObject
*pointer
= PyCObject_FromVoidPtr((void *) swig_module
, SWIG_Python_DestroyModule
);
2308 if (pointer
&& module) {
2309 PyModule_AddObject(module, (char*)"type_pointer" SWIG_TYPE_TABLE_NAME
, pointer
);
2311 Py_XDECREF(pointer
);
2315 /* The python cached type query */
2316 SWIGRUNTIME PyObject
*
2317 SWIG_Python_TypeCache() {
2318 static PyObject
*SWIG_STATIC_POINTER(cache
) = PyDict_New();
2322 SWIGRUNTIME swig_type_info
*
2323 SWIG_Python_TypeQuery(const char *type
)
2325 PyObject
*cache
= SWIG_Python_TypeCache();
2326 PyObject
*key
= PyString_FromString(type
);
2327 PyObject
*obj
= PyDict_GetItem(cache
, key
);
2328 swig_type_info
*descriptor
;
2330 descriptor
= (swig_type_info
*) PyCObject_AsVoidPtr(obj
);
2332 swig_module_info
*swig_module
= SWIG_Python_GetModule();
2333 descriptor
= SWIG_TypeQueryModule(swig_module
, swig_module
, type
);
2335 obj
= PyCObject_FromVoidPtr(descriptor
, NULL
);
2336 PyDict_SetItem(cache
, key
, obj
);
2345 For backward compatibility only
2347 #define SWIG_POINTER_EXCEPTION 0
2348 #define SWIG_arg_fail(arg) SWIG_Python_ArgFail(arg)
2349 #define SWIG_MustGetPtr(p, type, argnum, flags) SWIG_Python_MustGetPtr(p, type, argnum, flags)
2352 SWIG_Python_AddErrMesg(const char* mesg
, int infront
)
2354 if (PyErr_Occurred()) {
2356 PyObject
*value
= 0;
2357 PyObject
*traceback
= 0;
2358 PyErr_Fetch(&type
, &value
, &traceback
);
2360 PyObject
*old_str
= PyObject_Str(value
);
2364 PyErr_Format(type
, "%s %s", mesg
, PyString_AsString(old_str
));
2366 PyErr_Format(type
, "%s %s", PyString_AsString(old_str
), mesg
);
2377 SWIG_Python_ArgFail(int argnum
)
2379 if (PyErr_Occurred()) {
2380 /* add information about failing argument */
2382 PyOS_snprintf(mesg
, sizeof(mesg
), "argument number %d:", argnum
);
2383 return SWIG_Python_AddErrMesg(mesg
, 1);
2389 SWIGRUNTIMEINLINE
const char *
2390 PySwigObject_GetDesc(PyObject
*self
)
2392 PySwigObject
*v
= (PySwigObject
*)self
;
2393 swig_type_info
*ty
= v
? v
->ty
: 0;
2394 return ty
? ty
->str
: (char*)"";
2398 SWIG_Python_TypeError(const char *type
, PyObject
*obj
)
2401 #if defined(SWIG_COBJECT_TYPES)
2402 if (obj
&& PySwigObject_Check(obj
)) {
2403 const char *otype
= (const char *) PySwigObject_GetDesc(obj
);
2405 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, 'PySwigObject(%s)' is received",
2412 const char *otype
= (obj
? obj
->ob_type
->tp_name
: 0);
2414 PyObject
*str
= PyObject_Str(obj
);
2415 const char *cstr
= str
? PyString_AsString(str
) : 0;
2417 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s(%s)' is received",
2420 PyErr_Format(PyExc_TypeError
, "a '%s' is expected, '%s' is received",
2427 PyErr_Format(PyExc_TypeError
, "a '%s' is expected", type
);
2429 PyErr_Format(PyExc_TypeError
, "unexpected type is received");
2434 /* Convert a pointer value, signal an exception on a type mismatch */
2436 SWIG_Python_MustGetPtr(PyObject
*obj
, swig_type_info
*ty
, int argnum
, int flags
) {
2438 if (SWIG_Python_ConvertPtr(obj
, &result
, ty
, flags
) == -1) {
2440 if (flags
& SWIG_POINTER_EXCEPTION
) {
2441 SWIG_Python_TypeError(SWIG_TypePrettyName(ty
), obj
);
2442 SWIG_Python_ArgFail(argnum
);
2458 #define SWIG_exception_fail(code, msg) do { SWIG_Error(code, msg); SWIG_fail; } while(0)
2460 #define SWIG_contract_assert(expr, msg) if (!(expr)) { SWIG_Error(SWIG_RuntimeError, msg); SWIG_fail; } else
2464 /* -------- TYPES TABLE (BEGIN) -------- */
2466 #define SWIGTYPE_p_char swig_types[0]
2467 #define SWIGTYPE_p_form_ops_t swig_types[1]
2468 #define SWIGTYPE_p_int swig_types[2]
2469 #define SWIGTYPE_p_unsigned_char swig_types[3]
2470 #define SWIGTYPE_p_unsigned_int swig_types[4]
2471 #define SWIGTYPE_p_unsigned_long swig_types[5]
2472 #define SWIGTYPE_p_void swig_types[6]
2473 #define SWIGTYPE_p_wxANIHandler swig_types[7]
2474 #define SWIGTYPE_p_wxAcceleratorTable swig_types[8]
2475 #define SWIGTYPE_p_wxActivateEvent swig_types[9]
2476 #define SWIGTYPE_p_wxBMPHandler swig_types[10]
2477 #define SWIGTYPE_p_wxBitmap swig_types[11]
2478 #define SWIGTYPE_p_wxBoxSizer swig_types[12]
2479 #define SWIGTYPE_p_wxBusyInfo swig_types[13]
2480 #define SWIGTYPE_p_wxCURHandler swig_types[14]
2481 #define SWIGTYPE_p_wxChildFocusEvent swig_types[15]
2482 #define SWIGTYPE_p_wxClipboard swig_types[16]
2483 #define SWIGTYPE_p_wxClipboardTextEvent swig_types[17]
2484 #define SWIGTYPE_p_wxCloseEvent swig_types[18]
2485 #define SWIGTYPE_p_wxColour swig_types[19]
2486 #define SWIGTYPE_p_wxCommandEvent swig_types[20]
2487 #define SWIGTYPE_p_wxContextMenuEvent swig_types[21]
2488 #define SWIGTYPE_p_wxControl swig_types[22]
2489 #define SWIGTYPE_p_wxControlWithItems swig_types[23]
2490 #define SWIGTYPE_p_wxDC swig_types[24]
2491 #define SWIGTYPE_p_wxDateEvent swig_types[25]
2492 #define SWIGTYPE_p_wxDisplayChangedEvent swig_types[26]
2493 #define SWIGTYPE_p_wxDropFilesEvent swig_types[27]
2494 #define SWIGTYPE_p_wxDuplexMode swig_types[28]
2495 #define SWIGTYPE_p_wxEraseEvent swig_types[29]
2496 #define SWIGTYPE_p_wxEvent swig_types[30]
2497 #define SWIGTYPE_p_wxEvtHandler swig_types[31]
2498 #define SWIGTYPE_p_wxFSFile swig_types[32]
2499 #define SWIGTYPE_p_wxFileHistory swig_types[33]
2500 #define SWIGTYPE_p_wxFileSystem swig_types[34]
2501 #define SWIGTYPE_p_wxFlexGridSizer swig_types[35]
2502 #define SWIGTYPE_p_wxFocusEvent swig_types[36]
2503 #define SWIGTYPE_p_wxFont swig_types[37]
2504 #define SWIGTYPE_p_wxGBSizerItem swig_types[38]
2505 #define SWIGTYPE_p_wxGIFHandler swig_types[39]
2506 #define SWIGTYPE_p_wxGridBagSizer swig_types[40]
2507 #define SWIGTYPE_p_wxGridSizer swig_types[41]
2508 #define SWIGTYPE_p_wxICOHandler swig_types[42]
2509 #define SWIGTYPE_p_wxIconizeEvent swig_types[43]
2510 #define SWIGTYPE_p_wxIdleEvent swig_types[44]
2511 #define SWIGTYPE_p_wxImage swig_types[45]
2512 #define SWIGTYPE_p_wxImageHandler swig_types[46]
2513 #define SWIGTYPE_p_wxIndividualLayoutConstraint swig_types[47]
2514 #define SWIGTYPE_p_wxInitDialogEvent swig_types[48]
2515 #define SWIGTYPE_p_wxJPEGHandler swig_types[49]
2516 #define SWIGTYPE_p_wxJoystickEvent swig_types[50]
2517 #define SWIGTYPE_p_wxKeyEvent swig_types[51]
2518 #define SWIGTYPE_p_wxLayoutConstraints swig_types[52]
2519 #define SWIGTYPE_p_wxMaximizeEvent swig_types[53]
2520 #define SWIGTYPE_p_wxMemoryBuffer swig_types[54]
2521 #define SWIGTYPE_p_wxMenu swig_types[55]
2522 #define SWIGTYPE_p_wxMenuBar swig_types[56]
2523 #define SWIGTYPE_p_wxMenuEvent swig_types[57]
2524 #define SWIGTYPE_p_wxMenuItem swig_types[58]
2525 #define SWIGTYPE_p_wxMouseCaptureChangedEvent swig_types[59]
2526 #define SWIGTYPE_p_wxMouseEvent swig_types[60]
2527 #define SWIGTYPE_p_wxMoveEvent swig_types[61]
2528 #define SWIGTYPE_p_wxNavigationKeyEvent swig_types[62]
2529 #define SWIGTYPE_p_wxNcPaintEvent swig_types[63]
2530 #define SWIGTYPE_p_wxNotifyEvent swig_types[64]
2531 #define SWIGTYPE_p_wxObject swig_types[65]
2532 #define SWIGTYPE_p_wxPCXHandler swig_types[66]
2533 #define SWIGTYPE_p_wxPNGHandler swig_types[67]
2534 #define SWIGTYPE_p_wxPNMHandler swig_types[68]
2535 #define SWIGTYPE_p_wxPaintEvent swig_types[69]
2536 #define SWIGTYPE_p_wxPaletteChangedEvent swig_types[70]
2537 #define SWIGTYPE_p_wxPaperSize swig_types[71]
2538 #define SWIGTYPE_p_wxPoint swig_types[72]
2539 #define SWIGTYPE_p_wxPowerEvent swig_types[73]
2540 #define SWIGTYPE_p_wxProcessEvent swig_types[74]
2541 #define SWIGTYPE_p_wxPyApp swig_types[75]
2542 #define SWIGTYPE_p_wxPyCommandEvent swig_types[76]
2543 #define SWIGTYPE_p_wxPyEvent swig_types[77]
2544 #define SWIGTYPE_p_wxPyImageHandler swig_types[78]
2545 #define SWIGTYPE_p_wxPyProcess swig_types[79]
2546 #define SWIGTYPE_p_wxPySizer swig_types[80]
2547 #define SWIGTYPE_p_wxPyTimer swig_types[81]
2548 #define SWIGTYPE_p_wxPyValidator swig_types[82]
2549 #define SWIGTYPE_p_wxQueryNewPaletteEvent swig_types[83]
2550 #define SWIGTYPE_p_wxRect swig_types[84]
2551 #define SWIGTYPE_p_wxScrollBar swig_types[85]
2552 #define SWIGTYPE_p_wxScrollEvent swig_types[86]
2553 #define SWIGTYPE_p_wxScrollWinEvent swig_types[87]
2554 #define SWIGTYPE_p_wxSetCursorEvent swig_types[88]
2555 #define SWIGTYPE_p_wxShowEvent swig_types[89]
2556 #define SWIGTYPE_p_wxSizeEvent swig_types[90]
2557 #define SWIGTYPE_p_wxSizer swig_types[91]
2558 #define SWIGTYPE_p_wxSizerItem swig_types[92]
2559 #define SWIGTYPE_p_wxStaticBoxSizer swig_types[93]
2560 #define SWIGTYPE_p_wxStdDialogButtonSizer swig_types[94]
2561 #define SWIGTYPE_p_wxStyledTextCtrl swig_types[95]
2562 #define SWIGTYPE_p_wxStyledTextEvent swig_types[96]
2563 #define SWIGTYPE_p_wxSysColourChangedEvent swig_types[97]
2564 #define SWIGTYPE_p_wxSystemOptions swig_types[98]
2565 #define SWIGTYPE_p_wxTIFFHandler swig_types[99]
2566 #define SWIGTYPE_p_wxTimerEvent swig_types[100]
2567 #define SWIGTYPE_p_wxToolTip swig_types[101]
2568 #define SWIGTYPE_p_wxUpdateUIEvent swig_types[102]
2569 #define SWIGTYPE_p_wxValidator swig_types[103]
2570 #define SWIGTYPE_p_wxWindow swig_types[104]
2571 #define SWIGTYPE_p_wxWindowCreateEvent swig_types[105]
2572 #define SWIGTYPE_p_wxWindowDestroyEvent swig_types[106]
2573 #define SWIGTYPE_p_wxXPMHandler swig_types[107]
2574 static swig_type_info
*swig_types
[109];
2575 static swig_module_info swig_module
= {swig_types
, 108, 0, 0, 0, 0};
2576 #define SWIG_TypeQuery(name) SWIG_TypeQueryModule(&swig_module, &swig_module, name)
2577 #define SWIG_MangledTypeQuery(name) SWIG_MangledTypeQueryModule(&swig_module, &swig_module, name)
2579 /* -------- TYPES TABLE (END) -------- */
2581 #if (PY_VERSION_HEX <= 0x02000000)
2582 # if !defined(SWIG_PYTHON_CLASSIC)
2583 # error "This python version requires to use swig with the '-classic' option"
2586 #if (PY_VERSION_HEX <= 0x02020000)
2587 # error "This python version requires to use swig with the '-nomodern' option"
2589 #if (PY_VERSION_HEX <= 0x02020000)
2590 # error "This python version requires to use swig with the '-nomodernargs' option"
2593 # error "This python version requires to use swig with the '-nofastunpack' option"
2596 /*-----------------------------------------------
2598 ------------------------------------------------*/
2599 #define SWIG_init init_stc
2601 #define SWIG_name "_stc"
2603 #define SWIGVERSION 0x010329
2606 #define SWIG_as_voidptr(a) const_cast< void * >(static_cast< const void * >(a))
2607 #define SWIG_as_voidptrptr(a) ((void)SWIG_as_voidptr(*a),reinterpret_cast< void** >(a))
2610 #include <stdexcept>
2614 class PyObject_ptr
{
2619 PyObject_ptr() :_obj(0)
2623 PyObject_ptr(const PyObject_ptr
& item
) : _obj(item
._obj
)
2628 PyObject_ptr(PyObject
*obj
, bool initial_ref
= true) :_obj(obj
)
2630 if (initial_ref
) Py_XINCREF(_obj
);
2633 PyObject_ptr
& operator=(const PyObject_ptr
& item
)
2635 Py_XINCREF(item
._obj
);
2646 operator PyObject
*() const
2651 PyObject
*operator->() const
2660 struct PyObject_var
: PyObject_ptr
{
2661 PyObject_var(PyObject
* obj
= 0) : PyObject_ptr(obj
, false) { }
2663 PyObject_var
& operator = (PyObject
* obj
)
2673 #include "wx/wxPython/wxPython.h"
2674 #include "wx/wxPython/pyclasses.h"
2675 #include <wx/stc/stc.h>
2678 static const wxString
wxPySTCNameStr(wxSTCNameStr
);
2680 #define SWIG_From_long PyInt_FromLong
2683 SWIGINTERNINLINE PyObject
*
2684 SWIG_From_int (int value
)
2686 return SWIG_From_long (value
);
2692 # define LLONG_MIN LONG_LONG_MIN
2695 # define LLONG_MAX LONG_LONG_MAX
2698 # define ULLONG_MAX ULONG_LONG_MAX
2703 SWIG_AsVal_long (PyObject
* obj
, long* val
)
2705 if (PyNumber_Check(obj
)) {
2706 if (val
) *val
= PyInt_AsLong(obj
);
2709 return SWIG_TypeError
;
2714 SWIG_AsVal_int (PyObject
* obj
, int *val
)
2717 int res
= SWIG_AsVal_long (obj
, &v
);
2718 if (SWIG_IsOK(res
)) {
2719 if ((v
< INT_MIN
|| v
> INT_MAX
)) {
2720 return SWIG_OverflowError
;
2722 if (val
) *val
= static_cast< int >(v
);
2730 SWIG_AsVal_bool (PyObject
*obj
, bool *val
)
2732 if (obj
== Py_True
) {
2733 if (val
) *val
= true;
2735 } else if (obj
== Py_False
) {
2736 if (val
) *val
= false;
2740 int res
= SWIG_AddCast(SWIG_AsVal_long (obj
, val
? &v
: 0));
2741 if (SWIG_IsOK(res
) && val
) *val
= v
? true : false;
2747 SWIGINTERN swig_type_info
*
2748 SWIG_pchar_descriptor()
2750 static int init
= 0;
2751 static swig_type_info
* info
= 0;
2753 info
= SWIG_TypeQuery("_p_char");
2761 SWIG_AsCharPtrAndSize(PyObject
*obj
, char** cptr
, size_t* psize
, int *alloc
)
2763 if (PyString_Check(obj
)) {
2764 char *cstr
; Py_ssize_t len
;
2765 PyString_AsStringAndSize(obj
, &cstr
, &len
);
2769 In python the user should not be able to modify the inner
2770 string representation. To warranty that, if you define
2771 SWIG_PYTHON_SAFE_CSTRINGS, a new/copy of the python string
2772 buffer is always returned.
2774 The default behavior is just to return the pointer value,
2777 #if defined(SWIG_PYTHON_SAFE_CSTRINGS)
2778 if (*alloc
!= SWIG_OLDOBJ
)
2780 if (*alloc
== SWIG_NEWOBJ
)
2783 *cptr
= reinterpret_cast< char* >(memcpy((new char[len
+ 1]), cstr
, sizeof(char)*(len
+ 1)));
2784 *alloc
= SWIG_NEWOBJ
;
2788 *alloc
= SWIG_OLDOBJ
;
2791 *cptr
= PyString_AsString(obj
);
2794 if (psize
) *psize
= len
+ 1;
2797 swig_type_info
* pchar_descriptor
= SWIG_pchar_descriptor();
2798 if (pchar_descriptor
) {
2800 if (SWIG_ConvertPtr(obj
, &vptr
, pchar_descriptor
, 0) == SWIG_OK
) {
2801 if (cptr
) *cptr
= (char *) vptr
;
2802 if (psize
) *psize
= vptr
? (strlen((char *)vptr
) + 1) : 0;
2803 if (alloc
) *alloc
= SWIG_OLDOBJ
;
2808 return SWIG_TypeError
;
2817 SWIGINTERN
int STCNameStr_set(PyObject
*) {
2818 SWIG_Error(SWIG_AttributeError
,"Variable STCNameStr is read-only.");
2823 SWIGINTERN PyObject
*STCNameStr_get(void) {
2824 PyObject
*pyobj
= 0;
2828 pyobj
= PyUnicode_FromWideChar((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2830 pyobj
= PyString_FromStringAndSize((&wxPySTCNameStr
)->c_str(), (&wxPySTCNameStr
)->Len());
2837 SWIGINTERN PyObject
*_wrap_new_StyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2838 PyObject
*resultobj
= 0;
2839 wxWindow
*arg1
= (wxWindow
*) 0 ;
2840 int arg2
= (int) wxID_ANY
;
2841 wxPoint
const &arg3_defvalue
= wxDefaultPosition
;
2842 wxPoint
*arg3
= (wxPoint
*) &arg3_defvalue
;
2843 wxSize
const &arg4_defvalue
= wxDefaultSize
;
2844 wxSize
*arg4
= (wxSize
*) &arg4_defvalue
;
2845 long arg5
= (long) 0 ;
2846 wxString
const &arg6_defvalue
= wxPySTCNameStr
;
2847 wxString
*arg6
= (wxString
*) &arg6_defvalue
;
2848 wxStyledTextCtrl
*result
= 0 ;
2857 bool temp6
= false ;
2858 PyObject
* obj0
= 0 ;
2859 PyObject
* obj1
= 0 ;
2860 PyObject
* obj2
= 0 ;
2861 PyObject
* obj3
= 0 ;
2862 PyObject
* obj4
= 0 ;
2863 PyObject
* obj5
= 0 ;
2864 char * kwnames
[] = {
2865 (char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2868 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"O|OOOOO:new_StyledTextCtrl",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
)) SWIG_fail
;
2869 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2870 if (!SWIG_IsOK(res1
)) {
2871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "new_StyledTextCtrl" "', expected argument " "1"" of type '" "wxWindow *""'");
2873 arg1
= reinterpret_cast< wxWindow
* >(argp1
);
2875 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
2876 if (!SWIG_IsOK(ecode2
)) {
2877 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextCtrl" "', expected argument " "2"" of type '" "int""'");
2879 arg2
= static_cast< int >(val2
);
2884 if ( ! wxPoint_helper(obj2
, &arg3
)) SWIG_fail
;
2890 if ( ! wxSize_helper(obj3
, &arg4
)) SWIG_fail
;
2894 ecode5
= SWIG_AsVal_long(obj4
, &val5
);
2895 if (!SWIG_IsOK(ecode5
)) {
2896 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "new_StyledTextCtrl" "', expected argument " "5"" of type '" "long""'");
2898 arg5
= static_cast< long >(val5
);
2902 arg6
= wxString_in_helper(obj5
);
2903 if (arg6
== NULL
) SWIG_fail
;
2908 if (!wxPyCheckForApp()) SWIG_fail
;
2909 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2910 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl(arg1
,arg2
,(wxPoint
const &)*arg3
,(wxSize
const &)*arg4
,arg5
,(wxString
const &)*arg6
);
2911 wxPyEndAllowThreads(__tstate
);
2912 if (PyErr_Occurred()) SWIG_fail
;
2914 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_NEW
| 0 );
2929 SWIGINTERN PyObject
*_wrap_new_PreStyledTextCtrl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
2930 PyObject
*resultobj
= 0;
2931 wxStyledTextCtrl
*result
= 0 ;
2933 if (!SWIG_Python_UnpackTuple(args
,"new_PreStyledTextCtrl",0,0,0)) SWIG_fail
;
2935 if (!wxPyCheckForApp()) SWIG_fail
;
2936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
2937 result
= (wxStyledTextCtrl
*)new wxStyledTextCtrl();
2938 wxPyEndAllowThreads(__tstate
);
2939 if (PyErr_Occurred()) SWIG_fail
;
2941 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextCtrl
, SWIG_POINTER_OWN
| 0 );
2948 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Create(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
2949 PyObject
*resultobj
= 0;
2950 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
2951 wxWindow
*arg2
= (wxWindow
*) 0 ;
2952 int arg3
= (int) wxID_ANY
;
2953 wxPoint
const &arg4_defvalue
= wxDefaultPosition
;
2954 wxPoint
*arg4
= (wxPoint
*) &arg4_defvalue
;
2955 wxSize
const &arg5_defvalue
= wxDefaultSize
;
2956 wxSize
*arg5
= (wxSize
*) &arg5_defvalue
;
2957 long arg6
= (long) 0 ;
2958 wxString
const &arg7_defvalue
= wxSTCNameStr
;
2959 wxString
*arg7
= (wxString
*) &arg7_defvalue
;
2971 bool temp7
= false ;
2972 PyObject
* obj0
= 0 ;
2973 PyObject
* obj1
= 0 ;
2974 PyObject
* obj2
= 0 ;
2975 PyObject
* obj3
= 0 ;
2976 PyObject
* obj4
= 0 ;
2977 PyObject
* obj5
= 0 ;
2978 PyObject
* obj6
= 0 ;
2979 char * kwnames
[] = {
2980 (char *) "self",(char *) "parent",(char *) "id",(char *) "pos",(char *) "size",(char *) "style",(char *) "name", NULL
2983 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OOOOO:StyledTextCtrl_Create",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
)) SWIG_fail
;
2984 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
2985 if (!SWIG_IsOK(res1
)) {
2986 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Create" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
2988 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
2989 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxWindow
, 0 | 0 );
2990 if (!SWIG_IsOK(res2
)) {
2991 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_Create" "', expected argument " "2"" of type '" "wxWindow *""'");
2993 arg2
= reinterpret_cast< wxWindow
* >(argp2
);
2995 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
2996 if (!SWIG_IsOK(ecode3
)) {
2997 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Create" "', expected argument " "3"" of type '" "int""'");
2999 arg3
= static_cast< int >(val3
);
3004 if ( ! wxPoint_helper(obj3
, &arg4
)) SWIG_fail
;
3010 if ( ! wxSize_helper(obj4
, &arg5
)) SWIG_fail
;
3014 ecode6
= SWIG_AsVal_long(obj5
, &val6
);
3015 if (!SWIG_IsOK(ecode6
)) {
3016 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_Create" "', expected argument " "6"" of type '" "long""'");
3018 arg6
= static_cast< long >(val6
);
3022 arg7
= wxString_in_helper(obj6
);
3023 if (arg7
== NULL
) SWIG_fail
;
3028 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3029 result
= (bool)(arg1
)->Create(arg2
,arg3
,(wxPoint
const &)*arg4
,(wxSize
const &)*arg5
,arg6
,(wxString
const &)*arg7
);
3030 wxPyEndAllowThreads(__tstate
);
3031 if (PyErr_Occurred()) SWIG_fail
;
3034 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3050 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3051 PyObject
*resultobj
= 0;
3052 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3053 wxString
*arg2
= 0 ;
3056 bool temp2
= false ;
3057 PyObject
* obj0
= 0 ;
3058 PyObject
* obj1
= 0 ;
3059 char * kwnames
[] = {
3060 (char *) "self",(char *) "text", NULL
3063 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3064 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3065 if (!SWIG_IsOK(res1
)) {
3066 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3068 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3070 arg2
= wxString_in_helper(obj1
);
3071 if (arg2
== NULL
) SWIG_fail
;
3075 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3076 (arg1
)->AddText((wxString
const &)*arg2
);
3077 wxPyEndAllowThreads(__tstate
);
3078 if (PyErr_Occurred()) SWIG_fail
;
3080 resultobj
= SWIG_Py_Void();
3095 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3096 PyObject
*resultobj
= 0;
3097 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3098 wxMemoryBuffer
*arg2
= 0 ;
3101 bool temp2
= false ;
3102 PyObject
* obj0
= 0 ;
3103 PyObject
* obj1
= 0 ;
3104 char * kwnames
[] = {
3105 (char *) "self",(char *) "data", NULL
3108 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddStyledText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3109 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3110 if (!SWIG_IsOK(res1
)) {
3111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3113 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3115 if (!PyString_Check(obj1
)) {
3116 PyErr_SetString(PyExc_TypeError
, "String buffer expected");
3119 char* str
= PyString_AS_STRING(obj1
);
3120 int len
= PyString_GET_SIZE(obj1
);
3121 arg2
= new wxMemoryBuffer(len
);
3123 memcpy(arg2
->GetData(), str
, len
);
3124 arg2
->SetDataLen(len
);
3127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3128 (arg1
)->AddStyledText((wxMemoryBuffer
const &)*arg2
);
3129 wxPyEndAllowThreads(__tstate
);
3130 if (PyErr_Occurred()) SWIG_fail
;
3132 resultobj
= SWIG_Py_Void();
3134 if (temp2
) delete arg2
;
3139 if (temp2
) delete arg2
;
3145 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3146 PyObject
*resultobj
= 0;
3147 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3149 wxString
*arg3
= 0 ;
3154 bool temp3
= false ;
3155 PyObject
* obj0
= 0 ;
3156 PyObject
* obj1
= 0 ;
3157 PyObject
* obj2
= 0 ;
3158 char * kwnames
[] = {
3159 (char *) "self",(char *) "pos",(char *) "text", NULL
3162 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3163 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3164 if (!SWIG_IsOK(res1
)) {
3165 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3167 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3168 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3169 if (!SWIG_IsOK(ecode2
)) {
3170 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertText" "', expected argument " "2"" of type '" "int""'");
3172 arg2
= static_cast< int >(val2
);
3174 arg3
= wxString_in_helper(obj2
);
3175 if (arg3
== NULL
) SWIG_fail
;
3179 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3180 (arg1
)->InsertText(arg2
,(wxString
const &)*arg3
);
3181 wxPyEndAllowThreads(__tstate
);
3182 if (PyErr_Occurred()) SWIG_fail
;
3184 resultobj
= SWIG_Py_Void();
3199 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3200 PyObject
*resultobj
= 0;
3201 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3204 PyObject
*swig_obj
[1] ;
3206 if (!args
) SWIG_fail
;
3208 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3209 if (!SWIG_IsOK(res1
)) {
3210 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3212 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3216 wxPyEndAllowThreads(__tstate
);
3217 if (PyErr_Occurred()) SWIG_fail
;
3219 resultobj
= SWIG_Py_Void();
3226 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearDocumentStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3227 PyObject
*resultobj
= 0;
3228 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3231 PyObject
*swig_obj
[1] ;
3233 if (!args
) SWIG_fail
;
3235 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3236 if (!SWIG_IsOK(res1
)) {
3237 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearDocumentStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3239 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3241 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3242 (arg1
)->ClearDocumentStyle();
3243 wxPyEndAllowThreads(__tstate
);
3244 if (PyErr_Occurred()) SWIG_fail
;
3246 resultobj
= SWIG_Py_Void();
3253 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3254 PyObject
*resultobj
= 0;
3255 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3259 PyObject
*swig_obj
[1] ;
3261 if (!args
) SWIG_fail
;
3263 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3264 if (!SWIG_IsOK(res1
)) {
3265 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3267 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3269 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3270 result
= (int)(arg1
)->GetLength();
3271 wxPyEndAllowThreads(__tstate
);
3272 if (PyErr_Occurred()) SWIG_fail
;
3274 resultobj
= SWIG_From_int(static_cast< int >(result
));
3281 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCharAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3282 PyObject
*resultobj
= 0;
3283 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3290 PyObject
* obj0
= 0 ;
3291 PyObject
* obj1
= 0 ;
3292 char * kwnames
[] = {
3293 (char *) "self",(char *) "pos", NULL
3296 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetCharAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3297 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3298 if (!SWIG_IsOK(res1
)) {
3299 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3301 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3302 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3303 if (!SWIG_IsOK(ecode2
)) {
3304 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetCharAt" "', expected argument " "2"" of type '" "int""'");
3306 arg2
= static_cast< int >(val2
);
3308 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3309 result
= (int)(arg1
)->GetCharAt(arg2
);
3310 wxPyEndAllowThreads(__tstate
);
3311 if (PyErr_Occurred()) SWIG_fail
;
3313 resultobj
= SWIG_From_int(static_cast< int >(result
));
3320 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3321 PyObject
*resultobj
= 0;
3322 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3326 PyObject
*swig_obj
[1] ;
3328 if (!args
) SWIG_fail
;
3330 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3331 if (!SWIG_IsOK(res1
)) {
3332 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3334 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3336 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3337 result
= (int)(arg1
)->GetCurrentPos();
3338 wxPyEndAllowThreads(__tstate
);
3339 if (PyErr_Occurred()) SWIG_fail
;
3341 resultobj
= SWIG_From_int(static_cast< int >(result
));
3348 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3349 PyObject
*resultobj
= 0;
3350 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3354 PyObject
*swig_obj
[1] ;
3356 if (!args
) SWIG_fail
;
3358 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3359 if (!SWIG_IsOK(res1
)) {
3360 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3362 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3364 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3365 result
= (int)(arg1
)->GetAnchor();
3366 wxPyEndAllowThreads(__tstate
);
3367 if (PyErr_Occurred()) SWIG_fail
;
3369 resultobj
= SWIG_From_int(static_cast< int >(result
));
3376 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleAt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3377 PyObject
*resultobj
= 0;
3378 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3385 PyObject
* obj0
= 0 ;
3386 PyObject
* obj1
= 0 ;
3387 char * kwnames
[] = {
3388 (char *) "self",(char *) "pos", NULL
3391 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetStyleAt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3392 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3393 if (!SWIG_IsOK(res1
)) {
3394 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3396 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3397 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3398 if (!SWIG_IsOK(ecode2
)) {
3399 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyleAt" "', expected argument " "2"" of type '" "int""'");
3401 arg2
= static_cast< int >(val2
);
3403 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3404 result
= (int)(arg1
)->GetStyleAt(arg2
);
3405 wxPyEndAllowThreads(__tstate
);
3406 if (PyErr_Occurred()) SWIG_fail
;
3408 resultobj
= SWIG_From_int(static_cast< int >(result
));
3415 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Redo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3416 PyObject
*resultobj
= 0;
3417 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3420 PyObject
*swig_obj
[1] ;
3422 if (!args
) SWIG_fail
;
3424 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3425 if (!SWIG_IsOK(res1
)) {
3426 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Redo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3428 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3430 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3432 wxPyEndAllowThreads(__tstate
);
3433 if (PyErr_Occurred()) SWIG_fail
;
3435 resultobj
= SWIG_Py_Void();
3442 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3443 PyObject
*resultobj
= 0;
3444 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3450 PyObject
* obj0
= 0 ;
3451 PyObject
* obj1
= 0 ;
3452 char * kwnames
[] = {
3453 (char *) "self",(char *) "collectUndo", NULL
3456 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUndoCollection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3457 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3458 if (!SWIG_IsOK(res1
)) {
3459 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3461 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3462 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
3463 if (!SWIG_IsOK(ecode2
)) {
3464 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUndoCollection" "', expected argument " "2"" of type '" "bool""'");
3466 arg2
= static_cast< bool >(val2
);
3468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3469 (arg1
)->SetUndoCollection(arg2
);
3470 wxPyEndAllowThreads(__tstate
);
3471 if (PyErr_Occurred()) SWIG_fail
;
3473 resultobj
= SWIG_Py_Void();
3480 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3481 PyObject
*resultobj
= 0;
3482 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3485 PyObject
*swig_obj
[1] ;
3487 if (!args
) SWIG_fail
;
3489 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3490 if (!SWIG_IsOK(res1
)) {
3491 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3493 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3496 (arg1
)->SelectAll();
3497 wxPyEndAllowThreads(__tstate
);
3498 if (PyErr_Occurred()) SWIG_fail
;
3500 resultobj
= SWIG_Py_Void();
3507 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSavePoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3508 PyObject
*resultobj
= 0;
3509 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3512 PyObject
*swig_obj
[1] ;
3514 if (!args
) SWIG_fail
;
3516 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3517 if (!SWIG_IsOK(res1
)) {
3518 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSavePoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3520 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3522 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3523 (arg1
)->SetSavePoint();
3524 wxPyEndAllowThreads(__tstate
);
3525 if (PyErr_Occurred()) SWIG_fail
;
3527 resultobj
= SWIG_Py_Void();
3534 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyledText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3535 PyObject
*resultobj
= 0;
3536 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3539 wxMemoryBuffer result
;
3546 PyObject
* obj0
= 0 ;
3547 PyObject
* obj1
= 0 ;
3548 PyObject
* obj2
= 0 ;
3549 char * kwnames
[] = {
3550 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
3553 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetStyledText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3554 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3555 if (!SWIG_IsOK(res1
)) {
3556 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3558 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3559 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3560 if (!SWIG_IsOK(ecode2
)) {
3561 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "2"" of type '" "int""'");
3563 arg2
= static_cast< int >(val2
);
3564 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3565 if (!SWIG_IsOK(ecode3
)) {
3566 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetStyledText" "', expected argument " "3"" of type '" "int""'");
3568 arg3
= static_cast< int >(val3
);
3570 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3571 result
= (arg1
)->GetStyledText(arg2
,arg3
);
3572 wxPyEndAllowThreads(__tstate
);
3573 if (PyErr_Occurred()) SWIG_fail
;
3576 resultobj
= PyString_FromStringAndSize((char*)(&result
)->GetData(), (&result
)->GetDataLen());
3584 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanRedo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3585 PyObject
*resultobj
= 0;
3586 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3590 PyObject
*swig_obj
[1] ;
3592 if (!args
) SWIG_fail
;
3594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3595 if (!SWIG_IsOK(res1
)) {
3596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanRedo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3598 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3601 result
= (bool)(arg1
)->CanRedo();
3602 wxPyEndAllowThreads(__tstate
);
3603 if (PyErr_Occurred()) SWIG_fail
;
3606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3614 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerLineFromHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3615 PyObject
*resultobj
= 0;
3616 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3623 PyObject
* obj0
= 0 ;
3624 PyObject
* obj1
= 0 ;
3625 char * kwnames
[] = {
3626 (char *) "self",(char *) "handle", NULL
3629 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerLineFromHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3630 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3631 if (!SWIG_IsOK(res1
)) {
3632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3634 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3635 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3636 if (!SWIG_IsOK(ecode2
)) {
3637 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerLineFromHandle" "', expected argument " "2"" of type '" "int""'");
3639 arg2
= static_cast< int >(val2
);
3641 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3642 result
= (int)(arg1
)->MarkerLineFromHandle(arg2
);
3643 wxPyEndAllowThreads(__tstate
);
3644 if (PyErr_Occurred()) SWIG_fail
;
3646 resultobj
= SWIG_From_int(static_cast< int >(result
));
3653 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteHandle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3654 PyObject
*resultobj
= 0;
3655 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3661 PyObject
* obj0
= 0 ;
3662 PyObject
* obj1
= 0 ;
3663 char * kwnames
[] = {
3664 (char *) "self",(char *) "handle", NULL
3667 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteHandle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3668 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3669 if (!SWIG_IsOK(res1
)) {
3670 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3672 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3673 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3674 if (!SWIG_IsOK(ecode2
)) {
3675 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteHandle" "', expected argument " "2"" of type '" "int""'");
3677 arg2
= static_cast< int >(val2
);
3679 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3680 (arg1
)->MarkerDeleteHandle(arg2
);
3681 wxPyEndAllowThreads(__tstate
);
3682 if (PyErr_Occurred()) SWIG_fail
;
3684 resultobj
= SWIG_Py_Void();
3691 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUndoCollection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3692 PyObject
*resultobj
= 0;
3693 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3697 PyObject
*swig_obj
[1] ;
3699 if (!args
) SWIG_fail
;
3701 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3702 if (!SWIG_IsOK(res1
)) {
3703 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUndoCollection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3705 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3707 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3708 result
= (bool)(arg1
)->GetUndoCollection();
3709 wxPyEndAllowThreads(__tstate
);
3710 if (PyErr_Occurred()) SWIG_fail
;
3713 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
3721 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3722 PyObject
*resultobj
= 0;
3723 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3727 PyObject
*swig_obj
[1] ;
3729 if (!args
) SWIG_fail
;
3731 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3732 if (!SWIG_IsOK(res1
)) {
3733 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3735 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3737 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3738 result
= (int)(arg1
)->GetViewWhiteSpace();
3739 wxPyEndAllowThreads(__tstate
);
3740 if (PyErr_Occurred()) SWIG_fail
;
3742 resultobj
= SWIG_From_int(static_cast< int >(result
));
3749 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewWhiteSpace(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3750 PyObject
*resultobj
= 0;
3751 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3757 PyObject
* obj0
= 0 ;
3758 PyObject
* obj1
= 0 ;
3759 char * kwnames
[] = {
3760 (char *) "self",(char *) "viewWS", NULL
3763 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewWhiteSpace",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3764 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3765 if (!SWIG_IsOK(res1
)) {
3766 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3768 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3769 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3770 if (!SWIG_IsOK(ecode2
)) {
3771 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewWhiteSpace" "', expected argument " "2"" of type '" "int""'");
3773 arg2
= static_cast< int >(val2
);
3775 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3776 (arg1
)->SetViewWhiteSpace(arg2
);
3777 wxPyEndAllowThreads(__tstate
);
3778 if (PyErr_Occurred()) SWIG_fail
;
3780 resultobj
= SWIG_Py_Void();
3787 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPoint(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3788 PyObject
*resultobj
= 0;
3789 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3796 PyObject
* obj0
= 0 ;
3797 PyObject
* obj1
= 0 ;
3798 char * kwnames
[] = {
3799 (char *) "self",(char *) "pt", NULL
3802 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromPoint",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3803 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3804 if (!SWIG_IsOK(res1
)) {
3805 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3807 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3809 res2
= SWIG_ConvertPtr(obj1
, &argp2
, SWIGTYPE_p_wxPoint
, 0 | 0);
3810 if (!SWIG_IsOK(res2
)) {
3811 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3814 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_PositionFromPoint" "', expected argument " "2"" of type '" "wxPoint""'");
3816 wxPoint
* temp
= reinterpret_cast< wxPoint
* >(argp2
);
3818 if (SWIG_IsNewObj(res2
)) delete temp
;
3822 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3823 result
= (int)(arg1
)->PositionFromPoint(arg2
);
3824 wxPyEndAllowThreads(__tstate
);
3825 if (PyErr_Occurred()) SWIG_fail
;
3827 resultobj
= SWIG_From_int(static_cast< int >(result
));
3834 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromPointClose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3835 PyObject
*resultobj
= 0;
3836 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3846 PyObject
* obj0
= 0 ;
3847 PyObject
* obj1
= 0 ;
3848 PyObject
* obj2
= 0 ;
3849 char * kwnames
[] = {
3850 (char *) "self",(char *) "x",(char *) "y", NULL
3853 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_PositionFromPointClose",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
3854 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3855 if (!SWIG_IsOK(res1
)) {
3856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3858 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3859 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3860 if (!SWIG_IsOK(ecode2
)) {
3861 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "2"" of type '" "int""'");
3863 arg2
= static_cast< int >(val2
);
3864 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
3865 if (!SWIG_IsOK(ecode3
)) {
3866 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_PositionFromPointClose" "', expected argument " "3"" of type '" "int""'");
3868 arg3
= static_cast< int >(val3
);
3870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3871 result
= (int)(arg1
)->PositionFromPointClose(arg2
,arg3
);
3872 wxPyEndAllowThreads(__tstate
);
3873 if (PyErr_Occurred()) SWIG_fail
;
3875 resultobj
= SWIG_From_int(static_cast< int >(result
));
3882 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3883 PyObject
*resultobj
= 0;
3884 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3890 PyObject
* obj0
= 0 ;
3891 PyObject
* obj1
= 0 ;
3892 char * kwnames
[] = {
3893 (char *) "self",(char *) "line", NULL
3896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3898 if (!SWIG_IsOK(res1
)) {
3899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3901 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3902 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3903 if (!SWIG_IsOK(ecode2
)) {
3904 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoLine" "', expected argument " "2"" of type '" "int""'");
3906 arg2
= static_cast< int >(val2
);
3908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3909 (arg1
)->GotoLine(arg2
);
3910 wxPyEndAllowThreads(__tstate
);
3911 if (PyErr_Occurred()) SWIG_fail
;
3913 resultobj
= SWIG_Py_Void();
3920 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GotoPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3921 PyObject
*resultobj
= 0;
3922 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3928 PyObject
* obj0
= 0 ;
3929 PyObject
* obj1
= 0 ;
3930 char * kwnames
[] = {
3931 (char *) "self",(char *) "pos", NULL
3934 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GotoPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3935 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3936 if (!SWIG_IsOK(res1
)) {
3937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3939 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3940 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3941 if (!SWIG_IsOK(ecode2
)) {
3942 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GotoPos" "', expected argument " "2"" of type '" "int""'");
3944 arg2
= static_cast< int >(val2
);
3946 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3947 (arg1
)->GotoPos(arg2
);
3948 wxPyEndAllowThreads(__tstate
);
3949 if (PyErr_Occurred()) SWIG_fail
;
3951 resultobj
= SWIG_Py_Void();
3958 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
3959 PyObject
*resultobj
= 0;
3960 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3966 PyObject
* obj0
= 0 ;
3967 PyObject
* obj1
= 0 ;
3968 char * kwnames
[] = {
3969 (char *) "self",(char *) "posAnchor", NULL
3972 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetAnchor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
3973 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
3974 if (!SWIG_IsOK(res1
)) {
3975 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
3977 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
3978 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
3979 if (!SWIG_IsOK(ecode2
)) {
3980 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetAnchor" "', expected argument " "2"" of type '" "int""'");
3982 arg2
= static_cast< int >(val2
);
3984 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
3985 (arg1
)->SetAnchor(arg2
);
3986 wxPyEndAllowThreads(__tstate
);
3987 if (PyErr_Occurred()) SWIG_fail
;
3989 resultobj
= SWIG_Py_Void();
3996 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
3997 PyObject
*resultobj
= 0;
3998 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
3999 int *arg2
= (int *) 0 ;
4004 int res2
= SWIG_TMPOBJ
;
4005 PyObject
*swig_obj
[1] ;
4008 if (!args
) SWIG_fail
;
4010 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4011 if (!SWIG_IsOK(res1
)) {
4012 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4014 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4016 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4017 result
= (arg1
)->GetCurLine(arg2
);
4018 wxPyEndAllowThreads(__tstate
);
4019 if (PyErr_Occurred()) SWIG_fail
;
4023 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
4025 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
4028 if (SWIG_IsTmpObj(res2
)) {
4029 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
4031 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
4032 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
4040 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndStyled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4041 PyObject
*resultobj
= 0;
4042 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4046 PyObject
*swig_obj
[1] ;
4048 if (!args
) SWIG_fail
;
4050 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4051 if (!SWIG_IsOK(res1
)) {
4052 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndStyled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4054 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4056 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4057 result
= (int)(arg1
)->GetEndStyled();
4058 wxPyEndAllowThreads(__tstate
);
4059 if (PyErr_Occurred()) SWIG_fail
;
4061 resultobj
= SWIG_From_int(static_cast< int >(result
));
4068 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ConvertEOLs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4069 PyObject
*resultobj
= 0;
4070 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4076 PyObject
* obj0
= 0 ;
4077 PyObject
* obj1
= 0 ;
4078 char * kwnames
[] = {
4079 (char *) "self",(char *) "eolMode", NULL
4082 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ConvertEOLs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4083 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4084 if (!SWIG_IsOK(res1
)) {
4085 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4087 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4088 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4089 if (!SWIG_IsOK(ecode2
)) {
4090 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ConvertEOLs" "', expected argument " "2"" of type '" "int""'");
4092 arg2
= static_cast< int >(val2
);
4094 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4095 (arg1
)->ConvertEOLs(arg2
);
4096 wxPyEndAllowThreads(__tstate
);
4097 if (PyErr_Occurred()) SWIG_fail
;
4099 resultobj
= SWIG_Py_Void();
4106 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4107 PyObject
*resultobj
= 0;
4108 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4112 PyObject
*swig_obj
[1] ;
4114 if (!args
) SWIG_fail
;
4116 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4117 if (!SWIG_IsOK(res1
)) {
4118 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4120 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4122 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4123 result
= (int)(arg1
)->GetEOLMode();
4124 wxPyEndAllowThreads(__tstate
);
4125 if (PyErr_Occurred()) SWIG_fail
;
4127 resultobj
= SWIG_From_int(static_cast< int >(result
));
4134 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEOLMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4135 PyObject
*resultobj
= 0;
4136 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4142 PyObject
* obj0
= 0 ;
4143 PyObject
* obj1
= 0 ;
4144 char * kwnames
[] = {
4145 (char *) "self",(char *) "eolMode", NULL
4148 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEOLMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4149 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4150 if (!SWIG_IsOK(res1
)) {
4151 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4153 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4154 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4155 if (!SWIG_IsOK(ecode2
)) {
4156 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEOLMode" "', expected argument " "2"" of type '" "int""'");
4158 arg2
= static_cast< int >(val2
);
4160 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4161 (arg1
)->SetEOLMode(arg2
);
4162 wxPyEndAllowThreads(__tstate
);
4163 if (PyErr_Occurred()) SWIG_fail
;
4165 resultobj
= SWIG_Py_Void();
4172 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4173 PyObject
*resultobj
= 0;
4174 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4183 PyObject
* obj0
= 0 ;
4184 PyObject
* obj1
= 0 ;
4185 PyObject
* obj2
= 0 ;
4186 char * kwnames
[] = {
4187 (char *) "self",(char *) "pos",(char *) "mask", NULL
4190 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StartStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4191 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4192 if (!SWIG_IsOK(res1
)) {
4193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4195 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4196 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4197 if (!SWIG_IsOK(ecode2
)) {
4198 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "2"" of type '" "int""'");
4200 arg2
= static_cast< int >(val2
);
4201 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4202 if (!SWIG_IsOK(ecode3
)) {
4203 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StartStyling" "', expected argument " "3"" of type '" "int""'");
4205 arg3
= static_cast< int >(val3
);
4207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4208 (arg1
)->StartStyling(arg2
,arg3
);
4209 wxPyEndAllowThreads(__tstate
);
4210 if (PyErr_Occurred()) SWIG_fail
;
4212 resultobj
= SWIG_Py_Void();
4219 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyling(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4220 PyObject
*resultobj
= 0;
4221 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4230 PyObject
* obj0
= 0 ;
4231 PyObject
* obj1
= 0 ;
4232 PyObject
* obj2
= 0 ;
4233 char * kwnames
[] = {
4234 (char *) "self",(char *) "length",(char *) "style", NULL
4237 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyling",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4238 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4239 if (!SWIG_IsOK(res1
)) {
4240 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4242 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4243 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4244 if (!SWIG_IsOK(ecode2
)) {
4245 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "2"" of type '" "int""'");
4247 arg2
= static_cast< int >(val2
);
4248 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4249 if (!SWIG_IsOK(ecode3
)) {
4250 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetStyling" "', expected argument " "3"" of type '" "int""'");
4252 arg3
= static_cast< int >(val3
);
4254 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4255 (arg1
)->SetStyling(arg2
,arg3
);
4256 wxPyEndAllowThreads(__tstate
);
4257 if (PyErr_Occurred()) SWIG_fail
;
4259 resultobj
= SWIG_Py_Void();
4266 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4267 PyObject
*resultobj
= 0;
4268 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4272 PyObject
*swig_obj
[1] ;
4274 if (!args
) SWIG_fail
;
4276 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4277 if (!SWIG_IsOK(res1
)) {
4278 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4280 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4282 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4283 result
= (bool)(arg1
)->GetBufferedDraw();
4284 wxPyEndAllowThreads(__tstate
);
4285 if (PyErr_Occurred()) SWIG_fail
;
4288 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
4296 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBufferedDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4297 PyObject
*resultobj
= 0;
4298 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4304 PyObject
* obj0
= 0 ;
4305 PyObject
* obj1
= 0 ;
4306 char * kwnames
[] = {
4307 (char *) "self",(char *) "buffered", NULL
4310 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBufferedDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4311 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4312 if (!SWIG_IsOK(res1
)) {
4313 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4315 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4316 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
4317 if (!SWIG_IsOK(ecode2
)) {
4318 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBufferedDraw" "', expected argument " "2"" of type '" "bool""'");
4320 arg2
= static_cast< bool >(val2
);
4322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4323 (arg1
)->SetBufferedDraw(arg2
);
4324 wxPyEndAllowThreads(__tstate
);
4325 if (PyErr_Occurred()) SWIG_fail
;
4327 resultobj
= SWIG_Py_Void();
4334 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4335 PyObject
*resultobj
= 0;
4336 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4342 PyObject
* obj0
= 0 ;
4343 PyObject
* obj1
= 0 ;
4344 char * kwnames
[] = {
4345 (char *) "self",(char *) "tabWidth", NULL
4348 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4349 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4350 if (!SWIG_IsOK(res1
)) {
4351 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4353 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4354 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4355 if (!SWIG_IsOK(ecode2
)) {
4356 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabWidth" "', expected argument " "2"" of type '" "int""'");
4358 arg2
= static_cast< int >(val2
);
4360 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4361 (arg1
)->SetTabWidth(arg2
);
4362 wxPyEndAllowThreads(__tstate
);
4363 if (PyErr_Occurred()) SWIG_fail
;
4365 resultobj
= SWIG_Py_Void();
4372 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
4373 PyObject
*resultobj
= 0;
4374 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4378 PyObject
*swig_obj
[1] ;
4380 if (!args
) SWIG_fail
;
4382 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4383 if (!SWIG_IsOK(res1
)) {
4384 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4386 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4388 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4389 result
= (int)(arg1
)->GetTabWidth();
4390 wxPyEndAllowThreads(__tstate
);
4391 if (PyErr_Occurred()) SWIG_fail
;
4393 resultobj
= SWIG_From_int(static_cast< int >(result
));
4400 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4401 PyObject
*resultobj
= 0;
4402 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4408 PyObject
* obj0
= 0 ;
4409 PyObject
* obj1
= 0 ;
4410 char * kwnames
[] = {
4411 (char *) "self",(char *) "codePage", NULL
4414 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCodePage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4415 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4416 if (!SWIG_IsOK(res1
)) {
4417 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4419 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4420 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4421 if (!SWIG_IsOK(ecode2
)) {
4422 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCodePage" "', expected argument " "2"" of type '" "int""'");
4424 arg2
= static_cast< int >(val2
);
4426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4427 (arg1
)->SetCodePage(arg2
);
4428 wxPyEndAllowThreads(__tstate
);
4429 if (PyErr_Occurred()) SWIG_fail
;
4431 resultobj
= SWIG_Py_Void();
4438 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4439 PyObject
*resultobj
= 0;
4440 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4443 wxColour
const &arg4_defvalue
= wxNullColour
;
4444 wxColour
*arg4
= (wxColour
*) &arg4_defvalue
;
4445 wxColour
const &arg5_defvalue
= wxNullColour
;
4446 wxColour
*arg5
= (wxColour
*) &arg5_defvalue
;
4455 PyObject
* obj0
= 0 ;
4456 PyObject
* obj1
= 0 ;
4457 PyObject
* obj2
= 0 ;
4458 PyObject
* obj3
= 0 ;
4459 PyObject
* obj4
= 0 ;
4460 char * kwnames
[] = {
4461 (char *) "self",(char *) "markerNumber",(char *) "markerSymbol",(char *) "foreground",(char *) "background", NULL
4464 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO|OO:StyledTextCtrl_MarkerDefine",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
4465 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4466 if (!SWIG_IsOK(res1
)) {
4467 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4469 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4470 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4471 if (!SWIG_IsOK(ecode2
)) {
4472 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "2"" of type '" "int""'");
4474 arg2
= static_cast< int >(val2
);
4475 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4476 if (!SWIG_IsOK(ecode3
)) {
4477 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDefine" "', expected argument " "3"" of type '" "int""'");
4479 arg3
= static_cast< int >(val3
);
4483 if ( ! wxColour_helper(obj3
, &arg4
)) SWIG_fail
;
4489 if ( ! wxColour_helper(obj4
, &arg5
)) SWIG_fail
;
4493 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4494 (arg1
)->MarkerDefine(arg2
,arg3
,(wxColour
const &)*arg4
,(wxColour
const &)*arg5
);
4495 wxPyEndAllowThreads(__tstate
);
4496 if (PyErr_Occurred()) SWIG_fail
;
4498 resultobj
= SWIG_Py_Void();
4505 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4506 PyObject
*resultobj
= 0;
4507 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4509 wxColour
*arg3
= 0 ;
4515 PyObject
* obj0
= 0 ;
4516 PyObject
* obj1
= 0 ;
4517 PyObject
* obj2
= 0 ;
4518 char * kwnames
[] = {
4519 (char *) "self",(char *) "markerNumber",(char *) "fore", NULL
4522 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4523 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4524 if (!SWIG_IsOK(res1
)) {
4525 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4527 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4528 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4529 if (!SWIG_IsOK(ecode2
)) {
4530 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetForeground" "', expected argument " "2"" of type '" "int""'");
4532 arg2
= static_cast< int >(val2
);
4535 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4538 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4539 (arg1
)->MarkerSetForeground(arg2
,(wxColour
const &)*arg3
);
4540 wxPyEndAllowThreads(__tstate
);
4541 if (PyErr_Occurred()) SWIG_fail
;
4543 resultobj
= SWIG_Py_Void();
4550 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4551 PyObject
*resultobj
= 0;
4552 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4554 wxColour
*arg3
= 0 ;
4560 PyObject
* obj0
= 0 ;
4561 PyObject
* obj1
= 0 ;
4562 PyObject
* obj2
= 0 ;
4563 char * kwnames
[] = {
4564 (char *) "self",(char *) "markerNumber",(char *) "back", NULL
4567 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4568 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4569 if (!SWIG_IsOK(res1
)) {
4570 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4572 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4573 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4574 if (!SWIG_IsOK(ecode2
)) {
4575 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerSetBackground" "', expected argument " "2"" of type '" "int""'");
4577 arg2
= static_cast< int >(val2
);
4580 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
4583 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4584 (arg1
)->MarkerSetBackground(arg2
,(wxColour
const &)*arg3
);
4585 wxPyEndAllowThreads(__tstate
);
4586 if (PyErr_Occurred()) SWIG_fail
;
4588 resultobj
= SWIG_Py_Void();
4595 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAdd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4596 PyObject
*resultobj
= 0;
4597 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4607 PyObject
* obj0
= 0 ;
4608 PyObject
* obj1
= 0 ;
4609 PyObject
* obj2
= 0 ;
4610 char * kwnames
[] = {
4611 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4614 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAdd",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4615 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4616 if (!SWIG_IsOK(res1
)) {
4617 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4619 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4620 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4621 if (!SWIG_IsOK(ecode2
)) {
4622 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "2"" of type '" "int""'");
4624 arg2
= static_cast< int >(val2
);
4625 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4626 if (!SWIG_IsOK(ecode3
)) {
4627 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAdd" "', expected argument " "3"" of type '" "int""'");
4629 arg3
= static_cast< int >(val3
);
4631 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4632 result
= (int)(arg1
)->MarkerAdd(arg2
,arg3
);
4633 wxPyEndAllowThreads(__tstate
);
4634 if (PyErr_Occurred()) SWIG_fail
;
4636 resultobj
= SWIG_From_int(static_cast< int >(result
));
4643 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4644 PyObject
*resultobj
= 0;
4645 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4654 PyObject
* obj0
= 0 ;
4655 PyObject
* obj1
= 0 ;
4656 PyObject
* obj2
= 0 ;
4657 char * kwnames
[] = {
4658 (char *) "self",(char *) "line",(char *) "markerNumber", NULL
4661 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDelete",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4662 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4663 if (!SWIG_IsOK(res1
)) {
4664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4666 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4667 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4668 if (!SWIG_IsOK(ecode2
)) {
4669 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "2"" of type '" "int""'");
4671 arg2
= static_cast< int >(val2
);
4672 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4673 if (!SWIG_IsOK(ecode3
)) {
4674 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerDelete" "', expected argument " "3"" of type '" "int""'");
4676 arg3
= static_cast< int >(val3
);
4678 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4679 (arg1
)->MarkerDelete(arg2
,arg3
);
4680 wxPyEndAllowThreads(__tstate
);
4681 if (PyErr_Occurred()) SWIG_fail
;
4683 resultobj
= SWIG_Py_Void();
4690 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDeleteAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4691 PyObject
*resultobj
= 0;
4692 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4698 PyObject
* obj0
= 0 ;
4699 PyObject
* obj1
= 0 ;
4700 char * kwnames
[] = {
4701 (char *) "self",(char *) "markerNumber", NULL
4704 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerDeleteAll",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4705 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4706 if (!SWIG_IsOK(res1
)) {
4707 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4709 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4710 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4711 if (!SWIG_IsOK(ecode2
)) {
4712 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDeleteAll" "', expected argument " "2"" of type '" "int""'");
4714 arg2
= static_cast< int >(val2
);
4716 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4717 (arg1
)->MarkerDeleteAll(arg2
);
4718 wxPyEndAllowThreads(__tstate
);
4719 if (PyErr_Occurred()) SWIG_fail
;
4721 resultobj
= SWIG_Py_Void();
4728 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerGet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4729 PyObject
*resultobj
= 0;
4730 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4737 PyObject
* obj0
= 0 ;
4738 PyObject
* obj1
= 0 ;
4739 char * kwnames
[] = {
4740 (char *) "self",(char *) "line", NULL
4743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_MarkerGet",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
4744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4745 if (!SWIG_IsOK(res1
)) {
4746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4748 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4750 if (!SWIG_IsOK(ecode2
)) {
4751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerGet" "', expected argument " "2"" of type '" "int""'");
4753 arg2
= static_cast< int >(val2
);
4755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4756 result
= (int)(arg1
)->MarkerGet(arg2
);
4757 wxPyEndAllowThreads(__tstate
);
4758 if (PyErr_Occurred()) SWIG_fail
;
4760 resultobj
= SWIG_From_int(static_cast< int >(result
));
4767 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4768 PyObject
*resultobj
= 0;
4769 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4779 PyObject
* obj0
= 0 ;
4780 PyObject
* obj1
= 0 ;
4781 PyObject
* obj2
= 0 ;
4782 char * kwnames
[] = {
4783 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4786 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4787 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4788 if (!SWIG_IsOK(res1
)) {
4789 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4791 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4792 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4793 if (!SWIG_IsOK(ecode2
)) {
4794 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "2"" of type '" "int""'");
4796 arg2
= static_cast< int >(val2
);
4797 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4798 if (!SWIG_IsOK(ecode3
)) {
4799 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerNext" "', expected argument " "3"" of type '" "int""'");
4801 arg3
= static_cast< int >(val3
);
4803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4804 result
= (int)(arg1
)->MarkerNext(arg2
,arg3
);
4805 wxPyEndAllowThreads(__tstate
);
4806 if (PyErr_Occurred()) SWIG_fail
;
4808 resultobj
= SWIG_From_int(static_cast< int >(result
));
4815 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerPrevious(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4816 PyObject
*resultobj
= 0;
4817 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4827 PyObject
* obj0
= 0 ;
4828 PyObject
* obj1
= 0 ;
4829 PyObject
* obj2
= 0 ;
4830 char * kwnames
[] = {
4831 (char *) "self",(char *) "lineStart",(char *) "markerMask", NULL
4834 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerPrevious",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4835 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4836 if (!SWIG_IsOK(res1
)) {
4837 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4839 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4840 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4841 if (!SWIG_IsOK(ecode2
)) {
4842 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "2"" of type '" "int""'");
4844 arg2
= static_cast< int >(val2
);
4845 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4846 if (!SWIG_IsOK(ecode3
)) {
4847 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerPrevious" "', expected argument " "3"" of type '" "int""'");
4849 arg3
= static_cast< int >(val3
);
4851 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4852 result
= (int)(arg1
)->MarkerPrevious(arg2
,arg3
);
4853 wxPyEndAllowThreads(__tstate
);
4854 if (PyErr_Occurred()) SWIG_fail
;
4856 resultobj
= SWIG_From_int(static_cast< int >(result
));
4863 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerDefineBitmap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4864 PyObject
*resultobj
= 0;
4865 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4867 wxBitmap
*arg3
= 0 ;
4874 PyObject
* obj0
= 0 ;
4875 PyObject
* obj1
= 0 ;
4876 PyObject
* obj2
= 0 ;
4877 char * kwnames
[] = {
4878 (char *) "self",(char *) "markerNumber",(char *) "bmp", NULL
4881 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerDefineBitmap",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4882 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4883 if (!SWIG_IsOK(res1
)) {
4884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4886 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4887 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4888 if (!SWIG_IsOK(ecode2
)) {
4889 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "2"" of type '" "int""'");
4891 arg2
= static_cast< int >(val2
);
4892 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
4893 if (!SWIG_IsOK(res3
)) {
4894 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4897 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_MarkerDefineBitmap" "', expected argument " "3"" of type '" "wxBitmap const &""'");
4899 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
4901 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4902 (arg1
)->MarkerDefineBitmap(arg2
,(wxBitmap
const &)*arg3
);
4903 wxPyEndAllowThreads(__tstate
);
4904 if (PyErr_Occurred()) SWIG_fail
;
4906 resultobj
= SWIG_Py_Void();
4913 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MarkerAddSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4914 PyObject
*resultobj
= 0;
4915 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4924 PyObject
* obj0
= 0 ;
4925 PyObject
* obj1
= 0 ;
4926 PyObject
* obj2
= 0 ;
4927 char * kwnames
[] = {
4928 (char *) "self",(char *) "line",(char *) "set", NULL
4931 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_MarkerAddSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4932 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4933 if (!SWIG_IsOK(res1
)) {
4934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4936 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4937 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4938 if (!SWIG_IsOK(ecode2
)) {
4939 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "2"" of type '" "int""'");
4941 arg2
= static_cast< int >(val2
);
4942 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4943 if (!SWIG_IsOK(ecode3
)) {
4944 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_MarkerAddSet" "', expected argument " "3"" of type '" "int""'");
4946 arg3
= static_cast< int >(val3
);
4948 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4949 (arg1
)->MarkerAddSet(arg2
,arg3
);
4950 wxPyEndAllowThreads(__tstate
);
4951 if (PyErr_Occurred()) SWIG_fail
;
4953 resultobj
= SWIG_Py_Void();
4960 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
4961 PyObject
*resultobj
= 0;
4962 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
4971 PyObject
* obj0
= 0 ;
4972 PyObject
* obj1
= 0 ;
4973 PyObject
* obj2
= 0 ;
4974 char * kwnames
[] = {
4975 (char *) "self",(char *) "margin",(char *) "marginType", NULL
4978 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginType",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
4979 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
4980 if (!SWIG_IsOK(res1
)) {
4981 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
4983 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
4984 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
4985 if (!SWIG_IsOK(ecode2
)) {
4986 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "2"" of type '" "int""'");
4988 arg2
= static_cast< int >(val2
);
4989 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
4990 if (!SWIG_IsOK(ecode3
)) {
4991 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginType" "', expected argument " "3"" of type '" "int""'");
4993 arg3
= static_cast< int >(val3
);
4995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
4996 (arg1
)->SetMarginType(arg2
,arg3
);
4997 wxPyEndAllowThreads(__tstate
);
4998 if (PyErr_Occurred()) SWIG_fail
;
5000 resultobj
= SWIG_Py_Void();
5007 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5008 PyObject
*resultobj
= 0;
5009 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5016 PyObject
* obj0
= 0 ;
5017 PyObject
* obj1
= 0 ;
5018 char * kwnames
[] = {
5019 (char *) "self",(char *) "margin", NULL
5022 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5023 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5024 if (!SWIG_IsOK(res1
)) {
5025 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5027 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5028 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5029 if (!SWIG_IsOK(ecode2
)) {
5030 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginType" "', expected argument " "2"" of type '" "int""'");
5032 arg2
= static_cast< int >(val2
);
5034 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5035 result
= (int)(arg1
)->GetMarginType(arg2
);
5036 wxPyEndAllowThreads(__tstate
);
5037 if (PyErr_Occurred()) SWIG_fail
;
5039 resultobj
= SWIG_From_int(static_cast< int >(result
));
5046 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5047 PyObject
*resultobj
= 0;
5048 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5057 PyObject
* obj0
= 0 ;
5058 PyObject
* obj1
= 0 ;
5059 PyObject
* obj2
= 0 ;
5060 char * kwnames
[] = {
5061 (char *) "self",(char *) "margin",(char *) "pixelWidth", NULL
5064 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5065 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5066 if (!SWIG_IsOK(res1
)) {
5067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5069 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5070 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5071 if (!SWIG_IsOK(ecode2
)) {
5072 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5074 arg2
= static_cast< int >(val2
);
5075 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5076 if (!SWIG_IsOK(ecode3
)) {
5077 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginWidth" "', expected argument " "3"" of type '" "int""'");
5079 arg3
= static_cast< int >(val3
);
5081 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5082 (arg1
)->SetMarginWidth(arg2
,arg3
);
5083 wxPyEndAllowThreads(__tstate
);
5084 if (PyErr_Occurred()) SWIG_fail
;
5086 resultobj
= SWIG_Py_Void();
5093 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5094 PyObject
*resultobj
= 0;
5095 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5102 PyObject
* obj0
= 0 ;
5103 PyObject
* obj1
= 0 ;
5104 char * kwnames
[] = {
5105 (char *) "self",(char *) "margin", NULL
5108 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5109 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5110 if (!SWIG_IsOK(res1
)) {
5111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5113 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5114 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5115 if (!SWIG_IsOK(ecode2
)) {
5116 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginWidth" "', expected argument " "2"" of type '" "int""'");
5118 arg2
= static_cast< int >(val2
);
5120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5121 result
= (int)(arg1
)->GetMarginWidth(arg2
);
5122 wxPyEndAllowThreads(__tstate
);
5123 if (PyErr_Occurred()) SWIG_fail
;
5125 resultobj
= SWIG_From_int(static_cast< int >(result
));
5132 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5133 PyObject
*resultobj
= 0;
5134 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5143 PyObject
* obj0
= 0 ;
5144 PyObject
* obj1
= 0 ;
5145 PyObject
* obj2
= 0 ;
5146 char * kwnames
[] = {
5147 (char *) "self",(char *) "margin",(char *) "mask", NULL
5150 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginMask",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5151 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5152 if (!SWIG_IsOK(res1
)) {
5153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5155 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5156 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5157 if (!SWIG_IsOK(ecode2
)) {
5158 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "2"" of type '" "int""'");
5160 arg2
= static_cast< int >(val2
);
5161 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5162 if (!SWIG_IsOK(ecode3
)) {
5163 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginMask" "', expected argument " "3"" of type '" "int""'");
5165 arg3
= static_cast< int >(val3
);
5167 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5168 (arg1
)->SetMarginMask(arg2
,arg3
);
5169 wxPyEndAllowThreads(__tstate
);
5170 if (PyErr_Occurred()) SWIG_fail
;
5172 resultobj
= SWIG_Py_Void();
5179 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5180 PyObject
*resultobj
= 0;
5181 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5188 PyObject
* obj0
= 0 ;
5189 PyObject
* obj1
= 0 ;
5190 char * kwnames
[] = {
5191 (char *) "self",(char *) "margin", NULL
5194 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5195 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5196 if (!SWIG_IsOK(res1
)) {
5197 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5199 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5200 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5201 if (!SWIG_IsOK(ecode2
)) {
5202 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginMask" "', expected argument " "2"" of type '" "int""'");
5204 arg2
= static_cast< int >(val2
);
5206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5207 result
= (int)(arg1
)->GetMarginMask(arg2
);
5208 wxPyEndAllowThreads(__tstate
);
5209 if (PyErr_Occurred()) SWIG_fail
;
5211 resultobj
= SWIG_From_int(static_cast< int >(result
));
5218 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5219 PyObject
*resultobj
= 0;
5220 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5229 PyObject
* obj0
= 0 ;
5230 PyObject
* obj1
= 0 ;
5231 PyObject
* obj2
= 0 ;
5232 char * kwnames
[] = {
5233 (char *) "self",(char *) "margin",(char *) "sensitive", NULL
5236 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMarginSensitive",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5237 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5238 if (!SWIG_IsOK(res1
)) {
5239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5241 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5242 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5243 if (!SWIG_IsOK(ecode2
)) {
5244 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5246 arg2
= static_cast< int >(val2
);
5247 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5248 if (!SWIG_IsOK(ecode3
)) {
5249 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMarginSensitive" "', expected argument " "3"" of type '" "bool""'");
5251 arg3
= static_cast< bool >(val3
);
5253 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5254 (arg1
)->SetMarginSensitive(arg2
,arg3
);
5255 wxPyEndAllowThreads(__tstate
);
5256 if (PyErr_Occurred()) SWIG_fail
;
5258 resultobj
= SWIG_Py_Void();
5265 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginSensitive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5266 PyObject
*resultobj
= 0;
5267 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5274 PyObject
* obj0
= 0 ;
5275 PyObject
* obj1
= 0 ;
5276 char * kwnames
[] = {
5277 (char *) "self",(char *) "margin", NULL
5280 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetMarginSensitive",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5281 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5282 if (!SWIG_IsOK(res1
)) {
5283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5285 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5286 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5287 if (!SWIG_IsOK(ecode2
)) {
5288 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetMarginSensitive" "', expected argument " "2"" of type '" "int""'");
5290 arg2
= static_cast< int >(val2
);
5292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5293 result
= (bool)(arg1
)->GetMarginSensitive(arg2
);
5294 wxPyEndAllowThreads(__tstate
);
5295 if (PyErr_Occurred()) SWIG_fail
;
5298 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
5306 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5307 PyObject
*resultobj
= 0;
5308 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5311 PyObject
*swig_obj
[1] ;
5313 if (!args
) SWIG_fail
;
5315 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5316 if (!SWIG_IsOK(res1
)) {
5317 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5319 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5322 (arg1
)->StyleClearAll();
5323 wxPyEndAllowThreads(__tstate
);
5324 if (PyErr_Occurred()) SWIG_fail
;
5326 resultobj
= SWIG_Py_Void();
5333 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5334 PyObject
*resultobj
= 0;
5335 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5337 wxColour
*arg3
= 0 ;
5343 PyObject
* obj0
= 0 ;
5344 PyObject
* obj1
= 0 ;
5345 PyObject
* obj2
= 0 ;
5346 char * kwnames
[] = {
5347 (char *) "self",(char *) "style",(char *) "fore", NULL
5350 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5351 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5352 if (!SWIG_IsOK(res1
)) {
5353 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5355 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5356 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5357 if (!SWIG_IsOK(ecode2
)) {
5358 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetForeground" "', expected argument " "2"" of type '" "int""'");
5360 arg2
= static_cast< int >(val2
);
5363 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5367 (arg1
)->StyleSetForeground(arg2
,(wxColour
const &)*arg3
);
5368 wxPyEndAllowThreads(__tstate
);
5369 if (PyErr_Occurred()) SWIG_fail
;
5371 resultobj
= SWIG_Py_Void();
5378 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5379 PyObject
*resultobj
= 0;
5380 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5382 wxColour
*arg3
= 0 ;
5388 PyObject
* obj0
= 0 ;
5389 PyObject
* obj1
= 0 ;
5390 PyObject
* obj2
= 0 ;
5391 char * kwnames
[] = {
5392 (char *) "self",(char *) "style",(char *) "back", NULL
5395 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5396 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5397 if (!SWIG_IsOK(res1
)) {
5398 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5400 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5401 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5402 if (!SWIG_IsOK(ecode2
)) {
5403 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBackground" "', expected argument " "2"" of type '" "int""'");
5405 arg2
= static_cast< int >(val2
);
5408 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5411 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5412 (arg1
)->StyleSetBackground(arg2
,(wxColour
const &)*arg3
);
5413 wxPyEndAllowThreads(__tstate
);
5414 if (PyErr_Occurred()) SWIG_fail
;
5416 resultobj
= SWIG_Py_Void();
5423 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetBold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5424 PyObject
*resultobj
= 0;
5425 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5434 PyObject
* obj0
= 0 ;
5435 PyObject
* obj1
= 0 ;
5436 PyObject
* obj2
= 0 ;
5437 char * kwnames
[] = {
5438 (char *) "self",(char *) "style",(char *) "bold", NULL
5441 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetBold",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5442 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5443 if (!SWIG_IsOK(res1
)) {
5444 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5446 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5447 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5448 if (!SWIG_IsOK(ecode2
)) {
5449 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "2"" of type '" "int""'");
5451 arg2
= static_cast< int >(val2
);
5452 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5453 if (!SWIG_IsOK(ecode3
)) {
5454 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetBold" "', expected argument " "3"" of type '" "bool""'");
5456 arg3
= static_cast< bool >(val3
);
5458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5459 (arg1
)->StyleSetBold(arg2
,arg3
);
5460 wxPyEndAllowThreads(__tstate
);
5461 if (PyErr_Occurred()) SWIG_fail
;
5463 resultobj
= SWIG_Py_Void();
5470 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetItalic(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5471 PyObject
*resultobj
= 0;
5472 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5481 PyObject
* obj0
= 0 ;
5482 PyObject
* obj1
= 0 ;
5483 PyObject
* obj2
= 0 ;
5484 char * kwnames
[] = {
5485 (char *) "self",(char *) "style",(char *) "italic", NULL
5488 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetItalic",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5489 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5490 if (!SWIG_IsOK(res1
)) {
5491 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5493 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5494 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5495 if (!SWIG_IsOK(ecode2
)) {
5496 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "2"" of type '" "int""'");
5498 arg2
= static_cast< int >(val2
);
5499 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5500 if (!SWIG_IsOK(ecode3
)) {
5501 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetItalic" "', expected argument " "3"" of type '" "bool""'");
5503 arg3
= static_cast< bool >(val3
);
5505 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5506 (arg1
)->StyleSetItalic(arg2
,arg3
);
5507 wxPyEndAllowThreads(__tstate
);
5508 if (PyErr_Occurred()) SWIG_fail
;
5510 resultobj
= SWIG_Py_Void();
5517 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSize(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5518 PyObject
*resultobj
= 0;
5519 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5528 PyObject
* obj0
= 0 ;
5529 PyObject
* obj1
= 0 ;
5530 PyObject
* obj2
= 0 ;
5531 char * kwnames
[] = {
5532 (char *) "self",(char *) "style",(char *) "sizePoints", NULL
5535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSize",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5536 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5537 if (!SWIG_IsOK(res1
)) {
5538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5540 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5541 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5542 if (!SWIG_IsOK(ecode2
)) {
5543 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "2"" of type '" "int""'");
5545 arg2
= static_cast< int >(val2
);
5546 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5547 if (!SWIG_IsOK(ecode3
)) {
5548 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetSize" "', expected argument " "3"" of type '" "int""'");
5550 arg3
= static_cast< int >(val3
);
5552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5553 (arg1
)->StyleSetSize(arg2
,arg3
);
5554 wxPyEndAllowThreads(__tstate
);
5555 if (PyErr_Occurred()) SWIG_fail
;
5557 resultobj
= SWIG_Py_Void();
5564 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFaceName(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5565 PyObject
*resultobj
= 0;
5566 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5568 wxString
*arg3
= 0 ;
5573 bool temp3
= false ;
5574 PyObject
* obj0
= 0 ;
5575 PyObject
* obj1
= 0 ;
5576 PyObject
* obj2
= 0 ;
5577 char * kwnames
[] = {
5578 (char *) "self",(char *) "style",(char *) "fontName", NULL
5581 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFaceName",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5582 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5583 if (!SWIG_IsOK(res1
)) {
5584 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5586 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5587 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5588 if (!SWIG_IsOK(ecode2
)) {
5589 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFaceName" "', expected argument " "2"" of type '" "int""'");
5591 arg2
= static_cast< int >(val2
);
5593 arg3
= wxString_in_helper(obj2
);
5594 if (arg3
== NULL
) SWIG_fail
;
5598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5599 (arg1
)->StyleSetFaceName(arg2
,(wxString
const &)*arg3
);
5600 wxPyEndAllowThreads(__tstate
);
5601 if (PyErr_Occurred()) SWIG_fail
;
5603 resultobj
= SWIG_Py_Void();
5618 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetEOLFilled(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5619 PyObject
*resultobj
= 0;
5620 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5629 PyObject
* obj0
= 0 ;
5630 PyObject
* obj1
= 0 ;
5631 PyObject
* obj2
= 0 ;
5632 char * kwnames
[] = {
5633 (char *) "self",(char *) "style",(char *) "filled", NULL
5636 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetEOLFilled",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5637 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5638 if (!SWIG_IsOK(res1
)) {
5639 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5641 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5642 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5643 if (!SWIG_IsOK(ecode2
)) {
5644 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "2"" of type '" "int""'");
5646 arg2
= static_cast< int >(val2
);
5647 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5648 if (!SWIG_IsOK(ecode3
)) {
5649 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetEOLFilled" "', expected argument " "3"" of type '" "bool""'");
5651 arg3
= static_cast< bool >(val3
);
5653 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5654 (arg1
)->StyleSetEOLFilled(arg2
,arg3
);
5655 wxPyEndAllowThreads(__tstate
);
5656 if (PyErr_Occurred()) SWIG_fail
;
5658 resultobj
= SWIG_Py_Void();
5665 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleResetDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
5666 PyObject
*resultobj
= 0;
5667 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5670 PyObject
*swig_obj
[1] ;
5672 if (!args
) SWIG_fail
;
5674 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5675 if (!SWIG_IsOK(res1
)) {
5676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleResetDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5678 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5681 (arg1
)->StyleResetDefault();
5682 wxPyEndAllowThreads(__tstate
);
5683 if (PyErr_Occurred()) SWIG_fail
;
5685 resultobj
= SWIG_Py_Void();
5692 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5693 PyObject
*resultobj
= 0;
5694 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5703 PyObject
* obj0
= 0 ;
5704 PyObject
* obj1
= 0 ;
5705 PyObject
* obj2
= 0 ;
5706 char * kwnames
[] = {
5707 (char *) "self",(char *) "style",(char *) "underline", NULL
5710 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetUnderline",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5711 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5712 if (!SWIG_IsOK(res1
)) {
5713 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5715 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5716 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5717 if (!SWIG_IsOK(ecode2
)) {
5718 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "2"" of type '" "int""'");
5720 arg2
= static_cast< int >(val2
);
5721 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5722 if (!SWIG_IsOK(ecode3
)) {
5723 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetUnderline" "', expected argument " "3"" of type '" "bool""'");
5725 arg3
= static_cast< bool >(val3
);
5727 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5728 (arg1
)->StyleSetUnderline(arg2
,arg3
);
5729 wxPyEndAllowThreads(__tstate
);
5730 if (PyErr_Occurred()) SWIG_fail
;
5732 resultobj
= SWIG_Py_Void();
5739 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5740 PyObject
*resultobj
= 0;
5741 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5750 PyObject
* obj0
= 0 ;
5751 PyObject
* obj1
= 0 ;
5752 PyObject
* obj2
= 0 ;
5753 char * kwnames
[] = {
5754 (char *) "self",(char *) "style",(char *) "caseForce", NULL
5757 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCase",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5758 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5759 if (!SWIG_IsOK(res1
)) {
5760 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5762 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5763 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5764 if (!SWIG_IsOK(ecode2
)) {
5765 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "2"" of type '" "int""'");
5767 arg2
= static_cast< int >(val2
);
5768 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5769 if (!SWIG_IsOK(ecode3
)) {
5770 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCase" "', expected argument " "3"" of type '" "int""'");
5772 arg3
= static_cast< int >(val3
);
5774 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5775 (arg1
)->StyleSetCase(arg2
,arg3
);
5776 wxPyEndAllowThreads(__tstate
);
5777 if (PyErr_Occurred()) SWIG_fail
;
5779 resultobj
= SWIG_Py_Void();
5786 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetHotSpot(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5787 PyObject
*resultobj
= 0;
5788 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5797 PyObject
* obj0
= 0 ;
5798 PyObject
* obj1
= 0 ;
5799 PyObject
* obj2
= 0 ;
5800 char * kwnames
[] = {
5801 (char *) "self",(char *) "style",(char *) "hotspot", NULL
5804 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetHotSpot",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5805 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5806 if (!SWIG_IsOK(res1
)) {
5807 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5809 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5810 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5811 if (!SWIG_IsOK(ecode2
)) {
5812 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "2"" of type '" "int""'");
5814 arg2
= static_cast< int >(val2
);
5815 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
5816 if (!SWIG_IsOK(ecode3
)) {
5817 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetHotSpot" "', expected argument " "3"" of type '" "bool""'");
5819 arg3
= static_cast< bool >(val3
);
5821 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5822 (arg1
)->StyleSetHotSpot(arg2
,arg3
);
5823 wxPyEndAllowThreads(__tstate
);
5824 if (PyErr_Occurred()) SWIG_fail
;
5826 resultobj
= SWIG_Py_Void();
5833 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5834 PyObject
*resultobj
= 0;
5835 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5837 wxColour
*arg3
= 0 ;
5843 PyObject
* obj0
= 0 ;
5844 PyObject
* obj1
= 0 ;
5845 PyObject
* obj2
= 0 ;
5846 char * kwnames
[] = {
5847 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
5850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5852 if (!SWIG_IsOK(res1
)) {
5853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5856 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5857 if (!SWIG_IsOK(ecode2
)) {
5858 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelForeground" "', expected argument " "2"" of type '" "bool""'");
5860 arg2
= static_cast< bool >(val2
);
5863 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5866 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5867 (arg1
)->SetSelForeground(arg2
,(wxColour
const &)*arg3
);
5868 wxPyEndAllowThreads(__tstate
);
5869 if (PyErr_Occurred()) SWIG_fail
;
5871 resultobj
= SWIG_Py_Void();
5878 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5879 PyObject
*resultobj
= 0;
5880 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5882 wxColour
*arg3
= 0 ;
5888 PyObject
* obj0
= 0 ;
5889 PyObject
* obj1
= 0 ;
5890 PyObject
* obj2
= 0 ;
5891 char * kwnames
[] = {
5892 (char *) "self",(char *) "useSetting",(char *) "back", NULL
5895 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
5896 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5897 if (!SWIG_IsOK(res1
)) {
5898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5900 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5901 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
5902 if (!SWIG_IsOK(ecode2
)) {
5903 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelBackground" "', expected argument " "2"" of type '" "bool""'");
5905 arg2
= static_cast< bool >(val2
);
5908 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
5911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5912 (arg1
)->SetSelBackground(arg2
,(wxColour
const &)*arg3
);
5913 wxPyEndAllowThreads(__tstate
);
5914 if (PyErr_Occurred()) SWIG_fail
;
5916 resultobj
= SWIG_Py_Void();
5923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5924 PyObject
*resultobj
= 0;
5925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5926 wxColour
*arg2
= 0 ;
5930 PyObject
* obj0
= 0 ;
5931 PyObject
* obj1
= 0 ;
5932 char * kwnames
[] = {
5933 (char *) "self",(char *) "fore", NULL
5936 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
5937 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5938 if (!SWIG_IsOK(res1
)) {
5939 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5941 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5944 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
5947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
5948 (arg1
)->SetCaretForeground((wxColour
const &)*arg2
);
5949 wxPyEndAllowThreads(__tstate
);
5950 if (PyErr_Occurred()) SWIG_fail
;
5952 resultobj
= SWIG_Py_Void();
5959 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyAssign(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
5960 PyObject
*resultobj
= 0;
5961 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
5973 PyObject
* obj0
= 0 ;
5974 PyObject
* obj1
= 0 ;
5975 PyObject
* obj2
= 0 ;
5976 PyObject
* obj3
= 0 ;
5977 char * kwnames
[] = {
5978 (char *) "self",(char *) "key",(char *) "modifiers",(char *) "cmd", NULL
5981 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_CmdKeyAssign",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
5982 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
5983 if (!SWIG_IsOK(res1
)) {
5984 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
5986 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
5987 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
5988 if (!SWIG_IsOK(ecode2
)) {
5989 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "2"" of type '" "int""'");
5991 arg2
= static_cast< int >(val2
);
5992 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
5993 if (!SWIG_IsOK(ecode3
)) {
5994 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "3"" of type '" "int""'");
5996 arg3
= static_cast< int >(val3
);
5997 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
5998 if (!SWIG_IsOK(ecode4
)) {
5999 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_CmdKeyAssign" "', expected argument " "4"" of type '" "int""'");
6001 arg4
= static_cast< int >(val4
);
6003 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6004 (arg1
)->CmdKeyAssign(arg2
,arg3
,arg4
);
6005 wxPyEndAllowThreads(__tstate
);
6006 if (PyErr_Occurred()) SWIG_fail
;
6008 resultobj
= SWIG_Py_Void();
6015 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6016 PyObject
*resultobj
= 0;
6017 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6026 PyObject
* obj0
= 0 ;
6027 PyObject
* obj1
= 0 ;
6028 PyObject
* obj2
= 0 ;
6029 char * kwnames
[] = {
6030 (char *) "self",(char *) "key",(char *) "modifiers", NULL
6033 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CmdKeyClear",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6034 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6035 if (!SWIG_IsOK(res1
)) {
6036 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6038 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6039 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6040 if (!SWIG_IsOK(ecode2
)) {
6041 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "2"" of type '" "int""'");
6043 arg2
= static_cast< int >(val2
);
6044 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6045 if (!SWIG_IsOK(ecode3
)) {
6046 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CmdKeyClear" "', expected argument " "3"" of type '" "int""'");
6048 arg3
= static_cast< int >(val3
);
6050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6051 (arg1
)->CmdKeyClear(arg2
,arg3
);
6052 wxPyEndAllowThreads(__tstate
);
6053 if (PyErr_Occurred()) SWIG_fail
;
6055 resultobj
= SWIG_Py_Void();
6062 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyClearAll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6063 PyObject
*resultobj
= 0;
6064 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6067 PyObject
*swig_obj
[1] ;
6069 if (!args
) SWIG_fail
;
6071 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6072 if (!SWIG_IsOK(res1
)) {
6073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyClearAll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6075 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6078 (arg1
)->CmdKeyClearAll();
6079 wxPyEndAllowThreads(__tstate
);
6080 if (PyErr_Occurred()) SWIG_fail
;
6082 resultobj
= SWIG_Py_Void();
6089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBytes(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6090 PyObject
*resultobj
= 0;
6091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6093 char *arg3
= (char *) 0 ;
6101 PyObject
* obj0
= 0 ;
6102 PyObject
* obj1
= 0 ;
6103 PyObject
* obj2
= 0 ;
6104 char * kwnames
[] = {
6105 (char *) "self",(char *) "length",(char *) "styleBytes", NULL
6108 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetStyleBytes",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6109 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6110 if (!SWIG_IsOK(res1
)) {
6111 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6113 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6114 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6115 if (!SWIG_IsOK(ecode2
)) {
6116 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "2"" of type '" "int""'");
6118 arg2
= static_cast< int >(val2
);
6119 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
6120 if (!SWIG_IsOK(res3
)) {
6121 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_SetStyleBytes" "', expected argument " "3"" of type '" "char *""'");
6125 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6126 (arg1
)->SetStyleBytes(arg2
,arg3
);
6127 wxPyEndAllowThreads(__tstate
);
6128 if (PyErr_Occurred()) SWIG_fail
;
6130 resultobj
= SWIG_Py_Void();
6131 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6134 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
6139 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6140 PyObject
*resultobj
= 0;
6141 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6150 PyObject
* obj0
= 0 ;
6151 PyObject
* obj1
= 0 ;
6152 PyObject
* obj2
= 0 ;
6153 char * kwnames
[] = {
6154 (char *) "self",(char *) "style",(char *) "visible", NULL
6157 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetVisible",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6158 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6159 if (!SWIG_IsOK(res1
)) {
6160 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6162 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6163 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6164 if (!SWIG_IsOK(ecode2
)) {
6165 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "2"" of type '" "int""'");
6167 arg2
= static_cast< int >(val2
);
6168 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6169 if (!SWIG_IsOK(ecode3
)) {
6170 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetVisible" "', expected argument " "3"" of type '" "bool""'");
6172 arg3
= static_cast< bool >(val3
);
6174 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6175 (arg1
)->StyleSetVisible(arg2
,arg3
);
6176 wxPyEndAllowThreads(__tstate
);
6177 if (PyErr_Occurred()) SWIG_fail
;
6179 resultobj
= SWIG_Py_Void();
6186 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6187 PyObject
*resultobj
= 0;
6188 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6192 PyObject
*swig_obj
[1] ;
6194 if (!args
) SWIG_fail
;
6196 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6197 if (!SWIG_IsOK(res1
)) {
6198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6200 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6202 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6203 result
= (int)(arg1
)->GetCaretPeriod();
6204 wxPyEndAllowThreads(__tstate
);
6205 if (PyErr_Occurred()) SWIG_fail
;
6207 resultobj
= SWIG_From_int(static_cast< int >(result
));
6214 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretPeriod(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6215 PyObject
*resultobj
= 0;
6216 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6222 PyObject
* obj0
= 0 ;
6223 PyObject
* obj1
= 0 ;
6224 char * kwnames
[] = {
6225 (char *) "self",(char *) "periodMilliseconds", NULL
6228 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretPeriod",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6229 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6230 if (!SWIG_IsOK(res1
)) {
6231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6234 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6235 if (!SWIG_IsOK(ecode2
)) {
6236 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretPeriod" "', expected argument " "2"" of type '" "int""'");
6238 arg2
= static_cast< int >(val2
);
6240 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6241 (arg1
)->SetCaretPeriod(arg2
);
6242 wxPyEndAllowThreads(__tstate
);
6243 if (PyErr_Occurred()) SWIG_fail
;
6245 resultobj
= SWIG_Py_Void();
6252 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWordChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6253 PyObject
*resultobj
= 0;
6254 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6255 wxString
*arg2
= 0 ;
6258 bool temp2
= false ;
6259 PyObject
* obj0
= 0 ;
6260 PyObject
* obj1
= 0 ;
6261 char * kwnames
[] = {
6262 (char *) "self",(char *) "characters", NULL
6265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWordChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6267 if (!SWIG_IsOK(res1
)) {
6268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWordChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6270 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6272 arg2
= wxString_in_helper(obj1
);
6273 if (arg2
== NULL
) SWIG_fail
;
6277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6278 (arg1
)->SetWordChars((wxString
const &)*arg2
);
6279 wxPyEndAllowThreads(__tstate
);
6280 if (PyErr_Occurred()) SWIG_fail
;
6282 resultobj
= SWIG_Py_Void();
6297 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BeginUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6298 PyObject
*resultobj
= 0;
6299 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6302 PyObject
*swig_obj
[1] ;
6304 if (!args
) SWIG_fail
;
6306 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6307 if (!SWIG_IsOK(res1
)) {
6308 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BeginUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6310 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6312 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6313 (arg1
)->BeginUndoAction();
6314 wxPyEndAllowThreads(__tstate
);
6315 if (PyErr_Occurred()) SWIG_fail
;
6317 resultobj
= SWIG_Py_Void();
6324 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EndUndoAction(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6325 PyObject
*resultobj
= 0;
6326 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6329 PyObject
*swig_obj
[1] ;
6331 if (!args
) SWIG_fail
;
6333 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6334 if (!SWIG_IsOK(res1
)) {
6335 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EndUndoAction" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6337 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6339 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6340 (arg1
)->EndUndoAction();
6341 wxPyEndAllowThreads(__tstate
);
6342 if (PyErr_Occurred()) SWIG_fail
;
6344 resultobj
= SWIG_Py_Void();
6351 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6352 PyObject
*resultobj
= 0;
6353 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6362 PyObject
* obj0
= 0 ;
6363 PyObject
* obj1
= 0 ;
6364 PyObject
* obj2
= 0 ;
6365 char * kwnames
[] = {
6366 (char *) "self",(char *) "indic",(char *) "style", NULL
6369 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetStyle",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6370 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6371 if (!SWIG_IsOK(res1
)) {
6372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6374 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6375 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6376 if (!SWIG_IsOK(ecode2
)) {
6377 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "2"" of type '" "int""'");
6379 arg2
= static_cast< int >(val2
);
6380 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6381 if (!SWIG_IsOK(ecode3
)) {
6382 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_IndicatorSetStyle" "', expected argument " "3"" of type '" "int""'");
6384 arg3
= static_cast< int >(val3
);
6386 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6387 (arg1
)->IndicatorSetStyle(arg2
,arg3
);
6388 wxPyEndAllowThreads(__tstate
);
6389 if (PyErr_Occurred()) SWIG_fail
;
6391 resultobj
= SWIG_Py_Void();
6398 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetStyle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6399 PyObject
*resultobj
= 0;
6400 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6407 PyObject
* obj0
= 0 ;
6408 PyObject
* obj1
= 0 ;
6409 char * kwnames
[] = {
6410 (char *) "self",(char *) "indic", NULL
6413 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetStyle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6414 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6415 if (!SWIG_IsOK(res1
)) {
6416 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6418 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6419 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6420 if (!SWIG_IsOK(ecode2
)) {
6421 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetStyle" "', expected argument " "2"" of type '" "int""'");
6423 arg2
= static_cast< int >(val2
);
6425 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6426 result
= (int)(arg1
)->IndicatorGetStyle(arg2
);
6427 wxPyEndAllowThreads(__tstate
);
6428 if (PyErr_Occurred()) SWIG_fail
;
6430 resultobj
= SWIG_From_int(static_cast< int >(result
));
6437 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6438 PyObject
*resultobj
= 0;
6439 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6441 wxColour
*arg3
= 0 ;
6447 PyObject
* obj0
= 0 ;
6448 PyObject
* obj1
= 0 ;
6449 PyObject
* obj2
= 0 ;
6450 char * kwnames
[] = {
6451 (char *) "self",(char *) "indic",(char *) "fore", NULL
6454 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_IndicatorSetForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6455 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6456 if (!SWIG_IsOK(res1
)) {
6457 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6459 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6460 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6461 if (!SWIG_IsOK(ecode2
)) {
6462 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorSetForeground" "', expected argument " "2"" of type '" "int""'");
6464 arg2
= static_cast< int >(val2
);
6467 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6471 (arg1
)->IndicatorSetForeground(arg2
,(wxColour
const &)*arg3
);
6472 wxPyEndAllowThreads(__tstate
);
6473 if (PyErr_Occurred()) SWIG_fail
;
6475 resultobj
= SWIG_Py_Void();
6482 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_IndicatorGetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6483 PyObject
*resultobj
= 0;
6484 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6491 PyObject
* obj0
= 0 ;
6492 PyObject
* obj1
= 0 ;
6493 char * kwnames
[] = {
6494 (char *) "self",(char *) "indic", NULL
6497 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_IndicatorGetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6498 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6499 if (!SWIG_IsOK(res1
)) {
6500 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6502 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6503 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6504 if (!SWIG_IsOK(ecode2
)) {
6505 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_IndicatorGetForeground" "', expected argument " "2"" of type '" "int""'");
6507 arg2
= static_cast< int >(val2
);
6509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6510 result
= (arg1
)->IndicatorGetForeground(arg2
);
6511 wxPyEndAllowThreads(__tstate
);
6512 if (PyErr_Occurred()) SWIG_fail
;
6514 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6521 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6522 PyObject
*resultobj
= 0;
6523 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6525 wxColour
*arg3
= 0 ;
6531 PyObject
* obj0
= 0 ;
6532 PyObject
* obj1
= 0 ;
6533 PyObject
* obj2
= 0 ;
6534 char * kwnames
[] = {
6535 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
6538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6540 if (!SWIG_IsOK(res1
)) {
6541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6543 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6544 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6545 if (!SWIG_IsOK(ecode2
)) {
6546 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceForeground" "', expected argument " "2"" of type '" "bool""'");
6548 arg2
= static_cast< bool >(val2
);
6551 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6554 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6555 (arg1
)->SetWhitespaceForeground(arg2
,(wxColour
const &)*arg3
);
6556 wxPyEndAllowThreads(__tstate
);
6557 if (PyErr_Occurred()) SWIG_fail
;
6559 resultobj
= SWIG_Py_Void();
6566 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6567 PyObject
*resultobj
= 0;
6568 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6570 wxColour
*arg3
= 0 ;
6576 PyObject
* obj0
= 0 ;
6577 PyObject
* obj1
= 0 ;
6578 PyObject
* obj2
= 0 ;
6579 char * kwnames
[] = {
6580 (char *) "self",(char *) "useSetting",(char *) "back", NULL
6583 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetWhitespaceBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6584 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6585 if (!SWIG_IsOK(res1
)) {
6586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6588 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6589 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6590 if (!SWIG_IsOK(ecode2
)) {
6591 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWhitespaceBackground" "', expected argument " "2"" of type '" "bool""'");
6593 arg2
= static_cast< bool >(val2
);
6596 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
6599 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6600 (arg1
)->SetWhitespaceBackground(arg2
,(wxColour
const &)*arg3
);
6601 wxPyEndAllowThreads(__tstate
);
6602 if (PyErr_Occurred()) SWIG_fail
;
6604 resultobj
= SWIG_Py_Void();
6611 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6612 PyObject
*resultobj
= 0;
6613 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6619 PyObject
* obj0
= 0 ;
6620 PyObject
* obj1
= 0 ;
6621 char * kwnames
[] = {
6622 (char *) "self",(char *) "bits", NULL
6625 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStyleBits",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6626 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6627 if (!SWIG_IsOK(res1
)) {
6628 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6630 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6631 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6632 if (!SWIG_IsOK(ecode2
)) {
6633 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStyleBits" "', expected argument " "2"" of type '" "int""'");
6635 arg2
= static_cast< int >(val2
);
6637 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6638 (arg1
)->SetStyleBits(arg2
);
6639 wxPyEndAllowThreads(__tstate
);
6640 if (PyErr_Occurred()) SWIG_fail
;
6642 resultobj
= SWIG_Py_Void();
6649 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBits(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6650 PyObject
*resultobj
= 0;
6651 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6655 PyObject
*swig_obj
[1] ;
6657 if (!args
) SWIG_fail
;
6659 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6660 if (!SWIG_IsOK(res1
)) {
6661 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBits" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6663 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6665 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6666 result
= (int)(arg1
)->GetStyleBits();
6667 wxPyEndAllowThreads(__tstate
);
6668 if (PyErr_Occurred()) SWIG_fail
;
6670 resultobj
= SWIG_From_int(static_cast< int >(result
));
6677 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6678 PyObject
*resultobj
= 0;
6679 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6688 PyObject
* obj0
= 0 ;
6689 PyObject
* obj1
= 0 ;
6690 PyObject
* obj2
= 0 ;
6691 char * kwnames
[] = {
6692 (char *) "self",(char *) "line",(char *) "state", NULL
6695 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineState",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6696 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6697 if (!SWIG_IsOK(res1
)) {
6698 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6700 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6701 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6702 if (!SWIG_IsOK(ecode2
)) {
6703 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "2"" of type '" "int""'");
6705 arg2
= static_cast< int >(val2
);
6706 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
6707 if (!SWIG_IsOK(ecode3
)) {
6708 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineState" "', expected argument " "3"" of type '" "int""'");
6710 arg3
= static_cast< int >(val3
);
6712 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6713 (arg1
)->SetLineState(arg2
,arg3
);
6714 wxPyEndAllowThreads(__tstate
);
6715 if (PyErr_Occurred()) SWIG_fail
;
6717 resultobj
= SWIG_Py_Void();
6724 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6725 PyObject
*resultobj
= 0;
6726 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6733 PyObject
* obj0
= 0 ;
6734 PyObject
* obj1
= 0 ;
6735 char * kwnames
[] = {
6736 (char *) "self",(char *) "line", NULL
6739 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineState",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6740 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6741 if (!SWIG_IsOK(res1
)) {
6742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6744 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6745 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6746 if (!SWIG_IsOK(ecode2
)) {
6747 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineState" "', expected argument " "2"" of type '" "int""'");
6749 arg2
= static_cast< int >(val2
);
6751 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6752 result
= (int)(arg1
)->GetLineState(arg2
);
6753 wxPyEndAllowThreads(__tstate
);
6754 if (PyErr_Occurred()) SWIG_fail
;
6756 resultobj
= SWIG_From_int(static_cast< int >(result
));
6763 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMaxLineState(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6764 PyObject
*resultobj
= 0;
6765 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6769 PyObject
*swig_obj
[1] ;
6771 if (!args
) SWIG_fail
;
6773 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6774 if (!SWIG_IsOK(res1
)) {
6775 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMaxLineState" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6777 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6780 result
= (int)(arg1
)->GetMaxLineState();
6781 wxPyEndAllowThreads(__tstate
);
6782 if (PyErr_Occurred()) SWIG_fail
;
6784 resultobj
= SWIG_From_int(static_cast< int >(result
));
6791 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6792 PyObject
*resultobj
= 0;
6793 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6797 PyObject
*swig_obj
[1] ;
6799 if (!args
) SWIG_fail
;
6801 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6802 if (!SWIG_IsOK(res1
)) {
6803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6805 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6808 result
= (bool)(arg1
)->GetCaretLineVisible();
6809 wxPyEndAllowThreads(__tstate
);
6810 if (PyErr_Occurred()) SWIG_fail
;
6813 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
6821 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6822 PyObject
*resultobj
= 0;
6823 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6829 PyObject
* obj0
= 0 ;
6830 PyObject
* obj1
= 0 ;
6831 char * kwnames
[] = {
6832 (char *) "self",(char *) "show", NULL
6835 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6836 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6837 if (!SWIG_IsOK(res1
)) {
6838 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6840 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6841 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
6842 if (!SWIG_IsOK(ecode2
)) {
6843 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretLineVisible" "', expected argument " "2"" of type '" "bool""'");
6845 arg2
= static_cast< bool >(val2
);
6847 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6848 (arg1
)->SetCaretLineVisible(arg2
);
6849 wxPyEndAllowThreads(__tstate
);
6850 if (PyErr_Occurred()) SWIG_fail
;
6852 resultobj
= SWIG_Py_Void();
6859 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
6860 PyObject
*resultobj
= 0;
6861 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6865 PyObject
*swig_obj
[1] ;
6867 if (!args
) SWIG_fail
;
6869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6870 if (!SWIG_IsOK(res1
)) {
6871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6873 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6876 result
= (arg1
)->GetCaretLineBack();
6877 wxPyEndAllowThreads(__tstate
);
6878 if (PyErr_Occurred()) SWIG_fail
;
6880 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
6887 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretLineBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6888 PyObject
*resultobj
= 0;
6889 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6890 wxColour
*arg2
= 0 ;
6894 PyObject
* obj0
= 0 ;
6895 PyObject
* obj1
= 0 ;
6896 char * kwnames
[] = {
6897 (char *) "self",(char *) "back", NULL
6900 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretLineBack",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
6901 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6902 if (!SWIG_IsOK(res1
)) {
6903 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretLineBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6905 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6908 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
6911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6912 (arg1
)->SetCaretLineBack((wxColour
const &)*arg2
);
6913 wxPyEndAllowThreads(__tstate
);
6914 if (PyErr_Occurred()) SWIG_fail
;
6916 resultobj
= SWIG_Py_Void();
6923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetChangeable(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6924 PyObject
*resultobj
= 0;
6925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6934 PyObject
* obj0
= 0 ;
6935 PyObject
* obj1
= 0 ;
6936 PyObject
* obj2
= 0 ;
6937 char * kwnames
[] = {
6938 (char *) "self",(char *) "style",(char *) "changeable", NULL
6941 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetChangeable",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6942 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6943 if (!SWIG_IsOK(res1
)) {
6944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6946 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6947 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6948 if (!SWIG_IsOK(ecode2
)) {
6949 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "2"" of type '" "int""'");
6951 arg2
= static_cast< int >(val2
);
6952 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
6953 if (!SWIG_IsOK(ecode3
)) {
6954 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetChangeable" "', expected argument " "3"" of type '" "bool""'");
6956 arg3
= static_cast< bool >(val3
);
6958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
6959 (arg1
)->StyleSetChangeable(arg2
,arg3
);
6960 wxPyEndAllowThreads(__tstate
);
6961 if (PyErr_Occurred()) SWIG_fail
;
6963 resultobj
= SWIG_Py_Void();
6970 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
6971 PyObject
*resultobj
= 0;
6972 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
6974 wxString
*arg3
= 0 ;
6979 bool temp3
= false ;
6980 PyObject
* obj0
= 0 ;
6981 PyObject
* obj1
= 0 ;
6982 PyObject
* obj2
= 0 ;
6983 char * kwnames
[] = {
6984 (char *) "self",(char *) "lenEntered",(char *) "itemList", NULL
6987 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_AutoCompShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
6988 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
6989 if (!SWIG_IsOK(res1
)) {
6990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
6992 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
6993 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
6994 if (!SWIG_IsOK(ecode2
)) {
6995 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompShow" "', expected argument " "2"" of type '" "int""'");
6997 arg2
= static_cast< int >(val2
);
6999 arg3
= wxString_in_helper(obj2
);
7000 if (arg3
== NULL
) SWIG_fail
;
7004 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7005 (arg1
)->AutoCompShow(arg2
,(wxString
const &)*arg3
);
7006 wxPyEndAllowThreads(__tstate
);
7007 if (PyErr_Occurred()) SWIG_fail
;
7009 resultobj
= SWIG_Py_Void();
7024 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7025 PyObject
*resultobj
= 0;
7026 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7029 PyObject
*swig_obj
[1] ;
7031 if (!args
) SWIG_fail
;
7033 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7034 if (!SWIG_IsOK(res1
)) {
7035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7037 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7039 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7040 (arg1
)->AutoCompCancel();
7041 wxPyEndAllowThreads(__tstate
);
7042 if (PyErr_Occurred()) SWIG_fail
;
7044 resultobj
= SWIG_Py_Void();
7051 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7052 PyObject
*resultobj
= 0;
7053 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7057 PyObject
*swig_obj
[1] ;
7059 if (!args
) SWIG_fail
;
7061 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7062 if (!SWIG_IsOK(res1
)) {
7063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7067 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7068 result
= (bool)(arg1
)->AutoCompActive();
7069 wxPyEndAllowThreads(__tstate
);
7070 if (PyErr_Occurred()) SWIG_fail
;
7073 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7081 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompPosStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7082 PyObject
*resultobj
= 0;
7083 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7087 PyObject
*swig_obj
[1] ;
7089 if (!args
) SWIG_fail
;
7091 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7092 if (!SWIG_IsOK(res1
)) {
7093 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompPosStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7095 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7098 result
= (int)(arg1
)->AutoCompPosStart();
7099 wxPyEndAllowThreads(__tstate
);
7100 if (PyErr_Occurred()) SWIG_fail
;
7102 resultobj
= SWIG_From_int(static_cast< int >(result
));
7109 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompComplete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7110 PyObject
*resultobj
= 0;
7111 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7114 PyObject
*swig_obj
[1] ;
7116 if (!args
) SWIG_fail
;
7118 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7119 if (!SWIG_IsOK(res1
)) {
7120 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompComplete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7122 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7124 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7125 (arg1
)->AutoCompComplete();
7126 wxPyEndAllowThreads(__tstate
);
7127 if (PyErr_Occurred()) SWIG_fail
;
7129 resultobj
= SWIG_Py_Void();
7136 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompStops(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7137 PyObject
*resultobj
= 0;
7138 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7139 wxString
*arg2
= 0 ;
7142 bool temp2
= false ;
7143 PyObject
* obj0
= 0 ;
7144 PyObject
* obj1
= 0 ;
7145 char * kwnames
[] = {
7146 (char *) "self",(char *) "characterSet", NULL
7149 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompStops",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7150 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7151 if (!SWIG_IsOK(res1
)) {
7152 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompStops" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7154 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7156 arg2
= wxString_in_helper(obj1
);
7157 if (arg2
== NULL
) SWIG_fail
;
7161 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7162 (arg1
)->AutoCompStops((wxString
const &)*arg2
);
7163 wxPyEndAllowThreads(__tstate
);
7164 if (PyErr_Occurred()) SWIG_fail
;
7166 resultobj
= SWIG_Py_Void();
7181 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7182 PyObject
*resultobj
= 0;
7183 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7189 PyObject
* obj0
= 0 ;
7190 PyObject
* obj1
= 0 ;
7191 char * kwnames
[] = {
7192 (char *) "self",(char *) "separatorCharacter", NULL
7195 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7196 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7197 if (!SWIG_IsOK(res1
)) {
7198 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7200 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7201 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7202 if (!SWIG_IsOK(ecode2
)) {
7203 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetSeparator" "', expected argument " "2"" of type '" "int""'");
7205 arg2
= static_cast< int >(val2
);
7207 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7208 (arg1
)->AutoCompSetSeparator(arg2
);
7209 wxPyEndAllowThreads(__tstate
);
7210 if (PyErr_Occurred()) SWIG_fail
;
7212 resultobj
= SWIG_Py_Void();
7219 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7220 PyObject
*resultobj
= 0;
7221 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7225 PyObject
*swig_obj
[1] ;
7227 if (!args
) SWIG_fail
;
7229 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7230 if (!SWIG_IsOK(res1
)) {
7231 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7233 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7235 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7236 result
= (int)(arg1
)->AutoCompGetSeparator();
7237 wxPyEndAllowThreads(__tstate
);
7238 if (PyErr_Occurred()) SWIG_fail
;
7240 resultobj
= SWIG_From_int(static_cast< int >(result
));
7247 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSelect(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7248 PyObject
*resultobj
= 0;
7249 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7250 wxString
*arg2
= 0 ;
7253 bool temp2
= false ;
7254 PyObject
* obj0
= 0 ;
7255 PyObject
* obj1
= 0 ;
7256 char * kwnames
[] = {
7257 (char *) "self",(char *) "text", NULL
7260 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSelect",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7261 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7262 if (!SWIG_IsOK(res1
)) {
7263 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSelect" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7265 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7267 arg2
= wxString_in_helper(obj1
);
7268 if (arg2
== NULL
) SWIG_fail
;
7272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7273 (arg1
)->AutoCompSelect((wxString
const &)*arg2
);
7274 wxPyEndAllowThreads(__tstate
);
7275 if (PyErr_Occurred()) SWIG_fail
;
7277 resultobj
= SWIG_Py_Void();
7292 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7293 PyObject
*resultobj
= 0;
7294 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7300 PyObject
* obj0
= 0 ;
7301 PyObject
* obj1
= 0 ;
7302 char * kwnames
[] = {
7303 (char *) "self",(char *) "cancel", NULL
7306 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetCancelAtStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7307 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7308 if (!SWIG_IsOK(res1
)) {
7309 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7311 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7312 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7313 if (!SWIG_IsOK(ecode2
)) {
7314 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetCancelAtStart" "', expected argument " "2"" of type '" "bool""'");
7316 arg2
= static_cast< bool >(val2
);
7318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7319 (arg1
)->AutoCompSetCancelAtStart(arg2
);
7320 wxPyEndAllowThreads(__tstate
);
7321 if (PyErr_Occurred()) SWIG_fail
;
7323 resultobj
= SWIG_Py_Void();
7330 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCancelAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7331 PyObject
*resultobj
= 0;
7332 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7336 PyObject
*swig_obj
[1] ;
7338 if (!args
) SWIG_fail
;
7340 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7341 if (!SWIG_IsOK(res1
)) {
7342 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCancelAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7344 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7346 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7347 result
= (bool)(arg1
)->AutoCompGetCancelAtStart();
7348 wxPyEndAllowThreads(__tstate
);
7349 if (PyErr_Occurred()) SWIG_fail
;
7352 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7360 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetFillUps(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7361 PyObject
*resultobj
= 0;
7362 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7363 wxString
*arg2
= 0 ;
7366 bool temp2
= false ;
7367 PyObject
* obj0
= 0 ;
7368 PyObject
* obj1
= 0 ;
7369 char * kwnames
[] = {
7370 (char *) "self",(char *) "characterSet", NULL
7373 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetFillUps",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7374 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7375 if (!SWIG_IsOK(res1
)) {
7376 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetFillUps" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7378 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7380 arg2
= wxString_in_helper(obj1
);
7381 if (arg2
== NULL
) SWIG_fail
;
7385 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7386 (arg1
)->AutoCompSetFillUps((wxString
const &)*arg2
);
7387 wxPyEndAllowThreads(__tstate
);
7388 if (PyErr_Occurred()) SWIG_fail
;
7390 resultobj
= SWIG_Py_Void();
7405 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7406 PyObject
*resultobj
= 0;
7407 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7413 PyObject
* obj0
= 0 ;
7414 PyObject
* obj1
= 0 ;
7415 char * kwnames
[] = {
7416 (char *) "self",(char *) "chooseSingle", NULL
7419 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetChooseSingle",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7420 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7421 if (!SWIG_IsOK(res1
)) {
7422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7424 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7425 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7426 if (!SWIG_IsOK(ecode2
)) {
7427 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetChooseSingle" "', expected argument " "2"" of type '" "bool""'");
7429 arg2
= static_cast< bool >(val2
);
7431 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7432 (arg1
)->AutoCompSetChooseSingle(arg2
);
7433 wxPyEndAllowThreads(__tstate
);
7434 if (PyErr_Occurred()) SWIG_fail
;
7436 resultobj
= SWIG_Py_Void();
7443 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetChooseSingle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7444 PyObject
*resultobj
= 0;
7445 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7449 PyObject
*swig_obj
[1] ;
7451 if (!args
) SWIG_fail
;
7453 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7454 if (!SWIG_IsOK(res1
)) {
7455 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetChooseSingle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7457 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7459 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7460 result
= (bool)(arg1
)->AutoCompGetChooseSingle();
7461 wxPyEndAllowThreads(__tstate
);
7462 if (PyErr_Occurred()) SWIG_fail
;
7465 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7473 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7474 PyObject
*resultobj
= 0;
7475 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7481 PyObject
* obj0
= 0 ;
7482 PyObject
* obj1
= 0 ;
7483 char * kwnames
[] = {
7484 (char *) "self",(char *) "ignoreCase", NULL
7487 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetIgnoreCase",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7488 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7489 if (!SWIG_IsOK(res1
)) {
7490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7492 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7493 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7494 if (!SWIG_IsOK(ecode2
)) {
7495 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetIgnoreCase" "', expected argument " "2"" of type '" "bool""'");
7497 arg2
= static_cast< bool >(val2
);
7499 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7500 (arg1
)->AutoCompSetIgnoreCase(arg2
);
7501 wxPyEndAllowThreads(__tstate
);
7502 if (PyErr_Occurred()) SWIG_fail
;
7504 resultobj
= SWIG_Py_Void();
7511 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetIgnoreCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7512 PyObject
*resultobj
= 0;
7513 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7517 PyObject
*swig_obj
[1] ;
7519 if (!args
) SWIG_fail
;
7521 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7522 if (!SWIG_IsOK(res1
)) {
7523 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetIgnoreCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7525 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7527 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7528 result
= (bool)(arg1
)->AutoCompGetIgnoreCase();
7529 wxPyEndAllowThreads(__tstate
);
7530 if (PyErr_Occurred()) SWIG_fail
;
7533 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7541 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UserListShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7542 PyObject
*resultobj
= 0;
7543 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7545 wxString
*arg3
= 0 ;
7550 bool temp3
= false ;
7551 PyObject
* obj0
= 0 ;
7552 PyObject
* obj1
= 0 ;
7553 PyObject
* obj2
= 0 ;
7554 char * kwnames
[] = {
7555 (char *) "self",(char *) "listType",(char *) "itemList", NULL
7558 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_UserListShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7559 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7560 if (!SWIG_IsOK(res1
)) {
7561 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7563 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7564 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7565 if (!SWIG_IsOK(ecode2
)) {
7566 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UserListShow" "', expected argument " "2"" of type '" "int""'");
7568 arg2
= static_cast< int >(val2
);
7570 arg3
= wxString_in_helper(obj2
);
7571 if (arg3
== NULL
) SWIG_fail
;
7575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7576 (arg1
)->UserListShow(arg2
,(wxString
const &)*arg3
);
7577 wxPyEndAllowThreads(__tstate
);
7578 if (PyErr_Occurred()) SWIG_fail
;
7580 resultobj
= SWIG_Py_Void();
7595 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7596 PyObject
*resultobj
= 0;
7597 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7603 PyObject
* obj0
= 0 ;
7604 PyObject
* obj1
= 0 ;
7605 char * kwnames
[] = {
7606 (char *) "self",(char *) "autoHide", NULL
7609 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetAutoHide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7610 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7611 if (!SWIG_IsOK(res1
)) {
7612 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7614 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7615 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7616 if (!SWIG_IsOK(ecode2
)) {
7617 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetAutoHide" "', expected argument " "2"" of type '" "bool""'");
7619 arg2
= static_cast< bool >(val2
);
7621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7622 (arg1
)->AutoCompSetAutoHide(arg2
);
7623 wxPyEndAllowThreads(__tstate
);
7624 if (PyErr_Occurred()) SWIG_fail
;
7626 resultobj
= SWIG_Py_Void();
7633 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetAutoHide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7634 PyObject
*resultobj
= 0;
7635 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7639 PyObject
*swig_obj
[1] ;
7641 if (!args
) SWIG_fail
;
7643 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7644 if (!SWIG_IsOK(res1
)) {
7645 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetAutoHide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7647 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7649 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7650 result
= (bool)(arg1
)->AutoCompGetAutoHide();
7651 wxPyEndAllowThreads(__tstate
);
7652 if (PyErr_Occurred()) SWIG_fail
;
7655 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7663 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7664 PyObject
*resultobj
= 0;
7665 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7671 PyObject
* obj0
= 0 ;
7672 PyObject
* obj1
= 0 ;
7673 char * kwnames
[] = {
7674 (char *) "self",(char *) "dropRestOfWord", NULL
7677 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetDropRestOfWord",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7678 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7679 if (!SWIG_IsOK(res1
)) {
7680 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7682 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7683 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
7684 if (!SWIG_IsOK(ecode2
)) {
7685 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetDropRestOfWord" "', expected argument " "2"" of type '" "bool""'");
7687 arg2
= static_cast< bool >(val2
);
7689 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7690 (arg1
)->AutoCompSetDropRestOfWord(arg2
);
7691 wxPyEndAllowThreads(__tstate
);
7692 if (PyErr_Occurred()) SWIG_fail
;
7694 resultobj
= SWIG_Py_Void();
7701 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7702 PyObject
*resultobj
= 0;
7703 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7707 PyObject
*swig_obj
[1] ;
7709 if (!args
) SWIG_fail
;
7711 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7712 if (!SWIG_IsOK(res1
)) {
7713 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetDropRestOfWord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7715 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7718 result
= (bool)(arg1
)->AutoCompGetDropRestOfWord();
7719 wxPyEndAllowThreads(__tstate
);
7720 if (PyErr_Occurred()) SWIG_fail
;
7723 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
7731 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_RegisterImage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7732 PyObject
*resultobj
= 0;
7733 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7735 wxBitmap
*arg3
= 0 ;
7742 PyObject
* obj0
= 0 ;
7743 PyObject
* obj1
= 0 ;
7744 PyObject
* obj2
= 0 ;
7745 char * kwnames
[] = {
7746 (char *) "self",(char *) "type",(char *) "bmp", NULL
7749 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_RegisterImage",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
7750 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7751 if (!SWIG_IsOK(res1
)) {
7752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7754 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7755 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7756 if (!SWIG_IsOK(ecode2
)) {
7757 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "2"" of type '" "int""'");
7759 arg2
= static_cast< int >(val2
);
7760 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxBitmap
, 0 | 0);
7761 if (!SWIG_IsOK(res3
)) {
7762 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7765 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_RegisterImage" "', expected argument " "3"" of type '" "wxBitmap const &""'");
7767 arg3
= reinterpret_cast< wxBitmap
* >(argp3
);
7769 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7770 (arg1
)->RegisterImage(arg2
,(wxBitmap
const &)*arg3
);
7771 wxPyEndAllowThreads(__tstate
);
7772 if (PyErr_Occurred()) SWIG_fail
;
7774 resultobj
= SWIG_Py_Void();
7781 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ClearRegisteredImages(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7782 PyObject
*resultobj
= 0;
7783 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7786 PyObject
*swig_obj
[1] ;
7788 if (!args
) SWIG_fail
;
7790 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7791 if (!SWIG_IsOK(res1
)) {
7792 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ClearRegisteredImages" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7794 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7796 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7797 (arg1
)->ClearRegisteredImages();
7798 wxPyEndAllowThreads(__tstate
);
7799 if (PyErr_Occurred()) SWIG_fail
;
7801 resultobj
= SWIG_Py_Void();
7808 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7809 PyObject
*resultobj
= 0;
7810 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7814 PyObject
*swig_obj
[1] ;
7816 if (!args
) SWIG_fail
;
7818 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7819 if (!SWIG_IsOK(res1
)) {
7820 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7822 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7824 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7825 result
= (int)(arg1
)->AutoCompGetTypeSeparator();
7826 wxPyEndAllowThreads(__tstate
);
7827 if (PyErr_Occurred()) SWIG_fail
;
7829 resultobj
= SWIG_From_int(static_cast< int >(result
));
7836 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetTypeSeparator(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7837 PyObject
*resultobj
= 0;
7838 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7844 PyObject
* obj0
= 0 ;
7845 PyObject
* obj1
= 0 ;
7846 char * kwnames
[] = {
7847 (char *) "self",(char *) "separatorCharacter", NULL
7850 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetTypeSeparator",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7851 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7852 if (!SWIG_IsOK(res1
)) {
7853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7856 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7857 if (!SWIG_IsOK(ecode2
)) {
7858 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetTypeSeparator" "', expected argument " "2"" of type '" "int""'");
7860 arg2
= static_cast< int >(val2
);
7862 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7863 (arg1
)->AutoCompSetTypeSeparator(arg2
);
7864 wxPyEndAllowThreads(__tstate
);
7865 if (PyErr_Occurred()) SWIG_fail
;
7867 resultobj
= SWIG_Py_Void();
7874 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7875 PyObject
*resultobj
= 0;
7876 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7882 PyObject
* obj0
= 0 ;
7883 PyObject
* obj1
= 0 ;
7884 char * kwnames
[] = {
7885 (char *) "self",(char *) "characterCount", NULL
7888 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7889 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7890 if (!SWIG_IsOK(res1
)) {
7891 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7893 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7894 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7895 if (!SWIG_IsOK(ecode2
)) {
7896 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxWidth" "', expected argument " "2"" of type '" "int""'");
7898 arg2
= static_cast< int >(val2
);
7900 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7901 (arg1
)->AutoCompSetMaxWidth(arg2
);
7902 wxPyEndAllowThreads(__tstate
);
7903 if (PyErr_Occurred()) SWIG_fail
;
7905 resultobj
= SWIG_Py_Void();
7912 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7913 PyObject
*resultobj
= 0;
7914 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7918 PyObject
*swig_obj
[1] ;
7920 if (!args
) SWIG_fail
;
7922 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7923 if (!SWIG_IsOK(res1
)) {
7924 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7926 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7928 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7929 result
= (int)(arg1
)->AutoCompGetMaxWidth();
7930 wxPyEndAllowThreads(__tstate
);
7931 if (PyErr_Occurred()) SWIG_fail
;
7933 resultobj
= SWIG_From_int(static_cast< int >(result
));
7940 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompSetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
7941 PyObject
*resultobj
= 0;
7942 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7948 PyObject
* obj0
= 0 ;
7949 PyObject
* obj1
= 0 ;
7950 char * kwnames
[] = {
7951 (char *) "self",(char *) "rowCount", NULL
7954 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AutoCompSetMaxHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
7955 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7956 if (!SWIG_IsOK(res1
)) {
7957 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7959 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7960 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
7961 if (!SWIG_IsOK(ecode2
)) {
7962 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_AutoCompSetMaxHeight" "', expected argument " "2"" of type '" "int""'");
7964 arg2
= static_cast< int >(val2
);
7966 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7967 (arg1
)->AutoCompSetMaxHeight(arg2
);
7968 wxPyEndAllowThreads(__tstate
);
7969 if (PyErr_Occurred()) SWIG_fail
;
7971 resultobj
= SWIG_Py_Void();
7978 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetMaxHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
7979 PyObject
*resultobj
= 0;
7980 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
7984 PyObject
*swig_obj
[1] ;
7986 if (!args
) SWIG_fail
;
7988 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
7989 if (!SWIG_IsOK(res1
)) {
7990 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetMaxHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
7992 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
7994 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
7995 result
= (int)(arg1
)->AutoCompGetMaxHeight();
7996 wxPyEndAllowThreads(__tstate
);
7997 if (PyErr_Occurred()) SWIG_fail
;
7999 resultobj
= SWIG_From_int(static_cast< int >(result
));
8006 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8007 PyObject
*resultobj
= 0;
8008 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8014 PyObject
* obj0
= 0 ;
8015 PyObject
* obj1
= 0 ;
8016 char * kwnames
[] = {
8017 (char *) "self",(char *) "indentSize", NULL
8020 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8021 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8022 if (!SWIG_IsOK(res1
)) {
8023 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8025 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8026 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8027 if (!SWIG_IsOK(ecode2
)) {
8028 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndent" "', expected argument " "2"" of type '" "int""'");
8030 arg2
= static_cast< int >(val2
);
8032 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8033 (arg1
)->SetIndent(arg2
);
8034 wxPyEndAllowThreads(__tstate
);
8035 if (PyErr_Occurred()) SWIG_fail
;
8037 resultobj
= SWIG_Py_Void();
8044 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8045 PyObject
*resultobj
= 0;
8046 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8050 PyObject
*swig_obj
[1] ;
8052 if (!args
) SWIG_fail
;
8054 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8055 if (!SWIG_IsOK(res1
)) {
8056 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8058 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8060 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8061 result
= (int)(arg1
)->GetIndent();
8062 wxPyEndAllowThreads(__tstate
);
8063 if (PyErr_Occurred()) SWIG_fail
;
8065 resultobj
= SWIG_From_int(static_cast< int >(result
));
8072 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8073 PyObject
*resultobj
= 0;
8074 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8080 PyObject
* obj0
= 0 ;
8081 PyObject
* obj1
= 0 ;
8082 char * kwnames
[] = {
8083 (char *) "self",(char *) "useTabs", NULL
8086 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseTabs",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8087 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8088 if (!SWIG_IsOK(res1
)) {
8089 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8091 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8092 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8093 if (!SWIG_IsOK(ecode2
)) {
8094 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseTabs" "', expected argument " "2"" of type '" "bool""'");
8096 arg2
= static_cast< bool >(val2
);
8098 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8099 (arg1
)->SetUseTabs(arg2
);
8100 wxPyEndAllowThreads(__tstate
);
8101 if (PyErr_Occurred()) SWIG_fail
;
8103 resultobj
= SWIG_Py_Void();
8110 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseTabs(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8111 PyObject
*resultobj
= 0;
8112 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8116 PyObject
*swig_obj
[1] ;
8118 if (!args
) SWIG_fail
;
8120 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8121 if (!SWIG_IsOK(res1
)) {
8122 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseTabs" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8124 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8126 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8127 result
= (bool)(arg1
)->GetUseTabs();
8128 wxPyEndAllowThreads(__tstate
);
8129 if (PyErr_Occurred()) SWIG_fail
;
8132 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8140 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8141 PyObject
*resultobj
= 0;
8142 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8151 PyObject
* obj0
= 0 ;
8152 PyObject
* obj1
= 0 ;
8153 PyObject
* obj2
= 0 ;
8154 char * kwnames
[] = {
8155 (char *) "self",(char *) "line",(char *) "indentSize", NULL
8158 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetLineIndentation",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
8159 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8160 if (!SWIG_IsOK(res1
)) {
8161 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8163 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8164 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8165 if (!SWIG_IsOK(ecode2
)) {
8166 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8168 arg2
= static_cast< int >(val2
);
8169 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8170 if (!SWIG_IsOK(ecode3
)) {
8171 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetLineIndentation" "', expected argument " "3"" of type '" "int""'");
8173 arg3
= static_cast< int >(val3
);
8175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8176 (arg1
)->SetLineIndentation(arg2
,arg3
);
8177 wxPyEndAllowThreads(__tstate
);
8178 if (PyErr_Occurred()) SWIG_fail
;
8180 resultobj
= SWIG_Py_Void();
8187 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8188 PyObject
*resultobj
= 0;
8189 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8196 PyObject
* obj0
= 0 ;
8197 PyObject
* obj1
= 0 ;
8198 char * kwnames
[] = {
8199 (char *) "self",(char *) "line", NULL
8202 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8203 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8204 if (!SWIG_IsOK(res1
)) {
8205 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8207 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8208 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8209 if (!SWIG_IsOK(ecode2
)) {
8210 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentation" "', expected argument " "2"" of type '" "int""'");
8212 arg2
= static_cast< int >(val2
);
8214 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8215 result
= (int)(arg1
)->GetLineIndentation(arg2
);
8216 wxPyEndAllowThreads(__tstate
);
8217 if (PyErr_Occurred()) SWIG_fail
;
8219 resultobj
= SWIG_From_int(static_cast< int >(result
));
8226 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineIndentPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8227 PyObject
*resultobj
= 0;
8228 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8235 PyObject
* obj0
= 0 ;
8236 PyObject
* obj1
= 0 ;
8237 char * kwnames
[] = {
8238 (char *) "self",(char *) "line", NULL
8241 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineIndentPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8242 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8243 if (!SWIG_IsOK(res1
)) {
8244 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8246 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8247 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8248 if (!SWIG_IsOK(ecode2
)) {
8249 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineIndentPosition" "', expected argument " "2"" of type '" "int""'");
8251 arg2
= static_cast< int >(val2
);
8253 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8254 result
= (int)(arg1
)->GetLineIndentPosition(arg2
);
8255 wxPyEndAllowThreads(__tstate
);
8256 if (PyErr_Occurred()) SWIG_fail
;
8258 resultobj
= SWIG_From_int(static_cast< int >(result
));
8265 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8266 PyObject
*resultobj
= 0;
8267 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8274 PyObject
* obj0
= 0 ;
8275 PyObject
* obj1
= 0 ;
8276 char * kwnames
[] = {
8277 (char *) "self",(char *) "pos", NULL
8280 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8281 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8282 if (!SWIG_IsOK(res1
)) {
8283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8285 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8286 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8287 if (!SWIG_IsOK(ecode2
)) {
8288 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetColumn" "', expected argument " "2"" of type '" "int""'");
8290 arg2
= static_cast< int >(val2
);
8292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8293 result
= (int)(arg1
)->GetColumn(arg2
);
8294 wxPyEndAllowThreads(__tstate
);
8295 if (PyErr_Occurred()) SWIG_fail
;
8297 resultobj
= SWIG_From_int(static_cast< int >(result
));
8304 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8305 PyObject
*resultobj
= 0;
8306 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8312 PyObject
* obj0
= 0 ;
8313 PyObject
* obj1
= 0 ;
8314 char * kwnames
[] = {
8315 (char *) "self",(char *) "show", NULL
8318 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseHorizontalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8319 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8320 if (!SWIG_IsOK(res1
)) {
8321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8323 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8324 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8325 if (!SWIG_IsOK(ecode2
)) {
8326 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseHorizontalScrollBar" "', expected argument " "2"" of type '" "bool""'");
8328 arg2
= static_cast< bool >(val2
);
8330 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8331 (arg1
)->SetUseHorizontalScrollBar(arg2
);
8332 wxPyEndAllowThreads(__tstate
);
8333 if (PyErr_Occurred()) SWIG_fail
;
8335 resultobj
= SWIG_Py_Void();
8342 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseHorizontalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8343 PyObject
*resultobj
= 0;
8344 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8348 PyObject
*swig_obj
[1] ;
8350 if (!args
) SWIG_fail
;
8352 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8353 if (!SWIG_IsOK(res1
)) {
8354 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseHorizontalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8356 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8359 result
= (bool)(arg1
)->GetUseHorizontalScrollBar();
8360 wxPyEndAllowThreads(__tstate
);
8361 if (PyErr_Occurred()) SWIG_fail
;
8364 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8372 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8373 PyObject
*resultobj
= 0;
8374 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8380 PyObject
* obj0
= 0 ;
8381 PyObject
* obj1
= 0 ;
8382 char * kwnames
[] = {
8383 (char *) "self",(char *) "show", NULL
8386 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetIndentationGuides",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8387 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8388 if (!SWIG_IsOK(res1
)) {
8389 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8391 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8392 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
8393 if (!SWIG_IsOK(ecode2
)) {
8394 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetIndentationGuides" "', expected argument " "2"" of type '" "bool""'");
8396 arg2
= static_cast< bool >(val2
);
8398 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8399 (arg1
)->SetIndentationGuides(arg2
);
8400 wxPyEndAllowThreads(__tstate
);
8401 if (PyErr_Occurred()) SWIG_fail
;
8403 resultobj
= SWIG_Py_Void();
8410 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetIndentationGuides(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8411 PyObject
*resultobj
= 0;
8412 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8416 PyObject
*swig_obj
[1] ;
8418 if (!args
) SWIG_fail
;
8420 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8421 if (!SWIG_IsOK(res1
)) {
8422 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetIndentationGuides" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8424 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8426 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8427 result
= (bool)(arg1
)->GetIndentationGuides();
8428 wxPyEndAllowThreads(__tstate
);
8429 if (PyErr_Occurred()) SWIG_fail
;
8432 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8440 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8441 PyObject
*resultobj
= 0;
8442 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8448 PyObject
* obj0
= 0 ;
8449 PyObject
* obj1
= 0 ;
8450 char * kwnames
[] = {
8451 (char *) "self",(char *) "column", NULL
8454 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHighlightGuide",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8455 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8456 if (!SWIG_IsOK(res1
)) {
8457 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8459 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8460 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8461 if (!SWIG_IsOK(ecode2
)) {
8462 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHighlightGuide" "', expected argument " "2"" of type '" "int""'");
8464 arg2
= static_cast< int >(val2
);
8466 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8467 (arg1
)->SetHighlightGuide(arg2
);
8468 wxPyEndAllowThreads(__tstate
);
8469 if (PyErr_Occurred()) SWIG_fail
;
8471 resultobj
= SWIG_Py_Void();
8478 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetHighlightGuide(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8479 PyObject
*resultobj
= 0;
8480 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8484 PyObject
*swig_obj
[1] ;
8486 if (!args
) SWIG_fail
;
8488 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8489 if (!SWIG_IsOK(res1
)) {
8490 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetHighlightGuide" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8492 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8494 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8495 result
= (int)(arg1
)->GetHighlightGuide();
8496 wxPyEndAllowThreads(__tstate
);
8497 if (PyErr_Occurred()) SWIG_fail
;
8499 resultobj
= SWIG_From_int(static_cast< int >(result
));
8506 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8507 PyObject
*resultobj
= 0;
8508 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8515 PyObject
* obj0
= 0 ;
8516 PyObject
* obj1
= 0 ;
8517 char * kwnames
[] = {
8518 (char *) "self",(char *) "line", NULL
8521 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8522 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8523 if (!SWIG_IsOK(res1
)) {
8524 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8526 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8527 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8528 if (!SWIG_IsOK(ecode2
)) {
8529 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineEndPosition" "', expected argument " "2"" of type '" "int""'");
8531 arg2
= static_cast< int >(val2
);
8533 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8534 result
= (int)(arg1
)->GetLineEndPosition(arg2
);
8535 wxPyEndAllowThreads(__tstate
);
8536 if (PyErr_Occurred()) SWIG_fail
;
8538 resultobj
= SWIG_From_int(static_cast< int >(result
));
8545 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCodePage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8546 PyObject
*resultobj
= 0;
8547 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8551 PyObject
*swig_obj
[1] ;
8553 if (!args
) SWIG_fail
;
8555 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8556 if (!SWIG_IsOK(res1
)) {
8557 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCodePage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8559 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8561 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8562 result
= (int)(arg1
)->GetCodePage();
8563 wxPyEndAllowThreads(__tstate
);
8564 if (PyErr_Occurred()) SWIG_fail
;
8566 resultobj
= SWIG_From_int(static_cast< int >(result
));
8573 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8574 PyObject
*resultobj
= 0;
8575 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8579 PyObject
*swig_obj
[1] ;
8581 if (!args
) SWIG_fail
;
8583 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8584 if (!SWIG_IsOK(res1
)) {
8585 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8587 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8589 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8590 result
= (arg1
)->GetCaretForeground();
8591 wxPyEndAllowThreads(__tstate
);
8592 if (PyErr_Occurred()) SWIG_fail
;
8594 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
8601 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8602 PyObject
*resultobj
= 0;
8603 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8607 PyObject
*swig_obj
[1] ;
8609 if (!args
) SWIG_fail
;
8611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8612 if (!SWIG_IsOK(res1
)) {
8613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8615 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8618 result
= (bool)(arg1
)->GetReadOnly();
8619 wxPyEndAllowThreads(__tstate
);
8620 if (PyErr_Occurred()) SWIG_fail
;
8623 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
8631 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCurrentPos(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8632 PyObject
*resultobj
= 0;
8633 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8639 PyObject
* obj0
= 0 ;
8640 PyObject
* obj1
= 0 ;
8641 char * kwnames
[] = {
8642 (char *) "self",(char *) "pos", NULL
8645 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCurrentPos",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8646 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8647 if (!SWIG_IsOK(res1
)) {
8648 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8650 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8651 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8652 if (!SWIG_IsOK(ecode2
)) {
8653 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCurrentPos" "', expected argument " "2"" of type '" "int""'");
8655 arg2
= static_cast< int >(val2
);
8657 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8658 (arg1
)->SetCurrentPos(arg2
);
8659 wxPyEndAllowThreads(__tstate
);
8660 if (PyErr_Occurred()) SWIG_fail
;
8662 resultobj
= SWIG_Py_Void();
8669 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8670 PyObject
*resultobj
= 0;
8671 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8677 PyObject
* obj0
= 0 ;
8678 PyObject
* obj1
= 0 ;
8679 char * kwnames
[] = {
8680 (char *) "self",(char *) "pos", NULL
8683 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8684 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8685 if (!SWIG_IsOK(res1
)) {
8686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8688 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8689 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8690 if (!SWIG_IsOK(ecode2
)) {
8691 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionStart" "', expected argument " "2"" of type '" "int""'");
8693 arg2
= static_cast< int >(val2
);
8695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8696 (arg1
)->SetSelectionStart(arg2
);
8697 wxPyEndAllowThreads(__tstate
);
8698 if (PyErr_Occurred()) SWIG_fail
;
8700 resultobj
= SWIG_Py_Void();
8707 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8708 PyObject
*resultobj
= 0;
8709 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8713 PyObject
*swig_obj
[1] ;
8715 if (!args
) SWIG_fail
;
8717 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8718 if (!SWIG_IsOK(res1
)) {
8719 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8721 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8723 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8724 result
= (int)(arg1
)->GetSelectionStart();
8725 wxPyEndAllowThreads(__tstate
);
8726 if (PyErr_Occurred()) SWIG_fail
;
8728 resultobj
= SWIG_From_int(static_cast< int >(result
));
8735 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8736 PyObject
*resultobj
= 0;
8737 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8743 PyObject
* obj0
= 0 ;
8744 PyObject
* obj1
= 0 ;
8745 char * kwnames
[] = {
8746 (char *) "self",(char *) "pos", NULL
8749 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8750 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8751 if (!SWIG_IsOK(res1
)) {
8752 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8754 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8755 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8756 if (!SWIG_IsOK(ecode2
)) {
8757 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionEnd" "', expected argument " "2"" of type '" "int""'");
8759 arg2
= static_cast< int >(val2
);
8761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8762 (arg1
)->SetSelectionEnd(arg2
);
8763 wxPyEndAllowThreads(__tstate
);
8764 if (PyErr_Occurred()) SWIG_fail
;
8766 resultobj
= SWIG_Py_Void();
8773 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8774 PyObject
*resultobj
= 0;
8775 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8779 PyObject
*swig_obj
[1] ;
8781 if (!args
) SWIG_fail
;
8783 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8784 if (!SWIG_IsOK(res1
)) {
8785 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8787 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8789 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8790 result
= (int)(arg1
)->GetSelectionEnd();
8791 wxPyEndAllowThreads(__tstate
);
8792 if (PyErr_Occurred()) SWIG_fail
;
8794 resultobj
= SWIG_From_int(static_cast< int >(result
));
8801 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8802 PyObject
*resultobj
= 0;
8803 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8809 PyObject
* obj0
= 0 ;
8810 PyObject
* obj1
= 0 ;
8811 char * kwnames
[] = {
8812 (char *) "self",(char *) "magnification", NULL
8815 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintMagnification",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8816 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8817 if (!SWIG_IsOK(res1
)) {
8818 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8820 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8821 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8822 if (!SWIG_IsOK(ecode2
)) {
8823 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintMagnification" "', expected argument " "2"" of type '" "int""'");
8825 arg2
= static_cast< int >(val2
);
8827 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8828 (arg1
)->SetPrintMagnification(arg2
);
8829 wxPyEndAllowThreads(__tstate
);
8830 if (PyErr_Occurred()) SWIG_fail
;
8832 resultobj
= SWIG_Py_Void();
8839 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintMagnification(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8840 PyObject
*resultobj
= 0;
8841 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8845 PyObject
*swig_obj
[1] ;
8847 if (!args
) SWIG_fail
;
8849 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8850 if (!SWIG_IsOK(res1
)) {
8851 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintMagnification" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8853 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8855 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8856 result
= (int)(arg1
)->GetPrintMagnification();
8857 wxPyEndAllowThreads(__tstate
);
8858 if (PyErr_Occurred()) SWIG_fail
;
8860 resultobj
= SWIG_From_int(static_cast< int >(result
));
8867 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8868 PyObject
*resultobj
= 0;
8869 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8875 PyObject
* obj0
= 0 ;
8876 PyObject
* obj1
= 0 ;
8877 char * kwnames
[] = {
8878 (char *) "self",(char *) "mode", NULL
8881 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintColourMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
8882 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8883 if (!SWIG_IsOK(res1
)) {
8884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8886 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8887 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8888 if (!SWIG_IsOK(ecode2
)) {
8889 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintColourMode" "', expected argument " "2"" of type '" "int""'");
8891 arg2
= static_cast< int >(val2
);
8893 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8894 (arg1
)->SetPrintColourMode(arg2
);
8895 wxPyEndAllowThreads(__tstate
);
8896 if (PyErr_Occurred()) SWIG_fail
;
8898 resultobj
= SWIG_Py_Void();
8905 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintColourMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
8906 PyObject
*resultobj
= 0;
8907 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8911 PyObject
*swig_obj
[1] ;
8913 if (!args
) SWIG_fail
;
8915 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8916 if (!SWIG_IsOK(res1
)) {
8917 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintColourMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8919 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8921 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8922 result
= (int)(arg1
)->GetPrintColourMode();
8923 wxPyEndAllowThreads(__tstate
);
8924 if (PyErr_Occurred()) SWIG_fail
;
8926 resultobj
= SWIG_From_int(static_cast< int >(result
));
8933 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
8934 PyObject
*resultobj
= 0;
8935 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
8938 wxString
*arg4
= 0 ;
8939 int arg5
= (int) 0 ;
8947 bool temp4
= false ;
8950 PyObject
* obj0
= 0 ;
8951 PyObject
* obj1
= 0 ;
8952 PyObject
* obj2
= 0 ;
8953 PyObject
* obj3
= 0 ;
8954 PyObject
* obj4
= 0 ;
8955 char * kwnames
[] = {
8956 (char *) "self",(char *) "minPos",(char *) "maxPos",(char *) "text",(char *) "flags", NULL
8959 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO|O:StyledTextCtrl_FindText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
)) SWIG_fail
;
8960 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
8961 if (!SWIG_IsOK(res1
)) {
8962 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
8964 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
8965 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
8966 if (!SWIG_IsOK(ecode2
)) {
8967 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "2"" of type '" "int""'");
8969 arg2
= static_cast< int >(val2
);
8970 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
8971 if (!SWIG_IsOK(ecode3
)) {
8972 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "3"" of type '" "int""'");
8974 arg3
= static_cast< int >(val3
);
8976 arg4
= wxString_in_helper(obj3
);
8977 if (arg4
== NULL
) SWIG_fail
;
8981 ecode5
= SWIG_AsVal_int(obj4
, &val5
);
8982 if (!SWIG_IsOK(ecode5
)) {
8983 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_FindText" "', expected argument " "5"" of type '" "int""'");
8985 arg5
= static_cast< int >(val5
);
8988 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
8989 result
= (int)(arg1
)->FindText(arg2
,arg3
,(wxString
const &)*arg4
,arg5
);
8990 wxPyEndAllowThreads(__tstate
);
8991 if (PyErr_Occurred()) SWIG_fail
;
8993 resultobj
= SWIG_From_int(static_cast< int >(result
));
9008 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormatRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9009 PyObject
*resultobj
= 0;
9010 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9014 wxDC
*arg5
= (wxDC
*) 0 ;
9015 wxDC
*arg6
= (wxDC
*) 0 ;
9035 PyObject
* obj0
= 0 ;
9036 PyObject
* obj1
= 0 ;
9037 PyObject
* obj2
= 0 ;
9038 PyObject
* obj3
= 0 ;
9039 PyObject
* obj4
= 0 ;
9040 PyObject
* obj5
= 0 ;
9041 PyObject
* obj6
= 0 ;
9042 PyObject
* obj7
= 0 ;
9043 char * kwnames
[] = {
9044 (char *) "self",(char *) "doDraw",(char *) "startPos",(char *) "endPos",(char *) "draw",(char *) "target",(char *) "renderRect",(char *) "pageRect", NULL
9047 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOOO:StyledTextCtrl_FormatRange",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
9048 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9049 if (!SWIG_IsOK(res1
)) {
9050 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9052 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9053 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9054 if (!SWIG_IsOK(ecode2
)) {
9055 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "2"" of type '" "bool""'");
9057 arg2
= static_cast< bool >(val2
);
9058 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9059 if (!SWIG_IsOK(ecode3
)) {
9060 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "3"" of type '" "int""'");
9062 arg3
= static_cast< int >(val3
);
9063 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
9064 if (!SWIG_IsOK(ecode4
)) {
9065 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "4"" of type '" "int""'");
9067 arg4
= static_cast< int >(val4
);
9068 res5
= SWIG_ConvertPtr(obj4
, &argp5
,SWIGTYPE_p_wxDC
, 0 | 0 );
9069 if (!SWIG_IsOK(res5
)) {
9070 SWIG_exception_fail(SWIG_ArgError(res5
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "5"" of type '" "wxDC *""'");
9072 arg5
= reinterpret_cast< wxDC
* >(argp5
);
9073 res6
= SWIG_ConvertPtr(obj5
, &argp6
,SWIGTYPE_p_wxDC
, 0 | 0 );
9074 if (!SWIG_IsOK(res6
)) {
9075 SWIG_exception_fail(SWIG_ArgError(res6
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "6"" of type '" "wxDC *""'");
9077 arg6
= reinterpret_cast< wxDC
* >(argp6
);
9079 res7
= SWIG_ConvertPtr(obj6
, &argp7
, SWIGTYPE_p_wxRect
, 0 | 0);
9080 if (!SWIG_IsOK(res7
)) {
9081 SWIG_exception_fail(SWIG_ArgError(res7
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9084 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "7"" of type '" "wxRect""'");
9086 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp7
);
9088 if (SWIG_IsNewObj(res7
)) delete temp
;
9092 res8
= SWIG_ConvertPtr(obj7
, &argp8
, SWIGTYPE_p_wxRect
, 0 | 0);
9093 if (!SWIG_IsOK(res8
)) {
9094 SWIG_exception_fail(SWIG_ArgError(res8
), "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9097 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_FormatRange" "', expected argument " "8"" of type '" "wxRect""'");
9099 wxRect
* temp
= reinterpret_cast< wxRect
* >(argp8
);
9101 if (SWIG_IsNewObj(res8
)) delete temp
;
9105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9106 result
= (int)(arg1
)->FormatRange(arg2
,arg3
,arg4
,arg5
,arg6
,arg7
,arg8
);
9107 wxPyEndAllowThreads(__tstate
);
9108 if (PyErr_Occurred()) SWIG_fail
;
9110 resultobj
= SWIG_From_int(static_cast< int >(result
));
9117 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFirstVisibleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9118 PyObject
*resultobj
= 0;
9119 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9123 PyObject
*swig_obj
[1] ;
9125 if (!args
) SWIG_fail
;
9127 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9128 if (!SWIG_IsOK(res1
)) {
9129 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFirstVisibleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9131 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9133 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9134 result
= (int)(arg1
)->GetFirstVisibleLine();
9135 wxPyEndAllowThreads(__tstate
);
9136 if (PyErr_Occurred()) SWIG_fail
;
9138 resultobj
= SWIG_From_int(static_cast< int >(result
));
9145 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9146 PyObject
*resultobj
= 0;
9147 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9154 PyObject
* obj0
= 0 ;
9155 PyObject
* obj1
= 0 ;
9156 char * kwnames
[] = {
9157 (char *) "self",(char *) "line", NULL
9160 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9161 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9162 if (!SWIG_IsOK(res1
)) {
9163 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9165 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9166 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9167 if (!SWIG_IsOK(ecode2
)) {
9168 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLine" "', expected argument " "2"" of type '" "int""'");
9170 arg2
= static_cast< int >(val2
);
9172 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9173 result
= (arg1
)->GetLine(arg2
);
9174 wxPyEndAllowThreads(__tstate
);
9175 if (PyErr_Occurred()) SWIG_fail
;
9179 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9181 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9190 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9191 PyObject
*resultobj
= 0;
9192 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9196 PyObject
*swig_obj
[1] ;
9198 if (!args
) SWIG_fail
;
9200 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9201 if (!SWIG_IsOK(res1
)) {
9202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9204 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9207 result
= (int)(arg1
)->GetLineCount();
9208 wxPyEndAllowThreads(__tstate
);
9209 if (PyErr_Occurred()) SWIG_fail
;
9211 resultobj
= SWIG_From_int(static_cast< int >(result
));
9218 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9219 PyObject
*resultobj
= 0;
9220 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9226 PyObject
* obj0
= 0 ;
9227 PyObject
* obj1
= 0 ;
9228 char * kwnames
[] = {
9229 (char *) "self",(char *) "pixelWidth", NULL
9232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginLeft",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9234 if (!SWIG_IsOK(res1
)) {
9235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9239 if (!SWIG_IsOK(ecode2
)) {
9240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginLeft" "', expected argument " "2"" of type '" "int""'");
9242 arg2
= static_cast< int >(val2
);
9244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9245 (arg1
)->SetMarginLeft(arg2
);
9246 wxPyEndAllowThreads(__tstate
);
9247 if (PyErr_Occurred()) SWIG_fail
;
9249 resultobj
= SWIG_Py_Void();
9256 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9257 PyObject
*resultobj
= 0;
9258 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9262 PyObject
*swig_obj
[1] ;
9264 if (!args
) SWIG_fail
;
9266 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9267 if (!SWIG_IsOK(res1
)) {
9268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9270 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9272 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9273 result
= (int)(arg1
)->GetMarginLeft();
9274 wxPyEndAllowThreads(__tstate
);
9275 if (PyErr_Occurred()) SWIG_fail
;
9277 resultobj
= SWIG_From_int(static_cast< int >(result
));
9284 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9285 PyObject
*resultobj
= 0;
9286 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9292 PyObject
* obj0
= 0 ;
9293 PyObject
* obj1
= 0 ;
9294 char * kwnames
[] = {
9295 (char *) "self",(char *) "pixelWidth", NULL
9298 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMarginRight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9299 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9300 if (!SWIG_IsOK(res1
)) {
9301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9303 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9304 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9305 if (!SWIG_IsOK(ecode2
)) {
9306 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMarginRight" "', expected argument " "2"" of type '" "int""'");
9308 arg2
= static_cast< int >(val2
);
9310 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9311 (arg1
)->SetMarginRight(arg2
);
9312 wxPyEndAllowThreads(__tstate
);
9313 if (PyErr_Occurred()) SWIG_fail
;
9315 resultobj
= SWIG_Py_Void();
9322 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMarginRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9323 PyObject
*resultobj
= 0;
9324 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9328 PyObject
*swig_obj
[1] ;
9330 if (!args
) SWIG_fail
;
9332 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9333 if (!SWIG_IsOK(res1
)) {
9334 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMarginRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9336 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9338 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9339 result
= (int)(arg1
)->GetMarginRight();
9340 wxPyEndAllowThreads(__tstate
);
9341 if (PyErr_Occurred()) SWIG_fail
;
9343 resultobj
= SWIG_From_int(static_cast< int >(result
));
9350 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModify(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9351 PyObject
*resultobj
= 0;
9352 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9356 PyObject
*swig_obj
[1] ;
9358 if (!args
) SWIG_fail
;
9360 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9361 if (!SWIG_IsOK(res1
)) {
9362 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModify" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9364 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9366 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9367 result
= (bool)(arg1
)->GetModify();
9368 wxPyEndAllowThreads(__tstate
);
9369 if (PyErr_Occurred()) SWIG_fail
;
9372 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9380 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9381 PyObject
*resultobj
= 0;
9382 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9391 PyObject
* obj0
= 0 ;
9392 PyObject
* obj1
= 0 ;
9393 PyObject
* obj2
= 0 ;
9394 char * kwnames
[] = {
9395 (char *) "self",(char *) "start",(char *) "end", NULL
9398 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetSelection",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9399 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9400 if (!SWIG_IsOK(res1
)) {
9401 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9403 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9404 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9405 if (!SWIG_IsOK(ecode2
)) {
9406 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "2"" of type '" "int""'");
9408 arg2
= static_cast< int >(val2
);
9409 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9410 if (!SWIG_IsOK(ecode3
)) {
9411 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetSelection" "', expected argument " "3"" of type '" "int""'");
9413 arg3
= static_cast< int >(val3
);
9415 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9416 (arg1
)->SetSelection(arg2
,arg3
);
9417 wxPyEndAllowThreads(__tstate
);
9418 if (PyErr_Occurred()) SWIG_fail
;
9420 resultobj
= SWIG_Py_Void();
9427 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9428 PyObject
*resultobj
= 0;
9429 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9433 PyObject
*swig_obj
[1] ;
9435 if (!args
) SWIG_fail
;
9437 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9438 if (!SWIG_IsOK(res1
)) {
9439 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9441 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9444 result
= (arg1
)->GetSelectedText();
9445 wxPyEndAllowThreads(__tstate
);
9446 if (PyErr_Occurred()) SWIG_fail
;
9450 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9452 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9461 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9462 PyObject
*resultobj
= 0;
9463 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9473 PyObject
* obj0
= 0 ;
9474 PyObject
* obj1
= 0 ;
9475 PyObject
* obj2
= 0 ;
9476 char * kwnames
[] = {
9477 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
9480 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9481 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9482 if (!SWIG_IsOK(res1
)) {
9483 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9485 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9486 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9487 if (!SWIG_IsOK(ecode2
)) {
9488 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "2"" of type '" "int""'");
9490 arg2
= static_cast< int >(val2
);
9491 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9492 if (!SWIG_IsOK(ecode3
)) {
9493 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRange" "', expected argument " "3"" of type '" "int""'");
9495 arg3
= static_cast< int >(val3
);
9497 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9498 result
= (arg1
)->GetTextRange(arg2
,arg3
);
9499 wxPyEndAllowThreads(__tstate
);
9500 if (PyErr_Occurred()) SWIG_fail
;
9504 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
9506 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
9515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9516 PyObject
*resultobj
= 0;
9517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9523 PyObject
* obj0
= 0 ;
9524 PyObject
* obj1
= 0 ;
9525 char * kwnames
[] = {
9526 (char *) "self",(char *) "normal", NULL
9529 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_HideSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9530 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9531 if (!SWIG_IsOK(res1
)) {
9532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9534 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9535 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9536 if (!SWIG_IsOK(ecode2
)) {
9537 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideSelection" "', expected argument " "2"" of type '" "bool""'");
9539 arg2
= static_cast< bool >(val2
);
9541 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9542 (arg1
)->HideSelection(arg2
);
9543 wxPyEndAllowThreads(__tstate
);
9544 if (PyErr_Occurred()) SWIG_fail
;
9546 resultobj
= SWIG_Py_Void();
9553 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9554 PyObject
*resultobj
= 0;
9555 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9562 PyObject
* obj0
= 0 ;
9563 PyObject
* obj1
= 0 ;
9564 char * kwnames
[] = {
9565 (char *) "self",(char *) "pos", NULL
9568 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9569 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9570 if (!SWIG_IsOK(res1
)) {
9571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9573 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9574 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9575 if (!SWIG_IsOK(ecode2
)) {
9576 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineFromPosition" "', expected argument " "2"" of type '" "int""'");
9578 arg2
= static_cast< int >(val2
);
9580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9581 result
= (int)(arg1
)->LineFromPosition(arg2
);
9582 wxPyEndAllowThreads(__tstate
);
9583 if (PyErr_Occurred()) SWIG_fail
;
9585 resultobj
= SWIG_From_int(static_cast< int >(result
));
9592 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionFromLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9593 PyObject
*resultobj
= 0;
9594 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9601 PyObject
* obj0
= 0 ;
9602 PyObject
* obj1
= 0 ;
9603 char * kwnames
[] = {
9604 (char *) "self",(char *) "line", NULL
9607 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionFromLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9608 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9609 if (!SWIG_IsOK(res1
)) {
9610 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9612 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9613 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9614 if (!SWIG_IsOK(ecode2
)) {
9615 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionFromLine" "', expected argument " "2"" of type '" "int""'");
9617 arg2
= static_cast< int >(val2
);
9619 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9620 result
= (int)(arg1
)->PositionFromLine(arg2
);
9621 wxPyEndAllowThreads(__tstate
);
9622 if (PyErr_Occurred()) SWIG_fail
;
9624 resultobj
= SWIG_From_int(static_cast< int >(result
));
9631 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScroll(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9632 PyObject
*resultobj
= 0;
9633 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9642 PyObject
* obj0
= 0 ;
9643 PyObject
* obj1
= 0 ;
9644 PyObject
* obj2
= 0 ;
9645 char * kwnames
[] = {
9646 (char *) "self",(char *) "columns",(char *) "lines", NULL
9649 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_LineScroll",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
9650 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9651 if (!SWIG_IsOK(res1
)) {
9652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9654 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9655 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
9656 if (!SWIG_IsOK(ecode2
)) {
9657 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "2"" of type '" "int""'");
9659 arg2
= static_cast< int >(val2
);
9660 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
9661 if (!SWIG_IsOK(ecode3
)) {
9662 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_LineScroll" "', expected argument " "3"" of type '" "int""'");
9664 arg3
= static_cast< int >(val3
);
9666 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9667 (arg1
)->LineScroll(arg2
,arg3
);
9668 wxPyEndAllowThreads(__tstate
);
9669 if (PyErr_Occurred()) SWIG_fail
;
9671 resultobj
= SWIG_Py_Void();
9678 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureCaretVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9679 PyObject
*resultobj
= 0;
9680 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9683 PyObject
*swig_obj
[1] ;
9685 if (!args
) SWIG_fail
;
9687 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9688 if (!SWIG_IsOK(res1
)) {
9689 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureCaretVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9691 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9693 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9694 (arg1
)->EnsureCaretVisible();
9695 wxPyEndAllowThreads(__tstate
);
9696 if (PyErr_Occurred()) SWIG_fail
;
9698 resultobj
= SWIG_Py_Void();
9705 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9706 PyObject
*resultobj
= 0;
9707 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9708 wxString
*arg2
= 0 ;
9711 bool temp2
= false ;
9712 PyObject
* obj0
= 0 ;
9713 PyObject
* obj1
= 0 ;
9714 char * kwnames
[] = {
9715 (char *) "self",(char *) "text", NULL
9718 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceSelection",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9719 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9720 if (!SWIG_IsOK(res1
)) {
9721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9723 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9725 arg2
= wxString_in_helper(obj1
);
9726 if (arg2
== NULL
) SWIG_fail
;
9730 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9731 (arg1
)->ReplaceSelection((wxString
const &)*arg2
);
9732 wxPyEndAllowThreads(__tstate
);
9733 if (PyErr_Occurred()) SWIG_fail
;
9735 resultobj
= SWIG_Py_Void();
9750 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetReadOnly(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
9751 PyObject
*resultobj
= 0;
9752 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9758 PyObject
* obj0
= 0 ;
9759 PyObject
* obj1
= 0 ;
9760 char * kwnames
[] = {
9761 (char *) "self",(char *) "readOnly", NULL
9764 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetReadOnly",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
9765 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9766 if (!SWIG_IsOK(res1
)) {
9767 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9769 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9770 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
9771 if (!SWIG_IsOK(ecode2
)) {
9772 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetReadOnly" "', expected argument " "2"" of type '" "bool""'");
9774 arg2
= static_cast< bool >(val2
);
9776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9777 (arg1
)->SetReadOnly(arg2
);
9778 wxPyEndAllowThreads(__tstate
);
9779 if (PyErr_Occurred()) SWIG_fail
;
9781 resultobj
= SWIG_Py_Void();
9788 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanPaste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9789 PyObject
*resultobj
= 0;
9790 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9794 PyObject
*swig_obj
[1] ;
9796 if (!args
) SWIG_fail
;
9798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9799 if (!SWIG_IsOK(res1
)) {
9800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanPaste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9802 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9805 result
= (bool)(arg1
)->CanPaste();
9806 wxPyEndAllowThreads(__tstate
);
9807 if (PyErr_Occurred()) SWIG_fail
;
9810 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9818 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CanUndo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9819 PyObject
*resultobj
= 0;
9820 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9824 PyObject
*swig_obj
[1] ;
9826 if (!args
) SWIG_fail
;
9828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9829 if (!SWIG_IsOK(res1
)) {
9830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CanUndo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9832 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9835 result
= (bool)(arg1
)->CanUndo();
9836 wxPyEndAllowThreads(__tstate
);
9837 if (PyErr_Occurred()) SWIG_fail
;
9840 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
9848 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EmptyUndoBuffer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9849 PyObject
*resultobj
= 0;
9850 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9853 PyObject
*swig_obj
[1] ;
9855 if (!args
) SWIG_fail
;
9857 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9858 if (!SWIG_IsOK(res1
)) {
9859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EmptyUndoBuffer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9861 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9863 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9864 (arg1
)->EmptyUndoBuffer();
9865 wxPyEndAllowThreads(__tstate
);
9866 if (PyErr_Occurred()) SWIG_fail
;
9868 resultobj
= SWIG_Py_Void();
9875 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Undo(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9876 PyObject
*resultobj
= 0;
9877 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9880 PyObject
*swig_obj
[1] ;
9882 if (!args
) SWIG_fail
;
9884 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9885 if (!SWIG_IsOK(res1
)) {
9886 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Undo" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9888 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9890 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9892 wxPyEndAllowThreads(__tstate
);
9893 if (PyErr_Occurred()) SWIG_fail
;
9895 resultobj
= SWIG_Py_Void();
9902 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9903 PyObject
*resultobj
= 0;
9904 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9907 PyObject
*swig_obj
[1] ;
9909 if (!args
) SWIG_fail
;
9911 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9912 if (!SWIG_IsOK(res1
)) {
9913 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9915 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9917 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9919 wxPyEndAllowThreads(__tstate
);
9920 if (PyErr_Occurred()) SWIG_fail
;
9922 resultobj
= SWIG_Py_Void();
9929 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Copy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9930 PyObject
*resultobj
= 0;
9931 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9934 PyObject
*swig_obj
[1] ;
9936 if (!args
) SWIG_fail
;
9938 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9939 if (!SWIG_IsOK(res1
)) {
9940 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Copy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9942 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9944 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9946 wxPyEndAllowThreads(__tstate
);
9947 if (PyErr_Occurred()) SWIG_fail
;
9949 resultobj
= SWIG_Py_Void();
9956 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Paste(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9957 PyObject
*resultobj
= 0;
9958 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9961 PyObject
*swig_obj
[1] ;
9963 if (!args
) SWIG_fail
;
9965 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9966 if (!SWIG_IsOK(res1
)) {
9967 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Paste" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9969 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9971 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
9973 wxPyEndAllowThreads(__tstate
);
9974 if (PyErr_Occurred()) SWIG_fail
;
9976 resultobj
= SWIG_Py_Void();
9983 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Clear(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
9984 PyObject
*resultobj
= 0;
9985 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
9988 PyObject
*swig_obj
[1] ;
9990 if (!args
) SWIG_fail
;
9992 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
9993 if (!SWIG_IsOK(res1
)) {
9994 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Clear" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
9996 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
9998 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10000 wxPyEndAllowThreads(__tstate
);
10001 if (PyErr_Occurred()) SWIG_fail
;
10003 resultobj
= SWIG_Py_Void();
10010 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10011 PyObject
*resultobj
= 0;
10012 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10013 wxString
*arg2
= 0 ;
10016 bool temp2
= false ;
10017 PyObject
* obj0
= 0 ;
10018 PyObject
* obj1
= 0 ;
10019 char * kwnames
[] = {
10020 (char *) "self",(char *) "text", NULL
10023 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10024 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10025 if (!SWIG_IsOK(res1
)) {
10026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10028 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10030 arg2
= wxString_in_helper(obj1
);
10031 if (arg2
== NULL
) SWIG_fail
;
10035 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10036 (arg1
)->SetText((wxString
const &)*arg2
);
10037 wxPyEndAllowThreads(__tstate
);
10038 if (PyErr_Occurred()) SWIG_fail
;
10040 resultobj
= SWIG_Py_Void();
10055 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10056 PyObject
*resultobj
= 0;
10057 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10061 PyObject
*swig_obj
[1] ;
10063 if (!args
) SWIG_fail
;
10064 swig_obj
[0] = args
;
10065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10066 if (!SWIG_IsOK(res1
)) {
10067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10069 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10072 result
= (arg1
)->GetText();
10073 wxPyEndAllowThreads(__tstate
);
10074 if (PyErr_Occurred()) SWIG_fail
;
10078 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
10080 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
10089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10090 PyObject
*resultobj
= 0;
10091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10095 PyObject
*swig_obj
[1] ;
10097 if (!args
) SWIG_fail
;
10098 swig_obj
[0] = args
;
10099 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10100 if (!SWIG_IsOK(res1
)) {
10101 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10103 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10105 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10106 result
= (int)(arg1
)->GetTextLength();
10107 wxPyEndAllowThreads(__tstate
);
10108 if (PyErr_Occurred()) SWIG_fail
;
10110 resultobj
= SWIG_From_int(static_cast< int >(result
));
10117 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10118 PyObject
*resultobj
= 0;
10119 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10125 PyObject
* obj0
= 0 ;
10126 PyObject
* obj1
= 0 ;
10127 char * kwnames
[] = {
10128 (char *) "self",(char *) "overtype", NULL
10131 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetOvertype",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10132 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10133 if (!SWIG_IsOK(res1
)) {
10134 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10136 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10137 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
10138 if (!SWIG_IsOK(ecode2
)) {
10139 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetOvertype" "', expected argument " "2"" of type '" "bool""'");
10141 arg2
= static_cast< bool >(val2
);
10143 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10144 (arg1
)->SetOvertype(arg2
);
10145 wxPyEndAllowThreads(__tstate
);
10146 if (PyErr_Occurred()) SWIG_fail
;
10148 resultobj
= SWIG_Py_Void();
10155 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10156 PyObject
*resultobj
= 0;
10157 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10161 PyObject
*swig_obj
[1] ;
10163 if (!args
) SWIG_fail
;
10164 swig_obj
[0] = args
;
10165 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10166 if (!SWIG_IsOK(res1
)) {
10167 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10169 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10171 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10172 result
= (bool)(arg1
)->GetOvertype();
10173 wxPyEndAllowThreads(__tstate
);
10174 if (PyErr_Occurred()) SWIG_fail
;
10177 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10185 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10186 PyObject
*resultobj
= 0;
10187 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10193 PyObject
* obj0
= 0 ;
10194 PyObject
* obj1
= 0 ;
10195 char * kwnames
[] = {
10196 (char *) "self",(char *) "pixelWidth", NULL
10199 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10200 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10201 if (!SWIG_IsOK(res1
)) {
10202 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10204 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10205 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10206 if (!SWIG_IsOK(ecode2
)) {
10207 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretWidth" "', expected argument " "2"" of type '" "int""'");
10209 arg2
= static_cast< int >(val2
);
10211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10212 (arg1
)->SetCaretWidth(arg2
);
10213 wxPyEndAllowThreads(__tstate
);
10214 if (PyErr_Occurred()) SWIG_fail
;
10216 resultobj
= SWIG_Py_Void();
10223 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10224 PyObject
*resultobj
= 0;
10225 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10229 PyObject
*swig_obj
[1] ;
10231 if (!args
) SWIG_fail
;
10232 swig_obj
[0] = args
;
10233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10234 if (!SWIG_IsOK(res1
)) {
10235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10240 result
= (int)(arg1
)->GetCaretWidth();
10241 wxPyEndAllowThreads(__tstate
);
10242 if (PyErr_Occurred()) SWIG_fail
;
10244 resultobj
= SWIG_From_int(static_cast< int >(result
));
10251 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10252 PyObject
*resultobj
= 0;
10253 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10259 PyObject
* obj0
= 0 ;
10260 PyObject
* obj1
= 0 ;
10261 char * kwnames
[] = {
10262 (char *) "self",(char *) "pos", NULL
10265 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetStart",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10266 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10267 if (!SWIG_IsOK(res1
)) {
10268 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10270 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10271 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10272 if (!SWIG_IsOK(ecode2
)) {
10273 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetStart" "', expected argument " "2"" of type '" "int""'");
10275 arg2
= static_cast< int >(val2
);
10277 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10278 (arg1
)->SetTargetStart(arg2
);
10279 wxPyEndAllowThreads(__tstate
);
10280 if (PyErr_Occurred()) SWIG_fail
;
10282 resultobj
= SWIG_Py_Void();
10289 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10290 PyObject
*resultobj
= 0;
10291 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10295 PyObject
*swig_obj
[1] ;
10297 if (!args
) SWIG_fail
;
10298 swig_obj
[0] = args
;
10299 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10300 if (!SWIG_IsOK(res1
)) {
10301 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10303 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10305 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10306 result
= (int)(arg1
)->GetTargetStart();
10307 wxPyEndAllowThreads(__tstate
);
10308 if (PyErr_Occurred()) SWIG_fail
;
10310 resultobj
= SWIG_From_int(static_cast< int >(result
));
10317 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10318 PyObject
*resultobj
= 0;
10319 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10325 PyObject
* obj0
= 0 ;
10326 PyObject
* obj1
= 0 ;
10327 char * kwnames
[] = {
10328 (char *) "self",(char *) "pos", NULL
10331 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTargetEnd",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10332 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10333 if (!SWIG_IsOK(res1
)) {
10334 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10336 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10337 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10338 if (!SWIG_IsOK(ecode2
)) {
10339 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTargetEnd" "', expected argument " "2"" of type '" "int""'");
10341 arg2
= static_cast< int >(val2
);
10343 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10344 (arg1
)->SetTargetEnd(arg2
);
10345 wxPyEndAllowThreads(__tstate
);
10346 if (PyErr_Occurred()) SWIG_fail
;
10348 resultobj
= SWIG_Py_Void();
10355 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTargetEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10356 PyObject
*resultobj
= 0;
10357 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10361 PyObject
*swig_obj
[1] ;
10363 if (!args
) SWIG_fail
;
10364 swig_obj
[0] = args
;
10365 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10366 if (!SWIG_IsOK(res1
)) {
10367 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTargetEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10369 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10371 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10372 result
= (int)(arg1
)->GetTargetEnd();
10373 wxPyEndAllowThreads(__tstate
);
10374 if (PyErr_Occurred()) SWIG_fail
;
10376 resultobj
= SWIG_From_int(static_cast< int >(result
));
10383 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10384 PyObject
*resultobj
= 0;
10385 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10386 wxString
*arg2
= 0 ;
10390 bool temp2
= false ;
10391 PyObject
* obj0
= 0 ;
10392 PyObject
* obj1
= 0 ;
10393 char * kwnames
[] = {
10394 (char *) "self",(char *) "text", NULL
10397 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10398 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10399 if (!SWIG_IsOK(res1
)) {
10400 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10402 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10404 arg2
= wxString_in_helper(obj1
);
10405 if (arg2
== NULL
) SWIG_fail
;
10409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10410 result
= (int)(arg1
)->ReplaceTarget((wxString
const &)*arg2
);
10411 wxPyEndAllowThreads(__tstate
);
10412 if (PyErr_Occurred()) SWIG_fail
;
10414 resultobj
= SWIG_From_int(static_cast< int >(result
));
10429 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReplaceTargetRE(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10430 PyObject
*resultobj
= 0;
10431 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10432 wxString
*arg2
= 0 ;
10436 bool temp2
= false ;
10437 PyObject
* obj0
= 0 ;
10438 PyObject
* obj1
= 0 ;
10439 char * kwnames
[] = {
10440 (char *) "self",(char *) "text", NULL
10443 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReplaceTargetRE",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10444 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10445 if (!SWIG_IsOK(res1
)) {
10446 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReplaceTargetRE" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10448 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10450 arg2
= wxString_in_helper(obj1
);
10451 if (arg2
== NULL
) SWIG_fail
;
10455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10456 result
= (int)(arg1
)->ReplaceTargetRE((wxString
const &)*arg2
);
10457 wxPyEndAllowThreads(__tstate
);
10458 if (PyErr_Occurred()) SWIG_fail
;
10460 resultobj
= SWIG_From_int(static_cast< int >(result
));
10475 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchInTarget(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10476 PyObject
*resultobj
= 0;
10477 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10478 wxString
*arg2
= 0 ;
10482 bool temp2
= false ;
10483 PyObject
* obj0
= 0 ;
10484 PyObject
* obj1
= 0 ;
10485 char * kwnames
[] = {
10486 (char *) "self",(char *) "text", NULL
10489 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SearchInTarget",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10490 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10491 if (!SWIG_IsOK(res1
)) {
10492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchInTarget" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10494 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10496 arg2
= wxString_in_helper(obj1
);
10497 if (arg2
== NULL
) SWIG_fail
;
10501 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10502 result
= (int)(arg1
)->SearchInTarget((wxString
const &)*arg2
);
10503 wxPyEndAllowThreads(__tstate
);
10504 if (PyErr_Occurred()) SWIG_fail
;
10506 resultobj
= SWIG_From_int(static_cast< int >(result
));
10521 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10522 PyObject
*resultobj
= 0;
10523 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10529 PyObject
* obj0
= 0 ;
10530 PyObject
* obj1
= 0 ;
10531 char * kwnames
[] = {
10532 (char *) "self",(char *) "flags", NULL
10535 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSearchFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10536 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10537 if (!SWIG_IsOK(res1
)) {
10538 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10540 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10541 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10542 if (!SWIG_IsOK(ecode2
)) {
10543 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSearchFlags" "', expected argument " "2"" of type '" "int""'");
10545 arg2
= static_cast< int >(val2
);
10547 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10548 (arg1
)->SetSearchFlags(arg2
);
10549 wxPyEndAllowThreads(__tstate
);
10550 if (PyErr_Occurred()) SWIG_fail
;
10552 resultobj
= SWIG_Py_Void();
10559 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSearchFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10560 PyObject
*resultobj
= 0;
10561 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10565 PyObject
*swig_obj
[1] ;
10567 if (!args
) SWIG_fail
;
10568 swig_obj
[0] = args
;
10569 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10570 if (!SWIG_IsOK(res1
)) {
10571 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSearchFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10573 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10575 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10576 result
= (int)(arg1
)->GetSearchFlags();
10577 wxPyEndAllowThreads(__tstate
);
10578 if (PyErr_Occurred()) SWIG_fail
;
10580 resultobj
= SWIG_From_int(static_cast< int >(result
));
10587 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipShow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10588 PyObject
*resultobj
= 0;
10589 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10591 wxString
*arg3
= 0 ;
10596 bool temp3
= false ;
10597 PyObject
* obj0
= 0 ;
10598 PyObject
* obj1
= 0 ;
10599 PyObject
* obj2
= 0 ;
10600 char * kwnames
[] = {
10601 (char *) "self",(char *) "pos",(char *) "definition", NULL
10604 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipShow",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10605 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10606 if (!SWIG_IsOK(res1
)) {
10607 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10609 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10610 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10611 if (!SWIG_IsOK(ecode2
)) {
10612 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipShow" "', expected argument " "2"" of type '" "int""'");
10614 arg2
= static_cast< int >(val2
);
10616 arg3
= wxString_in_helper(obj2
);
10617 if (arg3
== NULL
) SWIG_fail
;
10621 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10622 (arg1
)->CallTipShow(arg2
,(wxString
const &)*arg3
);
10623 wxPyEndAllowThreads(__tstate
);
10624 if (PyErr_Occurred()) SWIG_fail
;
10626 resultobj
= SWIG_Py_Void();
10641 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipCancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10642 PyObject
*resultobj
= 0;
10643 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10646 PyObject
*swig_obj
[1] ;
10648 if (!args
) SWIG_fail
;
10649 swig_obj
[0] = args
;
10650 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10651 if (!SWIG_IsOK(res1
)) {
10652 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipCancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10654 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10656 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10657 (arg1
)->CallTipCancel();
10658 wxPyEndAllowThreads(__tstate
);
10659 if (PyErr_Occurred()) SWIG_fail
;
10661 resultobj
= SWIG_Py_Void();
10668 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipActive(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10669 PyObject
*resultobj
= 0;
10670 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10674 PyObject
*swig_obj
[1] ;
10676 if (!args
) SWIG_fail
;
10677 swig_obj
[0] = args
;
10678 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10679 if (!SWIG_IsOK(res1
)) {
10680 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipActive" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10682 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10684 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10685 result
= (bool)(arg1
)->CallTipActive();
10686 wxPyEndAllowThreads(__tstate
);
10687 if (PyErr_Occurred()) SWIG_fail
;
10690 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
10698 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipPosAtStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
10699 PyObject
*resultobj
= 0;
10700 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10704 PyObject
*swig_obj
[1] ;
10706 if (!args
) SWIG_fail
;
10707 swig_obj
[0] = args
;
10708 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10709 if (!SWIG_IsOK(res1
)) {
10710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipPosAtStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10712 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10714 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10715 result
= (int)(arg1
)->CallTipPosAtStart();
10716 wxPyEndAllowThreads(__tstate
);
10717 if (PyErr_Occurred()) SWIG_fail
;
10719 resultobj
= SWIG_From_int(static_cast< int >(result
));
10726 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10727 PyObject
*resultobj
= 0;
10728 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10737 PyObject
* obj0
= 0 ;
10738 PyObject
* obj1
= 0 ;
10739 PyObject
* obj2
= 0 ;
10740 char * kwnames
[] = {
10741 (char *) "self",(char *) "start",(char *) "end", NULL
10744 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CallTipSetHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
10745 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10746 if (!SWIG_IsOK(res1
)) {
10747 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10749 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10750 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10751 if (!SWIG_IsOK(ecode2
)) {
10752 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "2"" of type '" "int""'");
10754 arg2
= static_cast< int >(val2
);
10755 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
10756 if (!SWIG_IsOK(ecode3
)) {
10757 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CallTipSetHighlight" "', expected argument " "3"" of type '" "int""'");
10759 arg3
= static_cast< int >(val3
);
10761 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10762 (arg1
)->CallTipSetHighlight(arg2
,arg3
);
10763 wxPyEndAllowThreads(__tstate
);
10764 if (PyErr_Occurred()) SWIG_fail
;
10766 resultobj
= SWIG_Py_Void();
10773 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10774 PyObject
*resultobj
= 0;
10775 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10776 wxColour
*arg2
= 0 ;
10780 PyObject
* obj0
= 0 ;
10781 PyObject
* obj1
= 0 ;
10782 char * kwnames
[] = {
10783 (char *) "self",(char *) "back", NULL
10786 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetBackground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10787 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10788 if (!SWIG_IsOK(res1
)) {
10789 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10791 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10794 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10797 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10798 (arg1
)->CallTipSetBackground((wxColour
const &)*arg2
);
10799 wxPyEndAllowThreads(__tstate
);
10800 if (PyErr_Occurred()) SWIG_fail
;
10802 resultobj
= SWIG_Py_Void();
10809 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10810 PyObject
*resultobj
= 0;
10811 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10812 wxColour
*arg2
= 0 ;
10816 PyObject
* obj0
= 0 ;
10817 PyObject
* obj1
= 0 ;
10818 char * kwnames
[] = {
10819 (char *) "self",(char *) "fore", NULL
10822 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForeground",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10823 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10824 if (!SWIG_IsOK(res1
)) {
10825 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10827 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10830 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10834 (arg1
)->CallTipSetForeground((wxColour
const &)*arg2
);
10835 wxPyEndAllowThreads(__tstate
);
10836 if (PyErr_Occurred()) SWIG_fail
;
10838 resultobj
= SWIG_Py_Void();
10845 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CallTipSetForegroundHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10846 PyObject
*resultobj
= 0;
10847 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10848 wxColour
*arg2
= 0 ;
10852 PyObject
* obj0
= 0 ;
10853 PyObject
* obj1
= 0 ;
10854 char * kwnames
[] = {
10855 (char *) "self",(char *) "fore", NULL
10858 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CallTipSetForegroundHighlight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10859 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10860 if (!SWIG_IsOK(res1
)) {
10861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CallTipSetForegroundHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10863 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10866 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
10869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10870 (arg1
)->CallTipSetForegroundHighlight((wxColour
const &)*arg2
);
10871 wxPyEndAllowThreads(__tstate
);
10872 if (PyErr_Occurred()) SWIG_fail
;
10874 resultobj
= SWIG_Py_Void();
10881 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VisibleFromDocLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10882 PyObject
*resultobj
= 0;
10883 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10890 PyObject
* obj0
= 0 ;
10891 PyObject
* obj1
= 0 ;
10892 char * kwnames
[] = {
10893 (char *) "self",(char *) "line", NULL
10896 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_VisibleFromDocLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10897 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10898 if (!SWIG_IsOK(res1
)) {
10899 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10901 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10902 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10903 if (!SWIG_IsOK(ecode2
)) {
10904 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_VisibleFromDocLine" "', expected argument " "2"" of type '" "int""'");
10906 arg2
= static_cast< int >(val2
);
10908 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10909 result
= (int)(arg1
)->VisibleFromDocLine(arg2
);
10910 wxPyEndAllowThreads(__tstate
);
10911 if (PyErr_Occurred()) SWIG_fail
;
10913 resultobj
= SWIG_From_int(static_cast< int >(result
));
10920 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocLineFromVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10921 PyObject
*resultobj
= 0;
10922 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10929 PyObject
* obj0
= 0 ;
10930 PyObject
* obj1
= 0 ;
10931 char * kwnames
[] = {
10932 (char *) "self",(char *) "lineDisplay", NULL
10935 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_DocLineFromVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10936 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10937 if (!SWIG_IsOK(res1
)) {
10938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10940 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10941 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10942 if (!SWIG_IsOK(ecode2
)) {
10943 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DocLineFromVisible" "', expected argument " "2"" of type '" "int""'");
10945 arg2
= static_cast< int >(val2
);
10947 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10948 result
= (int)(arg1
)->DocLineFromVisible(arg2
);
10949 wxPyEndAllowThreads(__tstate
);
10950 if (PyErr_Occurred()) SWIG_fail
;
10952 resultobj
= SWIG_From_int(static_cast< int >(result
));
10959 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WrapCount(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10960 PyObject
*resultobj
= 0;
10961 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
10968 PyObject
* obj0
= 0 ;
10969 PyObject
* obj1
= 0 ;
10970 char * kwnames
[] = {
10971 (char *) "self",(char *) "line", NULL
10974 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_WrapCount",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
10975 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
10976 if (!SWIG_IsOK(res1
)) {
10977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
10979 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
10980 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
10981 if (!SWIG_IsOK(ecode2
)) {
10982 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WrapCount" "', expected argument " "2"" of type '" "int""'");
10984 arg2
= static_cast< int >(val2
);
10986 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
10987 result
= (int)(arg1
)->WrapCount(arg2
);
10988 wxPyEndAllowThreads(__tstate
);
10989 if (PyErr_Occurred()) SWIG_fail
;
10991 resultobj
= SWIG_From_int(static_cast< int >(result
));
10998 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
10999 PyObject
*resultobj
= 0;
11000 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11009 PyObject
* obj0
= 0 ;
11010 PyObject
* obj1
= 0 ;
11011 PyObject
* obj2
= 0 ;
11012 char * kwnames
[] = {
11013 (char *) "self",(char *) "line",(char *) "level", NULL
11016 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldLevel",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11017 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11018 if (!SWIG_IsOK(res1
)) {
11019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11021 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11022 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11023 if (!SWIG_IsOK(ecode2
)) {
11024 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11026 arg2
= static_cast< int >(val2
);
11027 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11028 if (!SWIG_IsOK(ecode3
)) {
11029 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldLevel" "', expected argument " "3"" of type '" "int""'");
11031 arg3
= static_cast< int >(val3
);
11033 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11034 (arg1
)->SetFoldLevel(arg2
,arg3
);
11035 wxPyEndAllowThreads(__tstate
);
11036 if (PyErr_Occurred()) SWIG_fail
;
11038 resultobj
= SWIG_Py_Void();
11045 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldLevel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11046 PyObject
*resultobj
= 0;
11047 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11054 PyObject
* obj0
= 0 ;
11055 PyObject
* obj1
= 0 ;
11056 char * kwnames
[] = {
11057 (char *) "self",(char *) "line", NULL
11060 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldLevel",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11061 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11062 if (!SWIG_IsOK(res1
)) {
11063 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11065 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11066 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11067 if (!SWIG_IsOK(ecode2
)) {
11068 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldLevel" "', expected argument " "2"" of type '" "int""'");
11070 arg2
= static_cast< int >(val2
);
11072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11073 result
= (int)(arg1
)->GetFoldLevel(arg2
);
11074 wxPyEndAllowThreads(__tstate
);
11075 if (PyErr_Occurred()) SWIG_fail
;
11077 resultobj
= SWIG_From_int(static_cast< int >(result
));
11084 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastChild(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11085 PyObject
*resultobj
= 0;
11086 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11096 PyObject
* obj0
= 0 ;
11097 PyObject
* obj1
= 0 ;
11098 PyObject
* obj2
= 0 ;
11099 char * kwnames
[] = {
11100 (char *) "self",(char *) "line",(char *) "level", NULL
11103 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetLastChild",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11104 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11105 if (!SWIG_IsOK(res1
)) {
11106 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11108 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11109 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11110 if (!SWIG_IsOK(ecode2
)) {
11111 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "2"" of type '" "int""'");
11113 arg2
= static_cast< int >(val2
);
11114 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11115 if (!SWIG_IsOK(ecode3
)) {
11116 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetLastChild" "', expected argument " "3"" of type '" "int""'");
11118 arg3
= static_cast< int >(val3
);
11120 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11121 result
= (int)(arg1
)->GetLastChild(arg2
,arg3
);
11122 wxPyEndAllowThreads(__tstate
);
11123 if (PyErr_Occurred()) SWIG_fail
;
11125 resultobj
= SWIG_From_int(static_cast< int >(result
));
11132 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldParent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11133 PyObject
*resultobj
= 0;
11134 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11141 PyObject
* obj0
= 0 ;
11142 PyObject
* obj1
= 0 ;
11143 char * kwnames
[] = {
11144 (char *) "self",(char *) "line", NULL
11147 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldParent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11148 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11149 if (!SWIG_IsOK(res1
)) {
11150 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11152 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11153 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11154 if (!SWIG_IsOK(ecode2
)) {
11155 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldParent" "', expected argument " "2"" of type '" "int""'");
11157 arg2
= static_cast< int >(val2
);
11159 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11160 result
= (int)(arg1
)->GetFoldParent(arg2
);
11161 wxPyEndAllowThreads(__tstate
);
11162 if (PyErr_Occurred()) SWIG_fail
;
11164 resultobj
= SWIG_From_int(static_cast< int >(result
));
11171 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ShowLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11172 PyObject
*resultobj
= 0;
11173 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11182 PyObject
* obj0
= 0 ;
11183 PyObject
* obj1
= 0 ;
11184 PyObject
* obj2
= 0 ;
11185 char * kwnames
[] = {
11186 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11189 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_ShowLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11190 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11191 if (!SWIG_IsOK(res1
)) {
11192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11194 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11195 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11196 if (!SWIG_IsOK(ecode2
)) {
11197 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "2"" of type '" "int""'");
11199 arg2
= static_cast< int >(val2
);
11200 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11201 if (!SWIG_IsOK(ecode3
)) {
11202 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_ShowLines" "', expected argument " "3"" of type '" "int""'");
11204 arg3
= static_cast< int >(val3
);
11206 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11207 (arg1
)->ShowLines(arg2
,arg3
);
11208 wxPyEndAllowThreads(__tstate
);
11209 if (PyErr_Occurred()) SWIG_fail
;
11211 resultobj
= SWIG_Py_Void();
11218 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HideLines(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11219 PyObject
*resultobj
= 0;
11220 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11229 PyObject
* obj0
= 0 ;
11230 PyObject
* obj1
= 0 ;
11231 PyObject
* obj2
= 0 ;
11232 char * kwnames
[] = {
11233 (char *) "self",(char *) "lineStart",(char *) "lineEnd", NULL
11236 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_HideLines",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11237 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11238 if (!SWIG_IsOK(res1
)) {
11239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11241 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11242 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11243 if (!SWIG_IsOK(ecode2
)) {
11244 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "2"" of type '" "int""'");
11246 arg2
= static_cast< int >(val2
);
11247 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
11248 if (!SWIG_IsOK(ecode3
)) {
11249 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_HideLines" "', expected argument " "3"" of type '" "int""'");
11251 arg3
= static_cast< int >(val3
);
11253 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11254 (arg1
)->HideLines(arg2
,arg3
);
11255 wxPyEndAllowThreads(__tstate
);
11256 if (PyErr_Occurred()) SWIG_fail
;
11258 resultobj
= SWIG_Py_Void();
11265 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11266 PyObject
*resultobj
= 0;
11267 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11274 PyObject
* obj0
= 0 ;
11275 PyObject
* obj1
= 0 ;
11276 char * kwnames
[] = {
11277 (char *) "self",(char *) "line", NULL
11280 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11281 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11282 if (!SWIG_IsOK(res1
)) {
11283 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11285 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11286 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11287 if (!SWIG_IsOK(ecode2
)) {
11288 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineVisible" "', expected argument " "2"" of type '" "int""'");
11290 arg2
= static_cast< int >(val2
);
11292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11293 result
= (bool)(arg1
)->GetLineVisible(arg2
);
11294 wxPyEndAllowThreads(__tstate
);
11295 if (PyErr_Occurred()) SWIG_fail
;
11298 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11306 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11307 PyObject
*resultobj
= 0;
11308 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11317 PyObject
* obj0
= 0 ;
11318 PyObject
* obj1
= 0 ;
11319 PyObject
* obj2
= 0 ;
11320 char * kwnames
[] = {
11321 (char *) "self",(char *) "line",(char *) "expanded", NULL
11324 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldExpanded",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11325 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11326 if (!SWIG_IsOK(res1
)) {
11327 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11329 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11330 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11331 if (!SWIG_IsOK(ecode2
)) {
11332 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11334 arg2
= static_cast< int >(val2
);
11335 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11336 if (!SWIG_IsOK(ecode3
)) {
11337 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetFoldExpanded" "', expected argument " "3"" of type '" "bool""'");
11339 arg3
= static_cast< bool >(val3
);
11341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11342 (arg1
)->SetFoldExpanded(arg2
,arg3
);
11343 wxPyEndAllowThreads(__tstate
);
11344 if (PyErr_Occurred()) SWIG_fail
;
11346 resultobj
= SWIG_Py_Void();
11353 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetFoldExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11354 PyObject
*resultobj
= 0;
11355 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11362 PyObject
* obj0
= 0 ;
11363 PyObject
* obj1
= 0 ;
11364 char * kwnames
[] = {
11365 (char *) "self",(char *) "line", NULL
11368 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetFoldExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11369 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11370 if (!SWIG_IsOK(res1
)) {
11371 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11373 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11374 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11375 if (!SWIG_IsOK(ecode2
)) {
11376 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetFoldExpanded" "', expected argument " "2"" of type '" "int""'");
11378 arg2
= static_cast< int >(val2
);
11380 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11381 result
= (bool)(arg1
)->GetFoldExpanded(arg2
);
11382 wxPyEndAllowThreads(__tstate
);
11383 if (PyErr_Occurred()) SWIG_fail
;
11386 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11394 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleFold(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11395 PyObject
*resultobj
= 0;
11396 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11402 PyObject
* obj0
= 0 ;
11403 PyObject
* obj1
= 0 ;
11404 char * kwnames
[] = {
11405 (char *) "self",(char *) "line", NULL
11408 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ToggleFold",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11409 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11410 if (!SWIG_IsOK(res1
)) {
11411 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11413 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11414 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11415 if (!SWIG_IsOK(ecode2
)) {
11416 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ToggleFold" "', expected argument " "2"" of type '" "int""'");
11418 arg2
= static_cast< int >(val2
);
11420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11421 (arg1
)->ToggleFold(arg2
);
11422 wxPyEndAllowThreads(__tstate
);
11423 if (PyErr_Occurred()) SWIG_fail
;
11425 resultobj
= SWIG_Py_Void();
11432 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisible(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11433 PyObject
*resultobj
= 0;
11434 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11440 PyObject
* obj0
= 0 ;
11441 PyObject
* obj1
= 0 ;
11442 char * kwnames
[] = {
11443 (char *) "self",(char *) "line", NULL
11446 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisible",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11447 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11448 if (!SWIG_IsOK(res1
)) {
11449 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11451 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11452 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11453 if (!SWIG_IsOK(ecode2
)) {
11454 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisible" "', expected argument " "2"" of type '" "int""'");
11456 arg2
= static_cast< int >(val2
);
11458 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11459 (arg1
)->EnsureVisible(arg2
);
11460 wxPyEndAllowThreads(__tstate
);
11461 if (PyErr_Occurred()) SWIG_fail
;
11463 resultobj
= SWIG_Py_Void();
11470 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11471 PyObject
*resultobj
= 0;
11472 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11478 PyObject
* obj0
= 0 ;
11479 PyObject
* obj1
= 0 ;
11480 char * kwnames
[] = {
11481 (char *) "self",(char *) "flags", NULL
11484 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetFoldFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11485 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11486 if (!SWIG_IsOK(res1
)) {
11487 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11489 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11490 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11491 if (!SWIG_IsOK(ecode2
)) {
11492 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldFlags" "', expected argument " "2"" of type '" "int""'");
11494 arg2
= static_cast< int >(val2
);
11496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11497 (arg1
)->SetFoldFlags(arg2
);
11498 wxPyEndAllowThreads(__tstate
);
11499 if (PyErr_Occurred()) SWIG_fail
;
11501 resultobj
= SWIG_Py_Void();
11508 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11509 PyObject
*resultobj
= 0;
11510 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11516 PyObject
* obj0
= 0 ;
11517 PyObject
* obj1
= 0 ;
11518 char * kwnames
[] = {
11519 (char *) "self",(char *) "line", NULL
11522 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_EnsureVisibleEnforcePolicy",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11523 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11524 if (!SWIG_IsOK(res1
)) {
11525 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11527 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11528 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11529 if (!SWIG_IsOK(ecode2
)) {
11530 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_EnsureVisibleEnforcePolicy" "', expected argument " "2"" of type '" "int""'");
11532 arg2
= static_cast< int >(val2
);
11534 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11535 (arg1
)->EnsureVisibleEnforcePolicy(arg2
);
11536 wxPyEndAllowThreads(__tstate
);
11537 if (PyErr_Occurred()) SWIG_fail
;
11539 resultobj
= SWIG_Py_Void();
11546 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11547 PyObject
*resultobj
= 0;
11548 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11554 PyObject
* obj0
= 0 ;
11555 PyObject
* obj1
= 0 ;
11556 char * kwnames
[] = {
11557 (char *) "self",(char *) "tabIndents", NULL
11560 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTabIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11561 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11562 if (!SWIG_IsOK(res1
)) {
11563 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11565 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11566 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11567 if (!SWIG_IsOK(ecode2
)) {
11568 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTabIndents" "', expected argument " "2"" of type '" "bool""'");
11570 arg2
= static_cast< bool >(val2
);
11572 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11573 (arg1
)->SetTabIndents(arg2
);
11574 wxPyEndAllowThreads(__tstate
);
11575 if (PyErr_Occurred()) SWIG_fail
;
11577 resultobj
= SWIG_Py_Void();
11584 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTabIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11585 PyObject
*resultobj
= 0;
11586 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11590 PyObject
*swig_obj
[1] ;
11592 if (!args
) SWIG_fail
;
11593 swig_obj
[0] = args
;
11594 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11595 if (!SWIG_IsOK(res1
)) {
11596 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTabIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11598 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11600 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11601 result
= (bool)(arg1
)->GetTabIndents();
11602 wxPyEndAllowThreads(__tstate
);
11603 if (PyErr_Occurred()) SWIG_fail
;
11606 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11614 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11615 PyObject
*resultobj
= 0;
11616 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11622 PyObject
* obj0
= 0 ;
11623 PyObject
* obj1
= 0 ;
11624 char * kwnames
[] = {
11625 (char *) "self",(char *) "bsUnIndents", NULL
11628 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetBackSpaceUnIndents",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11629 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11630 if (!SWIG_IsOK(res1
)) {
11631 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11633 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11634 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
11635 if (!SWIG_IsOK(ecode2
)) {
11636 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetBackSpaceUnIndents" "', expected argument " "2"" of type '" "bool""'");
11638 arg2
= static_cast< bool >(val2
);
11640 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11641 (arg1
)->SetBackSpaceUnIndents(arg2
);
11642 wxPyEndAllowThreads(__tstate
);
11643 if (PyErr_Occurred()) SWIG_fail
;
11645 resultobj
= SWIG_Py_Void();
11652 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetBackSpaceUnIndents(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11653 PyObject
*resultobj
= 0;
11654 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11658 PyObject
*swig_obj
[1] ;
11660 if (!args
) SWIG_fail
;
11661 swig_obj
[0] = args
;
11662 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11663 if (!SWIG_IsOK(res1
)) {
11664 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetBackSpaceUnIndents" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11666 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11669 result
= (bool)(arg1
)->GetBackSpaceUnIndents();
11670 wxPyEndAllowThreads(__tstate
);
11671 if (PyErr_Occurred()) SWIG_fail
;
11674 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
11682 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11683 PyObject
*resultobj
= 0;
11684 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11690 PyObject
* obj0
= 0 ;
11691 PyObject
* obj1
= 0 ;
11692 char * kwnames
[] = {
11693 (char *) "self",(char *) "periodMilliseconds", NULL
11696 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDwellTime",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11697 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11698 if (!SWIG_IsOK(res1
)) {
11699 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11701 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11702 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11703 if (!SWIG_IsOK(ecode2
)) {
11704 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDwellTime" "', expected argument " "2"" of type '" "int""'");
11706 arg2
= static_cast< int >(val2
);
11708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11709 (arg1
)->SetMouseDwellTime(arg2
);
11710 wxPyEndAllowThreads(__tstate
);
11711 if (PyErr_Occurred()) SWIG_fail
;
11713 resultobj
= SWIG_Py_Void();
11720 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDwellTime(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11721 PyObject
*resultobj
= 0;
11722 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11726 PyObject
*swig_obj
[1] ;
11728 if (!args
) SWIG_fail
;
11729 swig_obj
[0] = args
;
11730 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11731 if (!SWIG_IsOK(res1
)) {
11732 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDwellTime" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11734 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11736 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11737 result
= (int)(arg1
)->GetMouseDwellTime();
11738 wxPyEndAllowThreads(__tstate
);
11739 if (PyErr_Occurred()) SWIG_fail
;
11741 resultobj
= SWIG_From_int(static_cast< int >(result
));
11748 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11749 PyObject
*resultobj
= 0;
11750 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11760 PyObject
* obj0
= 0 ;
11761 PyObject
* obj1
= 0 ;
11762 PyObject
* obj2
= 0 ;
11763 char * kwnames
[] = {
11764 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11767 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordStartPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11768 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11769 if (!SWIG_IsOK(res1
)) {
11770 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11772 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11773 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11774 if (!SWIG_IsOK(ecode2
)) {
11775 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "2"" of type '" "int""'");
11777 arg2
= static_cast< int >(val2
);
11778 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11779 if (!SWIG_IsOK(ecode3
)) {
11780 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordStartPosition" "', expected argument " "3"" of type '" "bool""'");
11782 arg3
= static_cast< bool >(val3
);
11784 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11785 result
= (int)(arg1
)->WordStartPosition(arg2
,arg3
);
11786 wxPyEndAllowThreads(__tstate
);
11787 if (PyErr_Occurred()) SWIG_fail
;
11789 resultobj
= SWIG_From_int(static_cast< int >(result
));
11796 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11797 PyObject
*resultobj
= 0;
11798 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11808 PyObject
* obj0
= 0 ;
11809 PyObject
* obj1
= 0 ;
11810 PyObject
* obj2
= 0 ;
11811 char * kwnames
[] = {
11812 (char *) "self",(char *) "pos",(char *) "onlyWordCharacters", NULL
11815 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_WordEndPosition",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
11816 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11817 if (!SWIG_IsOK(res1
)) {
11818 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11820 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11821 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11822 if (!SWIG_IsOK(ecode2
)) {
11823 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "2"" of type '" "int""'");
11825 arg2
= static_cast< int >(val2
);
11826 ecode3
= SWIG_AsVal_bool(obj2
, &val3
);
11827 if (!SWIG_IsOK(ecode3
)) {
11828 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_WordEndPosition" "', expected argument " "3"" of type '" "bool""'");
11830 arg3
= static_cast< bool >(val3
);
11832 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11833 result
= (int)(arg1
)->WordEndPosition(arg2
,arg3
);
11834 wxPyEndAllowThreads(__tstate
);
11835 if (PyErr_Occurred()) SWIG_fail
;
11837 resultobj
= SWIG_From_int(static_cast< int >(result
));
11844 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11845 PyObject
*resultobj
= 0;
11846 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11852 PyObject
* obj0
= 0 ;
11853 PyObject
* obj1
= 0 ;
11854 char * kwnames
[] = {
11855 (char *) "self",(char *) "mode", NULL
11858 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11859 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11860 if (!SWIG_IsOK(res1
)) {
11861 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11863 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11864 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11865 if (!SWIG_IsOK(ecode2
)) {
11866 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapMode" "', expected argument " "2"" of type '" "int""'");
11868 arg2
= static_cast< int >(val2
);
11870 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11871 (arg1
)->SetWrapMode(arg2
);
11872 wxPyEndAllowThreads(__tstate
);
11873 if (PyErr_Occurred()) SWIG_fail
;
11875 resultobj
= SWIG_Py_Void();
11882 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11883 PyObject
*resultobj
= 0;
11884 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11888 PyObject
*swig_obj
[1] ;
11890 if (!args
) SWIG_fail
;
11891 swig_obj
[0] = args
;
11892 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11893 if (!SWIG_IsOK(res1
)) {
11894 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11896 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11898 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11899 result
= (int)(arg1
)->GetWrapMode();
11900 wxPyEndAllowThreads(__tstate
);
11901 if (PyErr_Occurred()) SWIG_fail
;
11903 resultobj
= SWIG_From_int(static_cast< int >(result
));
11910 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11911 PyObject
*resultobj
= 0;
11912 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11918 PyObject
* obj0
= 0 ;
11919 PyObject
* obj1
= 0 ;
11920 char * kwnames
[] = {
11921 (char *) "self",(char *) "wrapVisualFlags", NULL
11924 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlags",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11925 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11926 if (!SWIG_IsOK(res1
)) {
11927 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11929 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11930 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11931 if (!SWIG_IsOK(ecode2
)) {
11932 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlags" "', expected argument " "2"" of type '" "int""'");
11934 arg2
= static_cast< int >(val2
);
11936 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11937 (arg1
)->SetWrapVisualFlags(arg2
);
11938 wxPyEndAllowThreads(__tstate
);
11939 if (PyErr_Occurred()) SWIG_fail
;
11941 resultobj
= SWIG_Py_Void();
11948 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlags(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
11949 PyObject
*resultobj
= 0;
11950 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11954 PyObject
*swig_obj
[1] ;
11956 if (!args
) SWIG_fail
;
11957 swig_obj
[0] = args
;
11958 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11959 if (!SWIG_IsOK(res1
)) {
11960 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlags" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11962 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11964 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
11965 result
= (int)(arg1
)->GetWrapVisualFlags();
11966 wxPyEndAllowThreads(__tstate
);
11967 if (PyErr_Occurred()) SWIG_fail
;
11969 resultobj
= SWIG_From_int(static_cast< int >(result
));
11976 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
11977 PyObject
*resultobj
= 0;
11978 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
11984 PyObject
* obj0
= 0 ;
11985 PyObject
* obj1
= 0 ;
11986 char * kwnames
[] = {
11987 (char *) "self",(char *) "wrapVisualFlagsLocation", NULL
11990 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapVisualFlagsLocation",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
11991 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
11992 if (!SWIG_IsOK(res1
)) {
11993 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
11995 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
11996 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
11997 if (!SWIG_IsOK(ecode2
)) {
11998 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapVisualFlagsLocation" "', expected argument " "2"" of type '" "int""'");
12000 arg2
= static_cast< int >(val2
);
12002 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12003 (arg1
)->SetWrapVisualFlagsLocation(arg2
);
12004 wxPyEndAllowThreads(__tstate
);
12005 if (PyErr_Occurred()) SWIG_fail
;
12007 resultobj
= SWIG_Py_Void();
12014 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12015 PyObject
*resultobj
= 0;
12016 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12020 PyObject
*swig_obj
[1] ;
12022 if (!args
) SWIG_fail
;
12023 swig_obj
[0] = args
;
12024 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12025 if (!SWIG_IsOK(res1
)) {
12026 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapVisualFlagsLocation" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12028 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12030 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12031 result
= (int)(arg1
)->GetWrapVisualFlagsLocation();
12032 wxPyEndAllowThreads(__tstate
);
12033 if (PyErr_Occurred()) SWIG_fail
;
12035 resultobj
= SWIG_From_int(static_cast< int >(result
));
12042 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12043 PyObject
*resultobj
= 0;
12044 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12050 PyObject
* obj0
= 0 ;
12051 PyObject
* obj1
= 0 ;
12052 char * kwnames
[] = {
12053 (char *) "self",(char *) "indent", NULL
12056 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWrapStartIndent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12057 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12058 if (!SWIG_IsOK(res1
)) {
12059 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12061 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12062 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12063 if (!SWIG_IsOK(ecode2
)) {
12064 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetWrapStartIndent" "', expected argument " "2"" of type '" "int""'");
12066 arg2
= static_cast< int >(val2
);
12068 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12069 (arg1
)->SetWrapStartIndent(arg2
);
12070 wxPyEndAllowThreads(__tstate
);
12071 if (PyErr_Occurred()) SWIG_fail
;
12073 resultobj
= SWIG_Py_Void();
12080 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetWrapStartIndent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12081 PyObject
*resultobj
= 0;
12082 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12086 PyObject
*swig_obj
[1] ;
12088 if (!args
) SWIG_fail
;
12089 swig_obj
[0] = args
;
12090 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12091 if (!SWIG_IsOK(res1
)) {
12092 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetWrapStartIndent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12094 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12096 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12097 result
= (int)(arg1
)->GetWrapStartIndent();
12098 wxPyEndAllowThreads(__tstate
);
12099 if (PyErr_Occurred()) SWIG_fail
;
12101 resultobj
= SWIG_From_int(static_cast< int >(result
));
12108 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12109 PyObject
*resultobj
= 0;
12110 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12116 PyObject
* obj0
= 0 ;
12117 PyObject
* obj1
= 0 ;
12118 char * kwnames
[] = {
12119 (char *) "self",(char *) "mode", NULL
12122 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLayoutCache",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12123 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12124 if (!SWIG_IsOK(res1
)) {
12125 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12127 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12128 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12129 if (!SWIG_IsOK(ecode2
)) {
12130 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLayoutCache" "', expected argument " "2"" of type '" "int""'");
12132 arg2
= static_cast< int >(val2
);
12134 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12135 (arg1
)->SetLayoutCache(arg2
);
12136 wxPyEndAllowThreads(__tstate
);
12137 if (PyErr_Occurred()) SWIG_fail
;
12139 resultobj
= SWIG_Py_Void();
12146 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLayoutCache(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12147 PyObject
*resultobj
= 0;
12148 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12152 PyObject
*swig_obj
[1] ;
12154 if (!args
) SWIG_fail
;
12155 swig_obj
[0] = args
;
12156 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12157 if (!SWIG_IsOK(res1
)) {
12158 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLayoutCache" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12160 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12162 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12163 result
= (int)(arg1
)->GetLayoutCache();
12164 wxPyEndAllowThreads(__tstate
);
12165 if (PyErr_Occurred()) SWIG_fail
;
12167 resultobj
= SWIG_From_int(static_cast< int >(result
));
12174 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12175 PyObject
*resultobj
= 0;
12176 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12182 PyObject
* obj0
= 0 ;
12183 PyObject
* obj1
= 0 ;
12184 char * kwnames
[] = {
12185 (char *) "self",(char *) "pixelWidth", NULL
12188 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetScrollWidth",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12189 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12190 if (!SWIG_IsOK(res1
)) {
12191 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12193 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12194 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12195 if (!SWIG_IsOK(ecode2
)) {
12196 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetScrollWidth" "', expected argument " "2"" of type '" "int""'");
12198 arg2
= static_cast< int >(val2
);
12200 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12201 (arg1
)->SetScrollWidth(arg2
);
12202 wxPyEndAllowThreads(__tstate
);
12203 if (PyErr_Occurred()) SWIG_fail
;
12205 resultobj
= SWIG_Py_Void();
12212 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetScrollWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12213 PyObject
*resultobj
= 0;
12214 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12218 PyObject
*swig_obj
[1] ;
12220 if (!args
) SWIG_fail
;
12221 swig_obj
[0] = args
;
12222 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12223 if (!SWIG_IsOK(res1
)) {
12224 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetScrollWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12226 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12228 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12229 result
= (int)(arg1
)->GetScrollWidth();
12230 wxPyEndAllowThreads(__tstate
);
12231 if (PyErr_Occurred()) SWIG_fail
;
12233 resultobj
= SWIG_From_int(static_cast< int >(result
));
12240 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextWidth(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12241 PyObject
*resultobj
= 0;
12242 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12244 wxString
*arg3
= 0 ;
12250 bool temp3
= false ;
12251 PyObject
* obj0
= 0 ;
12252 PyObject
* obj1
= 0 ;
12253 PyObject
* obj2
= 0 ;
12254 char * kwnames
[] = {
12255 (char *) "self",(char *) "style",(char *) "text", NULL
12258 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_TextWidth",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12259 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12260 if (!SWIG_IsOK(res1
)) {
12261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12263 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12264 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12265 if (!SWIG_IsOK(ecode2
)) {
12266 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextWidth" "', expected argument " "2"" of type '" "int""'");
12268 arg2
= static_cast< int >(val2
);
12270 arg3
= wxString_in_helper(obj2
);
12271 if (arg3
== NULL
) SWIG_fail
;
12275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12276 result
= (int)(arg1
)->TextWidth(arg2
,(wxString
const &)*arg3
);
12277 wxPyEndAllowThreads(__tstate
);
12278 if (PyErr_Occurred()) SWIG_fail
;
12280 resultobj
= SWIG_From_int(static_cast< int >(result
));
12295 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12296 PyObject
*resultobj
= 0;
12297 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12303 PyObject
* obj0
= 0 ;
12304 PyObject
* obj1
= 0 ;
12305 char * kwnames
[] = {
12306 (char *) "self",(char *) "endAtLastLine", NULL
12309 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEndAtLastLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12310 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12311 if (!SWIG_IsOK(res1
)) {
12312 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12314 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12315 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12316 if (!SWIG_IsOK(ecode2
)) {
12317 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEndAtLastLine" "', expected argument " "2"" of type '" "bool""'");
12319 arg2
= static_cast< bool >(val2
);
12321 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12322 (arg1
)->SetEndAtLastLine(arg2
);
12323 wxPyEndAllowThreads(__tstate
);
12324 if (PyErr_Occurred()) SWIG_fail
;
12326 resultobj
= SWIG_Py_Void();
12333 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEndAtLastLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12334 PyObject
*resultobj
= 0;
12335 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12339 PyObject
*swig_obj
[1] ;
12341 if (!args
) SWIG_fail
;
12342 swig_obj
[0] = args
;
12343 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12344 if (!SWIG_IsOK(res1
)) {
12345 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEndAtLastLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12347 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12349 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12350 result
= (bool)(arg1
)->GetEndAtLastLine();
12351 wxPyEndAllowThreads(__tstate
);
12352 if (PyErr_Occurred()) SWIG_fail
;
12355 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12363 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TextHeight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12364 PyObject
*resultobj
= 0;
12365 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12372 PyObject
* obj0
= 0 ;
12373 PyObject
* obj1
= 0 ;
12374 char * kwnames
[] = {
12375 (char *) "self",(char *) "line", NULL
12378 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_TextHeight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12379 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12380 if (!SWIG_IsOK(res1
)) {
12381 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12383 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12384 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12385 if (!SWIG_IsOK(ecode2
)) {
12386 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_TextHeight" "', expected argument " "2"" of type '" "int""'");
12388 arg2
= static_cast< int >(val2
);
12390 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12391 result
= (int)(arg1
)->TextHeight(arg2
);
12392 wxPyEndAllowThreads(__tstate
);
12393 if (PyErr_Occurred()) SWIG_fail
;
12395 resultobj
= SWIG_From_int(static_cast< int >(result
));
12402 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12403 PyObject
*resultobj
= 0;
12404 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12410 PyObject
* obj0
= 0 ;
12411 PyObject
* obj1
= 0 ;
12412 char * kwnames
[] = {
12413 (char *) "self",(char *) "show", NULL
12416 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseVerticalScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12417 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12418 if (!SWIG_IsOK(res1
)) {
12419 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12421 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12422 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12423 if (!SWIG_IsOK(ecode2
)) {
12424 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseVerticalScrollBar" "', expected argument " "2"" of type '" "bool""'");
12426 arg2
= static_cast< bool >(val2
);
12428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12429 (arg1
)->SetUseVerticalScrollBar(arg2
);
12430 wxPyEndAllowThreads(__tstate
);
12431 if (PyErr_Occurred()) SWIG_fail
;
12433 resultobj
= SWIG_Py_Void();
12440 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseVerticalScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12441 PyObject
*resultobj
= 0;
12442 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12446 PyObject
*swig_obj
[1] ;
12448 if (!args
) SWIG_fail
;
12449 swig_obj
[0] = args
;
12450 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12451 if (!SWIG_IsOK(res1
)) {
12452 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseVerticalScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12454 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12456 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12457 result
= (bool)(arg1
)->GetUseVerticalScrollBar();
12458 wxPyEndAllowThreads(__tstate
);
12459 if (PyErr_Occurred()) SWIG_fail
;
12462 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12470 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12471 PyObject
*resultobj
= 0;
12472 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12473 wxString
*arg2
= 0 ;
12476 bool temp2
= false ;
12477 PyObject
* obj0
= 0 ;
12478 PyObject
* obj1
= 0 ;
12479 char * kwnames
[] = {
12480 (char *) "self",(char *) "text", NULL
12483 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12484 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12485 if (!SWIG_IsOK(res1
)) {
12486 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12488 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12490 arg2
= wxString_in_helper(obj1
);
12491 if (arg2
== NULL
) SWIG_fail
;
12495 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12496 (arg1
)->AppendText((wxString
const &)*arg2
);
12497 wxPyEndAllowThreads(__tstate
);
12498 if (PyErr_Occurred()) SWIG_fail
;
12500 resultobj
= SWIG_Py_Void();
12515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12516 PyObject
*resultobj
= 0;
12517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12521 PyObject
*swig_obj
[1] ;
12523 if (!args
) SWIG_fail
;
12524 swig_obj
[0] = args
;
12525 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12526 if (!SWIG_IsOK(res1
)) {
12527 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12529 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12531 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12532 result
= (bool)(arg1
)->GetTwoPhaseDraw();
12533 wxPyEndAllowThreads(__tstate
);
12534 if (PyErr_Occurred()) SWIG_fail
;
12537 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
12545 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTwoPhaseDraw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12546 PyObject
*resultobj
= 0;
12547 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12553 PyObject
* obj0
= 0 ;
12554 PyObject
* obj1
= 0 ;
12555 char * kwnames
[] = {
12556 (char *) "self",(char *) "twoPhase", NULL
12559 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTwoPhaseDraw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12560 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12561 if (!SWIG_IsOK(res1
)) {
12562 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12564 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12565 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12566 if (!SWIG_IsOK(ecode2
)) {
12567 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetTwoPhaseDraw" "', expected argument " "2"" of type '" "bool""'");
12569 arg2
= static_cast< bool >(val2
);
12571 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12572 (arg1
)->SetTwoPhaseDraw(arg2
);
12573 wxPyEndAllowThreads(__tstate
);
12574 if (PyErr_Occurred()) SWIG_fail
;
12576 resultobj
= SWIG_Py_Void();
12583 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_TargetFromSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12584 PyObject
*resultobj
= 0;
12585 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12588 PyObject
*swig_obj
[1] ;
12590 if (!args
) SWIG_fail
;
12591 swig_obj
[0] = args
;
12592 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12593 if (!SWIG_IsOK(res1
)) {
12594 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_TargetFromSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12596 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12598 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12599 (arg1
)->TargetFromSelection();
12600 wxPyEndAllowThreads(__tstate
);
12601 if (PyErr_Occurred()) SWIG_fail
;
12603 resultobj
= SWIG_Py_Void();
12610 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesJoin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12611 PyObject
*resultobj
= 0;
12612 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12615 PyObject
*swig_obj
[1] ;
12617 if (!args
) SWIG_fail
;
12618 swig_obj
[0] = args
;
12619 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12620 if (!SWIG_IsOK(res1
)) {
12621 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesJoin" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12623 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12625 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12626 (arg1
)->LinesJoin();
12627 wxPyEndAllowThreads(__tstate
);
12628 if (PyErr_Occurred()) SWIG_fail
;
12630 resultobj
= SWIG_Py_Void();
12637 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesSplit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12638 PyObject
*resultobj
= 0;
12639 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12645 PyObject
* obj0
= 0 ;
12646 PyObject
* obj1
= 0 ;
12647 char * kwnames
[] = {
12648 (char *) "self",(char *) "pixelWidth", NULL
12651 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LinesSplit",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
12652 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12653 if (!SWIG_IsOK(res1
)) {
12654 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12656 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12657 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
12658 if (!SWIG_IsOK(ecode2
)) {
12659 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LinesSplit" "', expected argument " "2"" of type '" "int""'");
12661 arg2
= static_cast< int >(val2
);
12663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12664 (arg1
)->LinesSplit(arg2
);
12665 wxPyEndAllowThreads(__tstate
);
12666 if (PyErr_Occurred()) SWIG_fail
;
12668 resultobj
= SWIG_Py_Void();
12675 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12676 PyObject
*resultobj
= 0;
12677 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12679 wxColour
*arg3
= 0 ;
12685 PyObject
* obj0
= 0 ;
12686 PyObject
* obj1
= 0 ;
12687 PyObject
* obj2
= 0 ;
12688 char * kwnames
[] = {
12689 (char *) "self",(char *) "useSetting",(char *) "back", NULL
12692 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12693 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12694 if (!SWIG_IsOK(res1
)) {
12695 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12697 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12698 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12699 if (!SWIG_IsOK(ecode2
)) {
12700 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginColour" "', expected argument " "2"" of type '" "bool""'");
12702 arg2
= static_cast< bool >(val2
);
12705 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12708 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12709 (arg1
)->SetFoldMarginColour(arg2
,(wxColour
const &)*arg3
);
12710 wxPyEndAllowThreads(__tstate
);
12711 if (PyErr_Occurred()) SWIG_fail
;
12713 resultobj
= SWIG_Py_Void();
12720 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetFoldMarginHiColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
12721 PyObject
*resultobj
= 0;
12722 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12724 wxColour
*arg3
= 0 ;
12730 PyObject
* obj0
= 0 ;
12731 PyObject
* obj1
= 0 ;
12732 PyObject
* obj2
= 0 ;
12733 char * kwnames
[] = {
12734 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
12737 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetFoldMarginHiColour",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
12738 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12739 if (!SWIG_IsOK(res1
)) {
12740 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12742 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12743 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
12744 if (!SWIG_IsOK(ecode2
)) {
12745 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetFoldMarginHiColour" "', expected argument " "2"" of type '" "bool""'");
12747 arg2
= static_cast< bool >(val2
);
12750 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
12753 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12754 (arg1
)->SetFoldMarginHiColour(arg2
,(wxColour
const &)*arg3
);
12755 wxPyEndAllowThreads(__tstate
);
12756 if (PyErr_Occurred()) SWIG_fail
;
12758 resultobj
= SWIG_Py_Void();
12765 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12766 PyObject
*resultobj
= 0;
12767 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12770 PyObject
*swig_obj
[1] ;
12772 if (!args
) SWIG_fail
;
12773 swig_obj
[0] = args
;
12774 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12775 if (!SWIG_IsOK(res1
)) {
12776 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12778 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12780 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12781 (arg1
)->LineDown();
12782 wxPyEndAllowThreads(__tstate
);
12783 if (PyErr_Occurred()) SWIG_fail
;
12785 resultobj
= SWIG_Py_Void();
12792 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12793 PyObject
*resultobj
= 0;
12794 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12797 PyObject
*swig_obj
[1] ;
12799 if (!args
) SWIG_fail
;
12800 swig_obj
[0] = args
;
12801 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12802 if (!SWIG_IsOK(res1
)) {
12803 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12805 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12807 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12808 (arg1
)->LineDownExtend();
12809 wxPyEndAllowThreads(__tstate
);
12810 if (PyErr_Occurred()) SWIG_fail
;
12812 resultobj
= SWIG_Py_Void();
12819 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12820 PyObject
*resultobj
= 0;
12821 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12824 PyObject
*swig_obj
[1] ;
12826 if (!args
) SWIG_fail
;
12827 swig_obj
[0] = args
;
12828 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12829 if (!SWIG_IsOK(res1
)) {
12830 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12832 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12834 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12836 wxPyEndAllowThreads(__tstate
);
12837 if (PyErr_Occurred()) SWIG_fail
;
12839 resultobj
= SWIG_Py_Void();
12846 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12847 PyObject
*resultobj
= 0;
12848 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12851 PyObject
*swig_obj
[1] ;
12853 if (!args
) SWIG_fail
;
12854 swig_obj
[0] = args
;
12855 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12856 if (!SWIG_IsOK(res1
)) {
12857 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12859 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12861 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12862 (arg1
)->LineUpExtend();
12863 wxPyEndAllowThreads(__tstate
);
12864 if (PyErr_Occurred()) SWIG_fail
;
12866 resultobj
= SWIG_Py_Void();
12873 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12874 PyObject
*resultobj
= 0;
12875 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12878 PyObject
*swig_obj
[1] ;
12880 if (!args
) SWIG_fail
;
12881 swig_obj
[0] = args
;
12882 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12883 if (!SWIG_IsOK(res1
)) {
12884 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12886 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12888 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12889 (arg1
)->CharLeft();
12890 wxPyEndAllowThreads(__tstate
);
12891 if (PyErr_Occurred()) SWIG_fail
;
12893 resultobj
= SWIG_Py_Void();
12900 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12901 PyObject
*resultobj
= 0;
12902 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12905 PyObject
*swig_obj
[1] ;
12907 if (!args
) SWIG_fail
;
12908 swig_obj
[0] = args
;
12909 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12910 if (!SWIG_IsOK(res1
)) {
12911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12913 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12915 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12916 (arg1
)->CharLeftExtend();
12917 wxPyEndAllowThreads(__tstate
);
12918 if (PyErr_Occurred()) SWIG_fail
;
12920 resultobj
= SWIG_Py_Void();
12927 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12928 PyObject
*resultobj
= 0;
12929 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12932 PyObject
*swig_obj
[1] ;
12934 if (!args
) SWIG_fail
;
12935 swig_obj
[0] = args
;
12936 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12937 if (!SWIG_IsOK(res1
)) {
12938 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12940 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12942 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12943 (arg1
)->CharRight();
12944 wxPyEndAllowThreads(__tstate
);
12945 if (PyErr_Occurred()) SWIG_fail
;
12947 resultobj
= SWIG_Py_Void();
12954 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12955 PyObject
*resultobj
= 0;
12956 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12959 PyObject
*swig_obj
[1] ;
12961 if (!args
) SWIG_fail
;
12962 swig_obj
[0] = args
;
12963 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12964 if (!SWIG_IsOK(res1
)) {
12965 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12967 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12969 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12970 (arg1
)->CharRightExtend();
12971 wxPyEndAllowThreads(__tstate
);
12972 if (PyErr_Occurred()) SWIG_fail
;
12974 resultobj
= SWIG_Py_Void();
12981 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
12982 PyObject
*resultobj
= 0;
12983 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
12986 PyObject
*swig_obj
[1] ;
12988 if (!args
) SWIG_fail
;
12989 swig_obj
[0] = args
;
12990 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
12991 if (!SWIG_IsOK(res1
)) {
12992 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
12994 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
12996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
12997 (arg1
)->WordLeft();
12998 wxPyEndAllowThreads(__tstate
);
12999 if (PyErr_Occurred()) SWIG_fail
;
13001 resultobj
= SWIG_Py_Void();
13008 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13009 PyObject
*resultobj
= 0;
13010 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13013 PyObject
*swig_obj
[1] ;
13015 if (!args
) SWIG_fail
;
13016 swig_obj
[0] = args
;
13017 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13018 if (!SWIG_IsOK(res1
)) {
13019 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13021 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13023 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13024 (arg1
)->WordLeftExtend();
13025 wxPyEndAllowThreads(__tstate
);
13026 if (PyErr_Occurred()) SWIG_fail
;
13028 resultobj
= SWIG_Py_Void();
13035 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13036 PyObject
*resultobj
= 0;
13037 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13040 PyObject
*swig_obj
[1] ;
13042 if (!args
) SWIG_fail
;
13043 swig_obj
[0] = args
;
13044 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13045 if (!SWIG_IsOK(res1
)) {
13046 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13048 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13050 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13051 (arg1
)->WordRight();
13052 wxPyEndAllowThreads(__tstate
);
13053 if (PyErr_Occurred()) SWIG_fail
;
13055 resultobj
= SWIG_Py_Void();
13062 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13063 PyObject
*resultobj
= 0;
13064 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13067 PyObject
*swig_obj
[1] ;
13069 if (!args
) SWIG_fail
;
13070 swig_obj
[0] = args
;
13071 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13072 if (!SWIG_IsOK(res1
)) {
13073 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13075 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13077 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13078 (arg1
)->WordRightExtend();
13079 wxPyEndAllowThreads(__tstate
);
13080 if (PyErr_Occurred()) SWIG_fail
;
13082 resultobj
= SWIG_Py_Void();
13089 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Home(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13090 PyObject
*resultobj
= 0;
13091 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13094 PyObject
*swig_obj
[1] ;
13096 if (!args
) SWIG_fail
;
13097 swig_obj
[0] = args
;
13098 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13099 if (!SWIG_IsOK(res1
)) {
13100 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Home" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13102 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13104 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13106 wxPyEndAllowThreads(__tstate
);
13107 if (PyErr_Occurred()) SWIG_fail
;
13109 resultobj
= SWIG_Py_Void();
13116 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13117 PyObject
*resultobj
= 0;
13118 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13121 PyObject
*swig_obj
[1] ;
13123 if (!args
) SWIG_fail
;
13124 swig_obj
[0] = args
;
13125 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13126 if (!SWIG_IsOK(res1
)) {
13127 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13129 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13131 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13132 (arg1
)->HomeExtend();
13133 wxPyEndAllowThreads(__tstate
);
13134 if (PyErr_Occurred()) SWIG_fail
;
13136 resultobj
= SWIG_Py_Void();
13143 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13144 PyObject
*resultobj
= 0;
13145 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13148 PyObject
*swig_obj
[1] ;
13150 if (!args
) SWIG_fail
;
13151 swig_obj
[0] = args
;
13152 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13153 if (!SWIG_IsOK(res1
)) {
13154 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13156 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13158 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13160 wxPyEndAllowThreads(__tstate
);
13161 if (PyErr_Occurred()) SWIG_fail
;
13163 resultobj
= SWIG_Py_Void();
13170 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13171 PyObject
*resultobj
= 0;
13172 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13175 PyObject
*swig_obj
[1] ;
13177 if (!args
) SWIG_fail
;
13178 swig_obj
[0] = args
;
13179 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13180 if (!SWIG_IsOK(res1
)) {
13181 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13183 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13185 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13186 (arg1
)->LineEndExtend();
13187 wxPyEndAllowThreads(__tstate
);
13188 if (PyErr_Occurred()) SWIG_fail
;
13190 resultobj
= SWIG_Py_Void();
13197 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStart(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13198 PyObject
*resultobj
= 0;
13199 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13202 PyObject
*swig_obj
[1] ;
13204 if (!args
) SWIG_fail
;
13205 swig_obj
[0] = args
;
13206 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13207 if (!SWIG_IsOK(res1
)) {
13208 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStart" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13210 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13212 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13213 (arg1
)->DocumentStart();
13214 wxPyEndAllowThreads(__tstate
);
13215 if (PyErr_Occurred()) SWIG_fail
;
13217 resultobj
= SWIG_Py_Void();
13224 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentStartExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13225 PyObject
*resultobj
= 0;
13226 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13229 PyObject
*swig_obj
[1] ;
13231 if (!args
) SWIG_fail
;
13232 swig_obj
[0] = args
;
13233 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13234 if (!SWIG_IsOK(res1
)) {
13235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentStartExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13239 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13240 (arg1
)->DocumentStartExtend();
13241 wxPyEndAllowThreads(__tstate
);
13242 if (PyErr_Occurred()) SWIG_fail
;
13244 resultobj
= SWIG_Py_Void();
13251 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13252 PyObject
*resultobj
= 0;
13253 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13256 PyObject
*swig_obj
[1] ;
13258 if (!args
) SWIG_fail
;
13259 swig_obj
[0] = args
;
13260 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13261 if (!SWIG_IsOK(res1
)) {
13262 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13264 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13266 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13267 (arg1
)->DocumentEnd();
13268 wxPyEndAllowThreads(__tstate
);
13269 if (PyErr_Occurred()) SWIG_fail
;
13271 resultobj
= SWIG_Py_Void();
13278 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DocumentEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13279 PyObject
*resultobj
= 0;
13280 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13283 PyObject
*swig_obj
[1] ;
13285 if (!args
) SWIG_fail
;
13286 swig_obj
[0] = args
;
13287 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13288 if (!SWIG_IsOK(res1
)) {
13289 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DocumentEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13291 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13293 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13294 (arg1
)->DocumentEndExtend();
13295 wxPyEndAllowThreads(__tstate
);
13296 if (PyErr_Occurred()) SWIG_fail
;
13298 resultobj
= SWIG_Py_Void();
13305 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13306 PyObject
*resultobj
= 0;
13307 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13310 PyObject
*swig_obj
[1] ;
13312 if (!args
) SWIG_fail
;
13313 swig_obj
[0] = args
;
13314 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13315 if (!SWIG_IsOK(res1
)) {
13316 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13318 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13320 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13322 wxPyEndAllowThreads(__tstate
);
13323 if (PyErr_Occurred()) SWIG_fail
;
13325 resultobj
= SWIG_Py_Void();
13332 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13333 PyObject
*resultobj
= 0;
13334 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13337 PyObject
*swig_obj
[1] ;
13339 if (!args
) SWIG_fail
;
13340 swig_obj
[0] = args
;
13341 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13342 if (!SWIG_IsOK(res1
)) {
13343 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13345 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13347 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13348 (arg1
)->PageUpExtend();
13349 wxPyEndAllowThreads(__tstate
);
13350 if (PyErr_Occurred()) SWIG_fail
;
13352 resultobj
= SWIG_Py_Void();
13359 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13360 PyObject
*resultobj
= 0;
13361 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13364 PyObject
*swig_obj
[1] ;
13366 if (!args
) SWIG_fail
;
13367 swig_obj
[0] = args
;
13368 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13369 if (!SWIG_IsOK(res1
)) {
13370 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13372 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13374 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13375 (arg1
)->PageDown();
13376 wxPyEndAllowThreads(__tstate
);
13377 if (PyErr_Occurred()) SWIG_fail
;
13379 resultobj
= SWIG_Py_Void();
13386 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13387 PyObject
*resultobj
= 0;
13388 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13391 PyObject
*swig_obj
[1] ;
13393 if (!args
) SWIG_fail
;
13394 swig_obj
[0] = args
;
13395 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13396 if (!SWIG_IsOK(res1
)) {
13397 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13399 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13401 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13402 (arg1
)->PageDownExtend();
13403 wxPyEndAllowThreads(__tstate
);
13404 if (PyErr_Occurred()) SWIG_fail
;
13406 resultobj
= SWIG_Py_Void();
13413 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_EditToggleOvertype(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13414 PyObject
*resultobj
= 0;
13415 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13418 PyObject
*swig_obj
[1] ;
13420 if (!args
) SWIG_fail
;
13421 swig_obj
[0] = args
;
13422 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13423 if (!SWIG_IsOK(res1
)) {
13424 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_EditToggleOvertype" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13426 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13428 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13429 (arg1
)->EditToggleOvertype();
13430 wxPyEndAllowThreads(__tstate
);
13431 if (PyErr_Occurred()) SWIG_fail
;
13433 resultobj
= SWIG_Py_Void();
13440 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Cancel(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13441 PyObject
*resultobj
= 0;
13442 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13445 PyObject
*swig_obj
[1] ;
13447 if (!args
) SWIG_fail
;
13448 swig_obj
[0] = args
;
13449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13450 if (!SWIG_IsOK(res1
)) {
13451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Cancel" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13453 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13457 wxPyEndAllowThreads(__tstate
);
13458 if (PyErr_Occurred()) SWIG_fail
;
13460 resultobj
= SWIG_Py_Void();
13467 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBack(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13468 PyObject
*resultobj
= 0;
13469 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13472 PyObject
*swig_obj
[1] ;
13474 if (!args
) SWIG_fail
;
13475 swig_obj
[0] = args
;
13476 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13477 if (!SWIG_IsOK(res1
)) {
13478 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBack" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13480 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13482 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13483 (arg1
)->DeleteBack();
13484 wxPyEndAllowThreads(__tstate
);
13485 if (PyErr_Occurred()) SWIG_fail
;
13487 resultobj
= SWIG_Py_Void();
13494 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Tab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13495 PyObject
*resultobj
= 0;
13496 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13499 PyObject
*swig_obj
[1] ;
13501 if (!args
) SWIG_fail
;
13502 swig_obj
[0] = args
;
13503 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13504 if (!SWIG_IsOK(res1
)) {
13505 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Tab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13507 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13509 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13511 wxPyEndAllowThreads(__tstate
);
13512 if (PyErr_Occurred()) SWIG_fail
;
13514 resultobj
= SWIG_Py_Void();
13521 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BackTab(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13522 PyObject
*resultobj
= 0;
13523 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13526 PyObject
*swig_obj
[1] ;
13528 if (!args
) SWIG_fail
;
13529 swig_obj
[0] = args
;
13530 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13531 if (!SWIG_IsOK(res1
)) {
13532 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BackTab" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13534 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13536 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13538 wxPyEndAllowThreads(__tstate
);
13539 if (PyErr_Occurred()) SWIG_fail
;
13541 resultobj
= SWIG_Py_Void();
13548 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_NewLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13549 PyObject
*resultobj
= 0;
13550 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13553 PyObject
*swig_obj
[1] ;
13555 if (!args
) SWIG_fail
;
13556 swig_obj
[0] = args
;
13557 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13558 if (!SWIG_IsOK(res1
)) {
13559 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_NewLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13561 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13563 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13565 wxPyEndAllowThreads(__tstate
);
13566 if (PyErr_Occurred()) SWIG_fail
;
13568 resultobj
= SWIG_Py_Void();
13575 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FormFeed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13576 PyObject
*resultobj
= 0;
13577 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13580 PyObject
*swig_obj
[1] ;
13582 if (!args
) SWIG_fail
;
13583 swig_obj
[0] = args
;
13584 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13585 if (!SWIG_IsOK(res1
)) {
13586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FormFeed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13588 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13590 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13591 (arg1
)->FormFeed();
13592 wxPyEndAllowThreads(__tstate
);
13593 if (PyErr_Occurred()) SWIG_fail
;
13595 resultobj
= SWIG_Py_Void();
13602 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHome(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13603 PyObject
*resultobj
= 0;
13604 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13607 PyObject
*swig_obj
[1] ;
13609 if (!args
) SWIG_fail
;
13610 swig_obj
[0] = args
;
13611 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13612 if (!SWIG_IsOK(res1
)) {
13613 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHome" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13615 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13617 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13619 wxPyEndAllowThreads(__tstate
);
13620 if (PyErr_Occurred()) SWIG_fail
;
13622 resultobj
= SWIG_Py_Void();
13629 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13630 PyObject
*resultobj
= 0;
13631 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13634 PyObject
*swig_obj
[1] ;
13636 if (!args
) SWIG_fail
;
13637 swig_obj
[0] = args
;
13638 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13639 if (!SWIG_IsOK(res1
)) {
13640 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13642 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13644 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13645 (arg1
)->VCHomeExtend();
13646 wxPyEndAllowThreads(__tstate
);
13647 if (PyErr_Occurred()) SWIG_fail
;
13649 resultobj
= SWIG_Py_Void();
13656 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomIn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13657 PyObject
*resultobj
= 0;
13658 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13661 PyObject
*swig_obj
[1] ;
13663 if (!args
) SWIG_fail
;
13664 swig_obj
[0] = args
;
13665 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13666 if (!SWIG_IsOK(res1
)) {
13667 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomIn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13669 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13671 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13673 wxPyEndAllowThreads(__tstate
);
13674 if (PyErr_Occurred()) SWIG_fail
;
13676 resultobj
= SWIG_Py_Void();
13683 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ZoomOut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13684 PyObject
*resultobj
= 0;
13685 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13688 PyObject
*swig_obj
[1] ;
13690 if (!args
) SWIG_fail
;
13691 swig_obj
[0] = args
;
13692 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13693 if (!SWIG_IsOK(res1
)) {
13694 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ZoomOut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13696 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13698 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13700 wxPyEndAllowThreads(__tstate
);
13701 if (PyErr_Occurred()) SWIG_fail
;
13703 resultobj
= SWIG_Py_Void();
13710 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13711 PyObject
*resultobj
= 0;
13712 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13715 PyObject
*swig_obj
[1] ;
13717 if (!args
) SWIG_fail
;
13718 swig_obj
[0] = args
;
13719 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13720 if (!SWIG_IsOK(res1
)) {
13721 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13723 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13725 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13726 (arg1
)->DelWordLeft();
13727 wxPyEndAllowThreads(__tstate
);
13728 if (PyErr_Occurred()) SWIG_fail
;
13730 resultobj
= SWIG_Py_Void();
13737 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelWordRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13738 PyObject
*resultobj
= 0;
13739 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13742 PyObject
*swig_obj
[1] ;
13744 if (!args
) SWIG_fail
;
13745 swig_obj
[0] = args
;
13746 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13747 if (!SWIG_IsOK(res1
)) {
13748 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelWordRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13750 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13752 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13753 (arg1
)->DelWordRight();
13754 wxPyEndAllowThreads(__tstate
);
13755 if (PyErr_Occurred()) SWIG_fail
;
13757 resultobj
= SWIG_Py_Void();
13764 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCut(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13765 PyObject
*resultobj
= 0;
13766 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13769 PyObject
*swig_obj
[1] ;
13771 if (!args
) SWIG_fail
;
13772 swig_obj
[0] = args
;
13773 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13774 if (!SWIG_IsOK(res1
)) {
13775 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCut" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13777 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13779 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13781 wxPyEndAllowThreads(__tstate
);
13782 if (PyErr_Occurred()) SWIG_fail
;
13784 resultobj
= SWIG_Py_Void();
13791 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDelete(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13792 PyObject
*resultobj
= 0;
13793 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13796 PyObject
*swig_obj
[1] ;
13798 if (!args
) SWIG_fail
;
13799 swig_obj
[0] = args
;
13800 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13801 if (!SWIG_IsOK(res1
)) {
13802 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDelete" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13804 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13806 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13807 (arg1
)->LineDelete();
13808 wxPyEndAllowThreads(__tstate
);
13809 if (PyErr_Occurred()) SWIG_fail
;
13811 resultobj
= SWIG_Py_Void();
13818 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineTranspose(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13819 PyObject
*resultobj
= 0;
13820 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13823 PyObject
*swig_obj
[1] ;
13825 if (!args
) SWIG_fail
;
13826 swig_obj
[0] = args
;
13827 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13828 if (!SWIG_IsOK(res1
)) {
13829 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineTranspose" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13831 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13833 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13834 (arg1
)->LineTranspose();
13835 wxPyEndAllowThreads(__tstate
);
13836 if (PyErr_Occurred()) SWIG_fail
;
13838 resultobj
= SWIG_Py_Void();
13845 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13846 PyObject
*resultobj
= 0;
13847 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13850 PyObject
*swig_obj
[1] ;
13852 if (!args
) SWIG_fail
;
13853 swig_obj
[0] = args
;
13854 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13855 if (!SWIG_IsOK(res1
)) {
13856 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13858 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13860 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13861 (arg1
)->LineDuplicate();
13862 wxPyEndAllowThreads(__tstate
);
13863 if (PyErr_Occurred()) SWIG_fail
;
13865 resultobj
= SWIG_Py_Void();
13872 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LowerCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13873 PyObject
*resultobj
= 0;
13874 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13877 PyObject
*swig_obj
[1] ;
13879 if (!args
) SWIG_fail
;
13880 swig_obj
[0] = args
;
13881 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13882 if (!SWIG_IsOK(res1
)) {
13883 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LowerCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13885 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13887 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13888 (arg1
)->LowerCase();
13889 wxPyEndAllowThreads(__tstate
);
13890 if (PyErr_Occurred()) SWIG_fail
;
13892 resultobj
= SWIG_Py_Void();
13899 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UpperCase(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13900 PyObject
*resultobj
= 0;
13901 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13904 PyObject
*swig_obj
[1] ;
13906 if (!args
) SWIG_fail
;
13907 swig_obj
[0] = args
;
13908 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13909 if (!SWIG_IsOK(res1
)) {
13910 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UpperCase" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13912 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13914 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13915 (arg1
)->UpperCase();
13916 wxPyEndAllowThreads(__tstate
);
13917 if (PyErr_Occurred()) SWIG_fail
;
13919 resultobj
= SWIG_Py_Void();
13926 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13927 PyObject
*resultobj
= 0;
13928 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13931 PyObject
*swig_obj
[1] ;
13933 if (!args
) SWIG_fail
;
13934 swig_obj
[0] = args
;
13935 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13936 if (!SWIG_IsOK(res1
)) {
13937 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13939 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13941 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13942 (arg1
)->LineScrollDown();
13943 wxPyEndAllowThreads(__tstate
);
13944 if (PyErr_Occurred()) SWIG_fail
;
13946 resultobj
= SWIG_Py_Void();
13953 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineScrollUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13954 PyObject
*resultobj
= 0;
13955 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13958 PyObject
*swig_obj
[1] ;
13960 if (!args
) SWIG_fail
;
13961 swig_obj
[0] = args
;
13962 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13963 if (!SWIG_IsOK(res1
)) {
13964 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineScrollUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13966 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13968 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13969 (arg1
)->LineScrollUp();
13970 wxPyEndAllowThreads(__tstate
);
13971 if (PyErr_Occurred()) SWIG_fail
;
13973 resultobj
= SWIG_Py_Void();
13980 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DeleteBackNotLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
13981 PyObject
*resultobj
= 0;
13982 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
13985 PyObject
*swig_obj
[1] ;
13987 if (!args
) SWIG_fail
;
13988 swig_obj
[0] = args
;
13989 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
13990 if (!SWIG_IsOK(res1
)) {
13991 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DeleteBackNotLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
13993 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
13995 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
13996 (arg1
)->DeleteBackNotLine();
13997 wxPyEndAllowThreads(__tstate
);
13998 if (PyErr_Occurred()) SWIG_fail
;
14000 resultobj
= SWIG_Py_Void();
14007 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14008 PyObject
*resultobj
= 0;
14009 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14012 PyObject
*swig_obj
[1] ;
14014 if (!args
) SWIG_fail
;
14015 swig_obj
[0] = args
;
14016 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14017 if (!SWIG_IsOK(res1
)) {
14018 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14020 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14022 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14023 (arg1
)->HomeDisplay();
14024 wxPyEndAllowThreads(__tstate
);
14025 if (PyErr_Occurred()) SWIG_fail
;
14027 resultobj
= SWIG_Py_Void();
14034 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14035 PyObject
*resultobj
= 0;
14036 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14039 PyObject
*swig_obj
[1] ;
14041 if (!args
) SWIG_fail
;
14042 swig_obj
[0] = args
;
14043 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14044 if (!SWIG_IsOK(res1
)) {
14045 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14047 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14049 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14050 (arg1
)->HomeDisplayExtend();
14051 wxPyEndAllowThreads(__tstate
);
14052 if (PyErr_Occurred()) SWIG_fail
;
14054 resultobj
= SWIG_Py_Void();
14061 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplay(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14062 PyObject
*resultobj
= 0;
14063 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14066 PyObject
*swig_obj
[1] ;
14068 if (!args
) SWIG_fail
;
14069 swig_obj
[0] = args
;
14070 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14071 if (!SWIG_IsOK(res1
)) {
14072 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplay" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14074 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14076 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14077 (arg1
)->LineEndDisplay();
14078 wxPyEndAllowThreads(__tstate
);
14079 if (PyErr_Occurred()) SWIG_fail
;
14081 resultobj
= SWIG_Py_Void();
14088 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndDisplayExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14089 PyObject
*resultobj
= 0;
14090 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14093 PyObject
*swig_obj
[1] ;
14095 if (!args
) SWIG_fail
;
14096 swig_obj
[0] = args
;
14097 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14098 if (!SWIG_IsOK(res1
)) {
14099 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndDisplayExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14101 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14103 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14104 (arg1
)->LineEndDisplayExtend();
14105 wxPyEndAllowThreads(__tstate
);
14106 if (PyErr_Occurred()) SWIG_fail
;
14108 resultobj
= SWIG_Py_Void();
14115 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14116 PyObject
*resultobj
= 0;
14117 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14120 PyObject
*swig_obj
[1] ;
14122 if (!args
) SWIG_fail
;
14123 swig_obj
[0] = args
;
14124 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14125 if (!SWIG_IsOK(res1
)) {
14126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14128 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14130 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14131 (arg1
)->HomeWrap();
14132 wxPyEndAllowThreads(__tstate
);
14133 if (PyErr_Occurred()) SWIG_fail
;
14135 resultobj
= SWIG_Py_Void();
14142 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14143 PyObject
*resultobj
= 0;
14144 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14147 PyObject
*swig_obj
[1] ;
14149 if (!args
) SWIG_fail
;
14150 swig_obj
[0] = args
;
14151 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14152 if (!SWIG_IsOK(res1
)) {
14153 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14155 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14157 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14158 (arg1
)->HomeWrapExtend();
14159 wxPyEndAllowThreads(__tstate
);
14160 if (PyErr_Occurred()) SWIG_fail
;
14162 resultobj
= SWIG_Py_Void();
14169 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14170 PyObject
*resultobj
= 0;
14171 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14174 PyObject
*swig_obj
[1] ;
14176 if (!args
) SWIG_fail
;
14177 swig_obj
[0] = args
;
14178 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14179 if (!SWIG_IsOK(res1
)) {
14180 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14182 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14184 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14185 (arg1
)->LineEndWrap();
14186 wxPyEndAllowThreads(__tstate
);
14187 if (PyErr_Occurred()) SWIG_fail
;
14189 resultobj
= SWIG_Py_Void();
14196 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14197 PyObject
*resultobj
= 0;
14198 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14201 PyObject
*swig_obj
[1] ;
14203 if (!args
) SWIG_fail
;
14204 swig_obj
[0] = args
;
14205 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14206 if (!SWIG_IsOK(res1
)) {
14207 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14209 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14212 (arg1
)->LineEndWrapExtend();
14213 wxPyEndAllowThreads(__tstate
);
14214 if (PyErr_Occurred()) SWIG_fail
;
14216 resultobj
= SWIG_Py_Void();
14223 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrap(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14224 PyObject
*resultobj
= 0;
14225 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14228 PyObject
*swig_obj
[1] ;
14230 if (!args
) SWIG_fail
;
14231 swig_obj
[0] = args
;
14232 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14233 if (!SWIG_IsOK(res1
)) {
14234 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrap" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14236 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14238 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14239 (arg1
)->VCHomeWrap();
14240 wxPyEndAllowThreads(__tstate
);
14241 if (PyErr_Occurred()) SWIG_fail
;
14243 resultobj
= SWIG_Py_Void();
14250 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeWrapExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14251 PyObject
*resultobj
= 0;
14252 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14255 PyObject
*swig_obj
[1] ;
14257 if (!args
) SWIG_fail
;
14258 swig_obj
[0] = args
;
14259 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14260 if (!SWIG_IsOK(res1
)) {
14261 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeWrapExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14263 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14266 (arg1
)->VCHomeWrapExtend();
14267 wxPyEndAllowThreads(__tstate
);
14268 if (PyErr_Occurred()) SWIG_fail
;
14270 resultobj
= SWIG_Py_Void();
14277 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineCopy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14278 PyObject
*resultobj
= 0;
14279 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14282 PyObject
*swig_obj
[1] ;
14284 if (!args
) SWIG_fail
;
14285 swig_obj
[0] = args
;
14286 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14287 if (!SWIG_IsOK(res1
)) {
14288 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineCopy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14290 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14292 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14293 (arg1
)->LineCopy();
14294 wxPyEndAllowThreads(__tstate
);
14295 if (PyErr_Occurred()) SWIG_fail
;
14297 resultobj
= SWIG_Py_Void();
14304 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_MoveCaretInsideView(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14305 PyObject
*resultobj
= 0;
14306 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14309 PyObject
*swig_obj
[1] ;
14311 if (!args
) SWIG_fail
;
14312 swig_obj
[0] = args
;
14313 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14314 if (!SWIG_IsOK(res1
)) {
14315 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_MoveCaretInsideView" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14317 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14319 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14320 (arg1
)->MoveCaretInsideView();
14321 wxPyEndAllowThreads(__tstate
);
14322 if (PyErr_Occurred()) SWIG_fail
;
14324 resultobj
= SWIG_Py_Void();
14331 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14332 PyObject
*resultobj
= 0;
14333 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14340 PyObject
* obj0
= 0 ;
14341 PyObject
* obj1
= 0 ;
14342 char * kwnames
[] = {
14343 (char *) "self",(char *) "line", NULL
14346 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LineLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14347 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14348 if (!SWIG_IsOK(res1
)) {
14349 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14351 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14352 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14353 if (!SWIG_IsOK(ecode2
)) {
14354 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_LineLength" "', expected argument " "2"" of type '" "int""'");
14356 arg2
= static_cast< int >(val2
);
14358 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14359 result
= (int)(arg1
)->LineLength(arg2
);
14360 wxPyEndAllowThreads(__tstate
);
14361 if (PyErr_Occurred()) SWIG_fail
;
14363 resultobj
= SWIG_From_int(static_cast< int >(result
));
14370 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceHighlight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14371 PyObject
*resultobj
= 0;
14372 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14381 PyObject
* obj0
= 0 ;
14382 PyObject
* obj1
= 0 ;
14383 PyObject
* obj2
= 0 ;
14384 char * kwnames
[] = {
14385 (char *) "self",(char *) "pos1",(char *) "pos2", NULL
14388 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_BraceHighlight",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14389 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14390 if (!SWIG_IsOK(res1
)) {
14391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14393 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14394 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14395 if (!SWIG_IsOK(ecode2
)) {
14396 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "2"" of type '" "int""'");
14398 arg2
= static_cast< int >(val2
);
14399 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
14400 if (!SWIG_IsOK(ecode3
)) {
14401 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_BraceHighlight" "', expected argument " "3"" of type '" "int""'");
14403 arg3
= static_cast< int >(val3
);
14405 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14406 (arg1
)->BraceHighlight(arg2
,arg3
);
14407 wxPyEndAllowThreads(__tstate
);
14408 if (PyErr_Occurred()) SWIG_fail
;
14410 resultobj
= SWIG_Py_Void();
14417 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceBadLight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14418 PyObject
*resultobj
= 0;
14419 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14425 PyObject
* obj0
= 0 ;
14426 PyObject
* obj1
= 0 ;
14427 char * kwnames
[] = {
14428 (char *) "self",(char *) "pos", NULL
14431 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceBadLight",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14432 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14433 if (!SWIG_IsOK(res1
)) {
14434 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14436 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14437 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14438 if (!SWIG_IsOK(ecode2
)) {
14439 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceBadLight" "', expected argument " "2"" of type '" "int""'");
14441 arg2
= static_cast< int >(val2
);
14443 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14444 (arg1
)->BraceBadLight(arg2
);
14445 wxPyEndAllowThreads(__tstate
);
14446 if (PyErr_Occurred()) SWIG_fail
;
14448 resultobj
= SWIG_Py_Void();
14455 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_BraceMatch(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14456 PyObject
*resultobj
= 0;
14457 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14464 PyObject
* obj0
= 0 ;
14465 PyObject
* obj1
= 0 ;
14466 char * kwnames
[] = {
14467 (char *) "self",(char *) "pos", NULL
14470 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_BraceMatch",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14471 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14472 if (!SWIG_IsOK(res1
)) {
14473 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14475 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14476 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14477 if (!SWIG_IsOK(ecode2
)) {
14478 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_BraceMatch" "', expected argument " "2"" of type '" "int""'");
14480 arg2
= static_cast< int >(val2
);
14482 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14483 result
= (int)(arg1
)->BraceMatch(arg2
);
14484 wxPyEndAllowThreads(__tstate
);
14485 if (PyErr_Occurred()) SWIG_fail
;
14487 resultobj
= SWIG_From_int(static_cast< int >(result
));
14494 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14495 PyObject
*resultobj
= 0;
14496 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14500 PyObject
*swig_obj
[1] ;
14502 if (!args
) SWIG_fail
;
14503 swig_obj
[0] = args
;
14504 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14505 if (!SWIG_IsOK(res1
)) {
14506 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14508 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14510 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14511 result
= (bool)(arg1
)->GetViewEOL();
14512 wxPyEndAllowThreads(__tstate
);
14513 if (PyErr_Occurred()) SWIG_fail
;
14516 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
14524 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetViewEOL(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14525 PyObject
*resultobj
= 0;
14526 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14532 PyObject
* obj0
= 0 ;
14533 PyObject
* obj1
= 0 ;
14534 char * kwnames
[] = {
14535 (char *) "self",(char *) "visible", NULL
14538 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetViewEOL",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14539 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14540 if (!SWIG_IsOK(res1
)) {
14541 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14543 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14544 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
14545 if (!SWIG_IsOK(ecode2
)) {
14546 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetViewEOL" "', expected argument " "2"" of type '" "bool""'");
14548 arg2
= static_cast< bool >(val2
);
14550 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14551 (arg1
)->SetViewEOL(arg2
);
14552 wxPyEndAllowThreads(__tstate
);
14553 if (PyErr_Occurred()) SWIG_fail
;
14555 resultobj
= SWIG_Py_Void();
14562 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14563 PyObject
*resultobj
= 0;
14564 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14568 PyObject
*swig_obj
[1] ;
14570 if (!args
) SWIG_fail
;
14571 swig_obj
[0] = args
;
14572 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14573 if (!SWIG_IsOK(res1
)) {
14574 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14576 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14578 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14579 result
= (void *)(arg1
)->GetDocPointer();
14580 wxPyEndAllowThreads(__tstate
);
14581 if (PyErr_Occurred()) SWIG_fail
;
14583 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
14590 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetDocPointer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14591 PyObject
*resultobj
= 0;
14592 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14593 void *arg2
= (void *) 0 ;
14597 PyObject
* obj0
= 0 ;
14598 PyObject
* obj1
= 0 ;
14599 char * kwnames
[] = {
14600 (char *) "self",(char *) "docPointer", NULL
14603 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetDocPointer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14604 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14605 if (!SWIG_IsOK(res1
)) {
14606 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14608 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14609 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
14610 if (!SWIG_IsOK(res2
)) {
14611 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetDocPointer" "', expected argument " "2"" of type '" "void *""'");
14614 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14615 (arg1
)->SetDocPointer(arg2
);
14616 wxPyEndAllowThreads(__tstate
);
14617 if (PyErr_Occurred()) SWIG_fail
;
14619 resultobj
= SWIG_Py_Void();
14626 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14627 PyObject
*resultobj
= 0;
14628 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14634 PyObject
* obj0
= 0 ;
14635 PyObject
* obj1
= 0 ;
14636 char * kwnames
[] = {
14637 (char *) "self",(char *) "mask", NULL
14640 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetModEventMask",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14641 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14642 if (!SWIG_IsOK(res1
)) {
14643 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14645 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14646 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14647 if (!SWIG_IsOK(ecode2
)) {
14648 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetModEventMask" "', expected argument " "2"" of type '" "int""'");
14650 arg2
= static_cast< int >(val2
);
14652 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14653 (arg1
)->SetModEventMask(arg2
);
14654 wxPyEndAllowThreads(__tstate
);
14655 if (PyErr_Occurred()) SWIG_fail
;
14657 resultobj
= SWIG_Py_Void();
14664 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14665 PyObject
*resultobj
= 0;
14666 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14670 PyObject
*swig_obj
[1] ;
14672 if (!args
) SWIG_fail
;
14673 swig_obj
[0] = args
;
14674 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14675 if (!SWIG_IsOK(res1
)) {
14676 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14678 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14680 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14681 result
= (int)(arg1
)->GetEdgeColumn();
14682 wxPyEndAllowThreads(__tstate
);
14683 if (PyErr_Occurred()) SWIG_fail
;
14685 resultobj
= SWIG_From_int(static_cast< int >(result
));
14692 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14693 PyObject
*resultobj
= 0;
14694 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14700 PyObject
* obj0
= 0 ;
14701 PyObject
* obj1
= 0 ;
14702 char * kwnames
[] = {
14703 (char *) "self",(char *) "column", NULL
14706 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14707 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14708 if (!SWIG_IsOK(res1
)) {
14709 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14711 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14712 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14713 if (!SWIG_IsOK(ecode2
)) {
14714 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeColumn" "', expected argument " "2"" of type '" "int""'");
14716 arg2
= static_cast< int >(val2
);
14718 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14719 (arg1
)->SetEdgeColumn(arg2
);
14720 wxPyEndAllowThreads(__tstate
);
14721 if (PyErr_Occurred()) SWIG_fail
;
14723 resultobj
= SWIG_Py_Void();
14730 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14731 PyObject
*resultobj
= 0;
14732 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14736 PyObject
*swig_obj
[1] ;
14738 if (!args
) SWIG_fail
;
14739 swig_obj
[0] = args
;
14740 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14741 if (!SWIG_IsOK(res1
)) {
14742 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14744 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14746 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14747 result
= (int)(arg1
)->GetEdgeMode();
14748 wxPyEndAllowThreads(__tstate
);
14749 if (PyErr_Occurred()) SWIG_fail
;
14751 resultobj
= SWIG_From_int(static_cast< int >(result
));
14758 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14759 PyObject
*resultobj
= 0;
14760 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14766 PyObject
* obj0
= 0 ;
14767 PyObject
* obj1
= 0 ;
14768 char * kwnames
[] = {
14769 (char *) "self",(char *) "mode", NULL
14772 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14773 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14774 if (!SWIG_IsOK(res1
)) {
14775 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14777 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14778 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14779 if (!SWIG_IsOK(ecode2
)) {
14780 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetEdgeMode" "', expected argument " "2"" of type '" "int""'");
14782 arg2
= static_cast< int >(val2
);
14784 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14785 (arg1
)->SetEdgeMode(arg2
);
14786 wxPyEndAllowThreads(__tstate
);
14787 if (PyErr_Occurred()) SWIG_fail
;
14789 resultobj
= SWIG_Py_Void();
14796 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14797 PyObject
*resultobj
= 0;
14798 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14802 PyObject
*swig_obj
[1] ;
14804 if (!args
) SWIG_fail
;
14805 swig_obj
[0] = args
;
14806 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14807 if (!SWIG_IsOK(res1
)) {
14808 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14810 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14812 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14813 result
= (arg1
)->GetEdgeColour();
14814 wxPyEndAllowThreads(__tstate
);
14815 if (PyErr_Occurred()) SWIG_fail
;
14817 resultobj
= SWIG_NewPointerObj((new wxColour(static_cast< const wxColour
& >(result
))), SWIGTYPE_p_wxColour
, SWIG_POINTER_OWN
| 0 );
14824 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetEdgeColour(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14825 PyObject
*resultobj
= 0;
14826 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14827 wxColour
*arg2
= 0 ;
14831 PyObject
* obj0
= 0 ;
14832 PyObject
* obj1
= 0 ;
14833 char * kwnames
[] = {
14834 (char *) "self",(char *) "edgeColour", NULL
14837 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetEdgeColour",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
14838 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14839 if (!SWIG_IsOK(res1
)) {
14840 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetEdgeColour" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14842 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14845 if ( ! wxColour_helper(obj1
, &arg2
)) SWIG_fail
;
14848 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14849 (arg1
)->SetEdgeColour((wxColour
const &)*arg2
);
14850 wxPyEndAllowThreads(__tstate
);
14851 if (PyErr_Occurred()) SWIG_fail
;
14853 resultobj
= SWIG_Py_Void();
14860 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchAnchor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14861 PyObject
*resultobj
= 0;
14862 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14865 PyObject
*swig_obj
[1] ;
14867 if (!args
) SWIG_fail
;
14868 swig_obj
[0] = args
;
14869 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14870 if (!SWIG_IsOK(res1
)) {
14871 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchAnchor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14873 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14875 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14876 (arg1
)->SearchAnchor();
14877 wxPyEndAllowThreads(__tstate
);
14878 if (PyErr_Occurred()) SWIG_fail
;
14880 resultobj
= SWIG_Py_Void();
14887 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchNext(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14888 PyObject
*resultobj
= 0;
14889 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14891 wxString
*arg3
= 0 ;
14897 bool temp3
= false ;
14898 PyObject
* obj0
= 0 ;
14899 PyObject
* obj1
= 0 ;
14900 PyObject
* obj2
= 0 ;
14901 char * kwnames
[] = {
14902 (char *) "self",(char *) "flags",(char *) "text", NULL
14905 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchNext",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14906 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14907 if (!SWIG_IsOK(res1
)) {
14908 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14910 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14911 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14912 if (!SWIG_IsOK(ecode2
)) {
14913 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchNext" "', expected argument " "2"" of type '" "int""'");
14915 arg2
= static_cast< int >(val2
);
14917 arg3
= wxString_in_helper(obj2
);
14918 if (arg3
== NULL
) SWIG_fail
;
14922 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14923 result
= (int)(arg1
)->SearchNext(arg2
,(wxString
const &)*arg3
);
14924 wxPyEndAllowThreads(__tstate
);
14925 if (PyErr_Occurred()) SWIG_fail
;
14927 resultobj
= SWIG_From_int(static_cast< int >(result
));
14942 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SearchPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
14943 PyObject
*resultobj
= 0;
14944 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
14946 wxString
*arg3
= 0 ;
14952 bool temp3
= false ;
14953 PyObject
* obj0
= 0 ;
14954 PyObject
* obj1
= 0 ;
14955 PyObject
* obj2
= 0 ;
14956 char * kwnames
[] = {
14957 (char *) "self",(char *) "flags",(char *) "text", NULL
14960 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SearchPrev",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
14961 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
14962 if (!SWIG_IsOK(res1
)) {
14963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
14965 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
14966 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
14967 if (!SWIG_IsOK(ecode2
)) {
14968 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SearchPrev" "', expected argument " "2"" of type '" "int""'");
14970 arg2
= static_cast< int >(val2
);
14972 arg3
= wxString_in_helper(obj2
);
14973 if (arg3
== NULL
) SWIG_fail
;
14977 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
14978 result
= (int)(arg1
)->SearchPrev(arg2
,(wxString
const &)*arg3
);
14979 wxPyEndAllowThreads(__tstate
);
14980 if (PyErr_Occurred()) SWIG_fail
;
14982 resultobj
= SWIG_From_int(static_cast< int >(result
));
14997 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LinesOnScreen(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
14998 PyObject
*resultobj
= 0;
14999 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15003 PyObject
*swig_obj
[1] ;
15005 if (!args
) SWIG_fail
;
15006 swig_obj
[0] = args
;
15007 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15008 if (!SWIG_IsOK(res1
)) {
15009 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LinesOnScreen" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15011 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15013 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15014 result
= (int)(arg1
)->LinesOnScreen();
15015 wxPyEndAllowThreads(__tstate
);
15016 if (PyErr_Occurred()) SWIG_fail
;
15018 resultobj
= SWIG_From_int(static_cast< int >(result
));
15025 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_UsePopUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15026 PyObject
*resultobj
= 0;
15027 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15033 PyObject
* obj0
= 0 ;
15034 PyObject
* obj1
= 0 ;
15035 char * kwnames
[] = {
15036 (char *) "self",(char *) "allowPopUp", NULL
15039 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_UsePopUp",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15040 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15041 if (!SWIG_IsOK(res1
)) {
15042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15044 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15045 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15046 if (!SWIG_IsOK(ecode2
)) {
15047 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_UsePopUp" "', expected argument " "2"" of type '" "bool""'");
15049 arg2
= static_cast< bool >(val2
);
15051 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15052 (arg1
)->UsePopUp(arg2
);
15053 wxPyEndAllowThreads(__tstate
);
15054 if (PyErr_Occurred()) SWIG_fail
;
15056 resultobj
= SWIG_Py_Void();
15063 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionIsRectangle(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15064 PyObject
*resultobj
= 0;
15065 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15069 PyObject
*swig_obj
[1] ;
15071 if (!args
) SWIG_fail
;
15072 swig_obj
[0] = args
;
15073 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15074 if (!SWIG_IsOK(res1
)) {
15075 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionIsRectangle" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15077 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15079 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15080 result
= (bool)(arg1
)->SelectionIsRectangle();
15081 wxPyEndAllowThreads(__tstate
);
15082 if (PyErr_Occurred()) SWIG_fail
;
15085 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15093 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15094 PyObject
*resultobj
= 0;
15095 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15101 PyObject
* obj0
= 0 ;
15102 PyObject
* obj1
= 0 ;
15103 char * kwnames
[] = {
15104 (char *) "self",(char *) "zoom", NULL
15107 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetZoom",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15108 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15109 if (!SWIG_IsOK(res1
)) {
15110 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15112 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15113 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15114 if (!SWIG_IsOK(ecode2
)) {
15115 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetZoom" "', expected argument " "2"" of type '" "int""'");
15117 arg2
= static_cast< int >(val2
);
15119 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15120 (arg1
)->SetZoom(arg2
);
15121 wxPyEndAllowThreads(__tstate
);
15122 if (PyErr_Occurred()) SWIG_fail
;
15124 resultobj
= SWIG_Py_Void();
15131 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetZoom(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15132 PyObject
*resultobj
= 0;
15133 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15137 PyObject
*swig_obj
[1] ;
15139 if (!args
) SWIG_fail
;
15140 swig_obj
[0] = args
;
15141 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15142 if (!SWIG_IsOK(res1
)) {
15143 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetZoom" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15145 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15147 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15148 result
= (int)(arg1
)->GetZoom();
15149 wxPyEndAllowThreads(__tstate
);
15150 if (PyErr_Occurred()) SWIG_fail
;
15152 resultobj
= SWIG_From_int(static_cast< int >(result
));
15159 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CreateDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15160 PyObject
*resultobj
= 0;
15161 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15165 PyObject
*swig_obj
[1] ;
15167 if (!args
) SWIG_fail
;
15168 swig_obj
[0] = args
;
15169 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15170 if (!SWIG_IsOK(res1
)) {
15171 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CreateDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15173 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15175 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15176 result
= (void *)(arg1
)->CreateDocument();
15177 wxPyEndAllowThreads(__tstate
);
15178 if (PyErr_Occurred()) SWIG_fail
;
15180 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_void
, 0 | 0 );
15187 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddRefDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15188 PyObject
*resultobj
= 0;
15189 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15190 void *arg2
= (void *) 0 ;
15194 PyObject
* obj0
= 0 ;
15195 PyObject
* obj1
= 0 ;
15196 char * kwnames
[] = {
15197 (char *) "self",(char *) "docPointer", NULL
15200 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddRefDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15201 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15202 if (!SWIG_IsOK(res1
)) {
15203 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15205 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15206 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15207 if (!SWIG_IsOK(res2
)) {
15208 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddRefDocument" "', expected argument " "2"" of type '" "void *""'");
15211 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15212 (arg1
)->AddRefDocument(arg2
);
15213 wxPyEndAllowThreads(__tstate
);
15214 if (PyErr_Occurred()) SWIG_fail
;
15216 resultobj
= SWIG_Py_Void();
15223 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ReleaseDocument(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15224 PyObject
*resultobj
= 0;
15225 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15226 void *arg2
= (void *) 0 ;
15230 PyObject
* obj0
= 0 ;
15231 PyObject
* obj1
= 0 ;
15232 char * kwnames
[] = {
15233 (char *) "self",(char *) "docPointer", NULL
15236 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ReleaseDocument",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15237 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15238 if (!SWIG_IsOK(res1
)) {
15239 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15241 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15242 res2
= SWIG_ConvertPtr(obj1
,SWIG_as_voidptrptr(&arg2
), 0, 0);
15243 if (!SWIG_IsOK(res2
)) {
15244 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_ReleaseDocument" "', expected argument " "2"" of type '" "void *""'");
15247 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15248 (arg1
)->ReleaseDocument(arg2
);
15249 wxPyEndAllowThreads(__tstate
);
15250 if (PyErr_Occurred()) SWIG_fail
;
15252 resultobj
= SWIG_Py_Void();
15259 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetModEventMask(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15260 PyObject
*resultobj
= 0;
15261 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15265 PyObject
*swig_obj
[1] ;
15267 if (!args
) SWIG_fail
;
15268 swig_obj
[0] = args
;
15269 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15270 if (!SWIG_IsOK(res1
)) {
15271 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetModEventMask" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15273 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15275 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15276 result
= (int)(arg1
)->GetModEventMask();
15277 wxPyEndAllowThreads(__tstate
);
15278 if (PyErr_Occurred()) SWIG_fail
;
15280 resultobj
= SWIG_From_int(static_cast< int >(result
));
15287 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15288 PyObject
*resultobj
= 0;
15289 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15295 PyObject
* obj0
= 0 ;
15296 PyObject
* obj1
= 0 ;
15297 char * kwnames
[] = {
15298 (char *) "self",(char *) "focus", NULL
15301 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCFocus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15302 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15303 if (!SWIG_IsOK(res1
)) {
15304 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15306 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15307 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15308 if (!SWIG_IsOK(ecode2
)) {
15309 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCFocus" "', expected argument " "2"" of type '" "bool""'");
15311 arg2
= static_cast< bool >(val2
);
15313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15314 (arg1
)->SetSTCFocus(arg2
);
15315 wxPyEndAllowThreads(__tstate
);
15316 if (PyErr_Occurred()) SWIG_fail
;
15318 resultobj
= SWIG_Py_Void();
15325 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCFocus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15326 PyObject
*resultobj
= 0;
15327 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15331 PyObject
*swig_obj
[1] ;
15333 if (!args
) SWIG_fail
;
15334 swig_obj
[0] = args
;
15335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15336 if (!SWIG_IsOK(res1
)) {
15337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCFocus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15339 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15342 result
= (bool)(arg1
)->GetSTCFocus();
15343 wxPyEndAllowThreads(__tstate
);
15344 if (PyErr_Occurred()) SWIG_fail
;
15347 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15355 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15356 PyObject
*resultobj
= 0;
15357 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15363 PyObject
* obj0
= 0 ;
15364 PyObject
* obj1
= 0 ;
15365 char * kwnames
[] = {
15366 (char *) "self",(char *) "statusCode", NULL
15369 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetStatus",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15370 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15371 if (!SWIG_IsOK(res1
)) {
15372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15374 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15375 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15376 if (!SWIG_IsOK(ecode2
)) {
15377 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetStatus" "', expected argument " "2"" of type '" "int""'");
15379 arg2
= static_cast< int >(val2
);
15381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15382 (arg1
)->SetStatus(arg2
);
15383 wxPyEndAllowThreads(__tstate
);
15384 if (PyErr_Occurred()) SWIG_fail
;
15386 resultobj
= SWIG_Py_Void();
15393 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStatus(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15394 PyObject
*resultobj
= 0;
15395 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15399 PyObject
*swig_obj
[1] ;
15401 if (!args
) SWIG_fail
;
15402 swig_obj
[0] = args
;
15403 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15404 if (!SWIG_IsOK(res1
)) {
15405 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStatus" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15407 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15409 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15410 result
= (int)(arg1
)->GetStatus();
15411 wxPyEndAllowThreads(__tstate
);
15412 if (PyErr_Occurred()) SWIG_fail
;
15414 resultobj
= SWIG_From_int(static_cast< int >(result
));
15421 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15422 PyObject
*resultobj
= 0;
15423 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15429 PyObject
* obj0
= 0 ;
15430 PyObject
* obj1
= 0 ;
15431 char * kwnames
[] = {
15432 (char *) "self",(char *) "captures", NULL
15435 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetMouseDownCaptures",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15436 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15437 if (!SWIG_IsOK(res1
)) {
15438 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15440 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15441 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
15442 if (!SWIG_IsOK(ecode2
)) {
15443 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMouseDownCaptures" "', expected argument " "2"" of type '" "bool""'");
15445 arg2
= static_cast< bool >(val2
);
15447 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15448 (arg1
)->SetMouseDownCaptures(arg2
);
15449 wxPyEndAllowThreads(__tstate
);
15450 if (PyErr_Occurred()) SWIG_fail
;
15452 resultobj
= SWIG_Py_Void();
15459 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetMouseDownCaptures(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15460 PyObject
*resultobj
= 0;
15461 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15465 PyObject
*swig_obj
[1] ;
15467 if (!args
) SWIG_fail
;
15468 swig_obj
[0] = args
;
15469 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15470 if (!SWIG_IsOK(res1
)) {
15471 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetMouseDownCaptures" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15473 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15475 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15476 result
= (bool)(arg1
)->GetMouseDownCaptures();
15477 wxPyEndAllowThreads(__tstate
);
15478 if (PyErr_Occurred()) SWIG_fail
;
15481 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
15489 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15490 PyObject
*resultobj
= 0;
15491 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15497 PyObject
* obj0
= 0 ;
15498 PyObject
* obj1
= 0 ;
15499 char * kwnames
[] = {
15500 (char *) "self",(char *) "cursorType", NULL
15503 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSTCCursor",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15504 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15505 if (!SWIG_IsOK(res1
)) {
15506 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15508 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15509 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15510 if (!SWIG_IsOK(ecode2
)) {
15511 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSTCCursor" "', expected argument " "2"" of type '" "int""'");
15513 arg2
= static_cast< int >(val2
);
15515 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15516 (arg1
)->SetSTCCursor(arg2
);
15517 wxPyEndAllowThreads(__tstate
);
15518 if (PyErr_Occurred()) SWIG_fail
;
15520 resultobj
= SWIG_Py_Void();
15527 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSTCCursor(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15528 PyObject
*resultobj
= 0;
15529 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15533 PyObject
*swig_obj
[1] ;
15535 if (!args
) SWIG_fail
;
15536 swig_obj
[0] = args
;
15537 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15538 if (!SWIG_IsOK(res1
)) {
15539 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSTCCursor" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15541 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15543 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15544 result
= (int)(arg1
)->GetSTCCursor();
15545 wxPyEndAllowThreads(__tstate
);
15546 if (PyErr_Occurred()) SWIG_fail
;
15548 resultobj
= SWIG_From_int(static_cast< int >(result
));
15555 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15556 PyObject
*resultobj
= 0;
15557 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15563 PyObject
* obj0
= 0 ;
15564 PyObject
* obj1
= 0 ;
15565 char * kwnames
[] = {
15566 (char *) "self",(char *) "symbol", NULL
15569 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetControlCharSymbol",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15570 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15571 if (!SWIG_IsOK(res1
)) {
15572 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15574 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15575 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15576 if (!SWIG_IsOK(ecode2
)) {
15577 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetControlCharSymbol" "', expected argument " "2"" of type '" "int""'");
15579 arg2
= static_cast< int >(val2
);
15581 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15582 (arg1
)->SetControlCharSymbol(arg2
);
15583 wxPyEndAllowThreads(__tstate
);
15584 if (PyErr_Occurred()) SWIG_fail
;
15586 resultobj
= SWIG_Py_Void();
15593 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetControlCharSymbol(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15594 PyObject
*resultobj
= 0;
15595 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15599 PyObject
*swig_obj
[1] ;
15601 if (!args
) SWIG_fail
;
15602 swig_obj
[0] = args
;
15603 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15604 if (!SWIG_IsOK(res1
)) {
15605 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetControlCharSymbol" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15607 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15609 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15610 result
= (int)(arg1
)->GetControlCharSymbol();
15611 wxPyEndAllowThreads(__tstate
);
15612 if (PyErr_Occurred()) SWIG_fail
;
15614 resultobj
= SWIG_From_int(static_cast< int >(result
));
15621 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15622 PyObject
*resultobj
= 0;
15623 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15626 PyObject
*swig_obj
[1] ;
15628 if (!args
) SWIG_fail
;
15629 swig_obj
[0] = args
;
15630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15631 if (!SWIG_IsOK(res1
)) {
15632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15634 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15637 (arg1
)->WordPartLeft();
15638 wxPyEndAllowThreads(__tstate
);
15639 if (PyErr_Occurred()) SWIG_fail
;
15641 resultobj
= SWIG_Py_Void();
15648 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartLeftExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15649 PyObject
*resultobj
= 0;
15650 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15653 PyObject
*swig_obj
[1] ;
15655 if (!args
) SWIG_fail
;
15656 swig_obj
[0] = args
;
15657 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15658 if (!SWIG_IsOK(res1
)) {
15659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartLeftExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15661 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15663 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15664 (arg1
)->WordPartLeftExtend();
15665 wxPyEndAllowThreads(__tstate
);
15666 if (PyErr_Occurred()) SWIG_fail
;
15668 resultobj
= SWIG_Py_Void();
15675 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15676 PyObject
*resultobj
= 0;
15677 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15680 PyObject
*swig_obj
[1] ;
15682 if (!args
) SWIG_fail
;
15683 swig_obj
[0] = args
;
15684 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15685 if (!SWIG_IsOK(res1
)) {
15686 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15688 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15690 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15691 (arg1
)->WordPartRight();
15692 wxPyEndAllowThreads(__tstate
);
15693 if (PyErr_Occurred()) SWIG_fail
;
15695 resultobj
= SWIG_Py_Void();
15702 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordPartRightExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15703 PyObject
*resultobj
= 0;
15704 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15707 PyObject
*swig_obj
[1] ;
15709 if (!args
) SWIG_fail
;
15710 swig_obj
[0] = args
;
15711 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15712 if (!SWIG_IsOK(res1
)) {
15713 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordPartRightExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15715 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15717 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15718 (arg1
)->WordPartRightExtend();
15719 wxPyEndAllowThreads(__tstate
);
15720 if (PyErr_Occurred()) SWIG_fail
;
15722 resultobj
= SWIG_Py_Void();
15729 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVisiblePolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15730 PyObject
*resultobj
= 0;
15731 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15740 PyObject
* obj0
= 0 ;
15741 PyObject
* obj1
= 0 ;
15742 PyObject
* obj2
= 0 ;
15743 char * kwnames
[] = {
15744 (char *) "self",(char *) "visiblePolicy",(char *) "visibleSlop", NULL
15747 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetVisiblePolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15748 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15749 if (!SWIG_IsOK(res1
)) {
15750 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15752 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15753 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15754 if (!SWIG_IsOK(ecode2
)) {
15755 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "2"" of type '" "int""'");
15757 arg2
= static_cast< int >(val2
);
15758 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15759 if (!SWIG_IsOK(ecode3
)) {
15760 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetVisiblePolicy" "', expected argument " "3"" of type '" "int""'");
15762 arg3
= static_cast< int >(val3
);
15764 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15765 (arg1
)->SetVisiblePolicy(arg2
,arg3
);
15766 wxPyEndAllowThreads(__tstate
);
15767 if (PyErr_Occurred()) SWIG_fail
;
15769 resultobj
= SWIG_Py_Void();
15776 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineLeft(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15777 PyObject
*resultobj
= 0;
15778 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15781 PyObject
*swig_obj
[1] ;
15783 if (!args
) SWIG_fail
;
15784 swig_obj
[0] = args
;
15785 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15786 if (!SWIG_IsOK(res1
)) {
15787 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineLeft" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15789 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15791 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15792 (arg1
)->DelLineLeft();
15793 wxPyEndAllowThreads(__tstate
);
15794 if (PyErr_Occurred()) SWIG_fail
;
15796 resultobj
= SWIG_Py_Void();
15803 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DelLineRight(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15804 PyObject
*resultobj
= 0;
15805 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15808 PyObject
*swig_obj
[1] ;
15810 if (!args
) SWIG_fail
;
15811 swig_obj
[0] = args
;
15812 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15813 if (!SWIG_IsOK(res1
)) {
15814 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DelLineRight" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15816 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15818 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15819 (arg1
)->DelLineRight();
15820 wxPyEndAllowThreads(__tstate
);
15821 if (PyErr_Occurred()) SWIG_fail
;
15823 resultobj
= SWIG_Py_Void();
15830 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15831 PyObject
*resultobj
= 0;
15832 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15838 PyObject
* obj0
= 0 ;
15839 PyObject
* obj1
= 0 ;
15840 char * kwnames
[] = {
15841 (char *) "self",(char *) "newOffset", NULL
15844 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetXOffset",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
15845 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15846 if (!SWIG_IsOK(res1
)) {
15847 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15849 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15850 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15851 if (!SWIG_IsOK(ecode2
)) {
15852 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXOffset" "', expected argument " "2"" of type '" "int""'");
15854 arg2
= static_cast< int >(val2
);
15856 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15857 (arg1
)->SetXOffset(arg2
);
15858 wxPyEndAllowThreads(__tstate
);
15859 if (PyErr_Occurred()) SWIG_fail
;
15861 resultobj
= SWIG_Py_Void();
15868 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetXOffset(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15869 PyObject
*resultobj
= 0;
15870 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15874 PyObject
*swig_obj
[1] ;
15876 if (!args
) SWIG_fail
;
15877 swig_obj
[0] = args
;
15878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15879 if (!SWIG_IsOK(res1
)) {
15880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetXOffset" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15885 result
= (int)(arg1
)->GetXOffset();
15886 wxPyEndAllowThreads(__tstate
);
15887 if (PyErr_Occurred()) SWIG_fail
;
15889 resultobj
= SWIG_From_int(static_cast< int >(result
));
15896 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ChooseCaretX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
15897 PyObject
*resultobj
= 0;
15898 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15901 PyObject
*swig_obj
[1] ;
15903 if (!args
) SWIG_fail
;
15904 swig_obj
[0] = args
;
15905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15906 if (!SWIG_IsOK(res1
)) {
15907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ChooseCaretX" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15909 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15912 (arg1
)->ChooseCaretX();
15913 wxPyEndAllowThreads(__tstate
);
15914 if (PyErr_Occurred()) SWIG_fail
;
15916 resultobj
= SWIG_Py_Void();
15923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetXCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15924 PyObject
*resultobj
= 0;
15925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15934 PyObject
* obj0
= 0 ;
15935 PyObject
* obj1
= 0 ;
15936 PyObject
* obj2
= 0 ;
15937 char * kwnames
[] = {
15938 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15941 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetXCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15942 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15943 if (!SWIG_IsOK(res1
)) {
15944 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15946 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15947 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15948 if (!SWIG_IsOK(ecode2
)) {
15949 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15951 arg2
= static_cast< int >(val2
);
15952 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
15953 if (!SWIG_IsOK(ecode3
)) {
15954 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetXCaretPolicy" "', expected argument " "3"" of type '" "int""'");
15956 arg3
= static_cast< int >(val3
);
15958 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
15959 (arg1
)->SetXCaretPolicy(arg2
,arg3
);
15960 wxPyEndAllowThreads(__tstate
);
15961 if (PyErr_Occurred()) SWIG_fail
;
15963 resultobj
= SWIG_Py_Void();
15970 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetYCaretPolicy(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
15971 PyObject
*resultobj
= 0;
15972 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
15981 PyObject
* obj0
= 0 ;
15982 PyObject
* obj1
= 0 ;
15983 PyObject
* obj2
= 0 ;
15984 char * kwnames
[] = {
15985 (char *) "self",(char *) "caretPolicy",(char *) "caretSlop", NULL
15988 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetYCaretPolicy",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
15989 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
15990 if (!SWIG_IsOK(res1
)) {
15991 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
15993 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
15994 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
15995 if (!SWIG_IsOK(ecode2
)) {
15996 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "2"" of type '" "int""'");
15998 arg2
= static_cast< int >(val2
);
15999 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16000 if (!SWIG_IsOK(ecode3
)) {
16001 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetYCaretPolicy" "', expected argument " "3"" of type '" "int""'");
16003 arg3
= static_cast< int >(val3
);
16005 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16006 (arg1
)->SetYCaretPolicy(arg2
,arg3
);
16007 wxPyEndAllowThreads(__tstate
);
16008 if (PyErr_Occurred()) SWIG_fail
;
16010 resultobj
= SWIG_Py_Void();
16017 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16018 PyObject
*resultobj
= 0;
16019 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16025 PyObject
* obj0
= 0 ;
16026 PyObject
* obj1
= 0 ;
16027 char * kwnames
[] = {
16028 (char *) "self",(char *) "mode", NULL
16031 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPrintWrapMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16032 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16033 if (!SWIG_IsOK(res1
)) {
16034 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16036 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16037 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16038 if (!SWIG_IsOK(ecode2
)) {
16039 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPrintWrapMode" "', expected argument " "2"" of type '" "int""'");
16041 arg2
= static_cast< int >(val2
);
16043 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16044 (arg1
)->SetPrintWrapMode(arg2
);
16045 wxPyEndAllowThreads(__tstate
);
16046 if (PyErr_Occurred()) SWIG_fail
;
16048 resultobj
= SWIG_Py_Void();
16055 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPrintWrapMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16056 PyObject
*resultobj
= 0;
16057 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16061 PyObject
*swig_obj
[1] ;
16063 if (!args
) SWIG_fail
;
16064 swig_obj
[0] = args
;
16065 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16066 if (!SWIG_IsOK(res1
)) {
16067 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPrintWrapMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16069 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16071 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16072 result
= (int)(arg1
)->GetPrintWrapMode();
16073 wxPyEndAllowThreads(__tstate
);
16074 if (PyErr_Occurred()) SWIG_fail
;
16076 resultobj
= SWIG_From_int(static_cast< int >(result
));
16083 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveForeground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16084 PyObject
*resultobj
= 0;
16085 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16087 wxColour
*arg3
= 0 ;
16093 PyObject
* obj0
= 0 ;
16094 PyObject
* obj1
= 0 ;
16095 PyObject
* obj2
= 0 ;
16096 char * kwnames
[] = {
16097 (char *) "self",(char *) "useSetting",(char *) "fore", NULL
16100 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveForeground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16101 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16102 if (!SWIG_IsOK(res1
)) {
16103 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16105 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16106 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16107 if (!SWIG_IsOK(ecode2
)) {
16108 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveForeground" "', expected argument " "2"" of type '" "bool""'");
16110 arg2
= static_cast< bool >(val2
);
16113 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16116 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16117 (arg1
)->SetHotspotActiveForeground(arg2
,(wxColour
const &)*arg3
);
16118 wxPyEndAllowThreads(__tstate
);
16119 if (PyErr_Occurred()) SWIG_fail
;
16121 resultobj
= SWIG_Py_Void();
16128 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveBackground(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16129 PyObject
*resultobj
= 0;
16130 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16132 wxColour
*arg3
= 0 ;
16138 PyObject
* obj0
= 0 ;
16139 PyObject
* obj1
= 0 ;
16140 PyObject
* obj2
= 0 ;
16141 char * kwnames
[] = {
16142 (char *) "self",(char *) "useSetting",(char *) "back", NULL
16145 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetHotspotActiveBackground",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16146 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16147 if (!SWIG_IsOK(res1
)) {
16148 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16150 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16151 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16152 if (!SWIG_IsOK(ecode2
)) {
16153 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveBackground" "', expected argument " "2"" of type '" "bool""'");
16155 arg2
= static_cast< bool >(val2
);
16158 if ( ! wxColour_helper(obj2
, &arg3
)) SWIG_fail
;
16161 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16162 (arg1
)->SetHotspotActiveBackground(arg2
,(wxColour
const &)*arg3
);
16163 wxPyEndAllowThreads(__tstate
);
16164 if (PyErr_Occurred()) SWIG_fail
;
16166 resultobj
= SWIG_Py_Void();
16173 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotActiveUnderline(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16174 PyObject
*resultobj
= 0;
16175 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16181 PyObject
* obj0
= 0 ;
16182 PyObject
* obj1
= 0 ;
16183 char * kwnames
[] = {
16184 (char *) "self",(char *) "underline", NULL
16187 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotActiveUnderline",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16188 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16189 if (!SWIG_IsOK(res1
)) {
16190 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16192 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16193 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16194 if (!SWIG_IsOK(ecode2
)) {
16195 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotActiveUnderline" "', expected argument " "2"" of type '" "bool""'");
16197 arg2
= static_cast< bool >(val2
);
16199 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16200 (arg1
)->SetHotspotActiveUnderline(arg2
);
16201 wxPyEndAllowThreads(__tstate
);
16202 if (PyErr_Occurred()) SWIG_fail
;
16204 resultobj
= SWIG_Py_Void();
16211 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHotspotSingleLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16212 PyObject
*resultobj
= 0;
16213 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16219 PyObject
* obj0
= 0 ;
16220 PyObject
* obj1
= 0 ;
16221 char * kwnames
[] = {
16222 (char *) "self",(char *) "singleLine", NULL
16225 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHotspotSingleLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16226 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16227 if (!SWIG_IsOK(res1
)) {
16228 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16230 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16231 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
16232 if (!SWIG_IsOK(ecode2
)) {
16233 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetHotspotSingleLine" "', expected argument " "2"" of type '" "bool""'");
16235 arg2
= static_cast< bool >(val2
);
16237 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16238 (arg1
)->SetHotspotSingleLine(arg2
);
16239 wxPyEndAllowThreads(__tstate
);
16240 if (PyErr_Occurred()) SWIG_fail
;
16242 resultobj
= SWIG_Py_Void();
16249 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16250 PyObject
*resultobj
= 0;
16251 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16254 PyObject
*swig_obj
[1] ;
16256 if (!args
) SWIG_fail
;
16257 swig_obj
[0] = args
;
16258 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16259 if (!SWIG_IsOK(res1
)) {
16260 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16262 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16264 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16265 (arg1
)->ParaDown();
16266 wxPyEndAllowThreads(__tstate
);
16267 if (PyErr_Occurred()) SWIG_fail
;
16269 resultobj
= SWIG_Py_Void();
16276 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16277 PyObject
*resultobj
= 0;
16278 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16281 PyObject
*swig_obj
[1] ;
16283 if (!args
) SWIG_fail
;
16284 swig_obj
[0] = args
;
16285 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16286 if (!SWIG_IsOK(res1
)) {
16287 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16289 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16291 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16292 (arg1
)->ParaDownExtend();
16293 wxPyEndAllowThreads(__tstate
);
16294 if (PyErr_Occurred()) SWIG_fail
;
16296 resultobj
= SWIG_Py_Void();
16303 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16304 PyObject
*resultobj
= 0;
16305 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16308 PyObject
*swig_obj
[1] ;
16310 if (!args
) SWIG_fail
;
16311 swig_obj
[0] = args
;
16312 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16313 if (!SWIG_IsOK(res1
)) {
16314 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16316 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16318 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16320 wxPyEndAllowThreads(__tstate
);
16321 if (PyErr_Occurred()) SWIG_fail
;
16323 resultobj
= SWIG_Py_Void();
16330 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ParaUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16331 PyObject
*resultobj
= 0;
16332 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16335 PyObject
*swig_obj
[1] ;
16337 if (!args
) SWIG_fail
;
16338 swig_obj
[0] = args
;
16339 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16340 if (!SWIG_IsOK(res1
)) {
16341 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ParaUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16343 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16345 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16346 (arg1
)->ParaUpExtend();
16347 wxPyEndAllowThreads(__tstate
);
16348 if (PyErr_Occurred()) SWIG_fail
;
16350 resultobj
= SWIG_Py_Void();
16357 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionBefore(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16358 PyObject
*resultobj
= 0;
16359 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16366 PyObject
* obj0
= 0 ;
16367 PyObject
* obj1
= 0 ;
16368 char * kwnames
[] = {
16369 (char *) "self",(char *) "pos", NULL
16372 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionBefore",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16373 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16374 if (!SWIG_IsOK(res1
)) {
16375 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16377 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16378 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16379 if (!SWIG_IsOK(ecode2
)) {
16380 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionBefore" "', expected argument " "2"" of type '" "int""'");
16382 arg2
= static_cast< int >(val2
);
16384 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16385 result
= (int)(arg1
)->PositionBefore(arg2
);
16386 wxPyEndAllowThreads(__tstate
);
16387 if (PyErr_Occurred()) SWIG_fail
;
16389 resultobj
= SWIG_From_int(static_cast< int >(result
));
16396 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PositionAfter(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16397 PyObject
*resultobj
= 0;
16398 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16405 PyObject
* obj0
= 0 ;
16406 PyObject
* obj1
= 0 ;
16407 char * kwnames
[] = {
16408 (char *) "self",(char *) "pos", NULL
16411 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PositionAfter",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16412 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16413 if (!SWIG_IsOK(res1
)) {
16414 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16416 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16417 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16418 if (!SWIG_IsOK(ecode2
)) {
16419 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PositionAfter" "', expected argument " "2"" of type '" "int""'");
16421 arg2
= static_cast< int >(val2
);
16423 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16424 result
= (int)(arg1
)->PositionAfter(arg2
);
16425 wxPyEndAllowThreads(__tstate
);
16426 if (PyErr_Occurred()) SWIG_fail
;
16428 resultobj
= SWIG_From_int(static_cast< int >(result
));
16435 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyRange(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16436 PyObject
*resultobj
= 0;
16437 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16446 PyObject
* obj0
= 0 ;
16447 PyObject
* obj1
= 0 ;
16448 PyObject
* obj2
= 0 ;
16449 char * kwnames
[] = {
16450 (char *) "self",(char *) "start",(char *) "end", NULL
16453 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyRange",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16454 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16455 if (!SWIG_IsOK(res1
)) {
16456 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16458 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16459 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16460 if (!SWIG_IsOK(ecode2
)) {
16461 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "2"" of type '" "int""'");
16463 arg2
= static_cast< int >(val2
);
16464 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
16465 if (!SWIG_IsOK(ecode3
)) {
16466 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_CopyRange" "', expected argument " "3"" of type '" "int""'");
16468 arg3
= static_cast< int >(val3
);
16470 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16471 (arg1
)->CopyRange(arg2
,arg3
);
16472 wxPyEndAllowThreads(__tstate
);
16473 if (PyErr_Occurred()) SWIG_fail
;
16475 resultobj
= SWIG_Py_Void();
16482 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CopyText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16483 PyObject
*resultobj
= 0;
16484 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16486 wxString
*arg3
= 0 ;
16491 bool temp3
= false ;
16492 PyObject
* obj0
= 0 ;
16493 PyObject
* obj1
= 0 ;
16494 PyObject
* obj2
= 0 ;
16495 char * kwnames
[] = {
16496 (char *) "self",(char *) "length",(char *) "text", NULL
16499 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_CopyText",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
16500 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16501 if (!SWIG_IsOK(res1
)) {
16502 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16504 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16505 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16506 if (!SWIG_IsOK(ecode2
)) {
16507 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CopyText" "', expected argument " "2"" of type '" "int""'");
16509 arg2
= static_cast< int >(val2
);
16511 arg3
= wxString_in_helper(obj2
);
16512 if (arg3
== NULL
) SWIG_fail
;
16516 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16517 (arg1
)->CopyText(arg2
,(wxString
const &)*arg3
);
16518 wxPyEndAllowThreads(__tstate
);
16519 if (PyErr_Occurred()) SWIG_fail
;
16521 resultobj
= SWIG_Py_Void();
16536 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16537 PyObject
*resultobj
= 0;
16538 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16544 PyObject
* obj0
= 0 ;
16545 PyObject
* obj1
= 0 ;
16546 char * kwnames
[] = {
16547 (char *) "self",(char *) "mode", NULL
16550 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetSelectionMode",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16551 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16552 if (!SWIG_IsOK(res1
)) {
16553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16555 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16556 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16557 if (!SWIG_IsOK(ecode2
)) {
16558 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetSelectionMode" "', expected argument " "2"" of type '" "int""'");
16560 arg2
= static_cast< int >(val2
);
16562 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16563 (arg1
)->SetSelectionMode(arg2
);
16564 wxPyEndAllowThreads(__tstate
);
16565 if (PyErr_Occurred()) SWIG_fail
;
16567 resultobj
= SWIG_Py_Void();
16574 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectionMode(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16575 PyObject
*resultobj
= 0;
16576 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16580 PyObject
*swig_obj
[1] ;
16582 if (!args
) SWIG_fail
;
16583 swig_obj
[0] = args
;
16584 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16585 if (!SWIG_IsOK(res1
)) {
16586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectionMode" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16588 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16590 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16591 result
= (int)(arg1
)->GetSelectionMode();
16592 wxPyEndAllowThreads(__tstate
);
16593 if (PyErr_Occurred()) SWIG_fail
;
16595 resultobj
= SWIG_From_int(static_cast< int >(result
));
16602 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelStartPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16603 PyObject
*resultobj
= 0;
16604 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16611 PyObject
* obj0
= 0 ;
16612 PyObject
* obj1
= 0 ;
16613 char * kwnames
[] = {
16614 (char *) "self",(char *) "line", NULL
16617 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelStartPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16618 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16619 if (!SWIG_IsOK(res1
)) {
16620 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16622 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16623 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16624 if (!SWIG_IsOK(ecode2
)) {
16625 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelStartPosition" "', expected argument " "2"" of type '" "int""'");
16627 arg2
= static_cast< int >(val2
);
16629 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16630 result
= (int)(arg1
)->GetLineSelStartPosition(arg2
);
16631 wxPyEndAllowThreads(__tstate
);
16632 if (PyErr_Occurred()) SWIG_fail
;
16634 resultobj
= SWIG_From_int(static_cast< int >(result
));
16641 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineSelEndPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
16642 PyObject
*resultobj
= 0;
16643 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16650 PyObject
* obj0
= 0 ;
16651 PyObject
* obj1
= 0 ;
16652 char * kwnames
[] = {
16653 (char *) "self",(char *) "line", NULL
16656 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineSelEndPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
16657 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16658 if (!SWIG_IsOK(res1
)) {
16659 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16661 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16662 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
16663 if (!SWIG_IsOK(ecode2
)) {
16664 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineSelEndPosition" "', expected argument " "2"" of type '" "int""'");
16666 arg2
= static_cast< int >(val2
);
16668 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16669 result
= (int)(arg1
)->GetLineSelEndPosition(arg2
);
16670 wxPyEndAllowThreads(__tstate
);
16671 if (PyErr_Occurred()) SWIG_fail
;
16673 resultobj
= SWIG_From_int(static_cast< int >(result
));
16680 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16681 PyObject
*resultobj
= 0;
16682 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16685 PyObject
*swig_obj
[1] ;
16687 if (!args
) SWIG_fail
;
16688 swig_obj
[0] = args
;
16689 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16690 if (!SWIG_IsOK(res1
)) {
16691 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16693 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16695 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16696 (arg1
)->LineDownRectExtend();
16697 wxPyEndAllowThreads(__tstate
);
16698 if (PyErr_Occurred()) SWIG_fail
;
16700 resultobj
= SWIG_Py_Void();
16707 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16708 PyObject
*resultobj
= 0;
16709 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16712 PyObject
*swig_obj
[1] ;
16714 if (!args
) SWIG_fail
;
16715 swig_obj
[0] = args
;
16716 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16717 if (!SWIG_IsOK(res1
)) {
16718 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16720 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16722 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16723 (arg1
)->LineUpRectExtend();
16724 wxPyEndAllowThreads(__tstate
);
16725 if (PyErr_Occurred()) SWIG_fail
;
16727 resultobj
= SWIG_Py_Void();
16734 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharLeftRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16735 PyObject
*resultobj
= 0;
16736 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16739 PyObject
*swig_obj
[1] ;
16741 if (!args
) SWIG_fail
;
16742 swig_obj
[0] = args
;
16743 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16744 if (!SWIG_IsOK(res1
)) {
16745 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharLeftRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16747 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16749 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16750 (arg1
)->CharLeftRectExtend();
16751 wxPyEndAllowThreads(__tstate
);
16752 if (PyErr_Occurred()) SWIG_fail
;
16754 resultobj
= SWIG_Py_Void();
16761 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CharRightRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16762 PyObject
*resultobj
= 0;
16763 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16766 PyObject
*swig_obj
[1] ;
16768 if (!args
) SWIG_fail
;
16769 swig_obj
[0] = args
;
16770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16771 if (!SWIG_IsOK(res1
)) {
16772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CharRightRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16774 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16777 (arg1
)->CharRightRectExtend();
16778 wxPyEndAllowThreads(__tstate
);
16779 if (PyErr_Occurred()) SWIG_fail
;
16781 resultobj
= SWIG_Py_Void();
16788 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_HomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16789 PyObject
*resultobj
= 0;
16790 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16793 PyObject
*swig_obj
[1] ;
16795 if (!args
) SWIG_fail
;
16796 swig_obj
[0] = args
;
16797 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16798 if (!SWIG_IsOK(res1
)) {
16799 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_HomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16801 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16803 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16804 (arg1
)->HomeRectExtend();
16805 wxPyEndAllowThreads(__tstate
);
16806 if (PyErr_Occurred()) SWIG_fail
;
16808 resultobj
= SWIG_Py_Void();
16815 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_VCHomeRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16816 PyObject
*resultobj
= 0;
16817 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16820 PyObject
*swig_obj
[1] ;
16822 if (!args
) SWIG_fail
;
16823 swig_obj
[0] = args
;
16824 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16825 if (!SWIG_IsOK(res1
)) {
16826 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_VCHomeRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16828 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16830 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16831 (arg1
)->VCHomeRectExtend();
16832 wxPyEndAllowThreads(__tstate
);
16833 if (PyErr_Occurred()) SWIG_fail
;
16835 resultobj
= SWIG_Py_Void();
16842 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LineEndRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16843 PyObject
*resultobj
= 0;
16844 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16847 PyObject
*swig_obj
[1] ;
16849 if (!args
) SWIG_fail
;
16850 swig_obj
[0] = args
;
16851 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16852 if (!SWIG_IsOK(res1
)) {
16853 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LineEndRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16855 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16857 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16858 (arg1
)->LineEndRectExtend();
16859 wxPyEndAllowThreads(__tstate
);
16860 if (PyErr_Occurred()) SWIG_fail
;
16862 resultobj
= SWIG_Py_Void();
16869 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageUpRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16870 PyObject
*resultobj
= 0;
16871 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16874 PyObject
*swig_obj
[1] ;
16876 if (!args
) SWIG_fail
;
16877 swig_obj
[0] = args
;
16878 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16879 if (!SWIG_IsOK(res1
)) {
16880 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageUpRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16882 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16884 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16885 (arg1
)->PageUpRectExtend();
16886 wxPyEndAllowThreads(__tstate
);
16887 if (PyErr_Occurred()) SWIG_fail
;
16889 resultobj
= SWIG_Py_Void();
16896 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PageDownRectExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16897 PyObject
*resultobj
= 0;
16898 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16901 PyObject
*swig_obj
[1] ;
16903 if (!args
) SWIG_fail
;
16904 swig_obj
[0] = args
;
16905 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16906 if (!SWIG_IsOK(res1
)) {
16907 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PageDownRectExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16909 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16911 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16912 (arg1
)->PageDownRectExtend();
16913 wxPyEndAllowThreads(__tstate
);
16914 if (PyErr_Occurred()) SWIG_fail
;
16916 resultobj
= SWIG_Py_Void();
16923 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUp(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16924 PyObject
*resultobj
= 0;
16925 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16928 PyObject
*swig_obj
[1] ;
16930 if (!args
) SWIG_fail
;
16931 swig_obj
[0] = args
;
16932 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16933 if (!SWIG_IsOK(res1
)) {
16934 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUp" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16936 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16938 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16939 (arg1
)->StutteredPageUp();
16940 wxPyEndAllowThreads(__tstate
);
16941 if (PyErr_Occurred()) SWIG_fail
;
16943 resultobj
= SWIG_Py_Void();
16950 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageUpExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16951 PyObject
*resultobj
= 0;
16952 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16955 PyObject
*swig_obj
[1] ;
16957 if (!args
) SWIG_fail
;
16958 swig_obj
[0] = args
;
16959 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16960 if (!SWIG_IsOK(res1
)) {
16961 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageUpExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16963 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16965 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16966 (arg1
)->StutteredPageUpExtend();
16967 wxPyEndAllowThreads(__tstate
);
16968 if (PyErr_Occurred()) SWIG_fail
;
16970 resultobj
= SWIG_Py_Void();
16977 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDown(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
16978 PyObject
*resultobj
= 0;
16979 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
16982 PyObject
*swig_obj
[1] ;
16984 if (!args
) SWIG_fail
;
16985 swig_obj
[0] = args
;
16986 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
16987 if (!SWIG_IsOK(res1
)) {
16988 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDown" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
16990 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
16992 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
16993 (arg1
)->StutteredPageDown();
16994 wxPyEndAllowThreads(__tstate
);
16995 if (PyErr_Occurred()) SWIG_fail
;
16997 resultobj
= SWIG_Py_Void();
17004 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StutteredPageDownExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17005 PyObject
*resultobj
= 0;
17006 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17009 PyObject
*swig_obj
[1] ;
17011 if (!args
) SWIG_fail
;
17012 swig_obj
[0] = args
;
17013 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17014 if (!SWIG_IsOK(res1
)) {
17015 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StutteredPageDownExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17017 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17019 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17020 (arg1
)->StutteredPageDownExtend();
17021 wxPyEndAllowThreads(__tstate
);
17022 if (PyErr_Occurred()) SWIG_fail
;
17024 resultobj
= SWIG_Py_Void();
17031 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17032 PyObject
*resultobj
= 0;
17033 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17036 PyObject
*swig_obj
[1] ;
17038 if (!args
) SWIG_fail
;
17039 swig_obj
[0] = args
;
17040 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17041 if (!SWIG_IsOK(res1
)) {
17042 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17044 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17046 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17047 (arg1
)->WordLeftEnd();
17048 wxPyEndAllowThreads(__tstate
);
17049 if (PyErr_Occurred()) SWIG_fail
;
17051 resultobj
= SWIG_Py_Void();
17058 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordLeftEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17059 PyObject
*resultobj
= 0;
17060 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17063 PyObject
*swig_obj
[1] ;
17065 if (!args
) SWIG_fail
;
17066 swig_obj
[0] = args
;
17067 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17068 if (!SWIG_IsOK(res1
)) {
17069 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordLeftEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17071 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17073 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17074 (arg1
)->WordLeftEndExtend();
17075 wxPyEndAllowThreads(__tstate
);
17076 if (PyErr_Occurred()) SWIG_fail
;
17078 resultobj
= SWIG_Py_Void();
17085 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEnd(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17086 PyObject
*resultobj
= 0;
17087 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17090 PyObject
*swig_obj
[1] ;
17092 if (!args
) SWIG_fail
;
17093 swig_obj
[0] = args
;
17094 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17095 if (!SWIG_IsOK(res1
)) {
17096 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEnd" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17098 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17100 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17101 (arg1
)->WordRightEnd();
17102 wxPyEndAllowThreads(__tstate
);
17103 if (PyErr_Occurred()) SWIG_fail
;
17105 resultobj
= SWIG_Py_Void();
17112 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_WordRightEndExtend(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17113 PyObject
*resultobj
= 0;
17114 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17117 PyObject
*swig_obj
[1] ;
17119 if (!args
) SWIG_fail
;
17120 swig_obj
[0] = args
;
17121 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17122 if (!SWIG_IsOK(res1
)) {
17123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_WordRightEndExtend" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17125 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17127 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17128 (arg1
)->WordRightEndExtend();
17129 wxPyEndAllowThreads(__tstate
);
17130 if (PyErr_Occurred()) SWIG_fail
;
17132 resultobj
= SWIG_Py_Void();
17139 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetWhitespaceChars(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17140 PyObject
*resultobj
= 0;
17141 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17142 wxString
*arg2
= 0 ;
17145 bool temp2
= false ;
17146 PyObject
* obj0
= 0 ;
17147 PyObject
* obj1
= 0 ;
17148 char * kwnames
[] = {
17149 (char *) "self",(char *) "characters", NULL
17152 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetWhitespaceChars",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17153 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17154 if (!SWIG_IsOK(res1
)) {
17155 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetWhitespaceChars" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17157 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17159 arg2
= wxString_in_helper(obj1
);
17160 if (arg2
== NULL
) SWIG_fail
;
17164 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17165 (arg1
)->SetWhitespaceChars((wxString
const &)*arg2
);
17166 wxPyEndAllowThreads(__tstate
);
17167 if (PyErr_Occurred()) SWIG_fail
;
17169 resultobj
= SWIG_Py_Void();
17184 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCharsDefault(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17185 PyObject
*resultobj
= 0;
17186 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17189 PyObject
*swig_obj
[1] ;
17191 if (!args
) SWIG_fail
;
17192 swig_obj
[0] = args
;
17193 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17194 if (!SWIG_IsOK(res1
)) {
17195 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCharsDefault" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17197 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17199 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17200 (arg1
)->SetCharsDefault();
17201 wxPyEndAllowThreads(__tstate
);
17202 if (PyErr_Occurred()) SWIG_fail
;
17204 resultobj
= SWIG_Py_Void();
17211 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AutoCompGetCurrent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17212 PyObject
*resultobj
= 0;
17213 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17217 PyObject
*swig_obj
[1] ;
17219 if (!args
) SWIG_fail
;
17220 swig_obj
[0] = args
;
17221 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17222 if (!SWIG_IsOK(res1
)) {
17223 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AutoCompGetCurrent" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17225 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17227 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17228 result
= (int)(arg1
)->AutoCompGetCurrent();
17229 wxPyEndAllowThreads(__tstate
);
17230 if (PyErr_Occurred()) SWIG_fail
;
17232 resultobj
= SWIG_From_int(static_cast< int >(result
));
17239 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Allocate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17240 PyObject
*resultobj
= 0;
17241 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17247 PyObject
* obj0
= 0 ;
17248 PyObject
* obj1
= 0 ;
17249 char * kwnames
[] = {
17250 (char *) "self",(char *) "bytes", NULL
17253 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_Allocate",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17254 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17255 if (!SWIG_IsOK(res1
)) {
17256 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17258 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17259 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17260 if (!SWIG_IsOK(ecode2
)) {
17261 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Allocate" "', expected argument " "2"" of type '" "int""'");
17263 arg2
= static_cast< int >(val2
);
17265 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17266 (arg1
)->Allocate(arg2
);
17267 wxPyEndAllowThreads(__tstate
);
17268 if (PyErr_Occurred()) SWIG_fail
;
17270 resultobj
= SWIG_Py_Void();
17277 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_FindColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17278 PyObject
*resultobj
= 0;
17279 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17289 PyObject
* obj0
= 0 ;
17290 PyObject
* obj1
= 0 ;
17291 PyObject
* obj2
= 0 ;
17292 char * kwnames
[] = {
17293 (char *) "self",(char *) "line",(char *) "column", NULL
17296 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_FindColumn",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17297 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17298 if (!SWIG_IsOK(res1
)) {
17299 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17301 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17302 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17303 if (!SWIG_IsOK(ecode2
)) {
17304 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "2"" of type '" "int""'");
17306 arg2
= static_cast< int >(val2
);
17307 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17308 if (!SWIG_IsOK(ecode3
)) {
17309 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_FindColumn" "', expected argument " "3"" of type '" "int""'");
17311 arg3
= static_cast< int >(val3
);
17313 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17314 result
= (int)(arg1
)->FindColumn(arg2
,arg3
);
17315 wxPyEndAllowThreads(__tstate
);
17316 if (PyErr_Occurred()) SWIG_fail
;
17318 resultobj
= SWIG_From_int(static_cast< int >(result
));
17325 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17326 PyObject
*resultobj
= 0;
17327 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17331 PyObject
*swig_obj
[1] ;
17333 if (!args
) SWIG_fail
;
17334 swig_obj
[0] = args
;
17335 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17336 if (!SWIG_IsOK(res1
)) {
17337 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17339 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17341 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17342 result
= (bool)(arg1
)->GetCaretSticky();
17343 wxPyEndAllowThreads(__tstate
);
17344 if (PyErr_Occurred()) SWIG_fail
;
17347 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17355 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17356 PyObject
*resultobj
= 0;
17357 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17363 PyObject
* obj0
= 0 ;
17364 PyObject
* obj1
= 0 ;
17365 char * kwnames
[] = {
17366 (char *) "self",(char *) "useCaretStickyBehaviour", NULL
17369 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetCaretSticky",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17370 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17371 if (!SWIG_IsOK(res1
)) {
17372 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17374 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17375 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17376 if (!SWIG_IsOK(ecode2
)) {
17377 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetCaretSticky" "', expected argument " "2"" of type '" "bool""'");
17379 arg2
= static_cast< bool >(val2
);
17381 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17382 (arg1
)->SetCaretSticky(arg2
);
17383 wxPyEndAllowThreads(__tstate
);
17384 if (PyErr_Occurred()) SWIG_fail
;
17386 resultobj
= SWIG_Py_Void();
17393 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ToggleCaretSticky(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17394 PyObject
*resultobj
= 0;
17395 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17398 PyObject
*swig_obj
[1] ;
17400 if (!args
) SWIG_fail
;
17401 swig_obj
[0] = args
;
17402 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17403 if (!SWIG_IsOK(res1
)) {
17404 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ToggleCaretSticky" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17406 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17408 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17409 (arg1
)->ToggleCaretSticky();
17410 wxPyEndAllowThreads(__tstate
);
17411 if (PyErr_Occurred()) SWIG_fail
;
17413 resultobj
= SWIG_Py_Void();
17420 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17421 PyObject
*resultobj
= 0;
17422 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17428 PyObject
* obj0
= 0 ;
17429 PyObject
* obj1
= 0 ;
17430 char * kwnames
[] = {
17431 (char *) "self",(char *) "convert", NULL
17434 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetPasteConvertEndings",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17435 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17436 if (!SWIG_IsOK(res1
)) {
17437 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17439 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17440 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
17441 if (!SWIG_IsOK(ecode2
)) {
17442 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetPasteConvertEndings" "', expected argument " "2"" of type '" "bool""'");
17444 arg2
= static_cast< bool >(val2
);
17446 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17447 (arg1
)->SetPasteConvertEndings(arg2
);
17448 wxPyEndAllowThreads(__tstate
);
17449 if (PyErr_Occurred()) SWIG_fail
;
17451 resultobj
= SWIG_Py_Void();
17458 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPasteConvertEndings(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17459 PyObject
*resultobj
= 0;
17460 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17464 PyObject
*swig_obj
[1] ;
17466 if (!args
) SWIG_fail
;
17467 swig_obj
[0] = args
;
17468 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17469 if (!SWIG_IsOK(res1
)) {
17470 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPasteConvertEndings" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17472 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17474 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17475 result
= (bool)(arg1
)->GetPasteConvertEndings();
17476 wxPyEndAllowThreads(__tstate
);
17477 if (PyErr_Occurred()) SWIG_fail
;
17480 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
17488 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SelectionDuplicate(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17489 PyObject
*resultobj
= 0;
17490 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17493 PyObject
*swig_obj
[1] ;
17495 if (!args
) SWIG_fail
;
17496 swig_obj
[0] = args
;
17497 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17498 if (!SWIG_IsOK(res1
)) {
17499 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SelectionDuplicate" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17501 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17503 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17504 (arg1
)->SelectionDuplicate();
17505 wxPyEndAllowThreads(__tstate
);
17506 if (PyErr_Occurred()) SWIG_fail
;
17508 resultobj
= SWIG_Py_Void();
17515 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StartRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17516 PyObject
*resultobj
= 0;
17517 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17520 PyObject
*swig_obj
[1] ;
17522 if (!args
) SWIG_fail
;
17523 swig_obj
[0] = args
;
17524 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17525 if (!SWIG_IsOK(res1
)) {
17526 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StartRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17528 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17530 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17531 (arg1
)->StartRecord();
17532 wxPyEndAllowThreads(__tstate
);
17533 if (PyErr_Occurred()) SWIG_fail
;
17535 resultobj
= SWIG_Py_Void();
17542 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StopRecord(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17543 PyObject
*resultobj
= 0;
17544 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17547 PyObject
*swig_obj
[1] ;
17549 if (!args
) SWIG_fail
;
17550 swig_obj
[0] = args
;
17551 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17552 if (!SWIG_IsOK(res1
)) {
17553 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StopRecord" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17555 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17557 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17558 (arg1
)->StopRecord();
17559 wxPyEndAllowThreads(__tstate
);
17560 if (PyErr_Occurred()) SWIG_fail
;
17562 resultobj
= SWIG_Py_Void();
17569 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17570 PyObject
*resultobj
= 0;
17571 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17577 PyObject
* obj0
= 0 ;
17578 PyObject
* obj1
= 0 ;
17579 char * kwnames
[] = {
17580 (char *) "self",(char *) "lexer", NULL
17583 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexer",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17584 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17585 if (!SWIG_IsOK(res1
)) {
17586 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17588 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17589 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17590 if (!SWIG_IsOK(ecode2
)) {
17591 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLexer" "', expected argument " "2"" of type '" "int""'");
17593 arg2
= static_cast< int >(val2
);
17595 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17596 (arg1
)->SetLexer(arg2
);
17597 wxPyEndAllowThreads(__tstate
);
17598 if (PyErr_Occurred()) SWIG_fail
;
17600 resultobj
= SWIG_Py_Void();
17607 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLexer(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17608 PyObject
*resultobj
= 0;
17609 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17613 PyObject
*swig_obj
[1] ;
17615 if (!args
) SWIG_fail
;
17616 swig_obj
[0] = args
;
17617 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17618 if (!SWIG_IsOK(res1
)) {
17619 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLexer" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17621 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17623 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17624 result
= (int)(arg1
)->GetLexer();
17625 wxPyEndAllowThreads(__tstate
);
17626 if (PyErr_Occurred()) SWIG_fail
;
17628 resultobj
= SWIG_From_int(static_cast< int >(result
));
17635 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_Colourise(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17636 PyObject
*resultobj
= 0;
17637 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17646 PyObject
* obj0
= 0 ;
17647 PyObject
* obj1
= 0 ;
17648 PyObject
* obj2
= 0 ;
17649 char * kwnames
[] = {
17650 (char *) "self",(char *) "start",(char *) "end", NULL
17653 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_Colourise",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17654 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17655 if (!SWIG_IsOK(res1
)) {
17656 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17658 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17659 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17660 if (!SWIG_IsOK(ecode2
)) {
17661 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "2"" of type '" "int""'");
17663 arg2
= static_cast< int >(val2
);
17664 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
17665 if (!SWIG_IsOK(ecode3
)) {
17666 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_Colourise" "', expected argument " "3"" of type '" "int""'");
17668 arg3
= static_cast< int >(val3
);
17670 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17671 (arg1
)->Colourise(arg2
,arg3
);
17672 wxPyEndAllowThreads(__tstate
);
17673 if (PyErr_Occurred()) SWIG_fail
;
17675 resultobj
= SWIG_Py_Void();
17682 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17683 PyObject
*resultobj
= 0;
17684 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17685 wxString
*arg2
= 0 ;
17686 wxString
*arg3
= 0 ;
17689 bool temp2
= false ;
17690 bool temp3
= false ;
17691 PyObject
* obj0
= 0 ;
17692 PyObject
* obj1
= 0 ;
17693 PyObject
* obj2
= 0 ;
17694 char * kwnames
[] = {
17695 (char *) "self",(char *) "key",(char *) "value", NULL
17698 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetProperty",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17699 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17700 if (!SWIG_IsOK(res1
)) {
17701 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17703 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17705 arg2
= wxString_in_helper(obj1
);
17706 if (arg2
== NULL
) SWIG_fail
;
17710 arg3
= wxString_in_helper(obj2
);
17711 if (arg3
== NULL
) SWIG_fail
;
17715 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17716 (arg1
)->SetProperty((wxString
const &)*arg2
,(wxString
const &)*arg3
);
17717 wxPyEndAllowThreads(__tstate
);
17718 if (PyErr_Occurred()) SWIG_fail
;
17720 resultobj
= SWIG_Py_Void();
17743 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetKeyWords(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17744 PyObject
*resultobj
= 0;
17745 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17747 wxString
*arg3
= 0 ;
17752 bool temp3
= false ;
17753 PyObject
* obj0
= 0 ;
17754 PyObject
* obj1
= 0 ;
17755 PyObject
* obj2
= 0 ;
17756 char * kwnames
[] = {
17757 (char *) "self",(char *) "keywordSet",(char *) "keyWords", NULL
17760 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetKeyWords",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
17761 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17762 if (!SWIG_IsOK(res1
)) {
17763 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17765 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17766 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
17767 if (!SWIG_IsOK(ecode2
)) {
17768 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetKeyWords" "', expected argument " "2"" of type '" "int""'");
17770 arg2
= static_cast< int >(val2
);
17772 arg3
= wxString_in_helper(obj2
);
17773 if (arg3
== NULL
) SWIG_fail
;
17777 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17778 (arg1
)->SetKeyWords(arg2
,(wxString
const &)*arg3
);
17779 wxPyEndAllowThreads(__tstate
);
17780 if (PyErr_Occurred()) SWIG_fail
;
17782 resultobj
= SWIG_Py_Void();
17797 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLexerLanguage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17798 PyObject
*resultobj
= 0;
17799 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17800 wxString
*arg2
= 0 ;
17803 bool temp2
= false ;
17804 PyObject
* obj0
= 0 ;
17805 PyObject
* obj1
= 0 ;
17806 char * kwnames
[] = {
17807 (char *) "self",(char *) "language", NULL
17810 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLexerLanguage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17811 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17812 if (!SWIG_IsOK(res1
)) {
17813 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLexerLanguage" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17815 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17817 arg2
= wxString_in_helper(obj1
);
17818 if (arg2
== NULL
) SWIG_fail
;
17822 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17823 (arg1
)->SetLexerLanguage((wxString
const &)*arg2
);
17824 wxPyEndAllowThreads(__tstate
);
17825 if (PyErr_Occurred()) SWIG_fail
;
17827 resultobj
= SWIG_Py_Void();
17842 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetProperty(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17843 PyObject
*resultobj
= 0;
17844 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17845 wxString
*arg2
= 0 ;
17849 bool temp2
= false ;
17850 PyObject
* obj0
= 0 ;
17851 PyObject
* obj1
= 0 ;
17852 char * kwnames
[] = {
17853 (char *) "self",(char *) "key", NULL
17856 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetProperty",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17857 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17858 if (!SWIG_IsOK(res1
)) {
17859 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetProperty" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17861 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17863 arg2
= wxString_in_helper(obj1
);
17864 if (arg2
== NULL
) SWIG_fail
;
17868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17869 result
= (arg1
)->GetProperty((wxString
const &)*arg2
);
17870 wxPyEndAllowThreads(__tstate
);
17871 if (PyErr_Occurred()) SWIG_fail
;
17875 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17877 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17894 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyExpanded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17895 PyObject
*resultobj
= 0;
17896 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17897 wxString
*arg2
= 0 ;
17901 bool temp2
= false ;
17902 PyObject
* obj0
= 0 ;
17903 PyObject
* obj1
= 0 ;
17904 char * kwnames
[] = {
17905 (char *) "self",(char *) "key", NULL
17908 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyExpanded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17909 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17910 if (!SWIG_IsOK(res1
)) {
17911 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyExpanded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17913 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17915 arg2
= wxString_in_helper(obj1
);
17916 if (arg2
== NULL
) SWIG_fail
;
17920 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17921 result
= (arg1
)->GetPropertyExpanded((wxString
const &)*arg2
);
17922 wxPyEndAllowThreads(__tstate
);
17923 if (PyErr_Occurred()) SWIG_fail
;
17927 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
17929 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
17946 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetPropertyInt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
17947 PyObject
*resultobj
= 0;
17948 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17949 wxString
*arg2
= 0 ;
17953 bool temp2
= false ;
17954 PyObject
* obj0
= 0 ;
17955 PyObject
* obj1
= 0 ;
17956 char * kwnames
[] = {
17957 (char *) "self",(char *) "key", NULL
17960 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetPropertyInt",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
17961 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
17962 if (!SWIG_IsOK(res1
)) {
17963 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetPropertyInt" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
17965 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
17967 arg2
= wxString_in_helper(obj1
);
17968 if (arg2
== NULL
) SWIG_fail
;
17972 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
17973 result
= (int)(arg1
)->GetPropertyInt((wxString
const &)*arg2
);
17974 wxPyEndAllowThreads(__tstate
);
17975 if (PyErr_Occurred()) SWIG_fail
;
17977 resultobj
= SWIG_From_int(static_cast< int >(result
));
17992 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetStyleBitsNeeded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
17993 PyObject
*resultobj
= 0;
17994 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
17998 PyObject
*swig_obj
[1] ;
18000 if (!args
) SWIG_fail
;
18001 swig_obj
[0] = args
;
18002 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18003 if (!SWIG_IsOK(res1
)) {
18004 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetStyleBitsNeeded" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18006 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18008 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18009 result
= (int)(arg1
)->GetStyleBitsNeeded();
18010 wxPyEndAllowThreads(__tstate
);
18011 if (PyErr_Occurred()) SWIG_fail
;
18013 resultobj
= SWIG_From_int(static_cast< int >(result
));
18020 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurrentLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18021 PyObject
*resultobj
= 0;
18022 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18026 PyObject
*swig_obj
[1] ;
18028 if (!args
) SWIG_fail
;
18029 swig_obj
[0] = args
;
18030 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18031 if (!SWIG_IsOK(res1
)) {
18032 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurrentLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18034 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18036 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18037 result
= (int)(arg1
)->GetCurrentLine();
18038 wxPyEndAllowThreads(__tstate
);
18039 if (PyErr_Occurred()) SWIG_fail
;
18041 resultobj
= SWIG_From_int(static_cast< int >(result
));
18048 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetSpec(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18049 PyObject
*resultobj
= 0;
18050 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18052 wxString
*arg3
= 0 ;
18057 bool temp3
= false ;
18058 PyObject
* obj0
= 0 ;
18059 PyObject
* obj1
= 0 ;
18060 PyObject
* obj2
= 0 ;
18061 char * kwnames
[] = {
18062 (char *) "self",(char *) "styleNum",(char *) "spec", NULL
18065 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetSpec",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18066 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18067 if (!SWIG_IsOK(res1
)) {
18068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18070 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18071 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18072 if (!SWIG_IsOK(ecode2
)) {
18073 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetSpec" "', expected argument " "2"" of type '" "int""'");
18075 arg2
= static_cast< int >(val2
);
18077 arg3
= wxString_in_helper(obj2
);
18078 if (arg3
== NULL
) SWIG_fail
;
18082 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18083 (arg1
)->StyleSetSpec(arg2
,(wxString
const &)*arg3
);
18084 wxPyEndAllowThreads(__tstate
);
18085 if (PyErr_Occurred()) SWIG_fail
;
18087 resultobj
= SWIG_Py_Void();
18102 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFont(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18103 PyObject
*resultobj
= 0;
18104 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18113 PyObject
* obj0
= 0 ;
18114 PyObject
* obj1
= 0 ;
18115 PyObject
* obj2
= 0 ;
18116 char * kwnames
[] = {
18117 (char *) "self",(char *) "styleNum",(char *) "font", NULL
18120 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFont",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18121 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18122 if (!SWIG_IsOK(res1
)) {
18123 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18125 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18126 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18127 if (!SWIG_IsOK(ecode2
)) {
18128 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "2"" of type '" "int""'");
18130 arg2
= static_cast< int >(val2
);
18131 res3
= SWIG_ConvertPtr(obj2
, &argp3
, SWIGTYPE_p_wxFont
, 0 );
18132 if (!SWIG_IsOK(res3
)) {
18133 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18136 SWIG_exception_fail(SWIG_ValueError
, "invalid null reference " "in method '" "StyledTextCtrl_StyleSetFont" "', expected argument " "3"" of type '" "wxFont &""'");
18138 arg3
= reinterpret_cast< wxFont
* >(argp3
);
18140 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18141 (arg1
)->StyleSetFont(arg2
,*arg3
);
18142 wxPyEndAllowThreads(__tstate
);
18143 if (PyErr_Occurred()) SWIG_fail
;
18145 resultobj
= SWIG_Py_Void();
18152 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontAttr(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18153 PyObject
*resultobj
= 0;
18154 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18157 wxString
*arg4
= 0 ;
18161 wxFontEncoding arg8
= (wxFontEncoding
) wxFONTENCODING_DEFAULT
;
18168 bool temp4
= false ;
18177 PyObject
* obj0
= 0 ;
18178 PyObject
* obj1
= 0 ;
18179 PyObject
* obj2
= 0 ;
18180 PyObject
* obj3
= 0 ;
18181 PyObject
* obj4
= 0 ;
18182 PyObject
* obj5
= 0 ;
18183 PyObject
* obj6
= 0 ;
18184 PyObject
* obj7
= 0 ;
18185 char * kwnames
[] = {
18186 (char *) "self",(char *) "styleNum",(char *) "size",(char *) "faceName",(char *) "bold",(char *) "italic",(char *) "underline",(char *) "encoding", NULL
18189 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOOOOO|O:StyledTextCtrl_StyleSetFontAttr",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
,&obj4
,&obj5
,&obj6
,&obj7
)) SWIG_fail
;
18190 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18191 if (!SWIG_IsOK(res1
)) {
18192 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18194 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18195 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18196 if (!SWIG_IsOK(ecode2
)) {
18197 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "2"" of type '" "int""'");
18199 arg2
= static_cast< int >(val2
);
18200 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18201 if (!SWIG_IsOK(ecode3
)) {
18202 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "3"" of type '" "int""'");
18204 arg3
= static_cast< int >(val3
);
18206 arg4
= wxString_in_helper(obj3
);
18207 if (arg4
== NULL
) SWIG_fail
;
18210 ecode5
= SWIG_AsVal_bool(obj4
, &val5
);
18211 if (!SWIG_IsOK(ecode5
)) {
18212 SWIG_exception_fail(SWIG_ArgError(ecode5
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "5"" of type '" "bool""'");
18214 arg5
= static_cast< bool >(val5
);
18215 ecode6
= SWIG_AsVal_bool(obj5
, &val6
);
18216 if (!SWIG_IsOK(ecode6
)) {
18217 SWIG_exception_fail(SWIG_ArgError(ecode6
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "6"" of type '" "bool""'");
18219 arg6
= static_cast< bool >(val6
);
18220 ecode7
= SWIG_AsVal_bool(obj6
, &val7
);
18221 if (!SWIG_IsOK(ecode7
)) {
18222 SWIG_exception_fail(SWIG_ArgError(ecode7
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "7"" of type '" "bool""'");
18224 arg7
= static_cast< bool >(val7
);
18226 ecode8
= SWIG_AsVal_int(obj7
, &val8
);
18227 if (!SWIG_IsOK(ecode8
)) {
18228 SWIG_exception_fail(SWIG_ArgError(ecode8
), "in method '" "StyledTextCtrl_StyleSetFontAttr" "', expected argument " "8"" of type '" "wxFontEncoding""'");
18230 arg8
= static_cast< wxFontEncoding
>(val8
);
18233 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18234 (arg1
)->StyleSetFontAttr(arg2
,arg3
,(wxString
const &)*arg4
,arg5
,arg6
,arg7
,arg8
);
18235 wxPyEndAllowThreads(__tstate
);
18236 if (PyErr_Occurred()) SWIG_fail
;
18238 resultobj
= SWIG_Py_Void();
18253 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetCharacterSet(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18254 PyObject
*resultobj
= 0;
18255 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18264 PyObject
* obj0
= 0 ;
18265 PyObject
* obj1
= 0 ;
18266 PyObject
* obj2
= 0 ;
18267 char * kwnames
[] = {
18268 (char *) "self",(char *) "style",(char *) "characterSet", NULL
18271 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetCharacterSet",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18272 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18273 if (!SWIG_IsOK(res1
)) {
18274 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18276 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18277 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18278 if (!SWIG_IsOK(ecode2
)) {
18279 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "2"" of type '" "int""'");
18281 arg2
= static_cast< int >(val2
);
18282 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18283 if (!SWIG_IsOK(ecode3
)) {
18284 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetCharacterSet" "', expected argument " "3"" of type '" "int""'");
18286 arg3
= static_cast< int >(val3
);
18288 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18289 (arg1
)->StyleSetCharacterSet(arg2
,arg3
);
18290 wxPyEndAllowThreads(__tstate
);
18291 if (PyErr_Occurred()) SWIG_fail
;
18293 resultobj
= SWIG_Py_Void();
18300 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_StyleSetFontEncoding(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18301 PyObject
*resultobj
= 0;
18302 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18304 wxFontEncoding arg3
;
18311 PyObject
* obj0
= 0 ;
18312 PyObject
* obj1
= 0 ;
18313 PyObject
* obj2
= 0 ;
18314 char * kwnames
[] = {
18315 (char *) "self",(char *) "style",(char *) "encoding", NULL
18318 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_StyleSetFontEncoding",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18319 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18320 if (!SWIG_IsOK(res1
)) {
18321 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18323 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18324 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18325 if (!SWIG_IsOK(ecode2
)) {
18326 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "2"" of type '" "int""'");
18328 arg2
= static_cast< int >(val2
);
18329 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18330 if (!SWIG_IsOK(ecode3
)) {
18331 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_StyleSetFontEncoding" "', expected argument " "3"" of type '" "wxFontEncoding""'");
18333 arg3
= static_cast< wxFontEncoding
>(val3
);
18335 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18336 (arg1
)->StyleSetFontEncoding(arg2
,arg3
);
18337 wxPyEndAllowThreads(__tstate
);
18338 if (PyErr_Occurred()) SWIG_fail
;
18340 resultobj
= SWIG_Py_Void();
18347 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_CmdKeyExecute(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18348 PyObject
*resultobj
= 0;
18349 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18355 PyObject
* obj0
= 0 ;
18356 PyObject
* obj1
= 0 ;
18357 char * kwnames
[] = {
18358 (char *) "self",(char *) "cmd", NULL
18361 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_CmdKeyExecute",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18362 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18363 if (!SWIG_IsOK(res1
)) {
18364 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18366 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18367 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18368 if (!SWIG_IsOK(ecode2
)) {
18369 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_CmdKeyExecute" "', expected argument " "2"" of type '" "int""'");
18371 arg2
= static_cast< int >(val2
);
18373 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18374 (arg1
)->CmdKeyExecute(arg2
);
18375 wxPyEndAllowThreads(__tstate
);
18376 if (PyErr_Occurred()) SWIG_fail
;
18378 resultobj
= SWIG_Py_Void();
18385 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetMargins(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18386 PyObject
*resultobj
= 0;
18387 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18396 PyObject
* obj0
= 0 ;
18397 PyObject
* obj1
= 0 ;
18398 PyObject
* obj2
= 0 ;
18399 char * kwnames
[] = {
18400 (char *) "self",(char *) "left",(char *) "right", NULL
18403 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_SetMargins",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
18404 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18405 if (!SWIG_IsOK(res1
)) {
18406 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18408 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18409 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18410 if (!SWIG_IsOK(ecode2
)) {
18411 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "2"" of type '" "int""'");
18413 arg2
= static_cast< int >(val2
);
18414 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18415 if (!SWIG_IsOK(ecode3
)) {
18416 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SetMargins" "', expected argument " "3"" of type '" "int""'");
18418 arg3
= static_cast< int >(val3
);
18420 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18421 (arg1
)->SetMargins(arg2
,arg3
);
18422 wxPyEndAllowThreads(__tstate
);
18423 if (PyErr_Occurred()) SWIG_fail
;
18425 resultobj
= SWIG_Py_Void();
18432 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelection(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18433 PyObject
*resultobj
= 0;
18434 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18435 int *arg2
= (int *) 0 ;
18436 int *arg3
= (int *) 0 ;
18440 int res2
= SWIG_TMPOBJ
;
18442 int res3
= SWIG_TMPOBJ
;
18443 PyObject
*swig_obj
[1] ;
18447 if (!args
) SWIG_fail
;
18448 swig_obj
[0] = args
;
18449 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18450 if (!SWIG_IsOK(res1
)) {
18451 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelection" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18453 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18455 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18456 (arg1
)->GetSelection(arg2
,arg3
);
18457 wxPyEndAllowThreads(__tstate
);
18458 if (PyErr_Occurred()) SWIG_fail
;
18460 resultobj
= SWIG_Py_Void();
18461 if (SWIG_IsTmpObj(res2
)) {
18462 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
18464 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18465 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
18467 if (SWIG_IsTmpObj(res3
)) {
18468 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg3
)));
18470 int new_flags
= SWIG_IsNewObj(res3
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
18471 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg3
), SWIGTYPE_p_int
, new_flags
));
18479 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_PointFromPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18480 PyObject
*resultobj
= 0;
18481 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18488 PyObject
* obj0
= 0 ;
18489 PyObject
* obj1
= 0 ;
18490 char * kwnames
[] = {
18491 (char *) "self",(char *) "pos", NULL
18494 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_PointFromPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18495 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18496 if (!SWIG_IsOK(res1
)) {
18497 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18499 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18500 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18501 if (!SWIG_IsOK(ecode2
)) {
18502 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_PointFromPosition" "', expected argument " "2"" of type '" "int""'");
18504 arg2
= static_cast< int >(val2
);
18506 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18507 result
= (arg1
)->PointFromPosition(arg2
);
18508 wxPyEndAllowThreads(__tstate
);
18509 if (PyErr_Occurred()) SWIG_fail
;
18511 resultobj
= SWIG_NewPointerObj((new wxPoint(static_cast< const wxPoint
& >(result
))), SWIGTYPE_p_wxPoint
, SWIG_POINTER_OWN
| 0 );
18518 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18519 PyObject
*resultobj
= 0;
18520 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18526 PyObject
* obj0
= 0 ;
18527 PyObject
* obj1
= 0 ;
18528 char * kwnames
[] = {
18529 (char *) "self",(char *) "line", NULL
18532 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18533 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18534 if (!SWIG_IsOK(res1
)) {
18535 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18537 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18538 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18539 if (!SWIG_IsOK(ecode2
)) {
18540 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToLine" "', expected argument " "2"" of type '" "int""'");
18542 arg2
= static_cast< int >(val2
);
18544 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18545 (arg1
)->ScrollToLine(arg2
);
18546 wxPyEndAllowThreads(__tstate
);
18547 if (PyErr_Occurred()) SWIG_fail
;
18549 resultobj
= SWIG_Py_Void();
18556 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_ScrollToColumn(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18557 PyObject
*resultobj
= 0;
18558 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18564 PyObject
* obj0
= 0 ;
18565 PyObject
* obj1
= 0 ;
18566 char * kwnames
[] = {
18567 (char *) "self",(char *) "column", NULL
18570 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_ScrollToColumn",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18571 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18572 if (!SWIG_IsOK(res1
)) {
18573 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18575 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18576 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18577 if (!SWIG_IsOK(ecode2
)) {
18578 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_ScrollToColumn" "', expected argument " "2"" of type '" "int""'");
18580 arg2
= static_cast< int >(val2
);
18582 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18583 (arg1
)->ScrollToColumn(arg2
);
18584 wxPyEndAllowThreads(__tstate
);
18585 if (PyErr_Occurred()) SWIG_fail
;
18587 resultobj
= SWIG_Py_Void();
18594 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SendMsg(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18595 PyObject
*resultobj
= 0;
18596 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18598 long arg3
= (long) 0 ;
18599 long arg4
= (long) 0 ;
18609 PyObject
* obj0
= 0 ;
18610 PyObject
* obj1
= 0 ;
18611 PyObject
* obj2
= 0 ;
18612 PyObject
* obj3
= 0 ;
18613 char * kwnames
[] = {
18614 (char *) "self",(char *) "msg",(char *) "wp",(char *) "lp", NULL
18617 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO|OO:StyledTextCtrl_SendMsg",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18618 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18619 if (!SWIG_IsOK(res1
)) {
18620 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18622 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18623 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18624 if (!SWIG_IsOK(ecode2
)) {
18625 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "2"" of type '" "int""'");
18627 arg2
= static_cast< int >(val2
);
18629 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18630 if (!SWIG_IsOK(ecode3
)) {
18631 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "3"" of type '" "long""'");
18633 arg3
= static_cast< long >(val3
);
18636 ecode4
= SWIG_AsVal_long(obj3
, &val4
);
18637 if (!SWIG_IsOK(ecode4
)) {
18638 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_SendMsg" "', expected argument " "4"" of type '" "long""'");
18640 arg4
= static_cast< long >(val4
);
18643 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18644 result
= (long)(arg1
)->SendMsg(arg2
,arg3
,arg4
);
18645 wxPyEndAllowThreads(__tstate
);
18646 if (PyErr_Occurred()) SWIG_fail
;
18648 resultobj
= SWIG_From_long(static_cast< long >(result
));
18655 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetVScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18656 PyObject
*resultobj
= 0;
18657 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18658 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18663 PyObject
* obj0
= 0 ;
18664 PyObject
* obj1
= 0 ;
18665 char * kwnames
[] = {
18666 (char *) "self",(char *) "bar", NULL
18669 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetVScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18670 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18671 if (!SWIG_IsOK(res1
)) {
18672 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18674 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18675 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18676 if (!SWIG_IsOK(res2
)) {
18677 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetVScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18679 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18681 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18682 (arg1
)->SetVScrollBar(arg2
);
18683 wxPyEndAllowThreads(__tstate
);
18684 if (PyErr_Occurred()) SWIG_fail
;
18686 resultobj
= SWIG_Py_Void();
18693 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetHScrollBar(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18694 PyObject
*resultobj
= 0;
18695 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18696 wxScrollBar
*arg2
= (wxScrollBar
*) 0 ;
18701 PyObject
* obj0
= 0 ;
18702 PyObject
* obj1
= 0 ;
18703 char * kwnames
[] = {
18704 (char *) "self",(char *) "bar", NULL
18707 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetHScrollBar",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18708 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18709 if (!SWIG_IsOK(res1
)) {
18710 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18712 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18713 res2
= SWIG_ConvertPtr(obj1
, &argp2
,SWIGTYPE_p_wxScrollBar
, 0 | 0 );
18714 if (!SWIG_IsOK(res2
)) {
18715 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetHScrollBar" "', expected argument " "2"" of type '" "wxScrollBar *""'");
18717 arg2
= reinterpret_cast< wxScrollBar
* >(argp2
);
18719 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18720 (arg1
)->SetHScrollBar(arg2
);
18721 wxPyEndAllowThreads(__tstate
);
18722 if (PyErr_Occurred()) SWIG_fail
;
18724 resultobj
= SWIG_Py_Void();
18731 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
18732 PyObject
*resultobj
= 0;
18733 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18737 PyObject
*swig_obj
[1] ;
18739 if (!args
) SWIG_fail
;
18740 swig_obj
[0] = args
;
18741 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18742 if (!SWIG_IsOK(res1
)) {
18743 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18745 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18747 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18748 result
= (bool)(arg1
)->GetLastKeydownProcessed();
18749 wxPyEndAllowThreads(__tstate
);
18750 if (PyErr_Occurred()) SWIG_fail
;
18753 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18761 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetLastKeydownProcessed(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18762 PyObject
*resultobj
= 0;
18763 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18769 PyObject
* obj0
= 0 ;
18770 PyObject
* obj1
= 0 ;
18771 char * kwnames
[] = {
18772 (char *) "self",(char *) "val", NULL
18775 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetLastKeydownProcessed",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18776 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18777 if (!SWIG_IsOK(res1
)) {
18778 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18780 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18781 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
18782 if (!SWIG_IsOK(ecode2
)) {
18783 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetLastKeydownProcessed" "', expected argument " "2"" of type '" "bool""'");
18785 arg2
= static_cast< bool >(val2
);
18787 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18788 (arg1
)->SetLastKeydownProcessed(arg2
);
18789 wxPyEndAllowThreads(__tstate
);
18790 if (PyErr_Occurred()) SWIG_fail
;
18792 resultobj
= SWIG_Py_Void();
18799 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SaveFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18800 PyObject
*resultobj
= 0;
18801 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18802 wxString
*arg2
= 0 ;
18806 bool temp2
= false ;
18807 PyObject
* obj0
= 0 ;
18808 PyObject
* obj1
= 0 ;
18809 char * kwnames
[] = {
18810 (char *) "self",(char *) "filename", NULL
18813 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SaveFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18814 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18815 if (!SWIG_IsOK(res1
)) {
18816 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SaveFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18818 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18820 arg2
= wxString_in_helper(obj1
);
18821 if (arg2
== NULL
) SWIG_fail
;
18825 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18826 result
= (bool)(arg1
)->SaveFile((wxString
const &)*arg2
);
18827 wxPyEndAllowThreads(__tstate
);
18828 if (PyErr_Occurred()) SWIG_fail
;
18831 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18847 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_LoadFile(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18848 PyObject
*resultobj
= 0;
18849 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18850 wxString
*arg2
= 0 ;
18854 bool temp2
= false ;
18855 PyObject
* obj0
= 0 ;
18856 PyObject
* obj1
= 0 ;
18857 char * kwnames
[] = {
18858 (char *) "self",(char *) "filename", NULL
18861 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_LoadFile",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
18862 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18863 if (!SWIG_IsOK(res1
)) {
18864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_LoadFile" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18866 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18868 arg2
= wxString_in_helper(obj1
);
18869 if (arg2
== NULL
) SWIG_fail
;
18873 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18874 result
= (bool)(arg1
)->LoadFile((wxString
const &)*arg2
);
18875 wxPyEndAllowThreads(__tstate
);
18876 if (PyErr_Occurred()) SWIG_fail
;
18879 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
18895 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDragOver(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18896 PyObject
*resultobj
= 0;
18897 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18900 wxDragResult arg4
;
18901 wxDragResult result
;
18910 PyObject
* obj0
= 0 ;
18911 PyObject
* obj1
= 0 ;
18912 PyObject
* obj2
= 0 ;
18913 PyObject
* obj3
= 0 ;
18914 char * kwnames
[] = {
18915 (char *) "self",(char *) "x",(char *) "y",(char *) "def", NULL
18918 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDragOver",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18919 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18920 if (!SWIG_IsOK(res1
)) {
18921 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18923 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18924 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
18925 if (!SWIG_IsOK(ecode2
)) {
18926 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "2"" of type '" "int""'");
18928 arg2
= static_cast< int >(val2
);
18929 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
18930 if (!SWIG_IsOK(ecode3
)) {
18931 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "3"" of type '" "int""'");
18933 arg3
= static_cast< int >(val3
);
18934 ecode4
= SWIG_AsVal_int(obj3
, &val4
);
18935 if (!SWIG_IsOK(ecode4
)) {
18936 SWIG_exception_fail(SWIG_ArgError(ecode4
), "in method '" "StyledTextCtrl_DoDragOver" "', expected argument " "4"" of type '" "wxDragResult""'");
18938 arg4
= static_cast< wxDragResult
>(val4
);
18940 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18941 result
= (wxDragResult
)(arg1
)->DoDragOver(arg2
,arg3
,arg4
);
18942 wxPyEndAllowThreads(__tstate
);
18943 if (PyErr_Occurred()) SWIG_fail
;
18945 resultobj
= SWIG_From_int(static_cast< int >(result
));
18952 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_DoDropText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
18953 PyObject
*resultobj
= 0;
18954 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
18957 wxString
*arg4
= 0 ;
18965 bool temp4
= false ;
18966 PyObject
* obj0
= 0 ;
18967 PyObject
* obj1
= 0 ;
18968 PyObject
* obj2
= 0 ;
18969 PyObject
* obj3
= 0 ;
18970 char * kwnames
[] = {
18971 (char *) "self",(char *) "x",(char *) "y",(char *) "data", NULL
18974 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOOO:StyledTextCtrl_DoDropText",kwnames
,&obj0
,&obj1
,&obj2
,&obj3
)) SWIG_fail
;
18975 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
18976 if (!SWIG_IsOK(res1
)) {
18977 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
18979 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
18980 ecode2
= SWIG_AsVal_long(obj1
, &val2
);
18981 if (!SWIG_IsOK(ecode2
)) {
18982 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "2"" of type '" "long""'");
18984 arg2
= static_cast< long >(val2
);
18985 ecode3
= SWIG_AsVal_long(obj2
, &val3
);
18986 if (!SWIG_IsOK(ecode3
)) {
18987 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_DoDropText" "', expected argument " "3"" of type '" "long""'");
18989 arg3
= static_cast< long >(val3
);
18991 arg4
= wxString_in_helper(obj3
);
18992 if (arg4
== NULL
) SWIG_fail
;
18996 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
18997 result
= (bool)(arg1
)->DoDropText(arg2
,arg3
,(wxString
const &)*arg4
);
18998 wxPyEndAllowThreads(__tstate
);
18999 if (PyErr_Occurred()) SWIG_fail
;
19002 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19018 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19019 PyObject
*resultobj
= 0;
19020 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19026 PyObject
* obj0
= 0 ;
19027 PyObject
* obj1
= 0 ;
19028 char * kwnames
[] = {
19029 (char *) "self",(char *) "useAA", NULL
19032 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetUseAntiAliasing",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19033 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19034 if (!SWIG_IsOK(res1
)) {
19035 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19037 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19038 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
19039 if (!SWIG_IsOK(ecode2
)) {
19040 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_SetUseAntiAliasing" "', expected argument " "2"" of type '" "bool""'");
19042 arg2
= static_cast< bool >(val2
);
19044 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19045 (arg1
)->SetUseAntiAliasing(arg2
);
19046 wxPyEndAllowThreads(__tstate
);
19047 if (PyErr_Occurred()) SWIG_fail
;
19049 resultobj
= SWIG_Py_Void();
19056 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetUseAntiAliasing(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19057 PyObject
*resultobj
= 0;
19058 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19062 PyObject
*swig_obj
[1] ;
19064 if (!args
) SWIG_fail
;
19065 swig_obj
[0] = args
;
19066 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19067 if (!SWIG_IsOK(res1
)) {
19068 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetUseAntiAliasing" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19070 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19072 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19073 result
= (bool)(arg1
)->GetUseAntiAliasing();
19074 wxPyEndAllowThreads(__tstate
);
19075 if (PyErr_Occurred()) SWIG_fail
;
19078 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
19086 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AddTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19087 PyObject
*resultobj
= 0;
19088 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19089 char *arg2
= (char *) 0 ;
19095 PyObject
* obj0
= 0 ;
19096 PyObject
* obj1
= 0 ;
19097 char * kwnames
[] = {
19098 (char *) "self",(char *) "text", NULL
19101 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AddTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19102 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19103 if (!SWIG_IsOK(res1
)) {
19104 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19106 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19107 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19108 if (!SWIG_IsOK(res2
)) {
19109 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AddTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19113 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19114 (arg1
)->AddTextRaw((char const *)arg2
);
19115 wxPyEndAllowThreads(__tstate
);
19116 if (PyErr_Occurred()) SWIG_fail
;
19118 resultobj
= SWIG_Py_Void();
19119 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19122 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19127 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_InsertTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19128 PyObject
*resultobj
= 0;
19129 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19131 char *arg3
= (char *) 0 ;
19139 PyObject
* obj0
= 0 ;
19140 PyObject
* obj1
= 0 ;
19141 PyObject
* obj2
= 0 ;
19142 char * kwnames
[] = {
19143 (char *) "self",(char *) "pos",(char *) "text", NULL
19146 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_InsertTextRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19147 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19148 if (!SWIG_IsOK(res1
)) {
19149 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19151 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19152 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19153 if (!SWIG_IsOK(ecode2
)) {
19154 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "2"" of type '" "int""'");
19156 arg2
= static_cast< int >(val2
);
19157 res3
= SWIG_AsCharPtrAndSize(obj2
, &buf3
, NULL
, &alloc3
);
19158 if (!SWIG_IsOK(res3
)) {
19159 SWIG_exception_fail(SWIG_ArgError(res3
), "in method '" "StyledTextCtrl_InsertTextRaw" "', expected argument " "3"" of type '" "char const *""'");
19163 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19164 (arg1
)->InsertTextRaw(arg2
,(char const *)arg3
);
19165 wxPyEndAllowThreads(__tstate
);
19166 if (PyErr_Occurred()) SWIG_fail
;
19168 resultobj
= SWIG_Py_Void();
19169 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19172 if (alloc3
== SWIG_NEWOBJ
) delete[] buf3
;
19177 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetCurLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19178 PyObject
*resultobj
= 0;
19179 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19180 int *arg2
= (int *) 0 ;
19181 wxCharBuffer result
;
19185 int res2
= SWIG_TMPOBJ
;
19186 PyObject
*swig_obj
[1] ;
19189 if (!args
) SWIG_fail
;
19190 swig_obj
[0] = args
;
19191 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19192 if (!SWIG_IsOK(res1
)) {
19193 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetCurLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19195 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19197 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19198 result
= (arg1
)->GetCurLineRaw(arg2
);
19199 wxPyEndAllowThreads(__tstate
);
19200 if (PyErr_Occurred()) SWIG_fail
;
19203 resultobj
= PyString_FromString((char*)(&result
)->data());
19205 if (SWIG_IsTmpObj(res2
)) {
19206 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_From_int((*arg2
)));
19208 int new_flags
= SWIG_IsNewObj(res2
) ? (SWIG_POINTER_OWN
| 0 ) : 0 ;
19209 resultobj
= SWIG_Python_AppendOutput(resultobj
, SWIG_NewPointerObj((void*)(arg2
), SWIGTYPE_p_int
, new_flags
));
19217 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetLineRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19218 PyObject
*resultobj
= 0;
19219 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19221 wxCharBuffer result
;
19226 PyObject
* obj0
= 0 ;
19227 PyObject
* obj1
= 0 ;
19228 char * kwnames
[] = {
19229 (char *) "self",(char *) "line", NULL
19232 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_GetLineRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19233 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19234 if (!SWIG_IsOK(res1
)) {
19235 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19237 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19238 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19239 if (!SWIG_IsOK(ecode2
)) {
19240 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetLineRaw" "', expected argument " "2"" of type '" "int""'");
19242 arg2
= static_cast< int >(val2
);
19244 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19245 result
= (arg1
)->GetLineRaw(arg2
);
19246 wxPyEndAllowThreads(__tstate
);
19247 if (PyErr_Occurred()) SWIG_fail
;
19250 resultobj
= PyString_FromString((char*)(&result
)->data());
19258 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetSelectedTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19259 PyObject
*resultobj
= 0;
19260 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19261 wxCharBuffer result
;
19264 PyObject
*swig_obj
[1] ;
19266 if (!args
) SWIG_fail
;
19267 swig_obj
[0] = args
;
19268 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19269 if (!SWIG_IsOK(res1
)) {
19270 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetSelectedTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19272 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19274 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19275 result
= (arg1
)->GetSelectedTextRaw();
19276 wxPyEndAllowThreads(__tstate
);
19277 if (PyErr_Occurred()) SWIG_fail
;
19280 resultobj
= PyString_FromString((char*)(&result
)->data());
19288 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRangeRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19289 PyObject
*resultobj
= 0;
19290 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19293 wxCharBuffer result
;
19300 PyObject
* obj0
= 0 ;
19301 PyObject
* obj1
= 0 ;
19302 PyObject
* obj2
= 0 ;
19303 char * kwnames
[] = {
19304 (char *) "self",(char *) "startPos",(char *) "endPos", NULL
19307 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OOO:StyledTextCtrl_GetTextRangeRaw",kwnames
,&obj0
,&obj1
,&obj2
)) SWIG_fail
;
19308 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19309 if (!SWIG_IsOK(res1
)) {
19310 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19312 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19313 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19314 if (!SWIG_IsOK(ecode2
)) {
19315 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "2"" of type '" "int""'");
19317 arg2
= static_cast< int >(val2
);
19318 ecode3
= SWIG_AsVal_int(obj2
, &val3
);
19319 if (!SWIG_IsOK(ecode3
)) {
19320 SWIG_exception_fail(SWIG_ArgError(ecode3
), "in method '" "StyledTextCtrl_GetTextRangeRaw" "', expected argument " "3"" of type '" "int""'");
19322 arg3
= static_cast< int >(val3
);
19324 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19325 result
= (arg1
)->GetTextRangeRaw(arg2
,arg3
);
19326 wxPyEndAllowThreads(__tstate
);
19327 if (PyErr_Occurred()) SWIG_fail
;
19330 resultobj
= PyString_FromString((char*)(&result
)->data());
19338 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_SetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19339 PyObject
*resultobj
= 0;
19340 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19341 char *arg2
= (char *) 0 ;
19347 PyObject
* obj0
= 0 ;
19348 PyObject
* obj1
= 0 ;
19349 char * kwnames
[] = {
19350 (char *) "self",(char *) "text", NULL
19353 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_SetTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19354 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19355 if (!SWIG_IsOK(res1
)) {
19356 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19358 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19359 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19360 if (!SWIG_IsOK(res2
)) {
19361 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_SetTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19365 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19366 (arg1
)->SetTextRaw((char const *)arg2
);
19367 wxPyEndAllowThreads(__tstate
);
19368 if (PyErr_Occurred()) SWIG_fail
;
19370 resultobj
= SWIG_Py_Void();
19371 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19374 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19379 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_GetTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19380 PyObject
*resultobj
= 0;
19381 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19382 wxCharBuffer result
;
19385 PyObject
*swig_obj
[1] ;
19387 if (!args
) SWIG_fail
;
19388 swig_obj
[0] = args
;
19389 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19390 if (!SWIG_IsOK(res1
)) {
19391 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_GetTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19393 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19395 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19396 result
= (arg1
)->GetTextRaw();
19397 wxPyEndAllowThreads(__tstate
);
19398 if (PyErr_Occurred()) SWIG_fail
;
19401 resultobj
= PyString_FromString((char*)(&result
)->data());
19409 SWIGINTERN PyObject
*_wrap_StyledTextCtrl_AppendTextRaw(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19410 PyObject
*resultobj
= 0;
19411 wxStyledTextCtrl
*arg1
= (wxStyledTextCtrl
*) 0 ;
19412 char *arg2
= (char *) 0 ;
19418 PyObject
* obj0
= 0 ;
19419 PyObject
* obj1
= 0 ;
19420 char * kwnames
[] = {
19421 (char *) "self",(char *) "text", NULL
19424 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextCtrl_AppendTextRaw",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19425 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextCtrl
, 0 | 0 );
19426 if (!SWIG_IsOK(res1
)) {
19427 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "1"" of type '" "wxStyledTextCtrl *""'");
19429 arg1
= reinterpret_cast< wxStyledTextCtrl
* >(argp1
);
19430 res2
= SWIG_AsCharPtrAndSize(obj1
, &buf2
, NULL
, &alloc2
);
19431 if (!SWIG_IsOK(res2
)) {
19432 SWIG_exception_fail(SWIG_ArgError(res2
), "in method '" "StyledTextCtrl_AppendTextRaw" "', expected argument " "2"" of type '" "char const *""'");
19436 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19437 (arg1
)->AppendTextRaw((char const *)arg2
);
19438 wxPyEndAllowThreads(__tstate
);
19439 if (PyErr_Occurred()) SWIG_fail
;
19441 resultobj
= SWIG_Py_Void();
19442 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19445 if (alloc2
== SWIG_NEWOBJ
) delete[] buf2
;
19450 SWIGINTERN PyObject
*StyledTextCtrl_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19452 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
19453 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextCtrl
, SWIG_NewClientData(obj
));
19454 return SWIG_Py_Void();
19457 SWIGINTERN PyObject
*StyledTextCtrl_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19458 return SWIG_Python_InitShadowInstance(args
);
19461 SWIGINTERN PyObject
*_wrap_new_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19462 PyObject
*resultobj
= 0;
19463 wxEventType arg1
= (wxEventType
) 0 ;
19464 int arg2
= (int) 0 ;
19465 wxStyledTextEvent
*result
= 0 ;
19470 PyObject
* obj0
= 0 ;
19471 PyObject
* obj1
= 0 ;
19472 char * kwnames
[] = {
19473 (char *) "commandType",(char *) "id", NULL
19476 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"|OO:new_StyledTextEvent",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19478 ecode1
= SWIG_AsVal_int(obj0
, &val1
);
19479 if (!SWIG_IsOK(ecode1
)) {
19480 SWIG_exception_fail(SWIG_ArgError(ecode1
), "in method '" "new_StyledTextEvent" "', expected argument " "1"" of type '" "wxEventType""'");
19482 arg1
= static_cast< wxEventType
>(val1
);
19485 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19486 if (!SWIG_IsOK(ecode2
)) {
19487 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "new_StyledTextEvent" "', expected argument " "2"" of type '" "int""'");
19489 arg2
= static_cast< int >(val2
);
19492 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19493 result
= (wxStyledTextEvent
*)new wxStyledTextEvent(arg1
,arg2
);
19494 wxPyEndAllowThreads(__tstate
);
19495 if (PyErr_Occurred()) SWIG_fail
;
19497 resultobj
= SWIG_NewPointerObj(SWIG_as_voidptr(result
), SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_NEW
| 0 );
19504 SWIGINTERN PyObject
*_wrap_delete_StyledTextEvent(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
19505 PyObject
*resultobj
= 0;
19506 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19509 PyObject
*swig_obj
[1] ;
19511 if (!args
) SWIG_fail
;
19512 swig_obj
[0] = args
;
19513 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, SWIG_POINTER_DISOWN
| 0 );
19514 if (!SWIG_IsOK(res1
)) {
19515 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "delete_StyledTextEvent" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19517 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19519 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19522 wxPyEndAllowThreads(__tstate
);
19523 if (PyErr_Occurred()) SWIG_fail
;
19525 resultobj
= SWIG_Py_Void();
19532 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19533 PyObject
*resultobj
= 0;
19534 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19540 PyObject
* obj0
= 0 ;
19541 PyObject
* obj1
= 0 ;
19542 char * kwnames
[] = {
19543 (char *) "self",(char *) "pos", NULL
19546 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetPosition",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19547 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19548 if (!SWIG_IsOK(res1
)) {
19549 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19551 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19552 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19553 if (!SWIG_IsOK(ecode2
)) {
19554 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetPosition" "', expected argument " "2"" of type '" "int""'");
19556 arg2
= static_cast< int >(val2
);
19558 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19559 (arg1
)->SetPosition(arg2
);
19560 wxPyEndAllowThreads(__tstate
);
19561 if (PyErr_Occurred()) SWIG_fail
;
19563 resultobj
= SWIG_Py_Void();
19570 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19571 PyObject
*resultobj
= 0;
19572 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19578 PyObject
* obj0
= 0 ;
19579 PyObject
* obj1
= 0 ;
19580 char * kwnames
[] = {
19581 (char *) "self",(char *) "k", NULL
19584 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetKey",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19585 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19586 if (!SWIG_IsOK(res1
)) {
19587 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19589 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19590 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19591 if (!SWIG_IsOK(ecode2
)) {
19592 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetKey" "', expected argument " "2"" of type '" "int""'");
19594 arg2
= static_cast< int >(val2
);
19596 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19597 (arg1
)->SetKey(arg2
);
19598 wxPyEndAllowThreads(__tstate
);
19599 if (PyErr_Occurred()) SWIG_fail
;
19601 resultobj
= SWIG_Py_Void();
19608 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19609 PyObject
*resultobj
= 0;
19610 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19616 PyObject
* obj0
= 0 ;
19617 PyObject
* obj1
= 0 ;
19618 char * kwnames
[] = {
19619 (char *) "self",(char *) "m", NULL
19622 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModifiers",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19623 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19624 if (!SWIG_IsOK(res1
)) {
19625 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19627 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19628 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19629 if (!SWIG_IsOK(ecode2
)) {
19630 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModifiers" "', expected argument " "2"" of type '" "int""'");
19632 arg2
= static_cast< int >(val2
);
19634 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19635 (arg1
)->SetModifiers(arg2
);
19636 wxPyEndAllowThreads(__tstate
);
19637 if (PyErr_Occurred()) SWIG_fail
;
19639 resultobj
= SWIG_Py_Void();
19646 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19647 PyObject
*resultobj
= 0;
19648 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19654 PyObject
* obj0
= 0 ;
19655 PyObject
* obj1
= 0 ;
19656 char * kwnames
[] = {
19657 (char *) "self",(char *) "t", NULL
19660 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetModificationType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19661 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19662 if (!SWIG_IsOK(res1
)) {
19663 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19665 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19666 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19667 if (!SWIG_IsOK(ecode2
)) {
19668 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetModificationType" "', expected argument " "2"" of type '" "int""'");
19670 arg2
= static_cast< int >(val2
);
19672 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19673 (arg1
)->SetModificationType(arg2
);
19674 wxPyEndAllowThreads(__tstate
);
19675 if (PyErr_Occurred()) SWIG_fail
;
19677 resultobj
= SWIG_Py_Void();
19684 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19685 PyObject
*resultobj
= 0;
19686 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19687 wxString
*arg2
= 0 ;
19690 bool temp2
= false ;
19691 PyObject
* obj0
= 0 ;
19692 PyObject
* obj1
= 0 ;
19693 char * kwnames
[] = {
19694 (char *) "self",(char *) "t", NULL
19697 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19698 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19699 if (!SWIG_IsOK(res1
)) {
19700 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19702 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19704 arg2
= wxString_in_helper(obj1
);
19705 if (arg2
== NULL
) SWIG_fail
;
19709 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19710 (arg1
)->SetText((wxString
const &)*arg2
);
19711 wxPyEndAllowThreads(__tstate
);
19712 if (PyErr_Occurred()) SWIG_fail
;
19714 resultobj
= SWIG_Py_Void();
19729 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19730 PyObject
*resultobj
= 0;
19731 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19737 PyObject
* obj0
= 0 ;
19738 PyObject
* obj1
= 0 ;
19739 char * kwnames
[] = {
19740 (char *) "self",(char *) "len", NULL
19743 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLength",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19744 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19745 if (!SWIG_IsOK(res1
)) {
19746 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19748 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19749 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19750 if (!SWIG_IsOK(ecode2
)) {
19751 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLength" "', expected argument " "2"" of type '" "int""'");
19753 arg2
= static_cast< int >(val2
);
19755 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19756 (arg1
)->SetLength(arg2
);
19757 wxPyEndAllowThreads(__tstate
);
19758 if (PyErr_Occurred()) SWIG_fail
;
19760 resultobj
= SWIG_Py_Void();
19767 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19768 PyObject
*resultobj
= 0;
19769 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19775 PyObject
* obj0
= 0 ;
19776 PyObject
* obj1
= 0 ;
19777 char * kwnames
[] = {
19778 (char *) "self",(char *) "num", NULL
19781 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLinesAdded",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19782 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19783 if (!SWIG_IsOK(res1
)) {
19784 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19786 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19787 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19788 if (!SWIG_IsOK(ecode2
)) {
19789 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLinesAdded" "', expected argument " "2"" of type '" "int""'");
19791 arg2
= static_cast< int >(val2
);
19793 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19794 (arg1
)->SetLinesAdded(arg2
);
19795 wxPyEndAllowThreads(__tstate
);
19796 if (PyErr_Occurred()) SWIG_fail
;
19798 resultobj
= SWIG_Py_Void();
19805 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19806 PyObject
*resultobj
= 0;
19807 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19813 PyObject
* obj0
= 0 ;
19814 PyObject
* obj1
= 0 ;
19815 char * kwnames
[] = {
19816 (char *) "self",(char *) "val", NULL
19819 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLine",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19820 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19821 if (!SWIG_IsOK(res1
)) {
19822 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19824 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19825 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19826 if (!SWIG_IsOK(ecode2
)) {
19827 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLine" "', expected argument " "2"" of type '" "int""'");
19829 arg2
= static_cast< int >(val2
);
19831 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19832 (arg1
)->SetLine(arg2
);
19833 wxPyEndAllowThreads(__tstate
);
19834 if (PyErr_Occurred()) SWIG_fail
;
19836 resultobj
= SWIG_Py_Void();
19843 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19844 PyObject
*resultobj
= 0;
19845 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19851 PyObject
* obj0
= 0 ;
19852 PyObject
* obj1
= 0 ;
19853 char * kwnames
[] = {
19854 (char *) "self",(char *) "val", NULL
19857 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelNow",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19858 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19859 if (!SWIG_IsOK(res1
)) {
19860 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19862 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19863 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19864 if (!SWIG_IsOK(ecode2
)) {
19865 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelNow" "', expected argument " "2"" of type '" "int""'");
19867 arg2
= static_cast< int >(val2
);
19869 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19870 (arg1
)->SetFoldLevelNow(arg2
);
19871 wxPyEndAllowThreads(__tstate
);
19872 if (PyErr_Occurred()) SWIG_fail
;
19874 resultobj
= SWIG_Py_Void();
19881 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19882 PyObject
*resultobj
= 0;
19883 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19889 PyObject
* obj0
= 0 ;
19890 PyObject
* obj1
= 0 ;
19891 char * kwnames
[] = {
19892 (char *) "self",(char *) "val", NULL
19895 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetFoldLevelPrev",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19896 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19897 if (!SWIG_IsOK(res1
)) {
19898 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19900 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19901 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19902 if (!SWIG_IsOK(ecode2
)) {
19903 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetFoldLevelPrev" "', expected argument " "2"" of type '" "int""'");
19905 arg2
= static_cast< int >(val2
);
19907 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19908 (arg1
)->SetFoldLevelPrev(arg2
);
19909 wxPyEndAllowThreads(__tstate
);
19910 if (PyErr_Occurred()) SWIG_fail
;
19912 resultobj
= SWIG_Py_Void();
19919 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19920 PyObject
*resultobj
= 0;
19921 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19927 PyObject
* obj0
= 0 ;
19928 PyObject
* obj1
= 0 ;
19929 char * kwnames
[] = {
19930 (char *) "self",(char *) "val", NULL
19933 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMargin",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19934 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19935 if (!SWIG_IsOK(res1
)) {
19936 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19938 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19939 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19940 if (!SWIG_IsOK(ecode2
)) {
19941 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMargin" "', expected argument " "2"" of type '" "int""'");
19943 arg2
= static_cast< int >(val2
);
19945 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19946 (arg1
)->SetMargin(arg2
);
19947 wxPyEndAllowThreads(__tstate
);
19948 if (PyErr_Occurred()) SWIG_fail
;
19950 resultobj
= SWIG_Py_Void();
19957 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19958 PyObject
*resultobj
= 0;
19959 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
19965 PyObject
* obj0
= 0 ;
19966 PyObject
* obj1
= 0 ;
19967 char * kwnames
[] = {
19968 (char *) "self",(char *) "val", NULL
19971 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetMessage",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
19972 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
19973 if (!SWIG_IsOK(res1
)) {
19974 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
19976 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
19977 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
19978 if (!SWIG_IsOK(ecode2
)) {
19979 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetMessage" "', expected argument " "2"" of type '" "int""'");
19981 arg2
= static_cast< int >(val2
);
19983 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
19984 (arg1
)->SetMessage(arg2
);
19985 wxPyEndAllowThreads(__tstate
);
19986 if (PyErr_Occurred()) SWIG_fail
;
19988 resultobj
= SWIG_Py_Void();
19995 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
19996 PyObject
*resultobj
= 0;
19997 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20003 PyObject
* obj0
= 0 ;
20004 PyObject
* obj1
= 0 ;
20005 char * kwnames
[] = {
20006 (char *) "self",(char *) "val", NULL
20009 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetWParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20010 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20011 if (!SWIG_IsOK(res1
)) {
20012 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20014 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20015 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20016 if (!SWIG_IsOK(ecode2
)) {
20017 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetWParam" "', expected argument " "2"" of type '" "int""'");
20019 arg2
= static_cast< int >(val2
);
20021 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20022 (arg1
)->SetWParam(arg2
);
20023 wxPyEndAllowThreads(__tstate
);
20024 if (PyErr_Occurred()) SWIG_fail
;
20026 resultobj
= SWIG_Py_Void();
20033 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetLParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20034 PyObject
*resultobj
= 0;
20035 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20041 PyObject
* obj0
= 0 ;
20042 PyObject
* obj1
= 0 ;
20043 char * kwnames
[] = {
20044 (char *) "self",(char *) "val", NULL
20047 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetLParam",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20048 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20049 if (!SWIG_IsOK(res1
)) {
20050 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20052 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20053 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20054 if (!SWIG_IsOK(ecode2
)) {
20055 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetLParam" "', expected argument " "2"" of type '" "int""'");
20057 arg2
= static_cast< int >(val2
);
20059 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20060 (arg1
)->SetLParam(arg2
);
20061 wxPyEndAllowThreads(__tstate
);
20062 if (PyErr_Occurred()) SWIG_fail
;
20064 resultobj
= SWIG_Py_Void();
20071 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetListType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20072 PyObject
*resultobj
= 0;
20073 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20079 PyObject
* obj0
= 0 ;
20080 PyObject
* obj1
= 0 ;
20081 char * kwnames
[] = {
20082 (char *) "self",(char *) "val", NULL
20085 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetListType",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20086 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20087 if (!SWIG_IsOK(res1
)) {
20088 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20090 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20091 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20092 if (!SWIG_IsOK(ecode2
)) {
20093 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetListType" "', expected argument " "2"" of type '" "int""'");
20095 arg2
= static_cast< int >(val2
);
20097 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20098 (arg1
)->SetListType(arg2
);
20099 wxPyEndAllowThreads(__tstate
);
20100 if (PyErr_Occurred()) SWIG_fail
;
20102 resultobj
= SWIG_Py_Void();
20109 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20110 PyObject
*resultobj
= 0;
20111 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20117 PyObject
* obj0
= 0 ;
20118 PyObject
* obj1
= 0 ;
20119 char * kwnames
[] = {
20120 (char *) "self",(char *) "val", NULL
20123 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetX",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20124 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20125 if (!SWIG_IsOK(res1
)) {
20126 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetX" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20128 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20129 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20130 if (!SWIG_IsOK(ecode2
)) {
20131 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetX" "', expected argument " "2"" of type '" "int""'");
20133 arg2
= static_cast< int >(val2
);
20135 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20136 (arg1
)->SetX(arg2
);
20137 wxPyEndAllowThreads(__tstate
);
20138 if (PyErr_Occurred()) SWIG_fail
;
20140 resultobj
= SWIG_Py_Void();
20147 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20148 PyObject
*resultobj
= 0;
20149 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20155 PyObject
* obj0
= 0 ;
20156 PyObject
* obj1
= 0 ;
20157 char * kwnames
[] = {
20158 (char *) "self",(char *) "val", NULL
20161 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetY",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20162 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20163 if (!SWIG_IsOK(res1
)) {
20164 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetY" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20166 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20167 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20168 if (!SWIG_IsOK(ecode2
)) {
20169 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetY" "', expected argument " "2"" of type '" "int""'");
20171 arg2
= static_cast< int >(val2
);
20173 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20174 (arg1
)->SetY(arg2
);
20175 wxPyEndAllowThreads(__tstate
);
20176 if (PyErr_Occurred()) SWIG_fail
;
20178 resultobj
= SWIG_Py_Void();
20185 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20186 PyObject
*resultobj
= 0;
20187 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20188 wxString
*arg2
= 0 ;
20191 bool temp2
= false ;
20192 PyObject
* obj0
= 0 ;
20193 PyObject
* obj1
= 0 ;
20194 char * kwnames
[] = {
20195 (char *) "self",(char *) "val", NULL
20198 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragText",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20199 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20200 if (!SWIG_IsOK(res1
)) {
20201 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20203 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20205 arg2
= wxString_in_helper(obj1
);
20206 if (arg2
== NULL
) SWIG_fail
;
20210 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20211 (arg1
)->SetDragText((wxString
const &)*arg2
);
20212 wxPyEndAllowThreads(__tstate
);
20213 if (PyErr_Occurred()) SWIG_fail
;
20215 resultobj
= SWIG_Py_Void();
20230 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20231 PyObject
*resultobj
= 0;
20232 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20238 PyObject
* obj0
= 0 ;
20239 PyObject
* obj1
= 0 ;
20240 char * kwnames
[] = {
20241 (char *) "self",(char *) "val", NULL
20244 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragAllowMove",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20245 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20246 if (!SWIG_IsOK(res1
)) {
20247 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20249 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20250 ecode2
= SWIG_AsVal_bool(obj1
, &val2
);
20251 if (!SWIG_IsOK(ecode2
)) {
20252 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragAllowMove" "', expected argument " "2"" of type '" "bool""'");
20254 arg2
= static_cast< bool >(val2
);
20256 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20257 (arg1
)->SetDragAllowMove(arg2
);
20258 wxPyEndAllowThreads(__tstate
);
20259 if (PyErr_Occurred()) SWIG_fail
;
20261 resultobj
= SWIG_Py_Void();
20268 SWIGINTERN PyObject
*_wrap_StyledTextEvent_SetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
, PyObject
*kwargs
) {
20269 PyObject
*resultobj
= 0;
20270 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20271 wxDragResult arg2
;
20276 PyObject
* obj0
= 0 ;
20277 PyObject
* obj1
= 0 ;
20278 char * kwnames
[] = {
20279 (char *) "self",(char *) "val", NULL
20282 if (!PyArg_ParseTupleAndKeywords(args
,kwargs
,(char *)"OO:StyledTextEvent_SetDragResult",kwnames
,&obj0
,&obj1
)) SWIG_fail
;
20283 res1
= SWIG_ConvertPtr(obj0
, &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20284 if (!SWIG_IsOK(res1
)) {
20285 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20287 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20288 ecode2
= SWIG_AsVal_int(obj1
, &val2
);
20289 if (!SWIG_IsOK(ecode2
)) {
20290 SWIG_exception_fail(SWIG_ArgError(ecode2
), "in method '" "StyledTextEvent_SetDragResult" "', expected argument " "2"" of type '" "wxDragResult""'");
20292 arg2
= static_cast< wxDragResult
>(val2
);
20294 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20295 (arg1
)->SetDragResult(arg2
);
20296 wxPyEndAllowThreads(__tstate
);
20297 if (PyErr_Occurred()) SWIG_fail
;
20299 resultobj
= SWIG_Py_Void();
20306 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetPosition(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20307 PyObject
*resultobj
= 0;
20308 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20312 PyObject
*swig_obj
[1] ;
20314 if (!args
) SWIG_fail
;
20315 swig_obj
[0] = args
;
20316 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20317 if (!SWIG_IsOK(res1
)) {
20318 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetPosition" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20320 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20322 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20323 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetPosition();
20324 wxPyEndAllowThreads(__tstate
);
20325 if (PyErr_Occurred()) SWIG_fail
;
20327 resultobj
= SWIG_From_int(static_cast< int >(result
));
20334 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetKey(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20335 PyObject
*resultobj
= 0;
20336 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20340 PyObject
*swig_obj
[1] ;
20342 if (!args
) SWIG_fail
;
20343 swig_obj
[0] = args
;
20344 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20345 if (!SWIG_IsOK(res1
)) {
20346 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetKey" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20348 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20350 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20351 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetKey();
20352 wxPyEndAllowThreads(__tstate
);
20353 if (PyErr_Occurred()) SWIG_fail
;
20355 resultobj
= SWIG_From_int(static_cast< int >(result
));
20362 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModifiers(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20363 PyObject
*resultobj
= 0;
20364 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20368 PyObject
*swig_obj
[1] ;
20370 if (!args
) SWIG_fail
;
20371 swig_obj
[0] = args
;
20372 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20373 if (!SWIG_IsOK(res1
)) {
20374 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModifiers" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20376 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20378 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20379 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModifiers();
20380 wxPyEndAllowThreads(__tstate
);
20381 if (PyErr_Occurred()) SWIG_fail
;
20383 resultobj
= SWIG_From_int(static_cast< int >(result
));
20390 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetModificationType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20391 PyObject
*resultobj
= 0;
20392 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20396 PyObject
*swig_obj
[1] ;
20398 if (!args
) SWIG_fail
;
20399 swig_obj
[0] = args
;
20400 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20401 if (!SWIG_IsOK(res1
)) {
20402 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetModificationType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20404 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20406 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20407 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetModificationType();
20408 wxPyEndAllowThreads(__tstate
);
20409 if (PyErr_Occurred()) SWIG_fail
;
20411 resultobj
= SWIG_From_int(static_cast< int >(result
));
20418 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20419 PyObject
*resultobj
= 0;
20420 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20424 PyObject
*swig_obj
[1] ;
20426 if (!args
) SWIG_fail
;
20427 swig_obj
[0] = args
;
20428 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20429 if (!SWIG_IsOK(res1
)) {
20430 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetText" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20432 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20434 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20435 result
= ((wxStyledTextEvent
const *)arg1
)->GetText();
20436 wxPyEndAllowThreads(__tstate
);
20437 if (PyErr_Occurred()) SWIG_fail
;
20441 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20443 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20452 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLength(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20453 PyObject
*resultobj
= 0;
20454 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20458 PyObject
*swig_obj
[1] ;
20460 if (!args
) SWIG_fail
;
20461 swig_obj
[0] = args
;
20462 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20463 if (!SWIG_IsOK(res1
)) {
20464 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLength" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20466 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20468 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20469 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLength();
20470 wxPyEndAllowThreads(__tstate
);
20471 if (PyErr_Occurred()) SWIG_fail
;
20473 resultobj
= SWIG_From_int(static_cast< int >(result
));
20480 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLinesAdded(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20481 PyObject
*resultobj
= 0;
20482 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20486 PyObject
*swig_obj
[1] ;
20488 if (!args
) SWIG_fail
;
20489 swig_obj
[0] = args
;
20490 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20491 if (!SWIG_IsOK(res1
)) {
20492 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLinesAdded" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20494 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20496 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20497 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLinesAdded();
20498 wxPyEndAllowThreads(__tstate
);
20499 if (PyErr_Occurred()) SWIG_fail
;
20501 resultobj
= SWIG_From_int(static_cast< int >(result
));
20508 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLine(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20509 PyObject
*resultobj
= 0;
20510 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20514 PyObject
*swig_obj
[1] ;
20516 if (!args
) SWIG_fail
;
20517 swig_obj
[0] = args
;
20518 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20519 if (!SWIG_IsOK(res1
)) {
20520 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLine" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20522 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20524 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20525 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLine();
20526 wxPyEndAllowThreads(__tstate
);
20527 if (PyErr_Occurred()) SWIG_fail
;
20529 resultobj
= SWIG_From_int(static_cast< int >(result
));
20536 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelNow(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20537 PyObject
*resultobj
= 0;
20538 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20542 PyObject
*swig_obj
[1] ;
20544 if (!args
) SWIG_fail
;
20545 swig_obj
[0] = args
;
20546 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20547 if (!SWIG_IsOK(res1
)) {
20548 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelNow" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20550 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20552 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20553 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelNow();
20554 wxPyEndAllowThreads(__tstate
);
20555 if (PyErr_Occurred()) SWIG_fail
;
20557 resultobj
= SWIG_From_int(static_cast< int >(result
));
20564 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetFoldLevelPrev(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20565 PyObject
*resultobj
= 0;
20566 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20570 PyObject
*swig_obj
[1] ;
20572 if (!args
) SWIG_fail
;
20573 swig_obj
[0] = args
;
20574 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20575 if (!SWIG_IsOK(res1
)) {
20576 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetFoldLevelPrev" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20578 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20580 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20581 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetFoldLevelPrev();
20582 wxPyEndAllowThreads(__tstate
);
20583 if (PyErr_Occurred()) SWIG_fail
;
20585 resultobj
= SWIG_From_int(static_cast< int >(result
));
20592 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMargin(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20593 PyObject
*resultobj
= 0;
20594 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20598 PyObject
*swig_obj
[1] ;
20600 if (!args
) SWIG_fail
;
20601 swig_obj
[0] = args
;
20602 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20603 if (!SWIG_IsOK(res1
)) {
20604 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMargin" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20606 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20608 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20609 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMargin();
20610 wxPyEndAllowThreads(__tstate
);
20611 if (PyErr_Occurred()) SWIG_fail
;
20613 resultobj
= SWIG_From_int(static_cast< int >(result
));
20620 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetMessage(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20621 PyObject
*resultobj
= 0;
20622 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20626 PyObject
*swig_obj
[1] ;
20628 if (!args
) SWIG_fail
;
20629 swig_obj
[0] = args
;
20630 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20631 if (!SWIG_IsOK(res1
)) {
20632 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetMessage" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20634 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20636 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20637 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetMessage();
20638 wxPyEndAllowThreads(__tstate
);
20639 if (PyErr_Occurred()) SWIG_fail
;
20641 resultobj
= SWIG_From_int(static_cast< int >(result
));
20648 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetWParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20649 PyObject
*resultobj
= 0;
20650 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20654 PyObject
*swig_obj
[1] ;
20656 if (!args
) SWIG_fail
;
20657 swig_obj
[0] = args
;
20658 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20659 if (!SWIG_IsOK(res1
)) {
20660 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetWParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20662 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20664 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20665 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetWParam();
20666 wxPyEndAllowThreads(__tstate
);
20667 if (PyErr_Occurred()) SWIG_fail
;
20669 resultobj
= SWIG_From_int(static_cast< int >(result
));
20676 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetLParam(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20677 PyObject
*resultobj
= 0;
20678 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20682 PyObject
*swig_obj
[1] ;
20684 if (!args
) SWIG_fail
;
20685 swig_obj
[0] = args
;
20686 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20687 if (!SWIG_IsOK(res1
)) {
20688 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetLParam" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20690 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20692 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20693 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetLParam();
20694 wxPyEndAllowThreads(__tstate
);
20695 if (PyErr_Occurred()) SWIG_fail
;
20697 resultobj
= SWIG_From_int(static_cast< int >(result
));
20704 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetListType(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20705 PyObject
*resultobj
= 0;
20706 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20710 PyObject
*swig_obj
[1] ;
20712 if (!args
) SWIG_fail
;
20713 swig_obj
[0] = args
;
20714 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20715 if (!SWIG_IsOK(res1
)) {
20716 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetListType" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20718 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20720 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20721 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetListType();
20722 wxPyEndAllowThreads(__tstate
);
20723 if (PyErr_Occurred()) SWIG_fail
;
20725 resultobj
= SWIG_From_int(static_cast< int >(result
));
20732 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetX(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20733 PyObject
*resultobj
= 0;
20734 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20738 PyObject
*swig_obj
[1] ;
20740 if (!args
) SWIG_fail
;
20741 swig_obj
[0] = args
;
20742 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20743 if (!SWIG_IsOK(res1
)) {
20744 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetX" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20746 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20748 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20749 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetX();
20750 wxPyEndAllowThreads(__tstate
);
20751 if (PyErr_Occurred()) SWIG_fail
;
20753 resultobj
= SWIG_From_int(static_cast< int >(result
));
20760 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetY(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20761 PyObject
*resultobj
= 0;
20762 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20766 PyObject
*swig_obj
[1] ;
20768 if (!args
) SWIG_fail
;
20769 swig_obj
[0] = args
;
20770 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20771 if (!SWIG_IsOK(res1
)) {
20772 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetY" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20774 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20776 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20777 result
= (int)((wxStyledTextEvent
const *)arg1
)->GetY();
20778 wxPyEndAllowThreads(__tstate
);
20779 if (PyErr_Occurred()) SWIG_fail
;
20781 resultobj
= SWIG_From_int(static_cast< int >(result
));
20788 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragText(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20789 PyObject
*resultobj
= 0;
20790 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20794 PyObject
*swig_obj
[1] ;
20796 if (!args
) SWIG_fail
;
20797 swig_obj
[0] = args
;
20798 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20799 if (!SWIG_IsOK(res1
)) {
20800 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragText" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20802 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20804 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20805 result
= (arg1
)->GetDragText();
20806 wxPyEndAllowThreads(__tstate
);
20807 if (PyErr_Occurred()) SWIG_fail
;
20811 resultobj
= PyUnicode_FromWideChar((&result
)->c_str(), (&result
)->Len());
20813 resultobj
= PyString_FromStringAndSize((&result
)->c_str(), (&result
)->Len());
20822 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragAllowMove(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20823 PyObject
*resultobj
= 0;
20824 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20828 PyObject
*swig_obj
[1] ;
20830 if (!args
) SWIG_fail
;
20831 swig_obj
[0] = args
;
20832 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20833 if (!SWIG_IsOK(res1
)) {
20834 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragAllowMove" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20836 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20838 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20839 result
= (bool)(arg1
)->GetDragAllowMove();
20840 wxPyEndAllowThreads(__tstate
);
20841 if (PyErr_Occurred()) SWIG_fail
;
20844 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20852 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetDragResult(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20853 PyObject
*resultobj
= 0;
20854 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20855 wxDragResult result
;
20858 PyObject
*swig_obj
[1] ;
20860 if (!args
) SWIG_fail
;
20861 swig_obj
[0] = args
;
20862 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20863 if (!SWIG_IsOK(res1
)) {
20864 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetDragResult" "', expected argument " "1"" of type '" "wxStyledTextEvent *""'");
20866 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20868 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20869 result
= (wxDragResult
)(arg1
)->GetDragResult();
20870 wxPyEndAllowThreads(__tstate
);
20871 if (PyErr_Occurred()) SWIG_fail
;
20873 resultobj
= SWIG_From_int(static_cast< int >(result
));
20880 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetShift(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20881 PyObject
*resultobj
= 0;
20882 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20886 PyObject
*swig_obj
[1] ;
20888 if (!args
) SWIG_fail
;
20889 swig_obj
[0] = args
;
20890 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20891 if (!SWIG_IsOK(res1
)) {
20892 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetShift" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20894 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20896 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20897 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetShift();
20898 wxPyEndAllowThreads(__tstate
);
20899 if (PyErr_Occurred()) SWIG_fail
;
20902 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20910 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetControl(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20911 PyObject
*resultobj
= 0;
20912 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20916 PyObject
*swig_obj
[1] ;
20918 if (!args
) SWIG_fail
;
20919 swig_obj
[0] = args
;
20920 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20921 if (!SWIG_IsOK(res1
)) {
20922 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetControl" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20924 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20926 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20927 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetControl();
20928 wxPyEndAllowThreads(__tstate
);
20929 if (PyErr_Occurred()) SWIG_fail
;
20932 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20940 SWIGINTERN PyObject
*_wrap_StyledTextEvent_GetAlt(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20941 PyObject
*resultobj
= 0;
20942 wxStyledTextEvent
*arg1
= (wxStyledTextEvent
*) 0 ;
20946 PyObject
*swig_obj
[1] ;
20948 if (!args
) SWIG_fail
;
20949 swig_obj
[0] = args
;
20950 res1
= SWIG_ConvertPtr(swig_obj
[0], &argp1
,SWIGTYPE_p_wxStyledTextEvent
, 0 | 0 );
20951 if (!SWIG_IsOK(res1
)) {
20952 SWIG_exception_fail(SWIG_ArgError(res1
), "in method '" "StyledTextEvent_GetAlt" "', expected argument " "1"" of type '" "wxStyledTextEvent const *""'");
20954 arg1
= reinterpret_cast< wxStyledTextEvent
* >(argp1
);
20956 PyThreadState
* __tstate
= wxPyBeginAllowThreads();
20957 result
= (bool)((wxStyledTextEvent
const *)arg1
)->GetAlt();
20958 wxPyEndAllowThreads(__tstate
);
20959 if (PyErr_Occurred()) SWIG_fail
;
20962 resultobj
= result
? Py_True
: Py_False
; Py_INCREF(resultobj
);
20970 SWIGINTERN PyObject
*StyledTextEvent_swigregister(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20972 if (!SWIG_Python_UnpackTuple(args
,(char*)"swigregister", 1, 1,&obj
)) return NULL
;
20973 SWIG_TypeNewClientData(SWIGTYPE_p_wxStyledTextEvent
, SWIG_NewClientData(obj
));
20974 return SWIG_Py_Void();
20977 SWIGINTERN PyObject
*StyledTextEvent_swiginit(PyObject
*SWIGUNUSEDPARM(self
), PyObject
*args
) {
20978 return SWIG_Python_InitShadowInstance(args
);
20981 static PyMethodDef SwigMethods
[] = {
20982 { (char *)"new_StyledTextCtrl", (PyCFunction
) _wrap_new_StyledTextCtrl
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20983 { (char *)"new_PreStyledTextCtrl", (PyCFunction
)_wrap_new_PreStyledTextCtrl
, METH_NOARGS
, NULL
},
20984 { (char *)"StyledTextCtrl_Create", (PyCFunction
) _wrap_StyledTextCtrl_Create
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20985 { (char *)"StyledTextCtrl_AddText", (PyCFunction
) _wrap_StyledTextCtrl_AddText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20986 { (char *)"StyledTextCtrl_AddStyledText", (PyCFunction
) _wrap_StyledTextCtrl_AddStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20987 { (char *)"StyledTextCtrl_InsertText", (PyCFunction
) _wrap_StyledTextCtrl_InsertText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20988 { (char *)"StyledTextCtrl_ClearAll", (PyCFunction
)_wrap_StyledTextCtrl_ClearAll
, METH_O
, NULL
},
20989 { (char *)"StyledTextCtrl_ClearDocumentStyle", (PyCFunction
)_wrap_StyledTextCtrl_ClearDocumentStyle
, METH_O
, NULL
},
20990 { (char *)"StyledTextCtrl_GetLength", (PyCFunction
)_wrap_StyledTextCtrl_GetLength
, METH_O
, NULL
},
20991 { (char *)"StyledTextCtrl_GetCharAt", (PyCFunction
) _wrap_StyledTextCtrl_GetCharAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20992 { (char *)"StyledTextCtrl_GetCurrentPos", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentPos
, METH_O
, NULL
},
20993 { (char *)"StyledTextCtrl_GetAnchor", (PyCFunction
)_wrap_StyledTextCtrl_GetAnchor
, METH_O
, NULL
},
20994 { (char *)"StyledTextCtrl_GetStyleAt", (PyCFunction
) _wrap_StyledTextCtrl_GetStyleAt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20995 { (char *)"StyledTextCtrl_Redo", (PyCFunction
)_wrap_StyledTextCtrl_Redo
, METH_O
, NULL
},
20996 { (char *)"StyledTextCtrl_SetUndoCollection", (PyCFunction
) _wrap_StyledTextCtrl_SetUndoCollection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
20997 { (char *)"StyledTextCtrl_SelectAll", (PyCFunction
)_wrap_StyledTextCtrl_SelectAll
, METH_O
, NULL
},
20998 { (char *)"StyledTextCtrl_SetSavePoint", (PyCFunction
)_wrap_StyledTextCtrl_SetSavePoint
, METH_O
, NULL
},
20999 { (char *)"StyledTextCtrl_GetStyledText", (PyCFunction
) _wrap_StyledTextCtrl_GetStyledText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21000 { (char *)"StyledTextCtrl_CanRedo", (PyCFunction
)_wrap_StyledTextCtrl_CanRedo
, METH_O
, NULL
},
21001 { (char *)"StyledTextCtrl_MarkerLineFromHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerLineFromHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21002 { (char *)"StyledTextCtrl_MarkerDeleteHandle", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteHandle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21003 { (char *)"StyledTextCtrl_GetUndoCollection", (PyCFunction
)_wrap_StyledTextCtrl_GetUndoCollection
, METH_O
, NULL
},
21004 { (char *)"StyledTextCtrl_GetViewWhiteSpace", (PyCFunction
)_wrap_StyledTextCtrl_GetViewWhiteSpace
, METH_O
, NULL
},
21005 { (char *)"StyledTextCtrl_SetViewWhiteSpace", (PyCFunction
) _wrap_StyledTextCtrl_SetViewWhiteSpace
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21006 { (char *)"StyledTextCtrl_PositionFromPoint", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPoint
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21007 { (char *)"StyledTextCtrl_PositionFromPointClose", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromPointClose
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21008 { (char *)"StyledTextCtrl_GotoLine", (PyCFunction
) _wrap_StyledTextCtrl_GotoLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21009 { (char *)"StyledTextCtrl_GotoPos", (PyCFunction
) _wrap_StyledTextCtrl_GotoPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21010 { (char *)"StyledTextCtrl_SetAnchor", (PyCFunction
) _wrap_StyledTextCtrl_SetAnchor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21011 { (char *)"StyledTextCtrl_GetCurLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLine
, METH_O
, NULL
},
21012 { (char *)"StyledTextCtrl_GetEndStyled", (PyCFunction
)_wrap_StyledTextCtrl_GetEndStyled
, METH_O
, NULL
},
21013 { (char *)"StyledTextCtrl_ConvertEOLs", (PyCFunction
) _wrap_StyledTextCtrl_ConvertEOLs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21014 { (char *)"StyledTextCtrl_GetEOLMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEOLMode
, METH_O
, NULL
},
21015 { (char *)"StyledTextCtrl_SetEOLMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEOLMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21016 { (char *)"StyledTextCtrl_StartStyling", (PyCFunction
) _wrap_StyledTextCtrl_StartStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21017 { (char *)"StyledTextCtrl_SetStyling", (PyCFunction
) _wrap_StyledTextCtrl_SetStyling
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21018 { (char *)"StyledTextCtrl_GetBufferedDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetBufferedDraw
, METH_O
, NULL
},
21019 { (char *)"StyledTextCtrl_SetBufferedDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetBufferedDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21020 { (char *)"StyledTextCtrl_SetTabWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetTabWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21021 { (char *)"StyledTextCtrl_GetTabWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetTabWidth
, METH_O
, NULL
},
21022 { (char *)"StyledTextCtrl_SetCodePage", (PyCFunction
) _wrap_StyledTextCtrl_SetCodePage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21023 { (char *)"StyledTextCtrl_MarkerDefine", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21024 { (char *)"StyledTextCtrl_MarkerSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21025 { (char *)"StyledTextCtrl_MarkerSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_MarkerSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21026 { (char *)"StyledTextCtrl_MarkerAdd", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAdd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21027 { (char *)"StyledTextCtrl_MarkerDelete", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDelete
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21028 { (char *)"StyledTextCtrl_MarkerDeleteAll", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDeleteAll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21029 { (char *)"StyledTextCtrl_MarkerGet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerGet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21030 { (char *)"StyledTextCtrl_MarkerNext", (PyCFunction
) _wrap_StyledTextCtrl_MarkerNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21031 { (char *)"StyledTextCtrl_MarkerPrevious", (PyCFunction
) _wrap_StyledTextCtrl_MarkerPrevious
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21032 { (char *)"StyledTextCtrl_MarkerDefineBitmap", (PyCFunction
) _wrap_StyledTextCtrl_MarkerDefineBitmap
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21033 { (char *)"StyledTextCtrl_MarkerAddSet", (PyCFunction
) _wrap_StyledTextCtrl_MarkerAddSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21034 { (char *)"StyledTextCtrl_SetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21035 { (char *)"StyledTextCtrl_GetMarginType", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21036 { (char *)"StyledTextCtrl_SetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21037 { (char *)"StyledTextCtrl_GetMarginWidth", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21038 { (char *)"StyledTextCtrl_SetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21039 { (char *)"StyledTextCtrl_GetMarginMask", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21040 { (char *)"StyledTextCtrl_SetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21041 { (char *)"StyledTextCtrl_GetMarginSensitive", (PyCFunction
) _wrap_StyledTextCtrl_GetMarginSensitive
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21042 { (char *)"StyledTextCtrl_StyleClearAll", (PyCFunction
)_wrap_StyledTextCtrl_StyleClearAll
, METH_O
, NULL
},
21043 { (char *)"StyledTextCtrl_StyleSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21044 { (char *)"StyledTextCtrl_StyleSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21045 { (char *)"StyledTextCtrl_StyleSetBold", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetBold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21046 { (char *)"StyledTextCtrl_StyleSetItalic", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetItalic
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21047 { (char *)"StyledTextCtrl_StyleSetSize", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSize
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21048 { (char *)"StyledTextCtrl_StyleSetFaceName", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFaceName
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21049 { (char *)"StyledTextCtrl_StyleSetEOLFilled", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetEOLFilled
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21050 { (char *)"StyledTextCtrl_StyleResetDefault", (PyCFunction
)_wrap_StyledTextCtrl_StyleResetDefault
, METH_O
, NULL
},
21051 { (char *)"StyledTextCtrl_StyleSetUnderline", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21052 { (char *)"StyledTextCtrl_StyleSetCase", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21053 { (char *)"StyledTextCtrl_StyleSetHotSpot", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetHotSpot
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21054 { (char *)"StyledTextCtrl_SetSelForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21055 { (char *)"StyledTextCtrl_SetSelBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetSelBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21056 { (char *)"StyledTextCtrl_SetCaretForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21057 { (char *)"StyledTextCtrl_CmdKeyAssign", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyAssign
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21058 { (char *)"StyledTextCtrl_CmdKeyClear", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyClear
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21059 { (char *)"StyledTextCtrl_CmdKeyClearAll", (PyCFunction
)_wrap_StyledTextCtrl_CmdKeyClearAll
, METH_O
, NULL
},
21060 { (char *)"StyledTextCtrl_SetStyleBytes", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBytes
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21061 { (char *)"StyledTextCtrl_StyleSetVisible", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21062 { (char *)"StyledTextCtrl_GetCaretPeriod", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretPeriod
, METH_O
, NULL
},
21063 { (char *)"StyledTextCtrl_SetCaretPeriod", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretPeriod
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21064 { (char *)"StyledTextCtrl_SetWordChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWordChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21065 { (char *)"StyledTextCtrl_BeginUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_BeginUndoAction
, METH_O
, NULL
},
21066 { (char *)"StyledTextCtrl_EndUndoAction", (PyCFunction
)_wrap_StyledTextCtrl_EndUndoAction
, METH_O
, NULL
},
21067 { (char *)"StyledTextCtrl_IndicatorSetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21068 { (char *)"StyledTextCtrl_IndicatorGetStyle", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetStyle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21069 { (char *)"StyledTextCtrl_IndicatorSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21070 { (char *)"StyledTextCtrl_IndicatorGetForeground", (PyCFunction
) _wrap_StyledTextCtrl_IndicatorGetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21071 { (char *)"StyledTextCtrl_SetWhitespaceForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21072 { (char *)"StyledTextCtrl_SetWhitespaceBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21073 { (char *)"StyledTextCtrl_SetStyleBits", (PyCFunction
) _wrap_StyledTextCtrl_SetStyleBits
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21074 { (char *)"StyledTextCtrl_GetStyleBits", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBits
, METH_O
, NULL
},
21075 { (char *)"StyledTextCtrl_SetLineState", (PyCFunction
) _wrap_StyledTextCtrl_SetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21076 { (char *)"StyledTextCtrl_GetLineState", (PyCFunction
) _wrap_StyledTextCtrl_GetLineState
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21077 { (char *)"StyledTextCtrl_GetMaxLineState", (PyCFunction
)_wrap_StyledTextCtrl_GetMaxLineState
, METH_O
, NULL
},
21078 { (char *)"StyledTextCtrl_GetCaretLineVisible", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineVisible
, METH_O
, NULL
},
21079 { (char *)"StyledTextCtrl_SetCaretLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21080 { (char *)"StyledTextCtrl_GetCaretLineBack", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretLineBack
, METH_O
, NULL
},
21081 { (char *)"StyledTextCtrl_SetCaretLineBack", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretLineBack
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21082 { (char *)"StyledTextCtrl_StyleSetChangeable", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetChangeable
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21083 { (char *)"StyledTextCtrl_AutoCompShow", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21084 { (char *)"StyledTextCtrl_AutoCompCancel", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompCancel
, METH_O
, NULL
},
21085 { (char *)"StyledTextCtrl_AutoCompActive", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompActive
, METH_O
, NULL
},
21086 { (char *)"StyledTextCtrl_AutoCompPosStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompPosStart
, METH_O
, NULL
},
21087 { (char *)"StyledTextCtrl_AutoCompComplete", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompComplete
, METH_O
, NULL
},
21088 { (char *)"StyledTextCtrl_AutoCompStops", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompStops
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21089 { (char *)"StyledTextCtrl_AutoCompSetSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21090 { (char *)"StyledTextCtrl_AutoCompGetSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetSeparator
, METH_O
, NULL
},
21091 { (char *)"StyledTextCtrl_AutoCompSelect", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSelect
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21092 { (char *)"StyledTextCtrl_AutoCompSetCancelAtStart", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetCancelAtStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21093 { (char *)"StyledTextCtrl_AutoCompGetCancelAtStart", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCancelAtStart
, METH_O
, NULL
},
21094 { (char *)"StyledTextCtrl_AutoCompSetFillUps", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetFillUps
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21095 { (char *)"StyledTextCtrl_AutoCompSetChooseSingle", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetChooseSingle
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21096 { (char *)"StyledTextCtrl_AutoCompGetChooseSingle", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetChooseSingle
, METH_O
, NULL
},
21097 { (char *)"StyledTextCtrl_AutoCompSetIgnoreCase", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetIgnoreCase
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21098 { (char *)"StyledTextCtrl_AutoCompGetIgnoreCase", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetIgnoreCase
, METH_O
, NULL
},
21099 { (char *)"StyledTextCtrl_UserListShow", (PyCFunction
) _wrap_StyledTextCtrl_UserListShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21100 { (char *)"StyledTextCtrl_AutoCompSetAutoHide", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetAutoHide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21101 { (char *)"StyledTextCtrl_AutoCompGetAutoHide", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetAutoHide
, METH_O
, NULL
},
21102 { (char *)"StyledTextCtrl_AutoCompSetDropRestOfWord", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetDropRestOfWord
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21103 { (char *)"StyledTextCtrl_AutoCompGetDropRestOfWord", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetDropRestOfWord
, METH_O
, NULL
},
21104 { (char *)"StyledTextCtrl_RegisterImage", (PyCFunction
) _wrap_StyledTextCtrl_RegisterImage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21105 { (char *)"StyledTextCtrl_ClearRegisteredImages", (PyCFunction
)_wrap_StyledTextCtrl_ClearRegisteredImages
, METH_O
, NULL
},
21106 { (char *)"StyledTextCtrl_AutoCompGetTypeSeparator", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetTypeSeparator
, METH_O
, NULL
},
21107 { (char *)"StyledTextCtrl_AutoCompSetTypeSeparator", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetTypeSeparator
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21108 { (char *)"StyledTextCtrl_AutoCompSetMaxWidth", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21109 { (char *)"StyledTextCtrl_AutoCompGetMaxWidth", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxWidth
, METH_O
, NULL
},
21110 { (char *)"StyledTextCtrl_AutoCompSetMaxHeight", (PyCFunction
) _wrap_StyledTextCtrl_AutoCompSetMaxHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21111 { (char *)"StyledTextCtrl_AutoCompGetMaxHeight", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetMaxHeight
, METH_O
, NULL
},
21112 { (char *)"StyledTextCtrl_SetIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21113 { (char *)"StyledTextCtrl_GetIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetIndent
, METH_O
, NULL
},
21114 { (char *)"StyledTextCtrl_SetUseTabs", (PyCFunction
) _wrap_StyledTextCtrl_SetUseTabs
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21115 { (char *)"StyledTextCtrl_GetUseTabs", (PyCFunction
)_wrap_StyledTextCtrl_GetUseTabs
, METH_O
, NULL
},
21116 { (char *)"StyledTextCtrl_SetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_SetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21117 { (char *)"StyledTextCtrl_GetLineIndentation", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21118 { (char *)"StyledTextCtrl_GetLineIndentPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineIndentPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21119 { (char *)"StyledTextCtrl_GetColumn", (PyCFunction
) _wrap_StyledTextCtrl_GetColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21120 { (char *)"StyledTextCtrl_SetUseHorizontalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseHorizontalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21121 { (char *)"StyledTextCtrl_GetUseHorizontalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseHorizontalScrollBar
, METH_O
, NULL
},
21122 { (char *)"StyledTextCtrl_SetIndentationGuides", (PyCFunction
) _wrap_StyledTextCtrl_SetIndentationGuides
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21123 { (char *)"StyledTextCtrl_GetIndentationGuides", (PyCFunction
)_wrap_StyledTextCtrl_GetIndentationGuides
, METH_O
, NULL
},
21124 { (char *)"StyledTextCtrl_SetHighlightGuide", (PyCFunction
) _wrap_StyledTextCtrl_SetHighlightGuide
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21125 { (char *)"StyledTextCtrl_GetHighlightGuide", (PyCFunction
)_wrap_StyledTextCtrl_GetHighlightGuide
, METH_O
, NULL
},
21126 { (char *)"StyledTextCtrl_GetLineEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21127 { (char *)"StyledTextCtrl_GetCodePage", (PyCFunction
)_wrap_StyledTextCtrl_GetCodePage
, METH_O
, NULL
},
21128 { (char *)"StyledTextCtrl_GetCaretForeground", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretForeground
, METH_O
, NULL
},
21129 { (char *)"StyledTextCtrl_GetReadOnly", (PyCFunction
)_wrap_StyledTextCtrl_GetReadOnly
, METH_O
, NULL
},
21130 { (char *)"StyledTextCtrl_SetCurrentPos", (PyCFunction
) _wrap_StyledTextCtrl_SetCurrentPos
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21131 { (char *)"StyledTextCtrl_SetSelectionStart", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21132 { (char *)"StyledTextCtrl_GetSelectionStart", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionStart
, METH_O
, NULL
},
21133 { (char *)"StyledTextCtrl_SetSelectionEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21134 { (char *)"StyledTextCtrl_GetSelectionEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionEnd
, METH_O
, NULL
},
21135 { (char *)"StyledTextCtrl_SetPrintMagnification", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintMagnification
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21136 { (char *)"StyledTextCtrl_GetPrintMagnification", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintMagnification
, METH_O
, NULL
},
21137 { (char *)"StyledTextCtrl_SetPrintColourMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintColourMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21138 { (char *)"StyledTextCtrl_GetPrintColourMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintColourMode
, METH_O
, NULL
},
21139 { (char *)"StyledTextCtrl_FindText", (PyCFunction
) _wrap_StyledTextCtrl_FindText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21140 { (char *)"StyledTextCtrl_FormatRange", (PyCFunction
) _wrap_StyledTextCtrl_FormatRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21141 { (char *)"StyledTextCtrl_GetFirstVisibleLine", (PyCFunction
)_wrap_StyledTextCtrl_GetFirstVisibleLine
, METH_O
, NULL
},
21142 { (char *)"StyledTextCtrl_GetLine", (PyCFunction
) _wrap_StyledTextCtrl_GetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21143 { (char *)"StyledTextCtrl_GetLineCount", (PyCFunction
)_wrap_StyledTextCtrl_GetLineCount
, METH_O
, NULL
},
21144 { (char *)"StyledTextCtrl_SetMarginLeft", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginLeft
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21145 { (char *)"StyledTextCtrl_GetMarginLeft", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginLeft
, METH_O
, NULL
},
21146 { (char *)"StyledTextCtrl_SetMarginRight", (PyCFunction
) _wrap_StyledTextCtrl_SetMarginRight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21147 { (char *)"StyledTextCtrl_GetMarginRight", (PyCFunction
)_wrap_StyledTextCtrl_GetMarginRight
, METH_O
, NULL
},
21148 { (char *)"StyledTextCtrl_GetModify", (PyCFunction
)_wrap_StyledTextCtrl_GetModify
, METH_O
, NULL
},
21149 { (char *)"StyledTextCtrl_SetSelection", (PyCFunction
) _wrap_StyledTextCtrl_SetSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21150 { (char *)"StyledTextCtrl_GetSelectedText", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedText
, METH_O
, NULL
},
21151 { (char *)"StyledTextCtrl_GetTextRange", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21152 { (char *)"StyledTextCtrl_HideSelection", (PyCFunction
) _wrap_StyledTextCtrl_HideSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21153 { (char *)"StyledTextCtrl_LineFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_LineFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21154 { (char *)"StyledTextCtrl_PositionFromLine", (PyCFunction
) _wrap_StyledTextCtrl_PositionFromLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21155 { (char *)"StyledTextCtrl_LineScroll", (PyCFunction
) _wrap_StyledTextCtrl_LineScroll
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21156 { (char *)"StyledTextCtrl_EnsureCaretVisible", (PyCFunction
)_wrap_StyledTextCtrl_EnsureCaretVisible
, METH_O
, NULL
},
21157 { (char *)"StyledTextCtrl_ReplaceSelection", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceSelection
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21158 { (char *)"StyledTextCtrl_SetReadOnly", (PyCFunction
) _wrap_StyledTextCtrl_SetReadOnly
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21159 { (char *)"StyledTextCtrl_CanPaste", (PyCFunction
)_wrap_StyledTextCtrl_CanPaste
, METH_O
, NULL
},
21160 { (char *)"StyledTextCtrl_CanUndo", (PyCFunction
)_wrap_StyledTextCtrl_CanUndo
, METH_O
, NULL
},
21161 { (char *)"StyledTextCtrl_EmptyUndoBuffer", (PyCFunction
)_wrap_StyledTextCtrl_EmptyUndoBuffer
, METH_O
, NULL
},
21162 { (char *)"StyledTextCtrl_Undo", (PyCFunction
)_wrap_StyledTextCtrl_Undo
, METH_O
, NULL
},
21163 { (char *)"StyledTextCtrl_Cut", (PyCFunction
)_wrap_StyledTextCtrl_Cut
, METH_O
, NULL
},
21164 { (char *)"StyledTextCtrl_Copy", (PyCFunction
)_wrap_StyledTextCtrl_Copy
, METH_O
, NULL
},
21165 { (char *)"StyledTextCtrl_Paste", (PyCFunction
)_wrap_StyledTextCtrl_Paste
, METH_O
, NULL
},
21166 { (char *)"StyledTextCtrl_Clear", (PyCFunction
)_wrap_StyledTextCtrl_Clear
, METH_O
, NULL
},
21167 { (char *)"StyledTextCtrl_SetText", (PyCFunction
) _wrap_StyledTextCtrl_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21168 { (char *)"StyledTextCtrl_GetText", (PyCFunction
)_wrap_StyledTextCtrl_GetText
, METH_O
, NULL
},
21169 { (char *)"StyledTextCtrl_GetTextLength", (PyCFunction
)_wrap_StyledTextCtrl_GetTextLength
, METH_O
, NULL
},
21170 { (char *)"StyledTextCtrl_SetOvertype", (PyCFunction
) _wrap_StyledTextCtrl_SetOvertype
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21171 { (char *)"StyledTextCtrl_GetOvertype", (PyCFunction
)_wrap_StyledTextCtrl_GetOvertype
, METH_O
, NULL
},
21172 { (char *)"StyledTextCtrl_SetCaretWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21173 { (char *)"StyledTextCtrl_GetCaretWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretWidth
, METH_O
, NULL
},
21174 { (char *)"StyledTextCtrl_SetTargetStart", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetStart
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21175 { (char *)"StyledTextCtrl_GetTargetStart", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetStart
, METH_O
, NULL
},
21176 { (char *)"StyledTextCtrl_SetTargetEnd", (PyCFunction
) _wrap_StyledTextCtrl_SetTargetEnd
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21177 { (char *)"StyledTextCtrl_GetTargetEnd", (PyCFunction
)_wrap_StyledTextCtrl_GetTargetEnd
, METH_O
, NULL
},
21178 { (char *)"StyledTextCtrl_ReplaceTarget", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21179 { (char *)"StyledTextCtrl_ReplaceTargetRE", (PyCFunction
) _wrap_StyledTextCtrl_ReplaceTargetRE
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21180 { (char *)"StyledTextCtrl_SearchInTarget", (PyCFunction
) _wrap_StyledTextCtrl_SearchInTarget
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21181 { (char *)"StyledTextCtrl_SetSearchFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetSearchFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21182 { (char *)"StyledTextCtrl_GetSearchFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetSearchFlags
, METH_O
, NULL
},
21183 { (char *)"StyledTextCtrl_CallTipShow", (PyCFunction
) _wrap_StyledTextCtrl_CallTipShow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21184 { (char *)"StyledTextCtrl_CallTipCancel", (PyCFunction
)_wrap_StyledTextCtrl_CallTipCancel
, METH_O
, NULL
},
21185 { (char *)"StyledTextCtrl_CallTipActive", (PyCFunction
)_wrap_StyledTextCtrl_CallTipActive
, METH_O
, NULL
},
21186 { (char *)"StyledTextCtrl_CallTipPosAtStart", (PyCFunction
)_wrap_StyledTextCtrl_CallTipPosAtStart
, METH_O
, NULL
},
21187 { (char *)"StyledTextCtrl_CallTipSetHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21188 { (char *)"StyledTextCtrl_CallTipSetBackground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21189 { (char *)"StyledTextCtrl_CallTipSetForeground", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21190 { (char *)"StyledTextCtrl_CallTipSetForegroundHighlight", (PyCFunction
) _wrap_StyledTextCtrl_CallTipSetForegroundHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21191 { (char *)"StyledTextCtrl_VisibleFromDocLine", (PyCFunction
) _wrap_StyledTextCtrl_VisibleFromDocLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21192 { (char *)"StyledTextCtrl_DocLineFromVisible", (PyCFunction
) _wrap_StyledTextCtrl_DocLineFromVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21193 { (char *)"StyledTextCtrl_WrapCount", (PyCFunction
) _wrap_StyledTextCtrl_WrapCount
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21194 { (char *)"StyledTextCtrl_SetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21195 { (char *)"StyledTextCtrl_GetFoldLevel", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldLevel
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21196 { (char *)"StyledTextCtrl_GetLastChild", (PyCFunction
) _wrap_StyledTextCtrl_GetLastChild
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21197 { (char *)"StyledTextCtrl_GetFoldParent", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldParent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21198 { (char *)"StyledTextCtrl_ShowLines", (PyCFunction
) _wrap_StyledTextCtrl_ShowLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21199 { (char *)"StyledTextCtrl_HideLines", (PyCFunction
) _wrap_StyledTextCtrl_HideLines
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21200 { (char *)"StyledTextCtrl_GetLineVisible", (PyCFunction
) _wrap_StyledTextCtrl_GetLineVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21201 { (char *)"StyledTextCtrl_SetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21202 { (char *)"StyledTextCtrl_GetFoldExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetFoldExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21203 { (char *)"StyledTextCtrl_ToggleFold", (PyCFunction
) _wrap_StyledTextCtrl_ToggleFold
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21204 { (char *)"StyledTextCtrl_EnsureVisible", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisible
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21205 { (char *)"StyledTextCtrl_SetFoldFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21206 { (char *)"StyledTextCtrl_EnsureVisibleEnforcePolicy", (PyCFunction
) _wrap_StyledTextCtrl_EnsureVisibleEnforcePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21207 { (char *)"StyledTextCtrl_SetTabIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetTabIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21208 { (char *)"StyledTextCtrl_GetTabIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetTabIndents
, METH_O
, NULL
},
21209 { (char *)"StyledTextCtrl_SetBackSpaceUnIndents", (PyCFunction
) _wrap_StyledTextCtrl_SetBackSpaceUnIndents
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21210 { (char *)"StyledTextCtrl_GetBackSpaceUnIndents", (PyCFunction
)_wrap_StyledTextCtrl_GetBackSpaceUnIndents
, METH_O
, NULL
},
21211 { (char *)"StyledTextCtrl_SetMouseDwellTime", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDwellTime
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21212 { (char *)"StyledTextCtrl_GetMouseDwellTime", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDwellTime
, METH_O
, NULL
},
21213 { (char *)"StyledTextCtrl_WordStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21214 { (char *)"StyledTextCtrl_WordEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_WordEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21215 { (char *)"StyledTextCtrl_SetWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21216 { (char *)"StyledTextCtrl_GetWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapMode
, METH_O
, NULL
},
21217 { (char *)"StyledTextCtrl_SetWrapVisualFlags", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlags
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21218 { (char *)"StyledTextCtrl_GetWrapVisualFlags", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlags
, METH_O
, NULL
},
21219 { (char *)"StyledTextCtrl_SetWrapVisualFlagsLocation", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapVisualFlagsLocation
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21220 { (char *)"StyledTextCtrl_GetWrapVisualFlagsLocation", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapVisualFlagsLocation
, METH_O
, NULL
},
21221 { (char *)"StyledTextCtrl_SetWrapStartIndent", (PyCFunction
) _wrap_StyledTextCtrl_SetWrapStartIndent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21222 { (char *)"StyledTextCtrl_GetWrapStartIndent", (PyCFunction
)_wrap_StyledTextCtrl_GetWrapStartIndent
, METH_O
, NULL
},
21223 { (char *)"StyledTextCtrl_SetLayoutCache", (PyCFunction
) _wrap_StyledTextCtrl_SetLayoutCache
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21224 { (char *)"StyledTextCtrl_GetLayoutCache", (PyCFunction
)_wrap_StyledTextCtrl_GetLayoutCache
, METH_O
, NULL
},
21225 { (char *)"StyledTextCtrl_SetScrollWidth", (PyCFunction
) _wrap_StyledTextCtrl_SetScrollWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21226 { (char *)"StyledTextCtrl_GetScrollWidth", (PyCFunction
)_wrap_StyledTextCtrl_GetScrollWidth
, METH_O
, NULL
},
21227 { (char *)"StyledTextCtrl_TextWidth", (PyCFunction
) _wrap_StyledTextCtrl_TextWidth
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21228 { (char *)"StyledTextCtrl_SetEndAtLastLine", (PyCFunction
) _wrap_StyledTextCtrl_SetEndAtLastLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21229 { (char *)"StyledTextCtrl_GetEndAtLastLine", (PyCFunction
)_wrap_StyledTextCtrl_GetEndAtLastLine
, METH_O
, NULL
},
21230 { (char *)"StyledTextCtrl_TextHeight", (PyCFunction
) _wrap_StyledTextCtrl_TextHeight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21231 { (char *)"StyledTextCtrl_SetUseVerticalScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetUseVerticalScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21232 { (char *)"StyledTextCtrl_GetUseVerticalScrollBar", (PyCFunction
)_wrap_StyledTextCtrl_GetUseVerticalScrollBar
, METH_O
, NULL
},
21233 { (char *)"StyledTextCtrl_AppendText", (PyCFunction
) _wrap_StyledTextCtrl_AppendText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21234 { (char *)"StyledTextCtrl_GetTwoPhaseDraw", (PyCFunction
)_wrap_StyledTextCtrl_GetTwoPhaseDraw
, METH_O
, NULL
},
21235 { (char *)"StyledTextCtrl_SetTwoPhaseDraw", (PyCFunction
) _wrap_StyledTextCtrl_SetTwoPhaseDraw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21236 { (char *)"StyledTextCtrl_TargetFromSelection", (PyCFunction
)_wrap_StyledTextCtrl_TargetFromSelection
, METH_O
, NULL
},
21237 { (char *)"StyledTextCtrl_LinesJoin", (PyCFunction
)_wrap_StyledTextCtrl_LinesJoin
, METH_O
, NULL
},
21238 { (char *)"StyledTextCtrl_LinesSplit", (PyCFunction
) _wrap_StyledTextCtrl_LinesSplit
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21239 { (char *)"StyledTextCtrl_SetFoldMarginColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21240 { (char *)"StyledTextCtrl_SetFoldMarginHiColour", (PyCFunction
) _wrap_StyledTextCtrl_SetFoldMarginHiColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21241 { (char *)"StyledTextCtrl_LineDown", (PyCFunction
)_wrap_StyledTextCtrl_LineDown
, METH_O
, NULL
},
21242 { (char *)"StyledTextCtrl_LineDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownExtend
, METH_O
, NULL
},
21243 { (char *)"StyledTextCtrl_LineUp", (PyCFunction
)_wrap_StyledTextCtrl_LineUp
, METH_O
, NULL
},
21244 { (char *)"StyledTextCtrl_LineUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpExtend
, METH_O
, NULL
},
21245 { (char *)"StyledTextCtrl_CharLeft", (PyCFunction
)_wrap_StyledTextCtrl_CharLeft
, METH_O
, NULL
},
21246 { (char *)"StyledTextCtrl_CharLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftExtend
, METH_O
, NULL
},
21247 { (char *)"StyledTextCtrl_CharRight", (PyCFunction
)_wrap_StyledTextCtrl_CharRight
, METH_O
, NULL
},
21248 { (char *)"StyledTextCtrl_CharRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightExtend
, METH_O
, NULL
},
21249 { (char *)"StyledTextCtrl_WordLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordLeft
, METH_O
, NULL
},
21250 { (char *)"StyledTextCtrl_WordLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftExtend
, METH_O
, NULL
},
21251 { (char *)"StyledTextCtrl_WordRight", (PyCFunction
)_wrap_StyledTextCtrl_WordRight
, METH_O
, NULL
},
21252 { (char *)"StyledTextCtrl_WordRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightExtend
, METH_O
, NULL
},
21253 { (char *)"StyledTextCtrl_Home", (PyCFunction
)_wrap_StyledTextCtrl_Home
, METH_O
, NULL
},
21254 { (char *)"StyledTextCtrl_HomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeExtend
, METH_O
, NULL
},
21255 { (char *)"StyledTextCtrl_LineEnd", (PyCFunction
)_wrap_StyledTextCtrl_LineEnd
, METH_O
, NULL
},
21256 { (char *)"StyledTextCtrl_LineEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndExtend
, METH_O
, NULL
},
21257 { (char *)"StyledTextCtrl_DocumentStart", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStart
, METH_O
, NULL
},
21258 { (char *)"StyledTextCtrl_DocumentStartExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentStartExtend
, METH_O
, NULL
},
21259 { (char *)"StyledTextCtrl_DocumentEnd", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEnd
, METH_O
, NULL
},
21260 { (char *)"StyledTextCtrl_DocumentEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_DocumentEndExtend
, METH_O
, NULL
},
21261 { (char *)"StyledTextCtrl_PageUp", (PyCFunction
)_wrap_StyledTextCtrl_PageUp
, METH_O
, NULL
},
21262 { (char *)"StyledTextCtrl_PageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpExtend
, METH_O
, NULL
},
21263 { (char *)"StyledTextCtrl_PageDown", (PyCFunction
)_wrap_StyledTextCtrl_PageDown
, METH_O
, NULL
},
21264 { (char *)"StyledTextCtrl_PageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownExtend
, METH_O
, NULL
},
21265 { (char *)"StyledTextCtrl_EditToggleOvertype", (PyCFunction
)_wrap_StyledTextCtrl_EditToggleOvertype
, METH_O
, NULL
},
21266 { (char *)"StyledTextCtrl_Cancel", (PyCFunction
)_wrap_StyledTextCtrl_Cancel
, METH_O
, NULL
},
21267 { (char *)"StyledTextCtrl_DeleteBack", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBack
, METH_O
, NULL
},
21268 { (char *)"StyledTextCtrl_Tab", (PyCFunction
)_wrap_StyledTextCtrl_Tab
, METH_O
, NULL
},
21269 { (char *)"StyledTextCtrl_BackTab", (PyCFunction
)_wrap_StyledTextCtrl_BackTab
, METH_O
, NULL
},
21270 { (char *)"StyledTextCtrl_NewLine", (PyCFunction
)_wrap_StyledTextCtrl_NewLine
, METH_O
, NULL
},
21271 { (char *)"StyledTextCtrl_FormFeed", (PyCFunction
)_wrap_StyledTextCtrl_FormFeed
, METH_O
, NULL
},
21272 { (char *)"StyledTextCtrl_VCHome", (PyCFunction
)_wrap_StyledTextCtrl_VCHome
, METH_O
, NULL
},
21273 { (char *)"StyledTextCtrl_VCHomeExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeExtend
, METH_O
, NULL
},
21274 { (char *)"StyledTextCtrl_ZoomIn", (PyCFunction
)_wrap_StyledTextCtrl_ZoomIn
, METH_O
, NULL
},
21275 { (char *)"StyledTextCtrl_ZoomOut", (PyCFunction
)_wrap_StyledTextCtrl_ZoomOut
, METH_O
, NULL
},
21276 { (char *)"StyledTextCtrl_DelWordLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelWordLeft
, METH_O
, NULL
},
21277 { (char *)"StyledTextCtrl_DelWordRight", (PyCFunction
)_wrap_StyledTextCtrl_DelWordRight
, METH_O
, NULL
},
21278 { (char *)"StyledTextCtrl_LineCut", (PyCFunction
)_wrap_StyledTextCtrl_LineCut
, METH_O
, NULL
},
21279 { (char *)"StyledTextCtrl_LineDelete", (PyCFunction
)_wrap_StyledTextCtrl_LineDelete
, METH_O
, NULL
},
21280 { (char *)"StyledTextCtrl_LineTranspose", (PyCFunction
)_wrap_StyledTextCtrl_LineTranspose
, METH_O
, NULL
},
21281 { (char *)"StyledTextCtrl_LineDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_LineDuplicate
, METH_O
, NULL
},
21282 { (char *)"StyledTextCtrl_LowerCase", (PyCFunction
)_wrap_StyledTextCtrl_LowerCase
, METH_O
, NULL
},
21283 { (char *)"StyledTextCtrl_UpperCase", (PyCFunction
)_wrap_StyledTextCtrl_UpperCase
, METH_O
, NULL
},
21284 { (char *)"StyledTextCtrl_LineScrollDown", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollDown
, METH_O
, NULL
},
21285 { (char *)"StyledTextCtrl_LineScrollUp", (PyCFunction
)_wrap_StyledTextCtrl_LineScrollUp
, METH_O
, NULL
},
21286 { (char *)"StyledTextCtrl_DeleteBackNotLine", (PyCFunction
)_wrap_StyledTextCtrl_DeleteBackNotLine
, METH_O
, NULL
},
21287 { (char *)"StyledTextCtrl_HomeDisplay", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplay
, METH_O
, NULL
},
21288 { (char *)"StyledTextCtrl_HomeDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeDisplayExtend
, METH_O
, NULL
},
21289 { (char *)"StyledTextCtrl_LineEndDisplay", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplay
, METH_O
, NULL
},
21290 { (char *)"StyledTextCtrl_LineEndDisplayExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndDisplayExtend
, METH_O
, NULL
},
21291 { (char *)"StyledTextCtrl_HomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrap
, METH_O
, NULL
},
21292 { (char *)"StyledTextCtrl_HomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeWrapExtend
, METH_O
, NULL
},
21293 { (char *)"StyledTextCtrl_LineEndWrap", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrap
, METH_O
, NULL
},
21294 { (char *)"StyledTextCtrl_LineEndWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndWrapExtend
, METH_O
, NULL
},
21295 { (char *)"StyledTextCtrl_VCHomeWrap", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrap
, METH_O
, NULL
},
21296 { (char *)"StyledTextCtrl_VCHomeWrapExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeWrapExtend
, METH_O
, NULL
},
21297 { (char *)"StyledTextCtrl_LineCopy", (PyCFunction
)_wrap_StyledTextCtrl_LineCopy
, METH_O
, NULL
},
21298 { (char *)"StyledTextCtrl_MoveCaretInsideView", (PyCFunction
)_wrap_StyledTextCtrl_MoveCaretInsideView
, METH_O
, NULL
},
21299 { (char *)"StyledTextCtrl_LineLength", (PyCFunction
) _wrap_StyledTextCtrl_LineLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21300 { (char *)"StyledTextCtrl_BraceHighlight", (PyCFunction
) _wrap_StyledTextCtrl_BraceHighlight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21301 { (char *)"StyledTextCtrl_BraceBadLight", (PyCFunction
) _wrap_StyledTextCtrl_BraceBadLight
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21302 { (char *)"StyledTextCtrl_BraceMatch", (PyCFunction
) _wrap_StyledTextCtrl_BraceMatch
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21303 { (char *)"StyledTextCtrl_GetViewEOL", (PyCFunction
)_wrap_StyledTextCtrl_GetViewEOL
, METH_O
, NULL
},
21304 { (char *)"StyledTextCtrl_SetViewEOL", (PyCFunction
) _wrap_StyledTextCtrl_SetViewEOL
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21305 { (char *)"StyledTextCtrl_GetDocPointer", (PyCFunction
)_wrap_StyledTextCtrl_GetDocPointer
, METH_O
, NULL
},
21306 { (char *)"StyledTextCtrl_SetDocPointer", (PyCFunction
) _wrap_StyledTextCtrl_SetDocPointer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21307 { (char *)"StyledTextCtrl_SetModEventMask", (PyCFunction
) _wrap_StyledTextCtrl_SetModEventMask
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21308 { (char *)"StyledTextCtrl_GetEdgeColumn", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColumn
, METH_O
, NULL
},
21309 { (char *)"StyledTextCtrl_SetEdgeColumn", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21310 { (char *)"StyledTextCtrl_GetEdgeMode", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeMode
, METH_O
, NULL
},
21311 { (char *)"StyledTextCtrl_SetEdgeMode", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21312 { (char *)"StyledTextCtrl_GetEdgeColour", (PyCFunction
)_wrap_StyledTextCtrl_GetEdgeColour
, METH_O
, NULL
},
21313 { (char *)"StyledTextCtrl_SetEdgeColour", (PyCFunction
) _wrap_StyledTextCtrl_SetEdgeColour
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21314 { (char *)"StyledTextCtrl_SearchAnchor", (PyCFunction
)_wrap_StyledTextCtrl_SearchAnchor
, METH_O
, NULL
},
21315 { (char *)"StyledTextCtrl_SearchNext", (PyCFunction
) _wrap_StyledTextCtrl_SearchNext
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21316 { (char *)"StyledTextCtrl_SearchPrev", (PyCFunction
) _wrap_StyledTextCtrl_SearchPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21317 { (char *)"StyledTextCtrl_LinesOnScreen", (PyCFunction
)_wrap_StyledTextCtrl_LinesOnScreen
, METH_O
, NULL
},
21318 { (char *)"StyledTextCtrl_UsePopUp", (PyCFunction
) _wrap_StyledTextCtrl_UsePopUp
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21319 { (char *)"StyledTextCtrl_SelectionIsRectangle", (PyCFunction
)_wrap_StyledTextCtrl_SelectionIsRectangle
, METH_O
, NULL
},
21320 { (char *)"StyledTextCtrl_SetZoom", (PyCFunction
) _wrap_StyledTextCtrl_SetZoom
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21321 { (char *)"StyledTextCtrl_GetZoom", (PyCFunction
)_wrap_StyledTextCtrl_GetZoom
, METH_O
, NULL
},
21322 { (char *)"StyledTextCtrl_CreateDocument", (PyCFunction
)_wrap_StyledTextCtrl_CreateDocument
, METH_O
, NULL
},
21323 { (char *)"StyledTextCtrl_AddRefDocument", (PyCFunction
) _wrap_StyledTextCtrl_AddRefDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21324 { (char *)"StyledTextCtrl_ReleaseDocument", (PyCFunction
) _wrap_StyledTextCtrl_ReleaseDocument
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21325 { (char *)"StyledTextCtrl_GetModEventMask", (PyCFunction
)_wrap_StyledTextCtrl_GetModEventMask
, METH_O
, NULL
},
21326 { (char *)"StyledTextCtrl_SetSTCFocus", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCFocus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21327 { (char *)"StyledTextCtrl_GetSTCFocus", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCFocus
, METH_O
, NULL
},
21328 { (char *)"StyledTextCtrl_SetStatus", (PyCFunction
) _wrap_StyledTextCtrl_SetStatus
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21329 { (char *)"StyledTextCtrl_GetStatus", (PyCFunction
)_wrap_StyledTextCtrl_GetStatus
, METH_O
, NULL
},
21330 { (char *)"StyledTextCtrl_SetMouseDownCaptures", (PyCFunction
) _wrap_StyledTextCtrl_SetMouseDownCaptures
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21331 { (char *)"StyledTextCtrl_GetMouseDownCaptures", (PyCFunction
)_wrap_StyledTextCtrl_GetMouseDownCaptures
, METH_O
, NULL
},
21332 { (char *)"StyledTextCtrl_SetSTCCursor", (PyCFunction
) _wrap_StyledTextCtrl_SetSTCCursor
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21333 { (char *)"StyledTextCtrl_GetSTCCursor", (PyCFunction
)_wrap_StyledTextCtrl_GetSTCCursor
, METH_O
, NULL
},
21334 { (char *)"StyledTextCtrl_SetControlCharSymbol", (PyCFunction
) _wrap_StyledTextCtrl_SetControlCharSymbol
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21335 { (char *)"StyledTextCtrl_GetControlCharSymbol", (PyCFunction
)_wrap_StyledTextCtrl_GetControlCharSymbol
, METH_O
, NULL
},
21336 { (char *)"StyledTextCtrl_WordPartLeft", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeft
, METH_O
, NULL
},
21337 { (char *)"StyledTextCtrl_WordPartLeftExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartLeftExtend
, METH_O
, NULL
},
21338 { (char *)"StyledTextCtrl_WordPartRight", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRight
, METH_O
, NULL
},
21339 { (char *)"StyledTextCtrl_WordPartRightExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordPartRightExtend
, METH_O
, NULL
},
21340 { (char *)"StyledTextCtrl_SetVisiblePolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetVisiblePolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21341 { (char *)"StyledTextCtrl_DelLineLeft", (PyCFunction
)_wrap_StyledTextCtrl_DelLineLeft
, METH_O
, NULL
},
21342 { (char *)"StyledTextCtrl_DelLineRight", (PyCFunction
)_wrap_StyledTextCtrl_DelLineRight
, METH_O
, NULL
},
21343 { (char *)"StyledTextCtrl_SetXOffset", (PyCFunction
) _wrap_StyledTextCtrl_SetXOffset
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21344 { (char *)"StyledTextCtrl_GetXOffset", (PyCFunction
)_wrap_StyledTextCtrl_GetXOffset
, METH_O
, NULL
},
21345 { (char *)"StyledTextCtrl_ChooseCaretX", (PyCFunction
)_wrap_StyledTextCtrl_ChooseCaretX
, METH_O
, NULL
},
21346 { (char *)"StyledTextCtrl_SetXCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetXCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21347 { (char *)"StyledTextCtrl_SetYCaretPolicy", (PyCFunction
) _wrap_StyledTextCtrl_SetYCaretPolicy
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21348 { (char *)"StyledTextCtrl_SetPrintWrapMode", (PyCFunction
) _wrap_StyledTextCtrl_SetPrintWrapMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21349 { (char *)"StyledTextCtrl_GetPrintWrapMode", (PyCFunction
)_wrap_StyledTextCtrl_GetPrintWrapMode
, METH_O
, NULL
},
21350 { (char *)"StyledTextCtrl_SetHotspotActiveForeground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveForeground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21351 { (char *)"StyledTextCtrl_SetHotspotActiveBackground", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveBackground
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21352 { (char *)"StyledTextCtrl_SetHotspotActiveUnderline", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotActiveUnderline
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21353 { (char *)"StyledTextCtrl_SetHotspotSingleLine", (PyCFunction
) _wrap_StyledTextCtrl_SetHotspotSingleLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21354 { (char *)"StyledTextCtrl_ParaDown", (PyCFunction
)_wrap_StyledTextCtrl_ParaDown
, METH_O
, NULL
},
21355 { (char *)"StyledTextCtrl_ParaDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaDownExtend
, METH_O
, NULL
},
21356 { (char *)"StyledTextCtrl_ParaUp", (PyCFunction
)_wrap_StyledTextCtrl_ParaUp
, METH_O
, NULL
},
21357 { (char *)"StyledTextCtrl_ParaUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_ParaUpExtend
, METH_O
, NULL
},
21358 { (char *)"StyledTextCtrl_PositionBefore", (PyCFunction
) _wrap_StyledTextCtrl_PositionBefore
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21359 { (char *)"StyledTextCtrl_PositionAfter", (PyCFunction
) _wrap_StyledTextCtrl_PositionAfter
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21360 { (char *)"StyledTextCtrl_CopyRange", (PyCFunction
) _wrap_StyledTextCtrl_CopyRange
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21361 { (char *)"StyledTextCtrl_CopyText", (PyCFunction
) _wrap_StyledTextCtrl_CopyText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21362 { (char *)"StyledTextCtrl_SetSelectionMode", (PyCFunction
) _wrap_StyledTextCtrl_SetSelectionMode
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21363 { (char *)"StyledTextCtrl_GetSelectionMode", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectionMode
, METH_O
, NULL
},
21364 { (char *)"StyledTextCtrl_GetLineSelStartPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelStartPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21365 { (char *)"StyledTextCtrl_GetLineSelEndPosition", (PyCFunction
) _wrap_StyledTextCtrl_GetLineSelEndPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21366 { (char *)"StyledTextCtrl_LineDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineDownRectExtend
, METH_O
, NULL
},
21367 { (char *)"StyledTextCtrl_LineUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineUpRectExtend
, METH_O
, NULL
},
21368 { (char *)"StyledTextCtrl_CharLeftRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharLeftRectExtend
, METH_O
, NULL
},
21369 { (char *)"StyledTextCtrl_CharRightRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_CharRightRectExtend
, METH_O
, NULL
},
21370 { (char *)"StyledTextCtrl_HomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_HomeRectExtend
, METH_O
, NULL
},
21371 { (char *)"StyledTextCtrl_VCHomeRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_VCHomeRectExtend
, METH_O
, NULL
},
21372 { (char *)"StyledTextCtrl_LineEndRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_LineEndRectExtend
, METH_O
, NULL
},
21373 { (char *)"StyledTextCtrl_PageUpRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageUpRectExtend
, METH_O
, NULL
},
21374 { (char *)"StyledTextCtrl_PageDownRectExtend", (PyCFunction
)_wrap_StyledTextCtrl_PageDownRectExtend
, METH_O
, NULL
},
21375 { (char *)"StyledTextCtrl_StutteredPageUp", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUp
, METH_O
, NULL
},
21376 { (char *)"StyledTextCtrl_StutteredPageUpExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageUpExtend
, METH_O
, NULL
},
21377 { (char *)"StyledTextCtrl_StutteredPageDown", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDown
, METH_O
, NULL
},
21378 { (char *)"StyledTextCtrl_StutteredPageDownExtend", (PyCFunction
)_wrap_StyledTextCtrl_StutteredPageDownExtend
, METH_O
, NULL
},
21379 { (char *)"StyledTextCtrl_WordLeftEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEnd
, METH_O
, NULL
},
21380 { (char *)"StyledTextCtrl_WordLeftEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordLeftEndExtend
, METH_O
, NULL
},
21381 { (char *)"StyledTextCtrl_WordRightEnd", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEnd
, METH_O
, NULL
},
21382 { (char *)"StyledTextCtrl_WordRightEndExtend", (PyCFunction
)_wrap_StyledTextCtrl_WordRightEndExtend
, METH_O
, NULL
},
21383 { (char *)"StyledTextCtrl_SetWhitespaceChars", (PyCFunction
) _wrap_StyledTextCtrl_SetWhitespaceChars
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21384 { (char *)"StyledTextCtrl_SetCharsDefault", (PyCFunction
)_wrap_StyledTextCtrl_SetCharsDefault
, METH_O
, NULL
},
21385 { (char *)"StyledTextCtrl_AutoCompGetCurrent", (PyCFunction
)_wrap_StyledTextCtrl_AutoCompGetCurrent
, METH_O
, NULL
},
21386 { (char *)"StyledTextCtrl_Allocate", (PyCFunction
) _wrap_StyledTextCtrl_Allocate
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21387 { (char *)"StyledTextCtrl_FindColumn", (PyCFunction
) _wrap_StyledTextCtrl_FindColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21388 { (char *)"StyledTextCtrl_GetCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_GetCaretSticky
, METH_O
, NULL
},
21389 { (char *)"StyledTextCtrl_SetCaretSticky", (PyCFunction
) _wrap_StyledTextCtrl_SetCaretSticky
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21390 { (char *)"StyledTextCtrl_ToggleCaretSticky", (PyCFunction
)_wrap_StyledTextCtrl_ToggleCaretSticky
, METH_O
, NULL
},
21391 { (char *)"StyledTextCtrl_SetPasteConvertEndings", (PyCFunction
) _wrap_StyledTextCtrl_SetPasteConvertEndings
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21392 { (char *)"StyledTextCtrl_GetPasteConvertEndings", (PyCFunction
)_wrap_StyledTextCtrl_GetPasteConvertEndings
, METH_O
, NULL
},
21393 { (char *)"StyledTextCtrl_SelectionDuplicate", (PyCFunction
)_wrap_StyledTextCtrl_SelectionDuplicate
, METH_O
, NULL
},
21394 { (char *)"StyledTextCtrl_StartRecord", (PyCFunction
)_wrap_StyledTextCtrl_StartRecord
, METH_O
, NULL
},
21395 { (char *)"StyledTextCtrl_StopRecord", (PyCFunction
)_wrap_StyledTextCtrl_StopRecord
, METH_O
, NULL
},
21396 { (char *)"StyledTextCtrl_SetLexer", (PyCFunction
) _wrap_StyledTextCtrl_SetLexer
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21397 { (char *)"StyledTextCtrl_GetLexer", (PyCFunction
)_wrap_StyledTextCtrl_GetLexer
, METH_O
, NULL
},
21398 { (char *)"StyledTextCtrl_Colourise", (PyCFunction
) _wrap_StyledTextCtrl_Colourise
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21399 { (char *)"StyledTextCtrl_SetProperty", (PyCFunction
) _wrap_StyledTextCtrl_SetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21400 { (char *)"StyledTextCtrl_SetKeyWords", (PyCFunction
) _wrap_StyledTextCtrl_SetKeyWords
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21401 { (char *)"StyledTextCtrl_SetLexerLanguage", (PyCFunction
) _wrap_StyledTextCtrl_SetLexerLanguage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21402 { (char *)"StyledTextCtrl_GetProperty", (PyCFunction
) _wrap_StyledTextCtrl_GetProperty
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21403 { (char *)"StyledTextCtrl_GetPropertyExpanded", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyExpanded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21404 { (char *)"StyledTextCtrl_GetPropertyInt", (PyCFunction
) _wrap_StyledTextCtrl_GetPropertyInt
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21405 { (char *)"StyledTextCtrl_GetStyleBitsNeeded", (PyCFunction
)_wrap_StyledTextCtrl_GetStyleBitsNeeded
, METH_O
, NULL
},
21406 { (char *)"StyledTextCtrl_GetCurrentLine", (PyCFunction
)_wrap_StyledTextCtrl_GetCurrentLine
, METH_O
, NULL
},
21407 { (char *)"StyledTextCtrl_StyleSetSpec", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetSpec
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21408 { (char *)"StyledTextCtrl_StyleSetFont", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFont
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21409 { (char *)"StyledTextCtrl_StyleSetFontAttr", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontAttr
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21410 { (char *)"StyledTextCtrl_StyleSetCharacterSet", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetCharacterSet
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21411 { (char *)"StyledTextCtrl_StyleSetFontEncoding", (PyCFunction
) _wrap_StyledTextCtrl_StyleSetFontEncoding
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21412 { (char *)"StyledTextCtrl_CmdKeyExecute", (PyCFunction
) _wrap_StyledTextCtrl_CmdKeyExecute
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21413 { (char *)"StyledTextCtrl_SetMargins", (PyCFunction
) _wrap_StyledTextCtrl_SetMargins
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21414 { (char *)"StyledTextCtrl_GetSelection", (PyCFunction
)_wrap_StyledTextCtrl_GetSelection
, METH_O
, NULL
},
21415 { (char *)"StyledTextCtrl_PointFromPosition", (PyCFunction
) _wrap_StyledTextCtrl_PointFromPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21416 { (char *)"StyledTextCtrl_ScrollToLine", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21417 { (char *)"StyledTextCtrl_ScrollToColumn", (PyCFunction
) _wrap_StyledTextCtrl_ScrollToColumn
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21418 { (char *)"StyledTextCtrl_SendMsg", (PyCFunction
) _wrap_StyledTextCtrl_SendMsg
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21419 { (char *)"StyledTextCtrl_SetVScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetVScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21420 { (char *)"StyledTextCtrl_SetHScrollBar", (PyCFunction
) _wrap_StyledTextCtrl_SetHScrollBar
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21421 { (char *)"StyledTextCtrl_GetLastKeydownProcessed", (PyCFunction
)_wrap_StyledTextCtrl_GetLastKeydownProcessed
, METH_O
, NULL
},
21422 { (char *)"StyledTextCtrl_SetLastKeydownProcessed", (PyCFunction
) _wrap_StyledTextCtrl_SetLastKeydownProcessed
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21423 { (char *)"StyledTextCtrl_SaveFile", (PyCFunction
) _wrap_StyledTextCtrl_SaveFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21424 { (char *)"StyledTextCtrl_LoadFile", (PyCFunction
) _wrap_StyledTextCtrl_LoadFile
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21425 { (char *)"StyledTextCtrl_DoDragOver", (PyCFunction
) _wrap_StyledTextCtrl_DoDragOver
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21426 { (char *)"StyledTextCtrl_DoDropText", (PyCFunction
) _wrap_StyledTextCtrl_DoDropText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21427 { (char *)"StyledTextCtrl_SetUseAntiAliasing", (PyCFunction
) _wrap_StyledTextCtrl_SetUseAntiAliasing
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21428 { (char *)"StyledTextCtrl_GetUseAntiAliasing", (PyCFunction
)_wrap_StyledTextCtrl_GetUseAntiAliasing
, METH_O
, NULL
},
21429 { (char *)"StyledTextCtrl_AddTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AddTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21430 { (char *)"StyledTextCtrl_InsertTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_InsertTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21431 { (char *)"StyledTextCtrl_GetCurLineRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetCurLineRaw
, METH_O
, NULL
},
21432 { (char *)"StyledTextCtrl_GetLineRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetLineRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21433 { (char *)"StyledTextCtrl_GetSelectedTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetSelectedTextRaw
, METH_O
, NULL
},
21434 { (char *)"StyledTextCtrl_GetTextRangeRaw", (PyCFunction
) _wrap_StyledTextCtrl_GetTextRangeRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21435 { (char *)"StyledTextCtrl_SetTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_SetTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21436 { (char *)"StyledTextCtrl_GetTextRaw", (PyCFunction
)_wrap_StyledTextCtrl_GetTextRaw
, METH_O
, NULL
},
21437 { (char *)"StyledTextCtrl_AppendTextRaw", (PyCFunction
) _wrap_StyledTextCtrl_AppendTextRaw
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21438 { (char *)"StyledTextCtrl_swigregister", StyledTextCtrl_swigregister
, METH_VARARGS
, NULL
},
21439 { (char *)"StyledTextCtrl_swiginit", StyledTextCtrl_swiginit
, METH_VARARGS
, NULL
},
21440 { (char *)"new_StyledTextEvent", (PyCFunction
) _wrap_new_StyledTextEvent
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21441 { (char *)"delete_StyledTextEvent", (PyCFunction
)_wrap_delete_StyledTextEvent
, METH_O
, NULL
},
21442 { (char *)"StyledTextEvent_SetPosition", (PyCFunction
) _wrap_StyledTextEvent_SetPosition
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21443 { (char *)"StyledTextEvent_SetKey", (PyCFunction
) _wrap_StyledTextEvent_SetKey
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21444 { (char *)"StyledTextEvent_SetModifiers", (PyCFunction
) _wrap_StyledTextEvent_SetModifiers
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21445 { (char *)"StyledTextEvent_SetModificationType", (PyCFunction
) _wrap_StyledTextEvent_SetModificationType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21446 { (char *)"StyledTextEvent_SetText", (PyCFunction
) _wrap_StyledTextEvent_SetText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21447 { (char *)"StyledTextEvent_SetLength", (PyCFunction
) _wrap_StyledTextEvent_SetLength
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21448 { (char *)"StyledTextEvent_SetLinesAdded", (PyCFunction
) _wrap_StyledTextEvent_SetLinesAdded
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21449 { (char *)"StyledTextEvent_SetLine", (PyCFunction
) _wrap_StyledTextEvent_SetLine
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21450 { (char *)"StyledTextEvent_SetFoldLevelNow", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelNow
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21451 { (char *)"StyledTextEvent_SetFoldLevelPrev", (PyCFunction
) _wrap_StyledTextEvent_SetFoldLevelPrev
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21452 { (char *)"StyledTextEvent_SetMargin", (PyCFunction
) _wrap_StyledTextEvent_SetMargin
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21453 { (char *)"StyledTextEvent_SetMessage", (PyCFunction
) _wrap_StyledTextEvent_SetMessage
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21454 { (char *)"StyledTextEvent_SetWParam", (PyCFunction
) _wrap_StyledTextEvent_SetWParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21455 { (char *)"StyledTextEvent_SetLParam", (PyCFunction
) _wrap_StyledTextEvent_SetLParam
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21456 { (char *)"StyledTextEvent_SetListType", (PyCFunction
) _wrap_StyledTextEvent_SetListType
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21457 { (char *)"StyledTextEvent_SetX", (PyCFunction
) _wrap_StyledTextEvent_SetX
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21458 { (char *)"StyledTextEvent_SetY", (PyCFunction
) _wrap_StyledTextEvent_SetY
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21459 { (char *)"StyledTextEvent_SetDragText", (PyCFunction
) _wrap_StyledTextEvent_SetDragText
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21460 { (char *)"StyledTextEvent_SetDragAllowMove", (PyCFunction
) _wrap_StyledTextEvent_SetDragAllowMove
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21461 { (char *)"StyledTextEvent_SetDragResult", (PyCFunction
) _wrap_StyledTextEvent_SetDragResult
, METH_VARARGS
| METH_KEYWORDS
, NULL
},
21462 { (char *)"StyledTextEvent_GetPosition", (PyCFunction
)_wrap_StyledTextEvent_GetPosition
, METH_O
, NULL
},
21463 { (char *)"StyledTextEvent_GetKey", (PyCFunction
)_wrap_StyledTextEvent_GetKey
, METH_O
, NULL
},
21464 { (char *)"StyledTextEvent_GetModifiers", (PyCFunction
)_wrap_StyledTextEvent_GetModifiers
, METH_O
, NULL
},
21465 { (char *)"StyledTextEvent_GetModificationType", (PyCFunction
)_wrap_StyledTextEvent_GetModificationType
, METH_O
, NULL
},
21466 { (char *)"StyledTextEvent_GetText", (PyCFunction
)_wrap_StyledTextEvent_GetText
, METH_O
, NULL
},
21467 { (char *)"StyledTextEvent_GetLength", (PyCFunction
)_wrap_StyledTextEvent_GetLength
, METH_O
, NULL
},
21468 { (char *)"StyledTextEvent_GetLinesAdded", (PyCFunction
)_wrap_StyledTextEvent_GetLinesAdded
, METH_O
, NULL
},
21469 { (char *)"StyledTextEvent_GetLine", (PyCFunction
)_wrap_StyledTextEvent_GetLine
, METH_O
, NULL
},
21470 { (char *)"StyledTextEvent_GetFoldLevelNow", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelNow
, METH_O
, NULL
},
21471 { (char *)"StyledTextEvent_GetFoldLevelPrev", (PyCFunction
)_wrap_StyledTextEvent_GetFoldLevelPrev
, METH_O
, NULL
},
21472 { (char *)"StyledTextEvent_GetMargin", (PyCFunction
)_wrap_StyledTextEvent_GetMargin
, METH_O
, NULL
},
21473 { (char *)"StyledTextEvent_GetMessage", (PyCFunction
)_wrap_StyledTextEvent_GetMessage
, METH_O
, NULL
},
21474 { (char *)"StyledTextEvent_GetWParam", (PyCFunction
)_wrap_StyledTextEvent_GetWParam
, METH_O
, NULL
},
21475 { (char *)"StyledTextEvent_GetLParam", (PyCFunction
)_wrap_StyledTextEvent_GetLParam
, METH_O
, NULL
},
21476 { (char *)"StyledTextEvent_GetListType", (PyCFunction
)_wrap_StyledTextEvent_GetListType
, METH_O
, NULL
},
21477 { (char *)"StyledTextEvent_GetX", (PyCFunction
)_wrap_StyledTextEvent_GetX
, METH_O
, NULL
},
21478 { (char *)"StyledTextEvent_GetY", (PyCFunction
)_wrap_StyledTextEvent_GetY
, METH_O
, NULL
},
21479 { (char *)"StyledTextEvent_GetDragText", (PyCFunction
)_wrap_StyledTextEvent_GetDragText
, METH_O
, NULL
},
21480 { (char *)"StyledTextEvent_GetDragAllowMove", (PyCFunction
)_wrap_StyledTextEvent_GetDragAllowMove
, METH_O
, NULL
},
21481 { (char *)"StyledTextEvent_GetDragResult", (PyCFunction
)_wrap_StyledTextEvent_GetDragResult
, METH_O
, NULL
},
21482 { (char *)"StyledTextEvent_GetShift", (PyCFunction
)_wrap_StyledTextEvent_GetShift
, METH_O
, NULL
},
21483 { (char *)"StyledTextEvent_GetControl", (PyCFunction
)_wrap_StyledTextEvent_GetControl
, METH_O
, NULL
},
21484 { (char *)"StyledTextEvent_GetAlt", (PyCFunction
)_wrap_StyledTextEvent_GetAlt
, METH_O
, NULL
},
21485 { (char *)"StyledTextEvent_swigregister", StyledTextEvent_swigregister
, METH_VARARGS
, NULL
},
21486 { (char *)"StyledTextEvent_swiginit", StyledTextEvent_swiginit
, METH_VARARGS
, NULL
},
21487 { NULL
, NULL
, 0, NULL
}
21491 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (BEGIN) -------- */
21493 static void *_p_wxLayoutConstraintsTo_p_wxObject(void *x
) {
21494 return (void *)((wxObject
*) ((wxLayoutConstraints
*) x
));
21496 static void *_p_wxGBSizerItemTo_p_wxObject(void *x
) {
21497 return (void *)((wxObject
*) (wxSizerItem
*) ((wxGBSizerItem
*) x
));
21499 static void *_p_wxSizerItemTo_p_wxObject(void *x
) {
21500 return (void *)((wxObject
*) ((wxSizerItem
*) x
));
21502 static void *_p_wxScrollEventTo_p_wxObject(void *x
) {
21503 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxScrollEvent
*) x
));
21505 static void *_p_wxIndividualLayoutConstraintTo_p_wxObject(void *x
) {
21506 return (void *)((wxObject
*) ((wxIndividualLayoutConstraint
*) x
));
21508 static void *_p_wxStaticBoxSizerTo_p_wxObject(void *x
) {
21509 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStaticBoxSizer
*) x
));
21511 static void *_p_wxBoxSizerTo_p_wxObject(void *x
) {
21512 return (void *)((wxObject
*) (wxSizer
*) ((wxBoxSizer
*) x
));
21514 static void *_p_wxSizerTo_p_wxObject(void *x
) {
21515 return (void *)((wxObject
*) ((wxSizer
*) x
));
21517 static void *_p_wxGridBagSizerTo_p_wxObject(void *x
) {
21518 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*)(wxFlexGridSizer
*) ((wxGridBagSizer
*) x
));
21520 static void *_p_wxFileHistoryTo_p_wxObject(void *x
) {
21521 return (void *)((wxObject
*) ((wxFileHistory
*) x
));
21523 static void *_p_wxUpdateUIEventTo_p_wxObject(void *x
) {
21524 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21526 static void *_p_wxEventTo_p_wxObject(void *x
) {
21527 return (void *)((wxObject
*) ((wxEvent
*) x
));
21529 static void *_p_wxFlexGridSizerTo_p_wxObject(void *x
) {
21530 return (void *)((wxObject
*) (wxSizer
*)(wxGridSizer
*) ((wxFlexGridSizer
*) x
));
21532 static void *_p_wxGridSizerTo_p_wxObject(void *x
) {
21533 return (void *)((wxObject
*) (wxSizer
*) ((wxGridSizer
*) x
));
21535 static void *_p_wxInitDialogEventTo_p_wxObject(void *x
) {
21536 return (void *)((wxObject
*) (wxEvent
*) ((wxInitDialogEvent
*) x
));
21538 static void *_p_wxClipboardTextEventTo_p_wxObject(void *x
) {
21539 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21541 static void *_p_wxPaintEventTo_p_wxObject(void *x
) {
21542 return (void *)((wxObject
*) (wxEvent
*) ((wxPaintEvent
*) x
));
21544 static void *_p_wxNcPaintEventTo_p_wxObject(void *x
) {
21545 return (void *)((wxObject
*) (wxEvent
*) ((wxNcPaintEvent
*) x
));
21547 static void *_p_wxStyledTextEventTo_p_wxObject(void *x
) {
21548 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21550 static void *_p_wxPaletteChangedEventTo_p_wxObject(void *x
) {
21551 return (void *)((wxObject
*) (wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21553 static void *_p_wxDisplayChangedEventTo_p_wxObject(void *x
) {
21554 return (void *)((wxObject
*) (wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21556 static void *_p_wxMouseCaptureChangedEventTo_p_wxObject(void *x
) {
21557 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21559 static void *_p_wxSysColourChangedEventTo_p_wxObject(void *x
) {
21560 return (void *)((wxObject
*) (wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21562 static void *_p_wxControlTo_p_wxObject(void *x
) {
21563 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxControl
*) x
));
21565 static void *_p_wxSetCursorEventTo_p_wxObject(void *x
) {
21566 return (void *)((wxObject
*) (wxEvent
*) ((wxSetCursorEvent
*) x
));
21568 static void *_p_wxTimerEventTo_p_wxObject(void *x
) {
21569 return (void *)((wxObject
*) (wxEvent
*) ((wxTimerEvent
*) x
));
21571 static void *_p_wxPowerEventTo_p_wxObject(void *x
) {
21572 return (void *)((wxObject
*) (wxEvent
*) ((wxPowerEvent
*) x
));
21574 static void *_p_wxFSFileTo_p_wxObject(void *x
) {
21575 return (void *)((wxObject
*) ((wxFSFile
*) x
));
21577 static void *_p_wxClipboardTo_p_wxObject(void *x
) {
21578 return (void *)((wxObject
*) ((wxClipboard
*) x
));
21580 static void *_p_wxPySizerTo_p_wxObject(void *x
) {
21581 return (void *)((wxObject
*) (wxSizer
*) ((wxPySizer
*) x
));
21583 static void *_p_wxStyledTextCtrlTo_p_wxObject(void *x
) {
21584 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21586 static void *_p_wxPyEventTo_p_wxObject(void *x
) {
21587 return (void *)((wxObject
*) (wxEvent
*) ((wxPyEvent
*) x
));
21589 static void *_p_wxNotifyEventTo_p_wxObject(void *x
) {
21590 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21592 static void *_p_wxShowEventTo_p_wxObject(void *x
) {
21593 return (void *)((wxObject
*) (wxEvent
*) ((wxShowEvent
*) x
));
21595 static void *_p_wxToolTipTo_p_wxObject(void *x
) {
21596 return (void *)((wxObject
*) ((wxToolTip
*) x
));
21598 static void *_p_wxMenuItemTo_p_wxObject(void *x
) {
21599 return (void *)((wxObject
*) ((wxMenuItem
*) x
));
21601 static void *_p_wxDateEventTo_p_wxObject(void *x
) {
21602 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxDateEvent
*) x
));
21604 static void *_p_wxIdleEventTo_p_wxObject(void *x
) {
21605 return (void *)((wxObject
*) (wxEvent
*) ((wxIdleEvent
*) x
));
21607 static void *_p_wxWindowCreateEventTo_p_wxObject(void *x
) {
21608 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21610 static void *_p_wxQueryNewPaletteEventTo_p_wxObject(void *x
) {
21611 return (void *)((wxObject
*) (wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21613 static void *_p_wxMaximizeEventTo_p_wxObject(void *x
) {
21614 return (void *)((wxObject
*) (wxEvent
*) ((wxMaximizeEvent
*) x
));
21616 static void *_p_wxIconizeEventTo_p_wxObject(void *x
) {
21617 return (void *)((wxObject
*) (wxEvent
*) ((wxIconizeEvent
*) x
));
21619 static void *_p_wxSizeEventTo_p_wxObject(void *x
) {
21620 return (void *)((wxObject
*) (wxEvent
*) ((wxSizeEvent
*) x
));
21622 static void *_p_wxMoveEventTo_p_wxObject(void *x
) {
21623 return (void *)((wxObject
*) (wxEvent
*) ((wxMoveEvent
*) x
));
21625 static void *_p_wxActivateEventTo_p_wxObject(void *x
) {
21626 return (void *)((wxObject
*) (wxEvent
*) ((wxActivateEvent
*) x
));
21628 static void *_p_wxPNMHandlerTo_p_wxObject(void *x
) {
21629 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNMHandler
*) x
));
21631 static void *_p_wxJPEGHandlerTo_p_wxObject(void *x
) {
21632 return (void *)((wxObject
*) (wxImageHandler
*) ((wxJPEGHandler
*) x
));
21634 static void *_p_wxPCXHandlerTo_p_wxObject(void *x
) {
21635 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPCXHandler
*) x
));
21637 static void *_p_wxGIFHandlerTo_p_wxObject(void *x
) {
21638 return (void *)((wxObject
*) (wxImageHandler
*) ((wxGIFHandler
*) x
));
21640 static void *_p_wxPNGHandlerTo_p_wxObject(void *x
) {
21641 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPNGHandler
*) x
));
21643 static void *_p_wxANIHandlerTo_p_wxObject(void *x
) {
21644 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*)(wxCURHandler
*) ((wxANIHandler
*) x
));
21646 static void *_p_wxCURHandlerTo_p_wxObject(void *x
) {
21647 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*)(wxICOHandler
*) ((wxCURHandler
*) x
));
21649 static void *_p_wxICOHandlerTo_p_wxObject(void *x
) {
21650 return (void *)((wxObject
*) (wxImageHandler
*)(wxBMPHandler
*) ((wxICOHandler
*) x
));
21652 static void *_p_wxBMPHandlerTo_p_wxObject(void *x
) {
21653 return (void *)((wxObject
*) (wxImageHandler
*) ((wxBMPHandler
*) x
));
21655 static void *_p_wxPyImageHandlerTo_p_wxObject(void *x
) {
21656 return (void *)((wxObject
*) (wxImageHandler
*) ((wxPyImageHandler
*) x
));
21658 static void *_p_wxImageHandlerTo_p_wxObject(void *x
) {
21659 return (void *)((wxObject
*) ((wxImageHandler
*) x
));
21661 static void *_p_wxXPMHandlerTo_p_wxObject(void *x
) {
21662 return (void *)((wxObject
*) (wxImageHandler
*) ((wxXPMHandler
*) x
));
21664 static void *_p_wxTIFFHandlerTo_p_wxObject(void *x
) {
21665 return (void *)((wxObject
*) (wxImageHandler
*) ((wxTIFFHandler
*) x
));
21667 static void *_p_wxEvtHandlerTo_p_wxObject(void *x
) {
21668 return (void *)((wxObject
*) ((wxEvtHandler
*) x
));
21670 static void *_p_wxStdDialogButtonSizerTo_p_wxObject(void *x
) {
21671 return (void *)((wxObject
*) (wxSizer
*)(wxBoxSizer
*) ((wxStdDialogButtonSizer
*) x
));
21673 static void *_p_wxAcceleratorTableTo_p_wxObject(void *x
) {
21674 return (void *)((wxObject
*) ((wxAcceleratorTable
*) x
));
21676 static void *_p_wxImageTo_p_wxObject(void *x
) {
21677 return (void *)((wxObject
*) ((wxImage
*) x
));
21679 static void *_p_wxScrollWinEventTo_p_wxObject(void *x
) {
21680 return (void *)((wxObject
*) (wxEvent
*) ((wxScrollWinEvent
*) x
));
21682 static void *_p_wxSystemOptionsTo_p_wxObject(void *x
) {
21683 return (void *)((wxObject
*) ((wxSystemOptions
*) x
));
21685 static void *_p_wxJoystickEventTo_p_wxObject(void *x
) {
21686 return (void *)((wxObject
*) (wxEvent
*) ((wxJoystickEvent
*) x
));
21688 static void *_p_wxWindowDestroyEventTo_p_wxObject(void *x
) {
21689 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21691 static void *_p_wxNavigationKeyEventTo_p_wxObject(void *x
) {
21692 return (void *)((wxObject
*) (wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21694 static void *_p_wxKeyEventTo_p_wxObject(void *x
) {
21695 return (void *)((wxObject
*) (wxEvent
*) ((wxKeyEvent
*) x
));
21697 static void *_p_wxWindowTo_p_wxObject(void *x
) {
21698 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxWindow
*) x
));
21700 static void *_p_wxMenuTo_p_wxObject(void *x
) {
21701 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxMenu
*) x
));
21703 static void *_p_wxMenuBarTo_p_wxObject(void *x
) {
21704 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*) ((wxMenuBar
*) x
));
21706 static void *_p_wxPyProcessTo_p_wxObject(void *x
) {
21707 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyProcess
*) x
));
21709 static void *_p_wxFileSystemTo_p_wxObject(void *x
) {
21710 return (void *)((wxObject
*) ((wxFileSystem
*) x
));
21712 static void *_p_wxContextMenuEventTo_p_wxObject(void *x
) {
21713 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21715 static void *_p_wxMenuEventTo_p_wxObject(void *x
) {
21716 return (void *)((wxObject
*) (wxEvent
*) ((wxMenuEvent
*) x
));
21718 static void *_p_wxPyAppTo_p_wxObject(void *x
) {
21719 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyApp
*) x
));
21721 static void *_p_wxCloseEventTo_p_wxObject(void *x
) {
21722 return (void *)((wxObject
*) (wxEvent
*) ((wxCloseEvent
*) x
));
21724 static void *_p_wxMouseEventTo_p_wxObject(void *x
) {
21725 return (void *)((wxObject
*) (wxEvent
*) ((wxMouseEvent
*) x
));
21727 static void *_p_wxEraseEventTo_p_wxObject(void *x
) {
21728 return (void *)((wxObject
*) (wxEvent
*) ((wxEraseEvent
*) x
));
21730 static void *_p_wxBusyInfoTo_p_wxObject(void *x
) {
21731 return (void *)((wxObject
*) ((wxBusyInfo
*) x
));
21733 static void *_p_wxPyCommandEventTo_p_wxObject(void *x
) {
21734 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21736 static void *_p_wxCommandEventTo_p_wxObject(void *x
) {
21737 return (void *)((wxObject
*) (wxEvent
*) ((wxCommandEvent
*) x
));
21739 static void *_p_wxDropFilesEventTo_p_wxObject(void *x
) {
21740 return (void *)((wxObject
*) (wxEvent
*) ((wxDropFilesEvent
*) x
));
21742 static void *_p_wxFocusEventTo_p_wxObject(void *x
) {
21743 return (void *)((wxObject
*) (wxEvent
*) ((wxFocusEvent
*) x
));
21745 static void *_p_wxChildFocusEventTo_p_wxObject(void *x
) {
21746 return (void *)((wxObject
*) (wxEvent
*)(wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21748 static void *_p_wxProcessEventTo_p_wxObject(void *x
) {
21749 return (void *)((wxObject
*) (wxEvent
*) ((wxProcessEvent
*) x
));
21751 static void *_p_wxControlWithItemsTo_p_wxObject(void *x
) {
21752 return (void *)((wxObject
*) (wxEvtHandler
*)(wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21754 static void *_p_wxPyValidatorTo_p_wxObject(void *x
) {
21755 return (void *)((wxObject
*) (wxEvtHandler
*)(wxValidator
*) ((wxPyValidator
*) x
));
21757 static void *_p_wxValidatorTo_p_wxObject(void *x
) {
21758 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxValidator
*) x
));
21760 static void *_p_wxPyTimerTo_p_wxObject(void *x
) {
21761 return (void *)((wxObject
*) (wxEvtHandler
*) ((wxPyTimer
*) x
));
21763 static void *_p_wxControlTo_p_wxWindow(void *x
) {
21764 return (void *)((wxWindow
*) ((wxControl
*) x
));
21766 static void *_p_wxControlWithItemsTo_p_wxWindow(void *x
) {
21767 return (void *)((wxWindow
*) (wxControl
*) ((wxControlWithItems
*) x
));
21769 static void *_p_wxStyledTextCtrlTo_p_wxWindow(void *x
) {
21770 return (void *)((wxWindow
*) (wxControl
*) ((wxStyledTextCtrl
*) x
));
21772 static void *_p_wxMenuBarTo_p_wxWindow(void *x
) {
21773 return (void *)((wxWindow
*) ((wxMenuBar
*) x
));
21775 static void *_p_wxChildFocusEventTo_p_wxCommandEvent(void *x
) {
21776 return (void *)((wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21778 static void *_p_wxScrollEventTo_p_wxCommandEvent(void *x
) {
21779 return (void *)((wxCommandEvent
*) ((wxScrollEvent
*) x
));
21781 static void *_p_wxWindowCreateEventTo_p_wxCommandEvent(void *x
) {
21782 return (void *)((wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21784 static void *_p_wxDateEventTo_p_wxCommandEvent(void *x
) {
21785 return (void *)((wxCommandEvent
*) ((wxDateEvent
*) x
));
21787 static void *_p_wxUpdateUIEventTo_p_wxCommandEvent(void *x
) {
21788 return (void *)((wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21790 static void *_p_wxClipboardTextEventTo_p_wxCommandEvent(void *x
) {
21791 return (void *)((wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21793 static void *_p_wxStyledTextEventTo_p_wxCommandEvent(void *x
) {
21794 return (void *)((wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21796 static void *_p_wxWindowDestroyEventTo_p_wxCommandEvent(void *x
) {
21797 return (void *)((wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21799 static void *_p_wxContextMenuEventTo_p_wxCommandEvent(void *x
) {
21800 return (void *)((wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21802 static void *_p_wxNotifyEventTo_p_wxCommandEvent(void *x
) {
21803 return (void *)((wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21805 static void *_p_wxPyCommandEventTo_p_wxCommandEvent(void *x
) {
21806 return (void *)((wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21808 static void *_p_wxControlTo_p_wxEvtHandler(void *x
) {
21809 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxControl
*) x
));
21811 static void *_p_wxWindowTo_p_wxEvtHandler(void *x
) {
21812 return (void *)((wxEvtHandler
*) ((wxWindow
*) x
));
21814 static void *_p_wxControlWithItemsTo_p_wxEvtHandler(void *x
) {
21815 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxControlWithItems
*) x
));
21817 static void *_p_wxPyAppTo_p_wxEvtHandler(void *x
) {
21818 return (void *)((wxEvtHandler
*) ((wxPyApp
*) x
));
21820 static void *_p_wxPyTimerTo_p_wxEvtHandler(void *x
) {
21821 return (void *)((wxEvtHandler
*) ((wxPyTimer
*) x
));
21823 static void *_p_wxStyledTextCtrlTo_p_wxEvtHandler(void *x
) {
21824 return (void *)((wxEvtHandler
*) (wxWindow
*)(wxControl
*) ((wxStyledTextCtrl
*) x
));
21826 static void *_p_wxValidatorTo_p_wxEvtHandler(void *x
) {
21827 return (void *)((wxEvtHandler
*) ((wxValidator
*) x
));
21829 static void *_p_wxPyValidatorTo_p_wxEvtHandler(void *x
) {
21830 return (void *)((wxEvtHandler
*) (wxValidator
*) ((wxPyValidator
*) x
));
21832 static void *_p_wxMenuBarTo_p_wxEvtHandler(void *x
) {
21833 return (void *)((wxEvtHandler
*) (wxWindow
*) ((wxMenuBar
*) x
));
21835 static void *_p_wxMenuTo_p_wxEvtHandler(void *x
) {
21836 return (void *)((wxEvtHandler
*) ((wxMenu
*) x
));
21838 static void *_p_wxPyProcessTo_p_wxEvtHandler(void *x
) {
21839 return (void *)((wxEvtHandler
*) ((wxPyProcess
*) x
));
21841 static void *_p_wxControlWithItemsTo_p_wxControl(void *x
) {
21842 return (void *)((wxControl
*) ((wxControlWithItems
*) x
));
21844 static void *_p_wxStyledTextCtrlTo_p_wxControl(void *x
) {
21845 return (void *)((wxControl
*) ((wxStyledTextCtrl
*) x
));
21847 static void *_p_wxContextMenuEventTo_p_wxEvent(void *x
) {
21848 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxContextMenuEvent
*) x
));
21850 static void *_p_wxMenuEventTo_p_wxEvent(void *x
) {
21851 return (void *)((wxEvent
*) ((wxMenuEvent
*) x
));
21853 static void *_p_wxCloseEventTo_p_wxEvent(void *x
) {
21854 return (void *)((wxEvent
*) ((wxCloseEvent
*) x
));
21856 static void *_p_wxMouseEventTo_p_wxEvent(void *x
) {
21857 return (void *)((wxEvent
*) ((wxMouseEvent
*) x
));
21859 static void *_p_wxEraseEventTo_p_wxEvent(void *x
) {
21860 return (void *)((wxEvent
*) ((wxEraseEvent
*) x
));
21862 static void *_p_wxSetCursorEventTo_p_wxEvent(void *x
) {
21863 return (void *)((wxEvent
*) ((wxSetCursorEvent
*) x
));
21865 static void *_p_wxTimerEventTo_p_wxEvent(void *x
) {
21866 return (void *)((wxEvent
*) ((wxTimerEvent
*) x
));
21868 static void *_p_wxPowerEventTo_p_wxEvent(void *x
) {
21869 return (void *)((wxEvent
*) ((wxPowerEvent
*) x
));
21871 static void *_p_wxInitDialogEventTo_p_wxEvent(void *x
) {
21872 return (void *)((wxEvent
*) ((wxInitDialogEvent
*) x
));
21874 static void *_p_wxScrollEventTo_p_wxEvent(void *x
) {
21875 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxScrollEvent
*) x
));
21877 static void *_p_wxNotifyEventTo_p_wxEvent(void *x
) {
21878 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxNotifyEvent
*) x
));
21880 static void *_p_wxPyEventTo_p_wxEvent(void *x
) {
21881 return (void *)((wxEvent
*) ((wxPyEvent
*) x
));
21883 static void *_p_wxJoystickEventTo_p_wxEvent(void *x
) {
21884 return (void *)((wxEvent
*) ((wxJoystickEvent
*) x
));
21886 static void *_p_wxIdleEventTo_p_wxEvent(void *x
) {
21887 return (void *)((wxEvent
*) ((wxIdleEvent
*) x
));
21889 static void *_p_wxWindowCreateEventTo_p_wxEvent(void *x
) {
21890 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowCreateEvent
*) x
));
21892 static void *_p_wxQueryNewPaletteEventTo_p_wxEvent(void *x
) {
21893 return (void *)((wxEvent
*) ((wxQueryNewPaletteEvent
*) x
));
21895 static void *_p_wxMaximizeEventTo_p_wxEvent(void *x
) {
21896 return (void *)((wxEvent
*) ((wxMaximizeEvent
*) x
));
21898 static void *_p_wxIconizeEventTo_p_wxEvent(void *x
) {
21899 return (void *)((wxEvent
*) ((wxIconizeEvent
*) x
));
21901 static void *_p_wxActivateEventTo_p_wxEvent(void *x
) {
21902 return (void *)((wxEvent
*) ((wxActivateEvent
*) x
));
21904 static void *_p_wxSizeEventTo_p_wxEvent(void *x
) {
21905 return (void *)((wxEvent
*) ((wxSizeEvent
*) x
));
21907 static void *_p_wxMoveEventTo_p_wxEvent(void *x
) {
21908 return (void *)((wxEvent
*) ((wxMoveEvent
*) x
));
21910 static void *_p_wxDateEventTo_p_wxEvent(void *x
) {
21911 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxDateEvent
*) x
));
21913 static void *_p_wxClipboardTextEventTo_p_wxEvent(void *x
) {
21914 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxClipboardTextEvent
*) x
));
21916 static void *_p_wxPaintEventTo_p_wxEvent(void *x
) {
21917 return (void *)((wxEvent
*) ((wxPaintEvent
*) x
));
21919 static void *_p_wxNcPaintEventTo_p_wxEvent(void *x
) {
21920 return (void *)((wxEvent
*) ((wxNcPaintEvent
*) x
));
21922 static void *_p_wxStyledTextEventTo_p_wxEvent(void *x
) {
21923 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxStyledTextEvent
*) x
));
21925 static void *_p_wxUpdateUIEventTo_p_wxEvent(void *x
) {
21926 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxUpdateUIEvent
*) x
));
21928 static void *_p_wxPaletteChangedEventTo_p_wxEvent(void *x
) {
21929 return (void *)((wxEvent
*) ((wxPaletteChangedEvent
*) x
));
21931 static void *_p_wxDisplayChangedEventTo_p_wxEvent(void *x
) {
21932 return (void *)((wxEvent
*) ((wxDisplayChangedEvent
*) x
));
21934 static void *_p_wxMouseCaptureChangedEventTo_p_wxEvent(void *x
) {
21935 return (void *)((wxEvent
*) ((wxMouseCaptureChangedEvent
*) x
));
21937 static void *_p_wxSysColourChangedEventTo_p_wxEvent(void *x
) {
21938 return (void *)((wxEvent
*) ((wxSysColourChangedEvent
*) x
));
21940 static void *_p_wxDropFilesEventTo_p_wxEvent(void *x
) {
21941 return (void *)((wxEvent
*) ((wxDropFilesEvent
*) x
));
21943 static void *_p_wxFocusEventTo_p_wxEvent(void *x
) {
21944 return (void *)((wxEvent
*) ((wxFocusEvent
*) x
));
21946 static void *_p_wxChildFocusEventTo_p_wxEvent(void *x
) {
21947 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxChildFocusEvent
*) x
));
21949 static void *_p_wxProcessEventTo_p_wxEvent(void *x
) {
21950 return (void *)((wxEvent
*) ((wxProcessEvent
*) x
));
21952 static void *_p_wxShowEventTo_p_wxEvent(void *x
) {
21953 return (void *)((wxEvent
*) ((wxShowEvent
*) x
));
21955 static void *_p_wxCommandEventTo_p_wxEvent(void *x
) {
21956 return (void *)((wxEvent
*) ((wxCommandEvent
*) x
));
21958 static void *_p_wxPyCommandEventTo_p_wxEvent(void *x
) {
21959 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxPyCommandEvent
*) x
));
21961 static void *_p_wxWindowDestroyEventTo_p_wxEvent(void *x
) {
21962 return (void *)((wxEvent
*) (wxCommandEvent
*) ((wxWindowDestroyEvent
*) x
));
21964 static void *_p_wxNavigationKeyEventTo_p_wxEvent(void *x
) {
21965 return (void *)((wxEvent
*) ((wxNavigationKeyEvent
*) x
));
21967 static void *_p_wxKeyEventTo_p_wxEvent(void *x
) {
21968 return (void *)((wxEvent
*) ((wxKeyEvent
*) x
));
21970 static void *_p_wxScrollWinEventTo_p_wxEvent(void *x
) {
21971 return (void *)((wxEvent
*) ((wxScrollWinEvent
*) x
));
21973 static swig_type_info _swigt__p_char
= {"_p_char", "char *", 0, 0, (void*)0, 0};
21974 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};
21975 static swig_type_info _swigt__p_int
= {"_p_int", "int *", 0, 0, (void*)0, 0};
21976 static swig_type_info _swigt__p_unsigned_char
= {"_p_unsigned_char", "unsigned char *|byte *", 0, 0, (void*)0, 0};
21977 static swig_type_info _swigt__p_unsigned_int
= {"_p_unsigned_int", "unsigned int *|time_t *", 0, 0, (void*)0, 0};
21978 static swig_type_info _swigt__p_unsigned_long
= {"_p_unsigned_long", "unsigned long *|wxLogLevel *", 0, 0, (void*)0, 0};
21979 static swig_type_info _swigt__p_void
= {"_p_void", "void *", 0, 0, (void*)0, 0};
21980 static swig_type_info _swigt__p_wxBitmap
= {"_p_wxBitmap", "wxBitmap *", 0, 0, (void*)0, 0};
21981 static swig_type_info _swigt__p_wxColour
= {"_p_wxColour", "wxColour *", 0, 0, (void*)0, 0};
21982 static swig_type_info _swigt__p_wxCommandEvent
= {"_p_wxCommandEvent", "wxCommandEvent *", 0, 0, (void*)0, 0};
21983 static swig_type_info _swigt__p_wxChildFocusEvent
= {"_p_wxChildFocusEvent", 0, 0, 0, 0, 0};
21984 static swig_type_info _swigt__p_wxScrollEvent
= {"_p_wxScrollEvent", 0, 0, 0, 0, 0};
21985 static swig_type_info _swigt__p_wxWindowCreateEvent
= {"_p_wxWindowCreateEvent", 0, 0, 0, 0, 0};
21986 static swig_type_info _swigt__p_wxDateEvent
= {"_p_wxDateEvent", 0, 0, 0, 0, 0};
21987 static swig_type_info _swigt__p_wxUpdateUIEvent
= {"_p_wxUpdateUIEvent", 0, 0, 0, 0, 0};
21988 static swig_type_info _swigt__p_wxClipboardTextEvent
= {"_p_wxClipboardTextEvent", 0, 0, 0, 0, 0};
21989 static swig_type_info _swigt__p_wxWindowDestroyEvent
= {"_p_wxWindowDestroyEvent", 0, 0, 0, 0, 0};
21990 static swig_type_info _swigt__p_wxContextMenuEvent
= {"_p_wxContextMenuEvent", 0, 0, 0, 0, 0};
21991 static swig_type_info _swigt__p_wxNotifyEvent
= {"_p_wxNotifyEvent", 0, 0, 0, 0, 0};
21992 static swig_type_info _swigt__p_wxPyCommandEvent
= {"_p_wxPyCommandEvent", 0, 0, 0, 0, 0};
21993 static swig_type_info _swigt__p_wxControl
= {"_p_wxControl", "wxControl *", 0, 0, (void*)0, 0};
21994 static swig_type_info _swigt__p_wxControlWithItems
= {"_p_wxControlWithItems", 0, 0, 0, 0, 0};
21995 static swig_type_info _swigt__p_wxDC
= {"_p_wxDC", "wxDC *", 0, 0, (void*)0, 0};
21996 static swig_type_info _swigt__p_wxDuplexMode
= {"_p_wxDuplexMode", "enum wxDuplexMode *|wxDuplexMode *", 0, 0, (void*)0, 0};
21997 static swig_type_info _swigt__p_wxEvent
= {"_p_wxEvent", "wxEvent *", 0, 0, (void*)0, 0};
21998 static swig_type_info _swigt__p_wxMenuEvent
= {"_p_wxMenuEvent", 0, 0, 0, 0, 0};
21999 static swig_type_info _swigt__p_wxCloseEvent
= {"_p_wxCloseEvent", 0, 0, 0, 0, 0};
22000 static swig_type_info _swigt__p_wxMouseEvent
= {"_p_wxMouseEvent", 0, 0, 0, 0, 0};
22001 static swig_type_info _swigt__p_wxEraseEvent
= {"_p_wxEraseEvent", 0, 0, 0, 0, 0};
22002 static swig_type_info _swigt__p_wxSetCursorEvent
= {"_p_wxSetCursorEvent", 0, 0, 0, 0, 0};
22003 static swig_type_info _swigt__p_wxTimerEvent
= {"_p_wxTimerEvent", 0, 0, 0, 0, 0};
22004 static swig_type_info _swigt__p_wxPowerEvent
= {"_p_wxPowerEvent", 0, 0, 0, 0, 0};
22005 static swig_type_info _swigt__p_wxInitDialogEvent
= {"_p_wxInitDialogEvent", 0, 0, 0, 0, 0};
22006 static swig_type_info _swigt__p_wxPyEvent
= {"_p_wxPyEvent", 0, 0, 0, 0, 0};
22007 static swig_type_info _swigt__p_wxJoystickEvent
= {"_p_wxJoystickEvent", 0, 0, 0, 0, 0};
22008 static swig_type_info _swigt__p_wxIdleEvent
= {"_p_wxIdleEvent", 0, 0, 0, 0, 0};
22009 static swig_type_info _swigt__p_wxQueryNewPaletteEvent
= {"_p_wxQueryNewPaletteEvent", 0, 0, 0, 0, 0};
22010 static swig_type_info _swigt__p_wxMaximizeEvent
= {"_p_wxMaximizeEvent", 0, 0, 0, 0, 0};
22011 static swig_type_info _swigt__p_wxIconizeEvent
= {"_p_wxIconizeEvent", 0, 0, 0, 0, 0};
22012 static swig_type_info _swigt__p_wxActivateEvent
= {"_p_wxActivateEvent", 0, 0, 0, 0, 0};
22013 static swig_type_info _swigt__p_wxSizeEvent
= {"_p_wxSizeEvent", 0, 0, 0, 0, 0};
22014 static swig_type_info _swigt__p_wxMoveEvent
= {"_p_wxMoveEvent", 0, 0, 0, 0, 0};
22015 static swig_type_info _swigt__p_wxPaintEvent
= {"_p_wxPaintEvent", 0, 0, 0, 0, 0};
22016 static swig_type_info _swigt__p_wxNcPaintEvent
= {"_p_wxNcPaintEvent", 0, 0, 0, 0, 0};
22017 static swig_type_info _swigt__p_wxPaletteChangedEvent
= {"_p_wxPaletteChangedEvent", 0, 0, 0, 0, 0};
22018 static swig_type_info _swigt__p_wxDisplayChangedEvent
= {"_p_wxDisplayChangedEvent", 0, 0, 0, 0, 0};
22019 static swig_type_info _swigt__p_wxMouseCaptureChangedEvent
= {"_p_wxMouseCaptureChangedEvent", 0, 0, 0, 0, 0};
22020 static swig_type_info _swigt__p_wxSysColourChangedEvent
= {"_p_wxSysColourChangedEvent", 0, 0, 0, 0, 0};
22021 static swig_type_info _swigt__p_wxDropFilesEvent
= {"_p_wxDropFilesEvent", 0, 0, 0, 0, 0};
22022 static swig_type_info _swigt__p_wxFocusEvent
= {"_p_wxFocusEvent", 0, 0, 0, 0, 0};
22023 static swig_type_info _swigt__p_wxProcessEvent
= {"_p_wxProcessEvent", 0, 0, 0, 0, 0};
22024 static swig_type_info _swigt__p_wxShowEvent
= {"_p_wxShowEvent", 0, 0, 0, 0, 0};
22025 static swig_type_info _swigt__p_wxNavigationKeyEvent
= {"_p_wxNavigationKeyEvent", 0, 0, 0, 0, 0};
22026 static swig_type_info _swigt__p_wxKeyEvent
= {"_p_wxKeyEvent", 0, 0, 0, 0, 0};
22027 static swig_type_info _swigt__p_wxScrollWinEvent
= {"_p_wxScrollWinEvent", 0, 0, 0, 0, 0};
22028 static swig_type_info _swigt__p_wxEvtHandler
= {"_p_wxEvtHandler", "wxEvtHandler *", 0, 0, (void*)0, 0};
22029 static swig_type_info _swigt__p_wxPyApp
= {"_p_wxPyApp", 0, 0, 0, 0, 0};
22030 static swig_type_info _swigt__p_wxPyTimer
= {"_p_wxPyTimer", 0, 0, 0, 0, 0};
22031 static swig_type_info _swigt__p_wxMenuBar
= {"_p_wxMenuBar", 0, 0, 0, 0, 0};
22032 static swig_type_info _swigt__p_wxValidator
= {"_p_wxValidator", 0, 0, 0, 0, 0};
22033 static swig_type_info _swigt__p_wxPyValidator
= {"_p_wxPyValidator", 0, 0, 0, 0, 0};
22034 static swig_type_info _swigt__p_wxMenu
= {"_p_wxMenu", 0, 0, 0, 0, 0};
22035 static swig_type_info _swigt__p_wxPyProcess
= {"_p_wxPyProcess", 0, 0, 0, 0, 0};
22036 static swig_type_info _swigt__p_wxFont
= {"_p_wxFont", "wxFont *", 0, 0, (void*)0, 0};
22037 static swig_type_info _swigt__p_wxMemoryBuffer
= {"_p_wxMemoryBuffer", "wxMemoryBuffer *", 0, 0, (void*)0, 0};
22038 static swig_type_info _swigt__p_wxObject
= {"_p_wxObject", "wxObject *", 0, 0, (void*)0, 0};
22039 static swig_type_info _swigt__p_wxLayoutConstraints
= {"_p_wxLayoutConstraints", 0, 0, 0, 0, 0};
22040 static swig_type_info _swigt__p_wxGBSizerItem
= {"_p_wxGBSizerItem", 0, 0, 0, 0, 0};
22041 static swig_type_info _swigt__p_wxSizerItem
= {"_p_wxSizerItem", 0, 0, 0, 0, 0};
22042 static swig_type_info _swigt__p_wxIndividualLayoutConstraint
= {"_p_wxIndividualLayoutConstraint", 0, 0, 0, 0, 0};
22043 static swig_type_info _swigt__p_wxStaticBoxSizer
= {"_p_wxStaticBoxSizer", 0, 0, 0, 0, 0};
22044 static swig_type_info _swigt__p_wxBoxSizer
= {"_p_wxBoxSizer", 0, 0, 0, 0, 0};
22045 static swig_type_info _swigt__p_wxSizer
= {"_p_wxSizer", 0, 0, 0, 0, 0};
22046 static swig_type_info _swigt__p_wxGridBagSizer
= {"_p_wxGridBagSizer", 0, 0, 0, 0, 0};
22047 static swig_type_info _swigt__p_wxFileHistory
= {"_p_wxFileHistory", 0, 0, 0, 0, 0};
22048 static swig_type_info _swigt__p_wxGridSizer
= {"_p_wxGridSizer", 0, 0, 0, 0, 0};
22049 static swig_type_info _swigt__p_wxFlexGridSizer
= {"_p_wxFlexGridSizer", 0, 0, 0, 0, 0};
22050 static swig_type_info _swigt__p_wxFSFile
= {"_p_wxFSFile", 0, 0, 0, 0, 0};
22051 static swig_type_info _swigt__p_wxClipboard
= {"_p_wxClipboard", 0, 0, 0, 0, 0};
22052 static swig_type_info _swigt__p_wxPySizer
= {"_p_wxPySizer", 0, 0, 0, 0, 0};
22053 static swig_type_info _swigt__p_wxToolTip
= {"_p_wxToolTip", 0, 0, 0, 0, 0};
22054 static swig_type_info _swigt__p_wxMenuItem
= {"_p_wxMenuItem", 0, 0, 0, 0, 0};
22055 static swig_type_info _swigt__p_wxXPMHandler
= {"_p_wxXPMHandler", 0, 0, 0, 0, 0};
22056 static swig_type_info _swigt__p_wxTIFFHandler
= {"_p_wxTIFFHandler", 0, 0, 0, 0, 0};
22057 static swig_type_info _swigt__p_wxImageHandler
= {"_p_wxImageHandler", 0, 0, 0, 0, 0};
22058 static swig_type_info _swigt__p_wxPyImageHandler
= {"_p_wxPyImageHandler", 0, 0, 0, 0, 0};
22059 static swig_type_info _swigt__p_wxBMPHandler
= {"_p_wxBMPHandler", 0, 0, 0, 0, 0};
22060 static swig_type_info _swigt__p_wxICOHandler
= {"_p_wxICOHandler", 0, 0, 0, 0, 0};
22061 static swig_type_info _swigt__p_wxCURHandler
= {"_p_wxCURHandler", 0, 0, 0, 0, 0};
22062 static swig_type_info _swigt__p_wxANIHandler
= {"_p_wxANIHandler", 0, 0, 0, 0, 0};
22063 static swig_type_info _swigt__p_wxPNGHandler
= {"_p_wxPNGHandler", 0, 0, 0, 0, 0};
22064 static swig_type_info _swigt__p_wxGIFHandler
= {"_p_wxGIFHandler", 0, 0, 0, 0, 0};
22065 static swig_type_info _swigt__p_wxPCXHandler
= {"_p_wxPCXHandler", 0, 0, 0, 0, 0};
22066 static swig_type_info _swigt__p_wxJPEGHandler
= {"_p_wxJPEGHandler", 0, 0, 0, 0, 0};
22067 static swig_type_info _swigt__p_wxPNMHandler
= {"_p_wxPNMHandler", 0, 0, 0, 0, 0};
22068 static swig_type_info _swigt__p_wxStdDialogButtonSizer
= {"_p_wxStdDialogButtonSizer", 0, 0, 0, 0, 0};
22069 static swig_type_info _swigt__p_wxAcceleratorTable
= {"_p_wxAcceleratorTable", 0, 0, 0, 0, 0};
22070 static swig_type_info _swigt__p_wxImage
= {"_p_wxImage", 0, 0, 0, 0, 0};
22071 static swig_type_info _swigt__p_wxSystemOptions
= {"_p_wxSystemOptions", 0, 0, 0, 0, 0};
22072 static swig_type_info _swigt__p_wxFileSystem
= {"_p_wxFileSystem", 0, 0, 0, 0, 0};
22073 static swig_type_info _swigt__p_wxBusyInfo
= {"_p_wxBusyInfo", 0, 0, 0, 0, 0};
22074 static swig_type_info _swigt__p_wxPaperSize
= {"_p_wxPaperSize", "enum wxPaperSize *|wxPaperSize *", 0, 0, (void*)0, 0};
22075 static swig_type_info _swigt__p_wxPoint
= {"_p_wxPoint", "wxPoint *", 0, 0, (void*)0, 0};
22076 static swig_type_info _swigt__p_wxRect
= {"_p_wxRect", "wxRect *", 0, 0, (void*)0, 0};
22077 static swig_type_info _swigt__p_wxScrollBar
= {"_p_wxScrollBar", "wxScrollBar *", 0, 0, (void*)0, 0};
22078 static swig_type_info _swigt__p_wxStyledTextCtrl
= {"_p_wxStyledTextCtrl", "wxStyledTextCtrl *", 0, 0, (void*)0, 0};
22079 static swig_type_info _swigt__p_wxStyledTextEvent
= {"_p_wxStyledTextEvent", "wxStyledTextEvent *", 0, 0, (void*)0, 0};
22080 static swig_type_info _swigt__p_wxWindow
= {"_p_wxWindow", "wxWindow *", 0, 0, (void*)0, 0};
22082 static swig_type_info
*swig_type_initial
[] = {
22084 &_swigt__p_form_ops_t
,
22086 &_swigt__p_unsigned_char
,
22087 &_swigt__p_unsigned_int
,
22088 &_swigt__p_unsigned_long
,
22090 &_swigt__p_wxANIHandler
,
22091 &_swigt__p_wxAcceleratorTable
,
22092 &_swigt__p_wxActivateEvent
,
22093 &_swigt__p_wxBMPHandler
,
22094 &_swigt__p_wxBitmap
,
22095 &_swigt__p_wxBoxSizer
,
22096 &_swigt__p_wxBusyInfo
,
22097 &_swigt__p_wxCURHandler
,
22098 &_swigt__p_wxChildFocusEvent
,
22099 &_swigt__p_wxClipboard
,
22100 &_swigt__p_wxClipboardTextEvent
,
22101 &_swigt__p_wxCloseEvent
,
22102 &_swigt__p_wxColour
,
22103 &_swigt__p_wxCommandEvent
,
22104 &_swigt__p_wxContextMenuEvent
,
22105 &_swigt__p_wxControl
,
22106 &_swigt__p_wxControlWithItems
,
22108 &_swigt__p_wxDateEvent
,
22109 &_swigt__p_wxDisplayChangedEvent
,
22110 &_swigt__p_wxDropFilesEvent
,
22111 &_swigt__p_wxDuplexMode
,
22112 &_swigt__p_wxEraseEvent
,
22113 &_swigt__p_wxEvent
,
22114 &_swigt__p_wxEvtHandler
,
22115 &_swigt__p_wxFSFile
,
22116 &_swigt__p_wxFileHistory
,
22117 &_swigt__p_wxFileSystem
,
22118 &_swigt__p_wxFlexGridSizer
,
22119 &_swigt__p_wxFocusEvent
,
22121 &_swigt__p_wxGBSizerItem
,
22122 &_swigt__p_wxGIFHandler
,
22123 &_swigt__p_wxGridBagSizer
,
22124 &_swigt__p_wxGridSizer
,
22125 &_swigt__p_wxICOHandler
,
22126 &_swigt__p_wxIconizeEvent
,
22127 &_swigt__p_wxIdleEvent
,
22128 &_swigt__p_wxImage
,
22129 &_swigt__p_wxImageHandler
,
22130 &_swigt__p_wxIndividualLayoutConstraint
,
22131 &_swigt__p_wxInitDialogEvent
,
22132 &_swigt__p_wxJPEGHandler
,
22133 &_swigt__p_wxJoystickEvent
,
22134 &_swigt__p_wxKeyEvent
,
22135 &_swigt__p_wxLayoutConstraints
,
22136 &_swigt__p_wxMaximizeEvent
,
22137 &_swigt__p_wxMemoryBuffer
,
22139 &_swigt__p_wxMenuBar
,
22140 &_swigt__p_wxMenuEvent
,
22141 &_swigt__p_wxMenuItem
,
22142 &_swigt__p_wxMouseCaptureChangedEvent
,
22143 &_swigt__p_wxMouseEvent
,
22144 &_swigt__p_wxMoveEvent
,
22145 &_swigt__p_wxNavigationKeyEvent
,
22146 &_swigt__p_wxNcPaintEvent
,
22147 &_swigt__p_wxNotifyEvent
,
22148 &_swigt__p_wxObject
,
22149 &_swigt__p_wxPCXHandler
,
22150 &_swigt__p_wxPNGHandler
,
22151 &_swigt__p_wxPNMHandler
,
22152 &_swigt__p_wxPaintEvent
,
22153 &_swigt__p_wxPaletteChangedEvent
,
22154 &_swigt__p_wxPaperSize
,
22155 &_swigt__p_wxPoint
,
22156 &_swigt__p_wxPowerEvent
,
22157 &_swigt__p_wxProcessEvent
,
22158 &_swigt__p_wxPyApp
,
22159 &_swigt__p_wxPyCommandEvent
,
22160 &_swigt__p_wxPyEvent
,
22161 &_swigt__p_wxPyImageHandler
,
22162 &_swigt__p_wxPyProcess
,
22163 &_swigt__p_wxPySizer
,
22164 &_swigt__p_wxPyTimer
,
22165 &_swigt__p_wxPyValidator
,
22166 &_swigt__p_wxQueryNewPaletteEvent
,
22168 &_swigt__p_wxScrollBar
,
22169 &_swigt__p_wxScrollEvent
,
22170 &_swigt__p_wxScrollWinEvent
,
22171 &_swigt__p_wxSetCursorEvent
,
22172 &_swigt__p_wxShowEvent
,
22173 &_swigt__p_wxSizeEvent
,
22174 &_swigt__p_wxSizer
,
22175 &_swigt__p_wxSizerItem
,
22176 &_swigt__p_wxStaticBoxSizer
,
22177 &_swigt__p_wxStdDialogButtonSizer
,
22178 &_swigt__p_wxStyledTextCtrl
,
22179 &_swigt__p_wxStyledTextEvent
,
22180 &_swigt__p_wxSysColourChangedEvent
,
22181 &_swigt__p_wxSystemOptions
,
22182 &_swigt__p_wxTIFFHandler
,
22183 &_swigt__p_wxTimerEvent
,
22184 &_swigt__p_wxToolTip
,
22185 &_swigt__p_wxUpdateUIEvent
,
22186 &_swigt__p_wxValidator
,
22187 &_swigt__p_wxWindow
,
22188 &_swigt__p_wxWindowCreateEvent
,
22189 &_swigt__p_wxWindowDestroyEvent
,
22190 &_swigt__p_wxXPMHandler
,
22193 static swig_cast_info _swigc__p_char
[] = { {&_swigt__p_char
, 0, 0, 0},{0, 0, 0, 0}};
22194 static swig_cast_info _swigc__p_form_ops_t
[] = { {&_swigt__p_form_ops_t
, 0, 0, 0},{0, 0, 0, 0}};
22195 static swig_cast_info _swigc__p_int
[] = { {&_swigt__p_int
, 0, 0, 0},{0, 0, 0, 0}};
22196 static swig_cast_info _swigc__p_unsigned_char
[] = { {&_swigt__p_unsigned_char
, 0, 0, 0},{0, 0, 0, 0}};
22197 static swig_cast_info _swigc__p_unsigned_int
[] = { {&_swigt__p_unsigned_int
, 0, 0, 0},{0, 0, 0, 0}};
22198 static swig_cast_info _swigc__p_unsigned_long
[] = { {&_swigt__p_unsigned_long
, 0, 0, 0},{0, 0, 0, 0}};
22199 static swig_cast_info _swigc__p_void
[] = { {&_swigt__p_void
, 0, 0, 0},{0, 0, 0, 0}};
22200 static swig_cast_info _swigc__p_wxBitmap
[] = { {&_swigt__p_wxBitmap
, 0, 0, 0},{0, 0, 0, 0}};
22201 static swig_cast_info _swigc__p_wxColour
[] = { {&_swigt__p_wxColour
, 0, 0, 0},{0, 0, 0, 0}};
22202 static swig_cast_info _swigc__p_wxChildFocusEvent
[] = {{&_swigt__p_wxChildFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22203 static swig_cast_info _swigc__p_wxScrollEvent
[] = {{&_swigt__p_wxScrollEvent
, 0, 0, 0},{0, 0, 0, 0}};
22204 static swig_cast_info _swigc__p_wxWindowCreateEvent
[] = {{&_swigt__p_wxWindowCreateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22205 static swig_cast_info _swigc__p_wxDateEvent
[] = {{&_swigt__p_wxDateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22206 static swig_cast_info _swigc__p_wxUpdateUIEvent
[] = {{&_swigt__p_wxUpdateUIEvent
, 0, 0, 0},{0, 0, 0, 0}};
22207 static swig_cast_info _swigc__p_wxClipboardTextEvent
[] = {{&_swigt__p_wxClipboardTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
22208 static swig_cast_info _swigc__p_wxWindowDestroyEvent
[] = {{&_swigt__p_wxWindowDestroyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22209 static swig_cast_info _swigc__p_wxContextMenuEvent
[] = {{&_swigt__p_wxContextMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22210 static swig_cast_info _swigc__p_wxNotifyEvent
[] = {{&_swigt__p_wxNotifyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22211 static swig_cast_info _swigc__p_wxPyCommandEvent
[] = {{&_swigt__p_wxPyCommandEvent
, 0, 0, 0},{0, 0, 0, 0}};
22212 static swig_cast_info _swigc__p_wxCommandEvent
[] = { {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowCreateEvent
, _p_wxWindowCreateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxDateEvent
, _p_wxDateEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxUpdateUIEvent
, _p_wxUpdateUIEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxStyledTextEvent
, _p_wxStyledTextEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxCommandEvent
, 0, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxCommandEvent
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxCommandEvent
, 0, 0},{0, 0, 0, 0}};
22213 static swig_cast_info _swigc__p_wxControlWithItems
[] = {{&_swigt__p_wxControlWithItems
, 0, 0, 0},{0, 0, 0, 0}};
22214 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}};
22215 static swig_cast_info _swigc__p_wxDC
[] = { {&_swigt__p_wxDC
, 0, 0, 0},{0, 0, 0, 0}};
22216 static swig_cast_info _swigc__p_wxDuplexMode
[] = { {&_swigt__p_wxDuplexMode
, 0, 0, 0},{0, 0, 0, 0}};
22217 static swig_cast_info _swigc__p_wxMenuEvent
[] = {{&_swigt__p_wxMenuEvent
, 0, 0, 0},{0, 0, 0, 0}};
22218 static swig_cast_info _swigc__p_wxCloseEvent
[] = {{&_swigt__p_wxCloseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22219 static swig_cast_info _swigc__p_wxMouseEvent
[] = {{&_swigt__p_wxMouseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22220 static swig_cast_info _swigc__p_wxEraseEvent
[] = {{&_swigt__p_wxEraseEvent
, 0, 0, 0},{0, 0, 0, 0}};
22221 static swig_cast_info _swigc__p_wxSetCursorEvent
[] = {{&_swigt__p_wxSetCursorEvent
, 0, 0, 0},{0, 0, 0, 0}};
22222 static swig_cast_info _swigc__p_wxTimerEvent
[] = {{&_swigt__p_wxTimerEvent
, 0, 0, 0},{0, 0, 0, 0}};
22223 static swig_cast_info _swigc__p_wxPowerEvent
[] = {{&_swigt__p_wxPowerEvent
, 0, 0, 0},{0, 0, 0, 0}};
22224 static swig_cast_info _swigc__p_wxInitDialogEvent
[] = {{&_swigt__p_wxInitDialogEvent
, 0, 0, 0},{0, 0, 0, 0}};
22225 static swig_cast_info _swigc__p_wxPyEvent
[] = {{&_swigt__p_wxPyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22226 static swig_cast_info _swigc__p_wxJoystickEvent
[] = {{&_swigt__p_wxJoystickEvent
, 0, 0, 0},{0, 0, 0, 0}};
22227 static swig_cast_info _swigc__p_wxIdleEvent
[] = {{&_swigt__p_wxIdleEvent
, 0, 0, 0},{0, 0, 0, 0}};
22228 static swig_cast_info _swigc__p_wxQueryNewPaletteEvent
[] = {{&_swigt__p_wxQueryNewPaletteEvent
, 0, 0, 0},{0, 0, 0, 0}};
22229 static swig_cast_info _swigc__p_wxMaximizeEvent
[] = {{&_swigt__p_wxMaximizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22230 static swig_cast_info _swigc__p_wxIconizeEvent
[] = {{&_swigt__p_wxIconizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22231 static swig_cast_info _swigc__p_wxActivateEvent
[] = {{&_swigt__p_wxActivateEvent
, 0, 0, 0},{0, 0, 0, 0}};
22232 static swig_cast_info _swigc__p_wxSizeEvent
[] = {{&_swigt__p_wxSizeEvent
, 0, 0, 0},{0, 0, 0, 0}};
22233 static swig_cast_info _swigc__p_wxMoveEvent
[] = {{&_swigt__p_wxMoveEvent
, 0, 0, 0},{0, 0, 0, 0}};
22234 static swig_cast_info _swigc__p_wxPaintEvent
[] = {{&_swigt__p_wxPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22235 static swig_cast_info _swigc__p_wxNcPaintEvent
[] = {{&_swigt__p_wxNcPaintEvent
, 0, 0, 0},{0, 0, 0, 0}};
22236 static swig_cast_info _swigc__p_wxPaletteChangedEvent
[] = {{&_swigt__p_wxPaletteChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22237 static swig_cast_info _swigc__p_wxDisplayChangedEvent
[] = {{&_swigt__p_wxDisplayChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22238 static swig_cast_info _swigc__p_wxMouseCaptureChangedEvent
[] = {{&_swigt__p_wxMouseCaptureChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22239 static swig_cast_info _swigc__p_wxSysColourChangedEvent
[] = {{&_swigt__p_wxSysColourChangedEvent
, 0, 0, 0},{0, 0, 0, 0}};
22240 static swig_cast_info _swigc__p_wxDropFilesEvent
[] = {{&_swigt__p_wxDropFilesEvent
, 0, 0, 0},{0, 0, 0, 0}};
22241 static swig_cast_info _swigc__p_wxFocusEvent
[] = {{&_swigt__p_wxFocusEvent
, 0, 0, 0},{0, 0, 0, 0}};
22242 static swig_cast_info _swigc__p_wxProcessEvent
[] = {{&_swigt__p_wxProcessEvent
, 0, 0, 0},{0, 0, 0, 0}};
22243 static swig_cast_info _swigc__p_wxShowEvent
[] = {{&_swigt__p_wxShowEvent
, 0, 0, 0},{0, 0, 0, 0}};
22244 static swig_cast_info _swigc__p_wxNavigationKeyEvent
[] = {{&_swigt__p_wxNavigationKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22245 static swig_cast_info _swigc__p_wxKeyEvent
[] = {{&_swigt__p_wxKeyEvent
, 0, 0, 0},{0, 0, 0, 0}};
22246 static swig_cast_info _swigc__p_wxScrollWinEvent
[] = {{&_swigt__p_wxScrollWinEvent
, 0, 0, 0},{0, 0, 0, 0}};
22247 static swig_cast_info _swigc__p_wxEvent
[] = { {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxSetCursorEvent
, _p_wxSetCursorEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxTimerEvent
, _p_wxTimerEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPowerEvent
, _p_wxPowerEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxInitDialogEvent
, _p_wxInitDialogEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxScrollEvent
, _p_wxScrollEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxEvent
, 0, 0}, {&_swigt__p_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_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_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}};
22248 static swig_cast_info _swigc__p_wxPyApp
[] = {{&_swigt__p_wxPyApp
, 0, 0, 0},{0, 0, 0, 0}};
22249 static swig_cast_info _swigc__p_wxPyTimer
[] = {{&_swigt__p_wxPyTimer
, 0, 0, 0},{0, 0, 0, 0}};
22250 static swig_cast_info _swigc__p_wxMenuBar
[] = {{&_swigt__p_wxMenuBar
, 0, 0, 0},{0, 0, 0, 0}};
22251 static swig_cast_info _swigc__p_wxValidator
[] = {{&_swigt__p_wxValidator
, 0, 0, 0},{0, 0, 0, 0}};
22252 static swig_cast_info _swigc__p_wxPyValidator
[] = {{&_swigt__p_wxPyValidator
, 0, 0, 0},{0, 0, 0, 0}};
22253 static swig_cast_info _swigc__p_wxMenu
[] = {{&_swigt__p_wxMenu
, 0, 0, 0},{0, 0, 0, 0}};
22254 static swig_cast_info _swigc__p_wxPyProcess
[] = {{&_swigt__p_wxPyProcess
, 0, 0, 0},{0, 0, 0, 0}};
22255 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}};
22256 static swig_cast_info _swigc__p_wxFont
[] = { {&_swigt__p_wxFont
, 0, 0, 0},{0, 0, 0, 0}};
22257 static swig_cast_info _swigc__p_wxMemoryBuffer
[] = { {&_swigt__p_wxMemoryBuffer
, 0, 0, 0},{0, 0, 0, 0}};
22258 static swig_cast_info _swigc__p_wxLayoutConstraints
[] = {{&_swigt__p_wxLayoutConstraints
, 0, 0, 0},{0, 0, 0, 0}};
22259 static swig_cast_info _swigc__p_wxGBSizerItem
[] = {{&_swigt__p_wxGBSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22260 static swig_cast_info _swigc__p_wxSizerItem
[] = {{&_swigt__p_wxSizerItem
, 0, 0, 0},{0, 0, 0, 0}};
22261 static swig_cast_info _swigc__p_wxIndividualLayoutConstraint
[] = {{&_swigt__p_wxIndividualLayoutConstraint
, 0, 0, 0},{0, 0, 0, 0}};
22262 static swig_cast_info _swigc__p_wxStaticBoxSizer
[] = {{&_swigt__p_wxStaticBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22263 static swig_cast_info _swigc__p_wxBoxSizer
[] = {{&_swigt__p_wxBoxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22264 static swig_cast_info _swigc__p_wxSizer
[] = {{&_swigt__p_wxSizer
, 0, 0, 0},{0, 0, 0, 0}};
22265 static swig_cast_info _swigc__p_wxGridBagSizer
[] = {{&_swigt__p_wxGridBagSizer
, 0, 0, 0},{0, 0, 0, 0}};
22266 static swig_cast_info _swigc__p_wxFileHistory
[] = {{&_swigt__p_wxFileHistory
, 0, 0, 0},{0, 0, 0, 0}};
22267 static swig_cast_info _swigc__p_wxGridSizer
[] = {{&_swigt__p_wxGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22268 static swig_cast_info _swigc__p_wxFlexGridSizer
[] = {{&_swigt__p_wxFlexGridSizer
, 0, 0, 0},{0, 0, 0, 0}};
22269 static swig_cast_info _swigc__p_wxFSFile
[] = {{&_swigt__p_wxFSFile
, 0, 0, 0},{0, 0, 0, 0}};
22270 static swig_cast_info _swigc__p_wxClipboard
[] = {{&_swigt__p_wxClipboard
, 0, 0, 0},{0, 0, 0, 0}};
22271 static swig_cast_info _swigc__p_wxPySizer
[] = {{&_swigt__p_wxPySizer
, 0, 0, 0},{0, 0, 0, 0}};
22272 static swig_cast_info _swigc__p_wxToolTip
[] = {{&_swigt__p_wxToolTip
, 0, 0, 0},{0, 0, 0, 0}};
22273 static swig_cast_info _swigc__p_wxMenuItem
[] = {{&_swigt__p_wxMenuItem
, 0, 0, 0},{0, 0, 0, 0}};
22274 static swig_cast_info _swigc__p_wxXPMHandler
[] = {{&_swigt__p_wxXPMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22275 static swig_cast_info _swigc__p_wxTIFFHandler
[] = {{&_swigt__p_wxTIFFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22276 static swig_cast_info _swigc__p_wxImageHandler
[] = {{&_swigt__p_wxImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22277 static swig_cast_info _swigc__p_wxPyImageHandler
[] = {{&_swigt__p_wxPyImageHandler
, 0, 0, 0},{0, 0, 0, 0}};
22278 static swig_cast_info _swigc__p_wxBMPHandler
[] = {{&_swigt__p_wxBMPHandler
, 0, 0, 0},{0, 0, 0, 0}};
22279 static swig_cast_info _swigc__p_wxICOHandler
[] = {{&_swigt__p_wxICOHandler
, 0, 0, 0},{0, 0, 0, 0}};
22280 static swig_cast_info _swigc__p_wxCURHandler
[] = {{&_swigt__p_wxCURHandler
, 0, 0, 0},{0, 0, 0, 0}};
22281 static swig_cast_info _swigc__p_wxANIHandler
[] = {{&_swigt__p_wxANIHandler
, 0, 0, 0},{0, 0, 0, 0}};
22282 static swig_cast_info _swigc__p_wxPNGHandler
[] = {{&_swigt__p_wxPNGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22283 static swig_cast_info _swigc__p_wxGIFHandler
[] = {{&_swigt__p_wxGIFHandler
, 0, 0, 0},{0, 0, 0, 0}};
22284 static swig_cast_info _swigc__p_wxPCXHandler
[] = {{&_swigt__p_wxPCXHandler
, 0, 0, 0},{0, 0, 0, 0}};
22285 static swig_cast_info _swigc__p_wxJPEGHandler
[] = {{&_swigt__p_wxJPEGHandler
, 0, 0, 0},{0, 0, 0, 0}};
22286 static swig_cast_info _swigc__p_wxPNMHandler
[] = {{&_swigt__p_wxPNMHandler
, 0, 0, 0},{0, 0, 0, 0}};
22287 static swig_cast_info _swigc__p_wxStdDialogButtonSizer
[] = {{&_swigt__p_wxStdDialogButtonSizer
, 0, 0, 0},{0, 0, 0, 0}};
22288 static swig_cast_info _swigc__p_wxAcceleratorTable
[] = {{&_swigt__p_wxAcceleratorTable
, 0, 0, 0},{0, 0, 0, 0}};
22289 static swig_cast_info _swigc__p_wxImage
[] = {{&_swigt__p_wxImage
, 0, 0, 0},{0, 0, 0, 0}};
22290 static swig_cast_info _swigc__p_wxSystemOptions
[] = {{&_swigt__p_wxSystemOptions
, 0, 0, 0},{0, 0, 0, 0}};
22291 static swig_cast_info _swigc__p_wxFileSystem
[] = {{&_swigt__p_wxFileSystem
, 0, 0, 0},{0, 0, 0, 0}};
22292 static swig_cast_info _swigc__p_wxBusyInfo
[] = {{&_swigt__p_wxBusyInfo
, 0, 0, 0},{0, 0, 0, 0}};
22293 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_wxClipboardTextEvent
, _p_wxClipboardTextEventTo_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_wxPowerEvent
, _p_wxPowerEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFSFile
, _p_wxFSFileTo_p_wxObject
, 0, 0}, {&_swigt__p_wxClipboard
, _p_wxClipboardTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPySizer
, _p_wxPySizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStyledTextCtrl
, _p_wxStyledTextCtrlTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNotifyEvent
, _p_wxNotifyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyEvent
, _p_wxPyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxShowEvent
, _p_wxShowEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxToolTip
, _p_wxToolTipTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuItem
, _p_wxMenuItemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxIdleEvent
, _p_wxIdleEventTo_p_wxObject
, 0, 0}, {&_swigt__p_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_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_wxImageHandler
, _p_wxImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyImageHandler
, _p_wxPyImageHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBMPHandler
, _p_wxBMPHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxICOHandler
, _p_wxICOHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCURHandler
, _p_wxCURHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxANIHandler
, _p_wxANIHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNGHandler
, _p_wxPNGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxGIFHandler
, _p_wxGIFHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPCXHandler
, _p_wxPCXHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJPEGHandler
, _p_wxJPEGHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPNMHandler
, _p_wxPNMHandlerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxStdDialogButtonSizer
, _p_wxStdDialogButtonSizerTo_p_wxObject
, 0, 0}, {&_swigt__p_wxAcceleratorTable
, _p_wxAcceleratorTableTo_p_wxObject
, 0, 0}, {&_swigt__p_wxImage
, _p_wxImageTo_p_wxObject
, 0, 0}, {&_swigt__p_wxScrollWinEvent
, _p_wxScrollWinEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxSystemOptions
, _p_wxSystemOptionsTo_p_wxObject
, 0, 0}, {&_swigt__p_wxJoystickEvent
, _p_wxJoystickEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxObject
, 0, 0, 0}, {&_swigt__p_wxKeyEvent
, _p_wxKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxNavigationKeyEvent
, _p_wxNavigationKeyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindowDestroyEvent
, _p_wxWindowDestroyEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxWindow
, _p_wxWindowTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuBar
, _p_wxMenuBarTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyProcess
, _p_wxPyProcessTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFileSystem
, _p_wxFileSystemTo_p_wxObject
, 0, 0}, {&_swigt__p_wxContextMenuEvent
, _p_wxContextMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMenuEvent
, _p_wxMenuEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyApp
, _p_wxPyAppTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCloseEvent
, _p_wxCloseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxMouseEvent
, _p_wxMouseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxEraseEvent
, _p_wxEraseEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxBusyInfo
, _p_wxBusyInfoTo_p_wxObject
, 0, 0}, {&_swigt__p_wxPyCommandEvent
, _p_wxPyCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxCommandEvent
, _p_wxCommandEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxProcessEvent
, _p_wxProcessEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxChildFocusEvent
, _p_wxChildFocusEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxDropFilesEvent
, _p_wxDropFilesEventTo_p_wxObject
, 0, 0}, {&_swigt__p_wxFocusEvent
, _p_wxFocusEventTo_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}};
22294 static swig_cast_info _swigc__p_wxPaperSize
[] = { {&_swigt__p_wxPaperSize
, 0, 0, 0},{0, 0, 0, 0}};
22295 static swig_cast_info _swigc__p_wxPoint
[] = { {&_swigt__p_wxPoint
, 0, 0, 0},{0, 0, 0, 0}};
22296 static swig_cast_info _swigc__p_wxRect
[] = { {&_swigt__p_wxRect
, 0, 0, 0},{0, 0, 0, 0}};
22297 static swig_cast_info _swigc__p_wxScrollBar
[] = { {&_swigt__p_wxScrollBar
, 0, 0, 0},{0, 0, 0, 0}};
22298 static swig_cast_info _swigc__p_wxStyledTextCtrl
[] = { {&_swigt__p_wxStyledTextCtrl
, 0, 0, 0},{0, 0, 0, 0}};
22299 static swig_cast_info _swigc__p_wxStyledTextEvent
[] = { {&_swigt__p_wxStyledTextEvent
, 0, 0, 0},{0, 0, 0, 0}};
22300 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}};
22302 static swig_cast_info
*swig_cast_initial
[] = {
22304 _swigc__p_form_ops_t
,
22306 _swigc__p_unsigned_char
,
22307 _swigc__p_unsigned_int
,
22308 _swigc__p_unsigned_long
,
22310 _swigc__p_wxANIHandler
,
22311 _swigc__p_wxAcceleratorTable
,
22312 _swigc__p_wxActivateEvent
,
22313 _swigc__p_wxBMPHandler
,
22314 _swigc__p_wxBitmap
,
22315 _swigc__p_wxBoxSizer
,
22316 _swigc__p_wxBusyInfo
,
22317 _swigc__p_wxCURHandler
,
22318 _swigc__p_wxChildFocusEvent
,
22319 _swigc__p_wxClipboard
,
22320 _swigc__p_wxClipboardTextEvent
,
22321 _swigc__p_wxCloseEvent
,
22322 _swigc__p_wxColour
,
22323 _swigc__p_wxCommandEvent
,
22324 _swigc__p_wxContextMenuEvent
,
22325 _swigc__p_wxControl
,
22326 _swigc__p_wxControlWithItems
,
22328 _swigc__p_wxDateEvent
,
22329 _swigc__p_wxDisplayChangedEvent
,
22330 _swigc__p_wxDropFilesEvent
,
22331 _swigc__p_wxDuplexMode
,
22332 _swigc__p_wxEraseEvent
,
22334 _swigc__p_wxEvtHandler
,
22335 _swigc__p_wxFSFile
,
22336 _swigc__p_wxFileHistory
,
22337 _swigc__p_wxFileSystem
,
22338 _swigc__p_wxFlexGridSizer
,
22339 _swigc__p_wxFocusEvent
,
22341 _swigc__p_wxGBSizerItem
,
22342 _swigc__p_wxGIFHandler
,
22343 _swigc__p_wxGridBagSizer
,
22344 _swigc__p_wxGridSizer
,
22345 _swigc__p_wxICOHandler
,
22346 _swigc__p_wxIconizeEvent
,
22347 _swigc__p_wxIdleEvent
,
22349 _swigc__p_wxImageHandler
,
22350 _swigc__p_wxIndividualLayoutConstraint
,
22351 _swigc__p_wxInitDialogEvent
,
22352 _swigc__p_wxJPEGHandler
,
22353 _swigc__p_wxJoystickEvent
,
22354 _swigc__p_wxKeyEvent
,
22355 _swigc__p_wxLayoutConstraints
,
22356 _swigc__p_wxMaximizeEvent
,
22357 _swigc__p_wxMemoryBuffer
,
22359 _swigc__p_wxMenuBar
,
22360 _swigc__p_wxMenuEvent
,
22361 _swigc__p_wxMenuItem
,
22362 _swigc__p_wxMouseCaptureChangedEvent
,
22363 _swigc__p_wxMouseEvent
,
22364 _swigc__p_wxMoveEvent
,
22365 _swigc__p_wxNavigationKeyEvent
,
22366 _swigc__p_wxNcPaintEvent
,
22367 _swigc__p_wxNotifyEvent
,
22368 _swigc__p_wxObject
,
22369 _swigc__p_wxPCXHandler
,
22370 _swigc__p_wxPNGHandler
,
22371 _swigc__p_wxPNMHandler
,
22372 _swigc__p_wxPaintEvent
,
22373 _swigc__p_wxPaletteChangedEvent
,
22374 _swigc__p_wxPaperSize
,
22376 _swigc__p_wxPowerEvent
,
22377 _swigc__p_wxProcessEvent
,
22379 _swigc__p_wxPyCommandEvent
,
22380 _swigc__p_wxPyEvent
,
22381 _swigc__p_wxPyImageHandler
,
22382 _swigc__p_wxPyProcess
,
22383 _swigc__p_wxPySizer
,
22384 _swigc__p_wxPyTimer
,
22385 _swigc__p_wxPyValidator
,
22386 _swigc__p_wxQueryNewPaletteEvent
,
22388 _swigc__p_wxScrollBar
,
22389 _swigc__p_wxScrollEvent
,
22390 _swigc__p_wxScrollWinEvent
,
22391 _swigc__p_wxSetCursorEvent
,
22392 _swigc__p_wxShowEvent
,
22393 _swigc__p_wxSizeEvent
,
22395 _swigc__p_wxSizerItem
,
22396 _swigc__p_wxStaticBoxSizer
,
22397 _swigc__p_wxStdDialogButtonSizer
,
22398 _swigc__p_wxStyledTextCtrl
,
22399 _swigc__p_wxStyledTextEvent
,
22400 _swigc__p_wxSysColourChangedEvent
,
22401 _swigc__p_wxSystemOptions
,
22402 _swigc__p_wxTIFFHandler
,
22403 _swigc__p_wxTimerEvent
,
22404 _swigc__p_wxToolTip
,
22405 _swigc__p_wxUpdateUIEvent
,
22406 _swigc__p_wxValidator
,
22407 _swigc__p_wxWindow
,
22408 _swigc__p_wxWindowCreateEvent
,
22409 _swigc__p_wxWindowDestroyEvent
,
22410 _swigc__p_wxXPMHandler
,
22414 /* -------- TYPE CONVERSION AND EQUIVALENCE RULES (END) -------- */
22416 static swig_const_info swig_const_table
[] = {
22417 {0, 0, 0, 0.0, 0, 0}};
22422 /* -----------------------------------------------------------------------------
22423 * Type initialization:
22424 * This problem is tough by the requirement that no dynamic
22425 * memory is used. Also, since swig_type_info structures store pointers to
22426 * swig_cast_info structures and swig_cast_info structures store pointers back
22427 * to swig_type_info structures, we need some lookup code at initialization.
22428 * The idea is that swig generates all the structures that are needed.
22429 * The runtime then collects these partially filled structures.
22430 * The SWIG_InitializeModule function takes these initial arrays out of
22431 * swig_module, and does all the lookup, filling in the swig_module.types
22432 * array with the correct data and linking the correct swig_cast_info
22433 * structures together.
22435 * The generated swig_type_info structures are assigned staticly to an initial
22436 * array. We just loop though that array, and handle each type individually.
22437 * First we lookup if this type has been already loaded, and if so, use the
22438 * loaded structure instead of the generated one. Then we have to fill in the
22439 * cast linked list. The cast data is initially stored in something like a
22440 * two-dimensional array. Each row corresponds to a type (there are the same
22441 * number of rows as there are in the swig_type_initial array). Each entry in
22442 * a column is one of the swig_cast_info structures for that type.
22443 * The cast_initial array is actually an array of arrays, because each row has
22444 * a variable number of columns. So to actually build the cast linked list,
22445 * we find the array of casts associated with the type, and loop through it
22446 * adding the casts to the list. The one last trick we need to do is making
22447 * sure the type pointer in the swig_cast_info struct is correct.
22449 * First off, we lookup the cast->type name to see if it is already loaded.
22450 * There are three cases to handle:
22451 * 1) If the cast->type has already been loaded AND the type we are adding
22452 * casting info to has not been loaded (it is in this module), THEN we
22453 * replace the cast->type pointer with the type pointer that has already
22455 * 2) If BOTH types (the one we are adding casting info to, and the
22456 * cast->type) are loaded, THEN the cast info has already been loaded by
22457 * the previous module so we just ignore it.
22458 * 3) Finally, if cast->type has not already been loaded, then we add that
22459 * swig_cast_info to the linked list (because the cast->type) pointer will
22461 * ----------------------------------------------------------------------------- */
22471 #define SWIGRUNTIME_DEBUG
22475 SWIG_InitializeModule(void *clientdata
) {
22477 swig_module_info
*module_head
;
22478 static int init_run
= 0;
22480 clientdata
= clientdata
;
22482 if (init_run
) return;
22485 /* Initialize the swig_module */
22486 swig_module
.type_initial
= swig_type_initial
;
22487 swig_module
.cast_initial
= swig_cast_initial
;
22489 /* Try and load any already created modules */
22490 module_head
= SWIG_GetModule(clientdata
);
22492 swig_module
.next
= module_head
->next
;
22493 module_head
->next
= &swig_module
;
22495 /* This is the first module loaded */
22496 swig_module
.next
= &swig_module
;
22497 SWIG_SetModule(clientdata
, &swig_module
);
22500 /* Now work on filling in swig_module.types */
22501 #ifdef SWIGRUNTIME_DEBUG
22502 printf("SWIG_InitializeModule: size %d\n", swig_module
.size
);
22504 for (i
= 0; i
< swig_module
.size
; ++i
) {
22505 swig_type_info
*type
= 0;
22506 swig_type_info
*ret
;
22507 swig_cast_info
*cast
;
22509 #ifdef SWIGRUNTIME_DEBUG
22510 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22513 /* if there is another module already loaded */
22514 if (swig_module
.next
!= &swig_module
) {
22515 type
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, swig_module
.type_initial
[i
]->name
);
22518 /* Overwrite clientdata field */
22519 #ifdef SWIGRUNTIME_DEBUG
22520 printf("SWIG_InitializeModule: found type %s\n", type
->name
);
22522 if (swig_module
.type_initial
[i
]->clientdata
) {
22523 type
->clientdata
= swig_module
.type_initial
[i
]->clientdata
;
22524 #ifdef SWIGRUNTIME_DEBUG
22525 printf("SWIG_InitializeModule: found and overwrite type %s \n", type
->name
);
22529 type
= swig_module
.type_initial
[i
];
22532 /* Insert casting types */
22533 cast
= swig_module
.cast_initial
[i
];
22534 while (cast
->type
) {
22535 /* Don't need to add information already in the list */
22537 #ifdef SWIGRUNTIME_DEBUG
22538 printf("SWIG_InitializeModule: look cast %s\n", cast
->type
->name
);
22540 if (swig_module
.next
!= &swig_module
) {
22541 ret
= SWIG_MangledTypeQueryModule(swig_module
.next
, &swig_module
, cast
->type
->name
);
22542 #ifdef SWIGRUNTIME_DEBUG
22543 if (ret
) printf("SWIG_InitializeModule: found cast %s\n", ret
->name
);
22547 if (type
== swig_module
.type_initial
[i
]) {
22548 #ifdef SWIGRUNTIME_DEBUG
22549 printf("SWIG_InitializeModule: skip old type %s\n", ret
->name
);
22554 /* Check for casting already in the list */
22555 swig_cast_info
*ocast
= SWIG_TypeCheck(ret
->name
, type
);
22556 #ifdef SWIGRUNTIME_DEBUG
22557 if (ocast
) printf("SWIG_InitializeModule: skip old cast %s\n", ret
->name
);
22559 if (!ocast
) ret
= 0;
22564 #ifdef SWIGRUNTIME_DEBUG
22565 printf("SWIG_InitializeModule: adding cast %s\n", cast
->type
->name
);
22568 type
->cast
->prev
= cast
;
22569 cast
->next
= type
->cast
;
22575 /* Set entry in modules->types array equal to the type */
22576 swig_module
.types
[i
] = type
;
22578 swig_module
.types
[i
] = 0;
22580 #ifdef SWIGRUNTIME_DEBUG
22581 printf("**** SWIG_InitializeModule: Cast List ******\n");
22582 for (i
= 0; i
< swig_module
.size
; ++i
) {
22584 swig_cast_info
*cast
= swig_module
.cast_initial
[i
];
22585 printf("SWIG_InitializeModule: type %d %s\n", i
, swig_module
.type_initial
[i
]->name
);
22586 while (cast
->type
) {
22587 printf("SWIG_InitializeModule: cast type %s\n", cast
->type
->name
);
22591 printf("---- Total casts: %d\n",j
);
22593 printf("**** SWIG_InitializeModule: Cast List ******\n");
22597 /* This function will propagate the clientdata field of type to
22598 * any new swig_type_info structures that have been added into the list
22599 * of equivalent types. It is like calling
22600 * SWIG_TypeClientData(type, clientdata) a second time.
22603 SWIG_PropagateClientData(void) {
22605 swig_cast_info
*equiv
;
22606 static int init_run
= 0;
22608 if (init_run
) return;
22611 for (i
= 0; i
< swig_module
.size
; i
++) {
22612 if (swig_module
.types
[i
]->clientdata
) {
22613 equiv
= swig_module
.types
[i
]->cast
;
22615 if (!equiv
->converter
) {
22616 if (equiv
->type
&& !equiv
->type
->clientdata
)
22617 SWIG_TypeClientData(equiv
->type
, swig_module
.types
[i
]->clientdata
);
22619 equiv
= equiv
->next
;
22639 /* Python-specific SWIG API */
22640 #define SWIG_newvarlink() SWIG_Python_newvarlink()
22641 #define SWIG_addvarlink(p, name, get_attr, set_attr) SWIG_Python_addvarlink(p, name, get_attr, set_attr)
22642 #define SWIG_InstallConstants(d, constants) SWIG_Python_InstallConstants(d, constants)
22644 /* -----------------------------------------------------------------------------
22645 * global variable support code.
22646 * ----------------------------------------------------------------------------- */
22648 typedef struct swig_globalvar
{
22649 char *name
; /* Name of global variable */
22650 PyObject
*(*get_attr
)(void); /* Return the current value */
22651 int (*set_attr
)(PyObject
*); /* Set the value */
22652 struct swig_globalvar
*next
;
22655 typedef struct swig_varlinkobject
{
22657 swig_globalvar
*vars
;
22658 } swig_varlinkobject
;
22660 SWIGINTERN PyObject
*
22661 swig_varlink_repr(swig_varlinkobject
*SWIGUNUSEDPARM(v
)) {
22662 return PyString_FromString("<Swig global variables>");
22665 SWIGINTERN PyObject
*
22666 swig_varlink_str(swig_varlinkobject
*v
) {
22667 PyObject
*str
= PyString_FromString("(");
22668 swig_globalvar
*var
;
22669 for (var
= v
->vars
; var
; var
=var
->next
) {
22670 PyString_ConcatAndDel(&str
,PyString_FromString(var
->name
));
22671 if (var
->next
) PyString_ConcatAndDel(&str
,PyString_FromString(", "));
22673 PyString_ConcatAndDel(&str
,PyString_FromString(")"));
22678 swig_varlink_print(swig_varlinkobject
*v
, FILE *fp
, int SWIGUNUSEDPARM(flags
)) {
22679 PyObject
*str
= swig_varlink_str(v
);
22680 fprintf(fp
,"Swig global variables ");
22681 fprintf(fp
,"%s\n", PyString_AsString(str
));
22687 swig_varlink_dealloc(swig_varlinkobject
*v
) {
22688 swig_globalvar
*var
= v
->vars
;
22690 swig_globalvar
*n
= var
->next
;
22697 SWIGINTERN PyObject
*
22698 swig_varlink_getattr(swig_varlinkobject
*v
, char *n
) {
22699 PyObject
*res
= NULL
;
22700 swig_globalvar
*var
= v
->vars
;
22702 if (strcmp(var
->name
,n
) == 0) {
22703 res
= (*var
->get_attr
)();
22708 if (res
== NULL
&& !PyErr_Occurred()) {
22709 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22715 swig_varlink_setattr(swig_varlinkobject
*v
, char *n
, PyObject
*p
) {
22717 swig_globalvar
*var
= v
->vars
;
22719 if (strcmp(var
->name
,n
) == 0) {
22720 res
= (*var
->set_attr
)(p
);
22725 if (res
== 1 && !PyErr_Occurred()) {
22726 PyErr_SetString(PyExc_NameError
,"Unknown C global variable");
22731 SWIGINTERN PyTypeObject
*
22732 swig_varlink_type(void) {
22733 static char varlink__doc__
[] = "Swig var link object";
22734 static PyTypeObject varlink_type
;
22735 static int type_init
= 0;
22737 const PyTypeObject tmp
22739 PyObject_HEAD_INIT(NULL
)
22740 0, /* Number of items in variable part (ob_size) */
22741 (char *)"swigvarlink", /* Type name (tp_name) */
22742 sizeof(swig_varlinkobject
), /* Basic size (tp_basicsize) */
22743 0, /* Itemsize (tp_itemsize) */
22744 (destructor
) swig_varlink_dealloc
, /* Deallocator (tp_dealloc) */
22745 (printfunc
) swig_varlink_print
, /* Print (tp_print) */
22746 (getattrfunc
) swig_varlink_getattr
, /* get attr (tp_getattr) */
22747 (setattrfunc
) swig_varlink_setattr
, /* Set attr (tp_setattr) */
22748 0, /* tp_compare */
22749 (reprfunc
) swig_varlink_repr
, /* tp_repr */
22750 0, /* tp_as_number */
22751 0, /* tp_as_sequence */
22752 0, /* tp_as_mapping */
22755 (reprfunc
)swig_varlink_str
, /* tp_str */
22756 0, /* tp_getattro */
22757 0, /* tp_setattro */
22758 0, /* tp_as_buffer */
22760 varlink__doc__
, /* tp_doc */
22761 0, /* tp_traverse */
22763 0, /* tp_richcompare */
22764 0, /* tp_weaklistoffset */
22765 #if PY_VERSION_HEX >= 0x02020000
22766 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* tp_iter -> tp_weaklist */
22768 #if PY_VERSION_HEX >= 0x02030000
22771 #ifdef COUNT_ALLOCS
22772 0,0,0,0 /* tp_alloc -> tp_next */
22775 varlink_type
= tmp
;
22776 varlink_type
.ob_type
= &PyType_Type
;
22779 return &varlink_type
;
22782 /* Create a variable linking object for use later */
22783 SWIGINTERN PyObject
*
22784 SWIG_Python_newvarlink(void) {
22785 swig_varlinkobject
*result
= PyObject_NEW(swig_varlinkobject
, swig_varlink_type());
22789 return ((PyObject
*) result
);
22793 SWIG_Python_addvarlink(PyObject
*p
, char *name
, PyObject
*(*get_attr
)(void), int (*set_attr
)(PyObject
*p
)) {
22794 swig_varlinkobject
*v
= (swig_varlinkobject
*) p
;
22795 swig_globalvar
*gv
= (swig_globalvar
*) malloc(sizeof(swig_globalvar
));
22797 size_t size
= strlen(name
)+1;
22798 gv
->name
= (char *)malloc(size
);
22800 strncpy(gv
->name
,name
,size
);
22801 gv
->get_attr
= get_attr
;
22802 gv
->set_attr
= set_attr
;
22803 gv
->next
= v
->vars
;
22809 SWIGINTERN PyObject
*
22811 static PyObject
*_SWIG_globals
= 0;
22812 if (!_SWIG_globals
) _SWIG_globals
= SWIG_newvarlink();
22813 return _SWIG_globals
;
22816 /* -----------------------------------------------------------------------------
22817 * constants/methods manipulation
22818 * ----------------------------------------------------------------------------- */
22820 /* Install Constants */
22822 SWIG_Python_InstallConstants(PyObject
*d
, swig_const_info constants
[]) {
22825 for (i
= 0; constants
[i
].type
; ++i
) {
22826 switch(constants
[i
].type
) {
22827 case SWIG_PY_POINTER
:
22828 obj
= SWIG_NewPointerObj(constants
[i
].pvalue
, *(constants
[i
]).ptype
,0);
22830 case SWIG_PY_BINARY
:
22831 obj
= SWIG_NewPackedObj(constants
[i
].pvalue
, constants
[i
].lvalue
, *(constants
[i
].ptype
));
22838 PyDict_SetItemString(d
, constants
[i
].name
, obj
);
22844 /* -----------------------------------------------------------------------------*/
22845 /* Fix SwigMethods to carry the callback ptrs when needed */
22846 /* -----------------------------------------------------------------------------*/
22849 SWIG_Python_FixMethods(PyMethodDef
*methods
,
22850 swig_const_info
*const_table
,
22851 swig_type_info
**types
,
22852 swig_type_info
**types_initial
) {
22854 for (i
= 0; methods
[i
].ml_name
; ++i
) {
22855 const char *c
= methods
[i
].ml_doc
;
22856 if (c
&& (c
= strstr(c
, "swig_ptr: "))) {
22858 swig_const_info
*ci
= 0;
22859 const char *name
= c
+ 10;
22860 for (j
= 0; const_table
[j
].type
; ++j
) {
22861 if (strncmp(const_table
[j
].name
, name
,
22862 strlen(const_table
[j
].name
)) == 0) {
22863 ci
= &(const_table
[j
]);
22868 size_t shift
= (ci
->ptype
) - types
;
22869 swig_type_info
*ty
= types_initial
[shift
];
22870 size_t ldoc
= (c
- methods
[i
].ml_doc
);
22871 size_t lptr
= strlen(ty
->name
)+2*sizeof(void*)+2;
22872 char *ndoc
= (char*)malloc(ldoc
+ lptr
+ 10);
22875 void *ptr
= (ci
->type
== SWIG_PY_POINTER
) ? ci
->pvalue
: 0;
22877 strncpy(buff
, methods
[i
].ml_doc
, ldoc
);
22879 strncpy(buff
, "swig_ptr: ", 10);
22881 SWIG_PackVoidPtr(buff
, ptr
, ty
->name
, lptr
);
22882 methods
[i
].ml_doc
= ndoc
;
22894 /* -----------------------------------------------------------------------------*
22895 * Partial Init method
22896 * -----------------------------------------------------------------------------*/
22901 SWIGEXPORT
void SWIG_init(void) {
22904 /* Fix SwigMethods to carry the callback ptrs when needed */
22905 SWIG_Python_FixMethods(SwigMethods
, swig_const_table
, swig_types
, swig_type_initial
);
22907 m
= Py_InitModule((char *) SWIG_name
, SwigMethods
);
22908 d
= PyModule_GetDict(m
);
22910 SWIG_InitializeModule(0);
22911 SWIG_InstallConstants(d
,swig_const_table
);
22914 PyDict_SetItemString(d
,(char*)"cvar", SWIG_globals());
22915 SWIG_addvarlink(SWIG_globals(),(char*)"STCNameStr",STCNameStr_get
, STCNameStr_set
);
22916 SWIG_Python_SetConstant(d
, "STC_USE_DND",SWIG_From_int(static_cast< int >(1)));
22917 SWIG_Python_SetConstant(d
, "STC_USE_POPUP",SWIG_From_int(static_cast< int >(1)));
22918 SWIG_Python_SetConstant(d
, "STC_INVALID_POSITION",SWIG_From_int(static_cast< int >(-1)));
22919 SWIG_Python_SetConstant(d
, "STC_START",SWIG_From_int(static_cast< int >(2000)));
22920 SWIG_Python_SetConstant(d
, "STC_OPTIONAL_START",SWIG_From_int(static_cast< int >(3000)));
22921 SWIG_Python_SetConstant(d
, "STC_LEXER_START",SWIG_From_int(static_cast< int >(4000)));
22922 SWIG_Python_SetConstant(d
, "STC_WS_INVISIBLE",SWIG_From_int(static_cast< int >(0)));
22923 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEALWAYS",SWIG_From_int(static_cast< int >(1)));
22924 SWIG_Python_SetConstant(d
, "STC_WS_VISIBLEAFTERINDENT",SWIG_From_int(static_cast< int >(2)));
22925 SWIG_Python_SetConstant(d
, "STC_EOL_CRLF",SWIG_From_int(static_cast< int >(0)));
22926 SWIG_Python_SetConstant(d
, "STC_EOL_CR",SWIG_From_int(static_cast< int >(1)));
22927 SWIG_Python_SetConstant(d
, "STC_EOL_LF",SWIG_From_int(static_cast< int >(2)));
22928 SWIG_Python_SetConstant(d
, "STC_CP_UTF8",SWIG_From_int(static_cast< int >(65001)));
22929 SWIG_Python_SetConstant(d
, "STC_CP_DBCS",SWIG_From_int(static_cast< int >(1)));
22930 SWIG_Python_SetConstant(d
, "STC_MARKER_MAX",SWIG_From_int(static_cast< int >(31)));
22931 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLE",SWIG_From_int(static_cast< int >(0)));
22932 SWIG_Python_SetConstant(d
, "STC_MARK_ROUNDRECT",SWIG_From_int(static_cast< int >(1)));
22933 SWIG_Python_SetConstant(d
, "STC_MARK_ARROW",SWIG_From_int(static_cast< int >(2)));
22934 SWIG_Python_SetConstant(d
, "STC_MARK_SMALLRECT",SWIG_From_int(static_cast< int >(3)));
22935 SWIG_Python_SetConstant(d
, "STC_MARK_SHORTARROW",SWIG_From_int(static_cast< int >(4)));
22936 SWIG_Python_SetConstant(d
, "STC_MARK_EMPTY",SWIG_From_int(static_cast< int >(5)));
22937 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWDOWN",SWIG_From_int(static_cast< int >(6)));
22938 SWIG_Python_SetConstant(d
, "STC_MARK_MINUS",SWIG_From_int(static_cast< int >(7)));
22939 SWIG_Python_SetConstant(d
, "STC_MARK_PLUS",SWIG_From_int(static_cast< int >(8)));
22940 SWIG_Python_SetConstant(d
, "STC_MARK_VLINE",SWIG_From_int(static_cast< int >(9)));
22941 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNER",SWIG_From_int(static_cast< int >(10)));
22942 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNER",SWIG_From_int(static_cast< int >(11)));
22943 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUS",SWIG_From_int(static_cast< int >(12)));
22944 SWIG_Python_SetConstant(d
, "STC_MARK_BOXPLUSCONNECTED",SWIG_From_int(static_cast< int >(13)));
22945 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUS",SWIG_From_int(static_cast< int >(14)));
22946 SWIG_Python_SetConstant(d
, "STC_MARK_BOXMINUSCONNECTED",SWIG_From_int(static_cast< int >(15)));
22947 SWIG_Python_SetConstant(d
, "STC_MARK_LCORNERCURVE",SWIG_From_int(static_cast< int >(16)));
22948 SWIG_Python_SetConstant(d
, "STC_MARK_TCORNERCURVE",SWIG_From_int(static_cast< int >(17)));
22949 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUS",SWIG_From_int(static_cast< int >(18)));
22950 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEPLUSCONNECTED",SWIG_From_int(static_cast< int >(19)));
22951 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUS",SWIG_From_int(static_cast< int >(20)));
22952 SWIG_Python_SetConstant(d
, "STC_MARK_CIRCLEMINUSCONNECTED",SWIG_From_int(static_cast< int >(21)));
22953 SWIG_Python_SetConstant(d
, "STC_MARK_BACKGROUND",SWIG_From_int(static_cast< int >(22)));
22954 SWIG_Python_SetConstant(d
, "STC_MARK_DOTDOTDOT",SWIG_From_int(static_cast< int >(23)));
22955 SWIG_Python_SetConstant(d
, "STC_MARK_ARROWS",SWIG_From_int(static_cast< int >(24)));
22956 SWIG_Python_SetConstant(d
, "STC_MARK_PIXMAP",SWIG_From_int(static_cast< int >(25)));
22957 SWIG_Python_SetConstant(d
, "STC_MARK_FULLRECT",SWIG_From_int(static_cast< int >(26)));
22958 SWIG_Python_SetConstant(d
, "STC_MARK_CHARACTER",SWIG_From_int(static_cast< int >(10000)));
22959 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEREND",SWIG_From_int(static_cast< int >(25)));
22960 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPENMID",SWIG_From_int(static_cast< int >(26)));
22961 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERMIDTAIL",SWIG_From_int(static_cast< int >(27)));
22962 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERTAIL",SWIG_From_int(static_cast< int >(28)));
22963 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDERSUB",SWIG_From_int(static_cast< int >(29)));
22964 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDER",SWIG_From_int(static_cast< int >(30)));
22965 SWIG_Python_SetConstant(d
, "STC_MARKNUM_FOLDEROPEN",SWIG_From_int(static_cast< int >(31)));
22966 SWIG_Python_SetConstant(d
, "STC_MASK_FOLDERS",SWIG_From_int(static_cast< int >(0xFE000000)));
22967 SWIG_Python_SetConstant(d
, "STC_MARGIN_SYMBOL",SWIG_From_int(static_cast< int >(0)));
22968 SWIG_Python_SetConstant(d
, "STC_MARGIN_NUMBER",SWIG_From_int(static_cast< int >(1)));
22969 SWIG_Python_SetConstant(d
, "STC_STYLE_DEFAULT",SWIG_From_int(static_cast< int >(32)));
22970 SWIG_Python_SetConstant(d
, "STC_STYLE_LINENUMBER",SWIG_From_int(static_cast< int >(33)));
22971 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACELIGHT",SWIG_From_int(static_cast< int >(34)));
22972 SWIG_Python_SetConstant(d
, "STC_STYLE_BRACEBAD",SWIG_From_int(static_cast< int >(35)));
22973 SWIG_Python_SetConstant(d
, "STC_STYLE_CONTROLCHAR",SWIG_From_int(static_cast< int >(36)));
22974 SWIG_Python_SetConstant(d
, "STC_STYLE_INDENTGUIDE",SWIG_From_int(static_cast< int >(37)));
22975 SWIG_Python_SetConstant(d
, "STC_STYLE_LASTPREDEFINED",SWIG_From_int(static_cast< int >(39)));
22976 SWIG_Python_SetConstant(d
, "STC_STYLE_MAX",SWIG_From_int(static_cast< int >(127)));
22977 SWIG_Python_SetConstant(d
, "STC_CHARSET_ANSI",SWIG_From_int(static_cast< int >(0)));
22978 SWIG_Python_SetConstant(d
, "STC_CHARSET_DEFAULT",SWIG_From_int(static_cast< int >(1)));
22979 SWIG_Python_SetConstant(d
, "STC_CHARSET_BALTIC",SWIG_From_int(static_cast< int >(186)));
22980 SWIG_Python_SetConstant(d
, "STC_CHARSET_CHINESEBIG5",SWIG_From_int(static_cast< int >(136)));
22981 SWIG_Python_SetConstant(d
, "STC_CHARSET_EASTEUROPE",SWIG_From_int(static_cast< int >(238)));
22982 SWIG_Python_SetConstant(d
, "STC_CHARSET_GB2312",SWIG_From_int(static_cast< int >(134)));
22983 SWIG_Python_SetConstant(d
, "STC_CHARSET_GREEK",SWIG_From_int(static_cast< int >(161)));
22984 SWIG_Python_SetConstant(d
, "STC_CHARSET_HANGUL",SWIG_From_int(static_cast< int >(129)));
22985 SWIG_Python_SetConstant(d
, "STC_CHARSET_MAC",SWIG_From_int(static_cast< int >(77)));
22986 SWIG_Python_SetConstant(d
, "STC_CHARSET_OEM",SWIG_From_int(static_cast< int >(255)));
22987 SWIG_Python_SetConstant(d
, "STC_CHARSET_RUSSIAN",SWIG_From_int(static_cast< int >(204)));
22988 SWIG_Python_SetConstant(d
, "STC_CHARSET_CYRILLIC",SWIG_From_int(static_cast< int >(1251)));
22989 SWIG_Python_SetConstant(d
, "STC_CHARSET_SHIFTJIS",SWIG_From_int(static_cast< int >(128)));
22990 SWIG_Python_SetConstant(d
, "STC_CHARSET_SYMBOL",SWIG_From_int(static_cast< int >(2)));
22991 SWIG_Python_SetConstant(d
, "STC_CHARSET_TURKISH",SWIG_From_int(static_cast< int >(162)));
22992 SWIG_Python_SetConstant(d
, "STC_CHARSET_JOHAB",SWIG_From_int(static_cast< int >(130)));
22993 SWIG_Python_SetConstant(d
, "STC_CHARSET_HEBREW",SWIG_From_int(static_cast< int >(177)));
22994 SWIG_Python_SetConstant(d
, "STC_CHARSET_ARABIC",SWIG_From_int(static_cast< int >(178)));
22995 SWIG_Python_SetConstant(d
, "STC_CHARSET_VIETNAMESE",SWIG_From_int(static_cast< int >(163)));
22996 SWIG_Python_SetConstant(d
, "STC_CHARSET_THAI",SWIG_From_int(static_cast< int >(222)));
22997 SWIG_Python_SetConstant(d
, "STC_CHARSET_8859_15",SWIG_From_int(static_cast< int >(1000)));
22998 SWIG_Python_SetConstant(d
, "STC_CASE_MIXED",SWIG_From_int(static_cast< int >(0)));
22999 SWIG_Python_SetConstant(d
, "STC_CASE_UPPER",SWIG_From_int(static_cast< int >(1)));
23000 SWIG_Python_SetConstant(d
, "STC_CASE_LOWER",SWIG_From_int(static_cast< int >(2)));
23001 SWIG_Python_SetConstant(d
, "STC_INDIC_MAX",SWIG_From_int(static_cast< int >(7)));
23002 SWIG_Python_SetConstant(d
, "STC_INDIC_PLAIN",SWIG_From_int(static_cast< int >(0)));
23003 SWIG_Python_SetConstant(d
, "STC_INDIC_SQUIGGLE",SWIG_From_int(static_cast< int >(1)));
23004 SWIG_Python_SetConstant(d
, "STC_INDIC_TT",SWIG_From_int(static_cast< int >(2)));
23005 SWIG_Python_SetConstant(d
, "STC_INDIC_DIAGONAL",SWIG_From_int(static_cast< int >(3)));
23006 SWIG_Python_SetConstant(d
, "STC_INDIC_STRIKE",SWIG_From_int(static_cast< int >(4)));
23007 SWIG_Python_SetConstant(d
, "STC_INDIC_HIDDEN",SWIG_From_int(static_cast< int >(5)));
23008 SWIG_Python_SetConstant(d
, "STC_INDIC_BOX",SWIG_From_int(static_cast< int >(6)));
23009 SWIG_Python_SetConstant(d
, "STC_INDIC0_MASK",SWIG_From_int(static_cast< int >(0x20)));
23010 SWIG_Python_SetConstant(d
, "STC_INDIC1_MASK",SWIG_From_int(static_cast< int >(0x40)));
23011 SWIG_Python_SetConstant(d
, "STC_INDIC2_MASK",SWIG_From_int(static_cast< int >(0x80)));
23012 SWIG_Python_SetConstant(d
, "STC_INDICS_MASK",SWIG_From_int(static_cast< int >(0xE0)));
23013 SWIG_Python_SetConstant(d
, "STC_PRINT_NORMAL",SWIG_From_int(static_cast< int >(0)));
23014 SWIG_Python_SetConstant(d
, "STC_PRINT_INVERTLIGHT",SWIG_From_int(static_cast< int >(1)));
23015 SWIG_Python_SetConstant(d
, "STC_PRINT_BLACKONWHITE",SWIG_From_int(static_cast< int >(2)));
23016 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITE",SWIG_From_int(static_cast< int >(3)));
23017 SWIG_Python_SetConstant(d
, "STC_PRINT_COLOURONWHITEDEFAULTBG",SWIG_From_int(static_cast< int >(4)));
23018 SWIG_Python_SetConstant(d
, "STC_FIND_WHOLEWORD",SWIG_From_int(static_cast< int >(2)));
23019 SWIG_Python_SetConstant(d
, "STC_FIND_MATCHCASE",SWIG_From_int(static_cast< int >(4)));
23020 SWIG_Python_SetConstant(d
, "STC_FIND_WORDSTART",SWIG_From_int(static_cast< int >(0x00100000)));
23021 SWIG_Python_SetConstant(d
, "STC_FIND_REGEXP",SWIG_From_int(static_cast< int >(0x00200000)));
23022 SWIG_Python_SetConstant(d
, "STC_FIND_POSIX",SWIG_From_int(static_cast< int >(0x00400000)));
23023 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBASE",SWIG_From_int(static_cast< int >(0x400)));
23024 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELWHITEFLAG",SWIG_From_int(static_cast< int >(0x1000)));
23025 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELHEADERFLAG",SWIG_From_int(static_cast< int >(0x2000)));
23026 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXHEADERFLAG",SWIG_From_int(static_cast< int >(0x4000)));
23027 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELBOXFOOTERFLAG",SWIG_From_int(static_cast< int >(0x8000)));
23028 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELCONTRACTED",SWIG_From_int(static_cast< int >(0x10000)));
23029 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELUNINDENT",SWIG_From_int(static_cast< int >(0x20000)));
23030 SWIG_Python_SetConstant(d
, "STC_FOLDLEVELNUMBERMASK",SWIG_From_int(static_cast< int >(0x0FFF)));
23031 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_EXPANDED",SWIG_From_int(static_cast< int >(0x0002)));
23032 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEBEFORE_CONTRACTED",SWIG_From_int(static_cast< int >(0x0004)));
23033 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_EXPANDED",SWIG_From_int(static_cast< int >(0x0008)));
23034 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LINEAFTER_CONTRACTED",SWIG_From_int(static_cast< int >(0x0010)));
23035 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_LEVELNUMBERS",SWIG_From_int(static_cast< int >(0x0040)));
23036 SWIG_Python_SetConstant(d
, "STC_FOLDFLAG_BOX",SWIG_From_int(static_cast< int >(0x0001)));
23037 SWIG_Python_SetConstant(d
, "STC_TIME_FOREVER",SWIG_From_int(static_cast< int >(10000000)));
23038 SWIG_Python_SetConstant(d
, "STC_WRAP_NONE",SWIG_From_int(static_cast< int >(0)));
23039 SWIG_Python_SetConstant(d
, "STC_WRAP_WORD",SWIG_From_int(static_cast< int >(1)));
23040 SWIG_Python_SetConstant(d
, "STC_WRAP_CHAR",SWIG_From_int(static_cast< int >(2)));
23041 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_NONE",SWIG_From_int(static_cast< int >(0x0000)));
23042 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_END",SWIG_From_int(static_cast< int >(0x0001)));
23043 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAG_START",SWIG_From_int(static_cast< int >(0x0002)));
23044 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_DEFAULT",SWIG_From_int(static_cast< int >(0x0000)));
23045 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_END_BY_TEXT",SWIG_From_int(static_cast< int >(0x0001)));
23046 SWIG_Python_SetConstant(d
, "STC_WRAPVISUALFLAGLOC_START_BY_TEXT",SWIG_From_int(static_cast< int >(0x0002)));
23047 SWIG_Python_SetConstant(d
, "STC_CACHE_NONE",SWIG_From_int(static_cast< int >(0)));
23048 SWIG_Python_SetConstant(d
, "STC_CACHE_CARET",SWIG_From_int(static_cast< int >(1)));
23049 SWIG_Python_SetConstant(d
, "STC_CACHE_PAGE",SWIG_From_int(static_cast< int >(2)));
23050 SWIG_Python_SetConstant(d
, "STC_CACHE_DOCUMENT",SWIG_From_int(static_cast< int >(3)));
23051 SWIG_Python_SetConstant(d
, "STC_EDGE_NONE",SWIG_From_int(static_cast< int >(0)));
23052 SWIG_Python_SetConstant(d
, "STC_EDGE_LINE",SWIG_From_int(static_cast< int >(1)));
23053 SWIG_Python_SetConstant(d
, "STC_EDGE_BACKGROUND",SWIG_From_int(static_cast< int >(2)));
23054 SWIG_Python_SetConstant(d
, "STC_CURSORNORMAL",SWIG_From_int(static_cast< int >(-1)));
23055 SWIG_Python_SetConstant(d
, "STC_CURSORWAIT",SWIG_From_int(static_cast< int >(4)));
23056 SWIG_Python_SetConstant(d
, "STC_VISIBLE_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23057 SWIG_Python_SetConstant(d
, "STC_VISIBLE_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23058 SWIG_Python_SetConstant(d
, "STC_CARET_SLOP",SWIG_From_int(static_cast< int >(0x01)));
23059 SWIG_Python_SetConstant(d
, "STC_CARET_STRICT",SWIG_From_int(static_cast< int >(0x04)));
23060 SWIG_Python_SetConstant(d
, "STC_CARET_JUMPS",SWIG_From_int(static_cast< int >(0x10)));
23061 SWIG_Python_SetConstant(d
, "STC_CARET_EVEN",SWIG_From_int(static_cast< int >(0x08)));
23062 SWIG_Python_SetConstant(d
, "STC_SEL_STREAM",SWIG_From_int(static_cast< int >(0)));
23063 SWIG_Python_SetConstant(d
, "STC_SEL_RECTANGLE",SWIG_From_int(static_cast< int >(1)));
23064 SWIG_Python_SetConstant(d
, "STC_SEL_LINES",SWIG_From_int(static_cast< int >(2)));
23065 SWIG_Python_SetConstant(d
, "STC_KEYWORDSET_MAX",SWIG_From_int(static_cast< int >(8)));
23066 SWIG_Python_SetConstant(d
, "STC_MOD_INSERTTEXT",SWIG_From_int(static_cast< int >(0x1)));
23067 SWIG_Python_SetConstant(d
, "STC_MOD_DELETETEXT",SWIG_From_int(static_cast< int >(0x2)));
23068 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGESTYLE",SWIG_From_int(static_cast< int >(0x4)));
23069 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEFOLD",SWIG_From_int(static_cast< int >(0x8)));
23070 SWIG_Python_SetConstant(d
, "STC_PERFORMED_USER",SWIG_From_int(static_cast< int >(0x10)));
23071 SWIG_Python_SetConstant(d
, "STC_PERFORMED_UNDO",SWIG_From_int(static_cast< int >(0x20)));
23072 SWIG_Python_SetConstant(d
, "STC_PERFORMED_REDO",SWIG_From_int(static_cast< int >(0x40)));
23073 SWIG_Python_SetConstant(d
, "STC_MULTISTEPUNDOREDO",SWIG_From_int(static_cast< int >(0x80)));
23074 SWIG_Python_SetConstant(d
, "STC_LASTSTEPINUNDOREDO",SWIG_From_int(static_cast< int >(0x100)));
23075 SWIG_Python_SetConstant(d
, "STC_MOD_CHANGEMARKER",SWIG_From_int(static_cast< int >(0x200)));
23076 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREINSERT",SWIG_From_int(static_cast< int >(0x400)));
23077 SWIG_Python_SetConstant(d
, "STC_MOD_BEFOREDELETE",SWIG_From_int(static_cast< int >(0x800)));
23078 SWIG_Python_SetConstant(d
, "STC_MULTILINEUNDOREDO",SWIG_From_int(static_cast< int >(0x1000)));
23079 SWIG_Python_SetConstant(d
, "STC_MODEVENTMASKALL",SWIG_From_int(static_cast< int >(0x1FFF)));
23080 SWIG_Python_SetConstant(d
, "STC_KEY_DOWN",SWIG_From_int(static_cast< int >(300)));
23081 SWIG_Python_SetConstant(d
, "STC_KEY_UP",SWIG_From_int(static_cast< int >(301)));
23082 SWIG_Python_SetConstant(d
, "STC_KEY_LEFT",SWIG_From_int(static_cast< int >(302)));
23083 SWIG_Python_SetConstant(d
, "STC_KEY_RIGHT",SWIG_From_int(static_cast< int >(303)));
23084 SWIG_Python_SetConstant(d
, "STC_KEY_HOME",SWIG_From_int(static_cast< int >(304)));
23085 SWIG_Python_SetConstant(d
, "STC_KEY_END",SWIG_From_int(static_cast< int >(305)));
23086 SWIG_Python_SetConstant(d
, "STC_KEY_PRIOR",SWIG_From_int(static_cast< int >(306)));
23087 SWIG_Python_SetConstant(d
, "STC_KEY_NEXT",SWIG_From_int(static_cast< int >(307)));
23088 SWIG_Python_SetConstant(d
, "STC_KEY_DELETE",SWIG_From_int(static_cast< int >(308)));
23089 SWIG_Python_SetConstant(d
, "STC_KEY_INSERT",SWIG_From_int(static_cast< int >(309)));
23090 SWIG_Python_SetConstant(d
, "STC_KEY_ESCAPE",SWIG_From_int(static_cast< int >(7)));
23091 SWIG_Python_SetConstant(d
, "STC_KEY_BACK",SWIG_From_int(static_cast< int >(8)));
23092 SWIG_Python_SetConstant(d
, "STC_KEY_TAB",SWIG_From_int(static_cast< int >(9)));
23093 SWIG_Python_SetConstant(d
, "STC_KEY_RETURN",SWIG_From_int(static_cast< int >(13)));
23094 SWIG_Python_SetConstant(d
, "STC_KEY_ADD",SWIG_From_int(static_cast< int >(310)));
23095 SWIG_Python_SetConstant(d
, "STC_KEY_SUBTRACT",SWIG_From_int(static_cast< int >(311)));
23096 SWIG_Python_SetConstant(d
, "STC_KEY_DIVIDE",SWIG_From_int(static_cast< int >(312)));
23097 SWIG_Python_SetConstant(d
, "STC_SCMOD_NORM",SWIG_From_int(static_cast< int >(0)));
23098 SWIG_Python_SetConstant(d
, "STC_SCMOD_SHIFT",SWIG_From_int(static_cast< int >(1)));
23099 SWIG_Python_SetConstant(d
, "STC_SCMOD_CTRL",SWIG_From_int(static_cast< int >(2)));
23100 SWIG_Python_SetConstant(d
, "STC_SCMOD_ALT",SWIG_From_int(static_cast< int >(4)));
23101 SWIG_Python_SetConstant(d
, "STC_LEX_CONTAINER",SWIG_From_int(static_cast< int >(0)));
23102 SWIG_Python_SetConstant(d
, "STC_LEX_NULL",SWIG_From_int(static_cast< int >(1)));
23103 SWIG_Python_SetConstant(d
, "STC_LEX_PYTHON",SWIG_From_int(static_cast< int >(2)));
23104 SWIG_Python_SetConstant(d
, "STC_LEX_CPP",SWIG_From_int(static_cast< int >(3)));
23105 SWIG_Python_SetConstant(d
, "STC_LEX_HTML",SWIG_From_int(static_cast< int >(4)));
23106 SWIG_Python_SetConstant(d
, "STC_LEX_XML",SWIG_From_int(static_cast< int >(5)));
23107 SWIG_Python_SetConstant(d
, "STC_LEX_PERL",SWIG_From_int(static_cast< int >(6)));
23108 SWIG_Python_SetConstant(d
, "STC_LEX_SQL",SWIG_From_int(static_cast< int >(7)));
23109 SWIG_Python_SetConstant(d
, "STC_LEX_VB",SWIG_From_int(static_cast< int >(8)));
23110 SWIG_Python_SetConstant(d
, "STC_LEX_PROPERTIES",SWIG_From_int(static_cast< int >(9)));
23111 SWIG_Python_SetConstant(d
, "STC_LEX_ERRORLIST",SWIG_From_int(static_cast< int >(10)));
23112 SWIG_Python_SetConstant(d
, "STC_LEX_MAKEFILE",SWIG_From_int(static_cast< int >(11)));
23113 SWIG_Python_SetConstant(d
, "STC_LEX_BATCH",SWIG_From_int(static_cast< int >(12)));
23114 SWIG_Python_SetConstant(d
, "STC_LEX_XCODE",SWIG_From_int(static_cast< int >(13)));
23115 SWIG_Python_SetConstant(d
, "STC_LEX_LATEX",SWIG_From_int(static_cast< int >(14)));
23116 SWIG_Python_SetConstant(d
, "STC_LEX_LUA",SWIG_From_int(static_cast< int >(15)));
23117 SWIG_Python_SetConstant(d
, "STC_LEX_DIFF",SWIG_From_int(static_cast< int >(16)));
23118 SWIG_Python_SetConstant(d
, "STC_LEX_CONF",SWIG_From_int(static_cast< int >(17)));
23119 SWIG_Python_SetConstant(d
, "STC_LEX_PASCAL",SWIG_From_int(static_cast< int >(18)));
23120 SWIG_Python_SetConstant(d
, "STC_LEX_AVE",SWIG_From_int(static_cast< int >(19)));
23121 SWIG_Python_SetConstant(d
, "STC_LEX_ADA",SWIG_From_int(static_cast< int >(20)));
23122 SWIG_Python_SetConstant(d
, "STC_LEX_LISP",SWIG_From_int(static_cast< int >(21)));
23123 SWIG_Python_SetConstant(d
, "STC_LEX_RUBY",SWIG_From_int(static_cast< int >(22)));
23124 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFEL",SWIG_From_int(static_cast< int >(23)));
23125 SWIG_Python_SetConstant(d
, "STC_LEX_EIFFELKW",SWIG_From_int(static_cast< int >(24)));
23126 SWIG_Python_SetConstant(d
, "STC_LEX_TCL",SWIG_From_int(static_cast< int >(25)));
23127 SWIG_Python_SetConstant(d
, "STC_LEX_NNCRONTAB",SWIG_From_int(static_cast< int >(26)));
23128 SWIG_Python_SetConstant(d
, "STC_LEX_BULLANT",SWIG_From_int(static_cast< int >(27)));
23129 SWIG_Python_SetConstant(d
, "STC_LEX_VBSCRIPT",SWIG_From_int(static_cast< int >(28)));
23130 SWIG_Python_SetConstant(d
, "STC_LEX_BAAN",SWIG_From_int(static_cast< int >(31)));
23131 SWIG_Python_SetConstant(d
, "STC_LEX_MATLAB",SWIG_From_int(static_cast< int >(32)));
23132 SWIG_Python_SetConstant(d
, "STC_LEX_SCRIPTOL",SWIG_From_int(static_cast< int >(33)));
23133 SWIG_Python_SetConstant(d
, "STC_LEX_ASM",SWIG_From_int(static_cast< int >(34)));
23134 SWIG_Python_SetConstant(d
, "STC_LEX_CPPNOCASE",SWIG_From_int(static_cast< int >(35)));
23135 SWIG_Python_SetConstant(d
, "STC_LEX_FORTRAN",SWIG_From_int(static_cast< int >(36)));
23136 SWIG_Python_SetConstant(d
, "STC_LEX_F77",SWIG_From_int(static_cast< int >(37)));
23137 SWIG_Python_SetConstant(d
, "STC_LEX_CSS",SWIG_From_int(static_cast< int >(38)));
23138 SWIG_Python_SetConstant(d
, "STC_LEX_POV",SWIG_From_int(static_cast< int >(39)));
23139 SWIG_Python_SetConstant(d
, "STC_LEX_LOUT",SWIG_From_int(static_cast< int >(40)));
23140 SWIG_Python_SetConstant(d
, "STC_LEX_ESCRIPT",SWIG_From_int(static_cast< int >(41)));
23141 SWIG_Python_SetConstant(d
, "STC_LEX_PS",SWIG_From_int(static_cast< int >(42)));
23142 SWIG_Python_SetConstant(d
, "STC_LEX_NSIS",SWIG_From_int(static_cast< int >(43)));
23143 SWIG_Python_SetConstant(d
, "STC_LEX_MMIXAL",SWIG_From_int(static_cast< int >(44)));
23144 SWIG_Python_SetConstant(d
, "STC_LEX_CLW",SWIG_From_int(static_cast< int >(45)));
23145 SWIG_Python_SetConstant(d
, "STC_LEX_CLWNOCASE",SWIG_From_int(static_cast< int >(46)));
23146 SWIG_Python_SetConstant(d
, "STC_LEX_LOT",SWIG_From_int(static_cast< int >(47)));
23147 SWIG_Python_SetConstant(d
, "STC_LEX_YAML",SWIG_From_int(static_cast< int >(48)));
23148 SWIG_Python_SetConstant(d
, "STC_LEX_TEX",SWIG_From_int(static_cast< int >(49)));
23149 SWIG_Python_SetConstant(d
, "STC_LEX_METAPOST",SWIG_From_int(static_cast< int >(50)));
23150 SWIG_Python_SetConstant(d
, "STC_LEX_POWERBASIC",SWIG_From_int(static_cast< int >(51)));
23151 SWIG_Python_SetConstant(d
, "STC_LEX_FORTH",SWIG_From_int(static_cast< int >(52)));
23152 SWIG_Python_SetConstant(d
, "STC_LEX_ERLANG",SWIG_From_int(static_cast< int >(53)));
23153 SWIG_Python_SetConstant(d
, "STC_LEX_OCTAVE",SWIG_From_int(static_cast< int >(54)));
23154 SWIG_Python_SetConstant(d
, "STC_LEX_MSSQL",SWIG_From_int(static_cast< int >(55)));
23155 SWIG_Python_SetConstant(d
, "STC_LEX_VERILOG",SWIG_From_int(static_cast< int >(56)));
23156 SWIG_Python_SetConstant(d
, "STC_LEX_KIX",SWIG_From_int(static_cast< int >(57)));
23157 SWIG_Python_SetConstant(d
, "STC_LEX_GUI4CLI",SWIG_From_int(static_cast< int >(58)));
23158 SWIG_Python_SetConstant(d
, "STC_LEX_SPECMAN",SWIG_From_int(static_cast< int >(59)));
23159 SWIG_Python_SetConstant(d
, "STC_LEX_AU3",SWIG_From_int(static_cast< int >(60)));
23160 SWIG_Python_SetConstant(d
, "STC_LEX_APDL",SWIG_From_int(static_cast< int >(61)));
23161 SWIG_Python_SetConstant(d
, "STC_LEX_BASH",SWIG_From_int(static_cast< int >(62)));
23162 SWIG_Python_SetConstant(d
, "STC_LEX_ASN1",SWIG_From_int(static_cast< int >(63)));
23163 SWIG_Python_SetConstant(d
, "STC_LEX_VHDL",SWIG_From_int(static_cast< int >(64)));
23164 SWIG_Python_SetConstant(d
, "STC_LEX_CAML",SWIG_From_int(static_cast< int >(65)));
23165 SWIG_Python_SetConstant(d
, "STC_LEX_BLITZBASIC",SWIG_From_int(static_cast< int >(66)));
23166 SWIG_Python_SetConstant(d
, "STC_LEX_PUREBASIC",SWIG_From_int(static_cast< int >(67)));
23167 SWIG_Python_SetConstant(d
, "STC_LEX_HASKELL",SWIG_From_int(static_cast< int >(68)));
23168 SWIG_Python_SetConstant(d
, "STC_LEX_PHPSCRIPT",SWIG_From_int(static_cast< int >(69)));
23169 SWIG_Python_SetConstant(d
, "STC_LEX_TADS3",SWIG_From_int(static_cast< int >(70)));
23170 SWIG_Python_SetConstant(d
, "STC_LEX_REBOL",SWIG_From_int(static_cast< int >(71)));
23171 SWIG_Python_SetConstant(d
, "STC_LEX_SMALLTALK",SWIG_From_int(static_cast< int >(72)));
23172 SWIG_Python_SetConstant(d
, "STC_LEX_FLAGSHIP",SWIG_From_int(static_cast< int >(73)));
23173 SWIG_Python_SetConstant(d
, "STC_LEX_CSOUND",SWIG_From_int(static_cast< int >(74)));
23174 SWIG_Python_SetConstant(d
, "STC_LEX_FREEBASIC",SWIG_From_int(static_cast< int >(75)));
23175 SWIG_Python_SetConstant(d
, "STC_LEX_ASP",SWIG_From_int(static_cast< int >(29)));
23176 SWIG_Python_SetConstant(d
, "STC_LEX_PHP",SWIG_From_int(static_cast< int >(30)));
23177 SWIG_Python_SetConstant(d
, "STC_LEX_AUTOMATIC",SWIG_From_int(static_cast< int >(1000)));
23178 SWIG_Python_SetConstant(d
, "STC_P_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23179 SWIG_Python_SetConstant(d
, "STC_P_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23180 SWIG_Python_SetConstant(d
, "STC_P_NUMBER",SWIG_From_int(static_cast< int >(2)));
23181 SWIG_Python_SetConstant(d
, "STC_P_STRING",SWIG_From_int(static_cast< int >(3)));
23182 SWIG_Python_SetConstant(d
, "STC_P_CHARACTER",SWIG_From_int(static_cast< int >(4)));
23183 SWIG_Python_SetConstant(d
, "STC_P_WORD",SWIG_From_int(static_cast< int >(5)));
23184 SWIG_Python_SetConstant(d
, "STC_P_TRIPLE",SWIG_From_int(static_cast< int >(6)));
23185 SWIG_Python_SetConstant(d
, "STC_P_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(7)));
23186 SWIG_Python_SetConstant(d
, "STC_P_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23187 SWIG_Python_SetConstant(d
, "STC_P_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23188 SWIG_Python_SetConstant(d
, "STC_P_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23189 SWIG_Python_SetConstant(d
, "STC_P_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23190 SWIG_Python_SetConstant(d
, "STC_P_COMMENTBLOCK",SWIG_From_int(static_cast< int >(12)));
23191 SWIG_Python_SetConstant(d
, "STC_P_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23192 SWIG_Python_SetConstant(d
, "STC_P_WORD2",SWIG_From_int(static_cast< int >(14)));
23193 SWIG_Python_SetConstant(d
, "STC_P_DECORATOR",SWIG_From_int(static_cast< int >(15)));
23194 SWIG_Python_SetConstant(d
, "STC_C_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23195 SWIG_Python_SetConstant(d
, "STC_C_COMMENT",SWIG_From_int(static_cast< int >(1)));
23196 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23197 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23198 SWIG_Python_SetConstant(d
, "STC_C_NUMBER",SWIG_From_int(static_cast< int >(4)));
23199 SWIG_Python_SetConstant(d
, "STC_C_WORD",SWIG_From_int(static_cast< int >(5)));
23200 SWIG_Python_SetConstant(d
, "STC_C_STRING",SWIG_From_int(static_cast< int >(6)));
23201 SWIG_Python_SetConstant(d
, "STC_C_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23202 SWIG_Python_SetConstant(d
, "STC_C_UUID",SWIG_From_int(static_cast< int >(8)));
23203 SWIG_Python_SetConstant(d
, "STC_C_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23204 SWIG_Python_SetConstant(d
, "STC_C_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23205 SWIG_Python_SetConstant(d
, "STC_C_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23206 SWIG_Python_SetConstant(d
, "STC_C_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23207 SWIG_Python_SetConstant(d
, "STC_C_VERBATIM",SWIG_From_int(static_cast< int >(13)));
23208 SWIG_Python_SetConstant(d
, "STC_C_REGEX",SWIG_From_int(static_cast< int >(14)));
23209 SWIG_Python_SetConstant(d
, "STC_C_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
23210 SWIG_Python_SetConstant(d
, "STC_C_WORD2",SWIG_From_int(static_cast< int >(16)));
23211 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
23212 SWIG_Python_SetConstant(d
, "STC_C_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
23213 SWIG_Python_SetConstant(d
, "STC_C_GLOBALCLASS",SWIG_From_int(static_cast< int >(19)));
23214 SWIG_Python_SetConstant(d
, "STC_H_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23215 SWIG_Python_SetConstant(d
, "STC_H_TAG",SWIG_From_int(static_cast< int >(1)));
23216 SWIG_Python_SetConstant(d
, "STC_H_TAGUNKNOWN",SWIG_From_int(static_cast< int >(2)));
23217 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTE",SWIG_From_int(static_cast< int >(3)));
23218 SWIG_Python_SetConstant(d
, "STC_H_ATTRIBUTEUNKNOWN",SWIG_From_int(static_cast< int >(4)));
23219 SWIG_Python_SetConstant(d
, "STC_H_NUMBER",SWIG_From_int(static_cast< int >(5)));
23220 SWIG_Python_SetConstant(d
, "STC_H_DOUBLESTRING",SWIG_From_int(static_cast< int >(6)));
23221 SWIG_Python_SetConstant(d
, "STC_H_SINGLESTRING",SWIG_From_int(static_cast< int >(7)));
23222 SWIG_Python_SetConstant(d
, "STC_H_OTHER",SWIG_From_int(static_cast< int >(8)));
23223 SWIG_Python_SetConstant(d
, "STC_H_COMMENT",SWIG_From_int(static_cast< int >(9)));
23224 SWIG_Python_SetConstant(d
, "STC_H_ENTITY",SWIG_From_int(static_cast< int >(10)));
23225 SWIG_Python_SetConstant(d
, "STC_H_TAGEND",SWIG_From_int(static_cast< int >(11)));
23226 SWIG_Python_SetConstant(d
, "STC_H_XMLSTART",SWIG_From_int(static_cast< int >(12)));
23227 SWIG_Python_SetConstant(d
, "STC_H_XMLEND",SWIG_From_int(static_cast< int >(13)));
23228 SWIG_Python_SetConstant(d
, "STC_H_SCRIPT",SWIG_From_int(static_cast< int >(14)));
23229 SWIG_Python_SetConstant(d
, "STC_H_ASP",SWIG_From_int(static_cast< int >(15)));
23230 SWIG_Python_SetConstant(d
, "STC_H_ASPAT",SWIG_From_int(static_cast< int >(16)));
23231 SWIG_Python_SetConstant(d
, "STC_H_CDATA",SWIG_From_int(static_cast< int >(17)));
23232 SWIG_Python_SetConstant(d
, "STC_H_QUESTION",SWIG_From_int(static_cast< int >(18)));
23233 SWIG_Python_SetConstant(d
, "STC_H_VALUE",SWIG_From_int(static_cast< int >(19)));
23234 SWIG_Python_SetConstant(d
, "STC_H_XCCOMMENT",SWIG_From_int(static_cast< int >(20)));
23235 SWIG_Python_SetConstant(d
, "STC_H_SGML_DEFAULT",SWIG_From_int(static_cast< int >(21)));
23236 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMAND",SWIG_From_int(static_cast< int >(22)));
23237 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM",SWIG_From_int(static_cast< int >(23)));
23238 SWIG_Python_SetConstant(d
, "STC_H_SGML_DOUBLESTRING",SWIG_From_int(static_cast< int >(24)));
23239 SWIG_Python_SetConstant(d
, "STC_H_SGML_SIMPLESTRING",SWIG_From_int(static_cast< int >(25)));
23240 SWIG_Python_SetConstant(d
, "STC_H_SGML_ERROR",SWIG_From_int(static_cast< int >(26)));
23241 SWIG_Python_SetConstant(d
, "STC_H_SGML_SPECIAL",SWIG_From_int(static_cast< int >(27)));
23242 SWIG_Python_SetConstant(d
, "STC_H_SGML_ENTITY",SWIG_From_int(static_cast< int >(28)));
23243 SWIG_Python_SetConstant(d
, "STC_H_SGML_COMMENT",SWIG_From_int(static_cast< int >(29)));
23244 SWIG_Python_SetConstant(d
, "STC_H_SGML_1ST_PARAM_COMMENT",SWIG_From_int(static_cast< int >(30)));
23245 SWIG_Python_SetConstant(d
, "STC_H_SGML_BLOCK_DEFAULT",SWIG_From_int(static_cast< int >(31)));
23246 SWIG_Python_SetConstant(d
, "STC_HJ_START",SWIG_From_int(static_cast< int >(40)));
23247 SWIG_Python_SetConstant(d
, "STC_HJ_DEFAULT",SWIG_From_int(static_cast< int >(41)));
23248 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENT",SWIG_From_int(static_cast< int >(42)));
23249 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTLINE",SWIG_From_int(static_cast< int >(43)));
23250 SWIG_Python_SetConstant(d
, "STC_HJ_COMMENTDOC",SWIG_From_int(static_cast< int >(44)));
23251 SWIG_Python_SetConstant(d
, "STC_HJ_NUMBER",SWIG_From_int(static_cast< int >(45)));
23252 SWIG_Python_SetConstant(d
, "STC_HJ_WORD",SWIG_From_int(static_cast< int >(46)));
23253 SWIG_Python_SetConstant(d
, "STC_HJ_KEYWORD",SWIG_From_int(static_cast< int >(47)));
23254 SWIG_Python_SetConstant(d
, "STC_HJ_DOUBLESTRING",SWIG_From_int(static_cast< int >(48)));
23255 SWIG_Python_SetConstant(d
, "STC_HJ_SINGLESTRING",SWIG_From_int(static_cast< int >(49)));
23256 SWIG_Python_SetConstant(d
, "STC_HJ_SYMBOLS",SWIG_From_int(static_cast< int >(50)));
23257 SWIG_Python_SetConstant(d
, "STC_HJ_STRINGEOL",SWIG_From_int(static_cast< int >(51)));
23258 SWIG_Python_SetConstant(d
, "STC_HJ_REGEX",SWIG_From_int(static_cast< int >(52)));
23259 SWIG_Python_SetConstant(d
, "STC_HJA_START",SWIG_From_int(static_cast< int >(55)));
23260 SWIG_Python_SetConstant(d
, "STC_HJA_DEFAULT",SWIG_From_int(static_cast< int >(56)));
23261 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENT",SWIG_From_int(static_cast< int >(57)));
23262 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTLINE",SWIG_From_int(static_cast< int >(58)));
23263 SWIG_Python_SetConstant(d
, "STC_HJA_COMMENTDOC",SWIG_From_int(static_cast< int >(59)));
23264 SWIG_Python_SetConstant(d
, "STC_HJA_NUMBER",SWIG_From_int(static_cast< int >(60)));
23265 SWIG_Python_SetConstant(d
, "STC_HJA_WORD",SWIG_From_int(static_cast< int >(61)));
23266 SWIG_Python_SetConstant(d
, "STC_HJA_KEYWORD",SWIG_From_int(static_cast< int >(62)));
23267 SWIG_Python_SetConstant(d
, "STC_HJA_DOUBLESTRING",SWIG_From_int(static_cast< int >(63)));
23268 SWIG_Python_SetConstant(d
, "STC_HJA_SINGLESTRING",SWIG_From_int(static_cast< int >(64)));
23269 SWIG_Python_SetConstant(d
, "STC_HJA_SYMBOLS",SWIG_From_int(static_cast< int >(65)));
23270 SWIG_Python_SetConstant(d
, "STC_HJA_STRINGEOL",SWIG_From_int(static_cast< int >(66)));
23271 SWIG_Python_SetConstant(d
, "STC_HJA_REGEX",SWIG_From_int(static_cast< int >(67)));
23272 SWIG_Python_SetConstant(d
, "STC_HB_START",SWIG_From_int(static_cast< int >(70)));
23273 SWIG_Python_SetConstant(d
, "STC_HB_DEFAULT",SWIG_From_int(static_cast< int >(71)));
23274 SWIG_Python_SetConstant(d
, "STC_HB_COMMENTLINE",SWIG_From_int(static_cast< int >(72)));
23275 SWIG_Python_SetConstant(d
, "STC_HB_NUMBER",SWIG_From_int(static_cast< int >(73)));
23276 SWIG_Python_SetConstant(d
, "STC_HB_WORD",SWIG_From_int(static_cast< int >(74)));
23277 SWIG_Python_SetConstant(d
, "STC_HB_STRING",SWIG_From_int(static_cast< int >(75)));
23278 SWIG_Python_SetConstant(d
, "STC_HB_IDENTIFIER",SWIG_From_int(static_cast< int >(76)));
23279 SWIG_Python_SetConstant(d
, "STC_HB_STRINGEOL",SWIG_From_int(static_cast< int >(77)));
23280 SWIG_Python_SetConstant(d
, "STC_HBA_START",SWIG_From_int(static_cast< int >(80)));
23281 SWIG_Python_SetConstant(d
, "STC_HBA_DEFAULT",SWIG_From_int(static_cast< int >(81)));
23282 SWIG_Python_SetConstant(d
, "STC_HBA_COMMENTLINE",SWIG_From_int(static_cast< int >(82)));
23283 SWIG_Python_SetConstant(d
, "STC_HBA_NUMBER",SWIG_From_int(static_cast< int >(83)));
23284 SWIG_Python_SetConstant(d
, "STC_HBA_WORD",SWIG_From_int(static_cast< int >(84)));
23285 SWIG_Python_SetConstant(d
, "STC_HBA_STRING",SWIG_From_int(static_cast< int >(85)));
23286 SWIG_Python_SetConstant(d
, "STC_HBA_IDENTIFIER",SWIG_From_int(static_cast< int >(86)));
23287 SWIG_Python_SetConstant(d
, "STC_HBA_STRINGEOL",SWIG_From_int(static_cast< int >(87)));
23288 SWIG_Python_SetConstant(d
, "STC_HP_START",SWIG_From_int(static_cast< int >(90)));
23289 SWIG_Python_SetConstant(d
, "STC_HP_DEFAULT",SWIG_From_int(static_cast< int >(91)));
23290 SWIG_Python_SetConstant(d
, "STC_HP_COMMENTLINE",SWIG_From_int(static_cast< int >(92)));
23291 SWIG_Python_SetConstant(d
, "STC_HP_NUMBER",SWIG_From_int(static_cast< int >(93)));
23292 SWIG_Python_SetConstant(d
, "STC_HP_STRING",SWIG_From_int(static_cast< int >(94)));
23293 SWIG_Python_SetConstant(d
, "STC_HP_CHARACTER",SWIG_From_int(static_cast< int >(95)));
23294 SWIG_Python_SetConstant(d
, "STC_HP_WORD",SWIG_From_int(static_cast< int >(96)));
23295 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLE",SWIG_From_int(static_cast< int >(97)));
23296 SWIG_Python_SetConstant(d
, "STC_HP_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(98)));
23297 SWIG_Python_SetConstant(d
, "STC_HP_CLASSNAME",SWIG_From_int(static_cast< int >(99)));
23298 SWIG_Python_SetConstant(d
, "STC_HP_DEFNAME",SWIG_From_int(static_cast< int >(100)));
23299 SWIG_Python_SetConstant(d
, "STC_HP_OPERATOR",SWIG_From_int(static_cast< int >(101)));
23300 SWIG_Python_SetConstant(d
, "STC_HP_IDENTIFIER",SWIG_From_int(static_cast< int >(102)));
23301 SWIG_Python_SetConstant(d
, "STC_HPHP_COMPLEX_VARIABLE",SWIG_From_int(static_cast< int >(104)));
23302 SWIG_Python_SetConstant(d
, "STC_HPA_START",SWIG_From_int(static_cast< int >(105)));
23303 SWIG_Python_SetConstant(d
, "STC_HPA_DEFAULT",SWIG_From_int(static_cast< int >(106)));
23304 SWIG_Python_SetConstant(d
, "STC_HPA_COMMENTLINE",SWIG_From_int(static_cast< int >(107)));
23305 SWIG_Python_SetConstant(d
, "STC_HPA_NUMBER",SWIG_From_int(static_cast< int >(108)));
23306 SWIG_Python_SetConstant(d
, "STC_HPA_STRING",SWIG_From_int(static_cast< int >(109)));
23307 SWIG_Python_SetConstant(d
, "STC_HPA_CHARACTER",SWIG_From_int(static_cast< int >(110)));
23308 SWIG_Python_SetConstant(d
, "STC_HPA_WORD",SWIG_From_int(static_cast< int >(111)));
23309 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLE",SWIG_From_int(static_cast< int >(112)));
23310 SWIG_Python_SetConstant(d
, "STC_HPA_TRIPLEDOUBLE",SWIG_From_int(static_cast< int >(113)));
23311 SWIG_Python_SetConstant(d
, "STC_HPA_CLASSNAME",SWIG_From_int(static_cast< int >(114)));
23312 SWIG_Python_SetConstant(d
, "STC_HPA_DEFNAME",SWIG_From_int(static_cast< int >(115)));
23313 SWIG_Python_SetConstant(d
, "STC_HPA_OPERATOR",SWIG_From_int(static_cast< int >(116)));
23314 SWIG_Python_SetConstant(d
, "STC_HPA_IDENTIFIER",SWIG_From_int(static_cast< int >(117)));
23315 SWIG_Python_SetConstant(d
, "STC_HPHP_DEFAULT",SWIG_From_int(static_cast< int >(118)));
23316 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING",SWIG_From_int(static_cast< int >(119)));
23317 SWIG_Python_SetConstant(d
, "STC_HPHP_SIMPLESTRING",SWIG_From_int(static_cast< int >(120)));
23318 SWIG_Python_SetConstant(d
, "STC_HPHP_WORD",SWIG_From_int(static_cast< int >(121)));
23319 SWIG_Python_SetConstant(d
, "STC_HPHP_NUMBER",SWIG_From_int(static_cast< int >(122)));
23320 SWIG_Python_SetConstant(d
, "STC_HPHP_VARIABLE",SWIG_From_int(static_cast< int >(123)));
23321 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENT",SWIG_From_int(static_cast< int >(124)));
23322 SWIG_Python_SetConstant(d
, "STC_HPHP_COMMENTLINE",SWIG_From_int(static_cast< int >(125)));
23323 SWIG_Python_SetConstant(d
, "STC_HPHP_HSTRING_VARIABLE",SWIG_From_int(static_cast< int >(126)));
23324 SWIG_Python_SetConstant(d
, "STC_HPHP_OPERATOR",SWIG_From_int(static_cast< int >(127)));
23325 SWIG_Python_SetConstant(d
, "STC_PL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23326 SWIG_Python_SetConstant(d
, "STC_PL_ERROR",SWIG_From_int(static_cast< int >(1)));
23327 SWIG_Python_SetConstant(d
, "STC_PL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23328 SWIG_Python_SetConstant(d
, "STC_PL_POD",SWIG_From_int(static_cast< int >(3)));
23329 SWIG_Python_SetConstant(d
, "STC_PL_NUMBER",SWIG_From_int(static_cast< int >(4)));
23330 SWIG_Python_SetConstant(d
, "STC_PL_WORD",SWIG_From_int(static_cast< int >(5)));
23331 SWIG_Python_SetConstant(d
, "STC_PL_STRING",SWIG_From_int(static_cast< int >(6)));
23332 SWIG_Python_SetConstant(d
, "STC_PL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23333 SWIG_Python_SetConstant(d
, "STC_PL_PUNCTUATION",SWIG_From_int(static_cast< int >(8)));
23334 SWIG_Python_SetConstant(d
, "STC_PL_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23335 SWIG_Python_SetConstant(d
, "STC_PL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23336 SWIG_Python_SetConstant(d
, "STC_PL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23337 SWIG_Python_SetConstant(d
, "STC_PL_SCALAR",SWIG_From_int(static_cast< int >(12)));
23338 SWIG_Python_SetConstant(d
, "STC_PL_ARRAY",SWIG_From_int(static_cast< int >(13)));
23339 SWIG_Python_SetConstant(d
, "STC_PL_HASH",SWIG_From_int(static_cast< int >(14)));
23340 SWIG_Python_SetConstant(d
, "STC_PL_SYMBOLTABLE",SWIG_From_int(static_cast< int >(15)));
23341 SWIG_Python_SetConstant(d
, "STC_PL_VARIABLE_INDEXER",SWIG_From_int(static_cast< int >(16)));
23342 SWIG_Python_SetConstant(d
, "STC_PL_REGEX",SWIG_From_int(static_cast< int >(17)));
23343 SWIG_Python_SetConstant(d
, "STC_PL_REGSUBST",SWIG_From_int(static_cast< int >(18)));
23344 SWIG_Python_SetConstant(d
, "STC_PL_LONGQUOTE",SWIG_From_int(static_cast< int >(19)));
23345 SWIG_Python_SetConstant(d
, "STC_PL_BACKTICKS",SWIG_From_int(static_cast< int >(20)));
23346 SWIG_Python_SetConstant(d
, "STC_PL_DATASECTION",SWIG_From_int(static_cast< int >(21)));
23347 SWIG_Python_SetConstant(d
, "STC_PL_HERE_DELIM",SWIG_From_int(static_cast< int >(22)));
23348 SWIG_Python_SetConstant(d
, "STC_PL_HERE_Q",SWIG_From_int(static_cast< int >(23)));
23349 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QQ",SWIG_From_int(static_cast< int >(24)));
23350 SWIG_Python_SetConstant(d
, "STC_PL_HERE_QX",SWIG_From_int(static_cast< int >(25)));
23351 SWIG_Python_SetConstant(d
, "STC_PL_STRING_Q",SWIG_From_int(static_cast< int >(26)));
23352 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QQ",SWIG_From_int(static_cast< int >(27)));
23353 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QX",SWIG_From_int(static_cast< int >(28)));
23354 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QR",SWIG_From_int(static_cast< int >(29)));
23355 SWIG_Python_SetConstant(d
, "STC_PL_STRING_QW",SWIG_From_int(static_cast< int >(30)));
23356 SWIG_Python_SetConstant(d
, "STC_PL_POD_VERB",SWIG_From_int(static_cast< int >(31)));
23357 SWIG_Python_SetConstant(d
, "STC_RB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23358 SWIG_Python_SetConstant(d
, "STC_RB_ERROR",SWIG_From_int(static_cast< int >(1)));
23359 SWIG_Python_SetConstant(d
, "STC_RB_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23360 SWIG_Python_SetConstant(d
, "STC_RB_POD",SWIG_From_int(static_cast< int >(3)));
23361 SWIG_Python_SetConstant(d
, "STC_RB_NUMBER",SWIG_From_int(static_cast< int >(4)));
23362 SWIG_Python_SetConstant(d
, "STC_RB_WORD",SWIG_From_int(static_cast< int >(5)));
23363 SWIG_Python_SetConstant(d
, "STC_RB_STRING",SWIG_From_int(static_cast< int >(6)));
23364 SWIG_Python_SetConstant(d
, "STC_RB_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23365 SWIG_Python_SetConstant(d
, "STC_RB_CLASSNAME",SWIG_From_int(static_cast< int >(8)));
23366 SWIG_Python_SetConstant(d
, "STC_RB_DEFNAME",SWIG_From_int(static_cast< int >(9)));
23367 SWIG_Python_SetConstant(d
, "STC_RB_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23368 SWIG_Python_SetConstant(d
, "STC_RB_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23369 SWIG_Python_SetConstant(d
, "STC_RB_REGEX",SWIG_From_int(static_cast< int >(12)));
23370 SWIG_Python_SetConstant(d
, "STC_RB_GLOBAL",SWIG_From_int(static_cast< int >(13)));
23371 SWIG_Python_SetConstant(d
, "STC_RB_SYMBOL",SWIG_From_int(static_cast< int >(14)));
23372 SWIG_Python_SetConstant(d
, "STC_RB_MODULE_NAME",SWIG_From_int(static_cast< int >(15)));
23373 SWIG_Python_SetConstant(d
, "STC_RB_INSTANCE_VAR",SWIG_From_int(static_cast< int >(16)));
23374 SWIG_Python_SetConstant(d
, "STC_RB_CLASS_VAR",SWIG_From_int(static_cast< int >(17)));
23375 SWIG_Python_SetConstant(d
, "STC_RB_BACKTICKS",SWIG_From_int(static_cast< int >(18)));
23376 SWIG_Python_SetConstant(d
, "STC_RB_DATASECTION",SWIG_From_int(static_cast< int >(19)));
23377 SWIG_Python_SetConstant(d
, "STC_RB_HERE_DELIM",SWIG_From_int(static_cast< int >(20)));
23378 SWIG_Python_SetConstant(d
, "STC_RB_HERE_Q",SWIG_From_int(static_cast< int >(21)));
23379 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QQ",SWIG_From_int(static_cast< int >(22)));
23380 SWIG_Python_SetConstant(d
, "STC_RB_HERE_QX",SWIG_From_int(static_cast< int >(23)));
23381 SWIG_Python_SetConstant(d
, "STC_RB_STRING_Q",SWIG_From_int(static_cast< int >(24)));
23382 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QQ",SWIG_From_int(static_cast< int >(25)));
23383 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QX",SWIG_From_int(static_cast< int >(26)));
23384 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QR",SWIG_From_int(static_cast< int >(27)));
23385 SWIG_Python_SetConstant(d
, "STC_RB_STRING_QW",SWIG_From_int(static_cast< int >(28)));
23386 SWIG_Python_SetConstant(d
, "STC_RB_WORD_DEMOTED",SWIG_From_int(static_cast< int >(29)));
23387 SWIG_Python_SetConstant(d
, "STC_RB_STDIN",SWIG_From_int(static_cast< int >(30)));
23388 SWIG_Python_SetConstant(d
, "STC_RB_STDOUT",SWIG_From_int(static_cast< int >(31)));
23389 SWIG_Python_SetConstant(d
, "STC_RB_STDERR",SWIG_From_int(static_cast< int >(40)));
23390 SWIG_Python_SetConstant(d
, "STC_RB_UPPER_BOUND",SWIG_From_int(static_cast< int >(41)));
23391 SWIG_Python_SetConstant(d
, "STC_B_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23392 SWIG_Python_SetConstant(d
, "STC_B_COMMENT",SWIG_From_int(static_cast< int >(1)));
23393 SWIG_Python_SetConstant(d
, "STC_B_NUMBER",SWIG_From_int(static_cast< int >(2)));
23394 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23395 SWIG_Python_SetConstant(d
, "STC_B_STRING",SWIG_From_int(static_cast< int >(4)));
23396 SWIG_Python_SetConstant(d
, "STC_B_PREPROCESSOR",SWIG_From_int(static_cast< int >(5)));
23397 SWIG_Python_SetConstant(d
, "STC_B_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23398 SWIG_Python_SetConstant(d
, "STC_B_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23399 SWIG_Python_SetConstant(d
, "STC_B_DATE",SWIG_From_int(static_cast< int >(8)));
23400 SWIG_Python_SetConstant(d
, "STC_B_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23401 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD2",SWIG_From_int(static_cast< int >(10)));
23402 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD3",SWIG_From_int(static_cast< int >(11)));
23403 SWIG_Python_SetConstant(d
, "STC_B_KEYWORD4",SWIG_From_int(static_cast< int >(12)));
23404 SWIG_Python_SetConstant(d
, "STC_B_CONSTANT",SWIG_From_int(static_cast< int >(13)));
23405 SWIG_Python_SetConstant(d
, "STC_B_ASM",SWIG_From_int(static_cast< int >(14)));
23406 SWIG_Python_SetConstant(d
, "STC_B_LABEL",SWIG_From_int(static_cast< int >(15)));
23407 SWIG_Python_SetConstant(d
, "STC_B_ERROR",SWIG_From_int(static_cast< int >(16)));
23408 SWIG_Python_SetConstant(d
, "STC_B_HEXNUMBER",SWIG_From_int(static_cast< int >(17)));
23409 SWIG_Python_SetConstant(d
, "STC_B_BINNUMBER",SWIG_From_int(static_cast< int >(18)));
23410 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23411 SWIG_Python_SetConstant(d
, "STC_PROPS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23412 SWIG_Python_SetConstant(d
, "STC_PROPS_SECTION",SWIG_From_int(static_cast< int >(2)));
23413 SWIG_Python_SetConstant(d
, "STC_PROPS_ASSIGNMENT",SWIG_From_int(static_cast< int >(3)));
23414 SWIG_Python_SetConstant(d
, "STC_PROPS_DEFVAL",SWIG_From_int(static_cast< int >(4)));
23415 SWIG_Python_SetConstant(d
, "STC_L_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23416 SWIG_Python_SetConstant(d
, "STC_L_COMMAND",SWIG_From_int(static_cast< int >(1)));
23417 SWIG_Python_SetConstant(d
, "STC_L_TAG",SWIG_From_int(static_cast< int >(2)));
23418 SWIG_Python_SetConstant(d
, "STC_L_MATH",SWIG_From_int(static_cast< int >(3)));
23419 SWIG_Python_SetConstant(d
, "STC_L_COMMENT",SWIG_From_int(static_cast< int >(4)));
23420 SWIG_Python_SetConstant(d
, "STC_LUA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23421 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENT",SWIG_From_int(static_cast< int >(1)));
23422 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23423 SWIG_Python_SetConstant(d
, "STC_LUA_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23424 SWIG_Python_SetConstant(d
, "STC_LUA_NUMBER",SWIG_From_int(static_cast< int >(4)));
23425 SWIG_Python_SetConstant(d
, "STC_LUA_WORD",SWIG_From_int(static_cast< int >(5)));
23426 SWIG_Python_SetConstant(d
, "STC_LUA_STRING",SWIG_From_int(static_cast< int >(6)));
23427 SWIG_Python_SetConstant(d
, "STC_LUA_CHARACTER",SWIG_From_int(static_cast< int >(7)));
23428 SWIG_Python_SetConstant(d
, "STC_LUA_LITERALSTRING",SWIG_From_int(static_cast< int >(8)));
23429 SWIG_Python_SetConstant(d
, "STC_LUA_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23430 SWIG_Python_SetConstant(d
, "STC_LUA_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23431 SWIG_Python_SetConstant(d
, "STC_LUA_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23432 SWIG_Python_SetConstant(d
, "STC_LUA_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23433 SWIG_Python_SetConstant(d
, "STC_LUA_WORD2",SWIG_From_int(static_cast< int >(13)));
23434 SWIG_Python_SetConstant(d
, "STC_LUA_WORD3",SWIG_From_int(static_cast< int >(14)));
23435 SWIG_Python_SetConstant(d
, "STC_LUA_WORD4",SWIG_From_int(static_cast< int >(15)));
23436 SWIG_Python_SetConstant(d
, "STC_LUA_WORD5",SWIG_From_int(static_cast< int >(16)));
23437 SWIG_Python_SetConstant(d
, "STC_LUA_WORD6",SWIG_From_int(static_cast< int >(17)));
23438 SWIG_Python_SetConstant(d
, "STC_LUA_WORD7",SWIG_From_int(static_cast< int >(18)));
23439 SWIG_Python_SetConstant(d
, "STC_LUA_WORD8",SWIG_From_int(static_cast< int >(19)));
23440 SWIG_Python_SetConstant(d
, "STC_ERR_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23441 SWIG_Python_SetConstant(d
, "STC_ERR_PYTHON",SWIG_From_int(static_cast< int >(1)));
23442 SWIG_Python_SetConstant(d
, "STC_ERR_GCC",SWIG_From_int(static_cast< int >(2)));
23443 SWIG_Python_SetConstant(d
, "STC_ERR_MS",SWIG_From_int(static_cast< int >(3)));
23444 SWIG_Python_SetConstant(d
, "STC_ERR_CMD",SWIG_From_int(static_cast< int >(4)));
23445 SWIG_Python_SetConstant(d
, "STC_ERR_BORLAND",SWIG_From_int(static_cast< int >(5)));
23446 SWIG_Python_SetConstant(d
, "STC_ERR_PERL",SWIG_From_int(static_cast< int >(6)));
23447 SWIG_Python_SetConstant(d
, "STC_ERR_NET",SWIG_From_int(static_cast< int >(7)));
23448 SWIG_Python_SetConstant(d
, "STC_ERR_LUA",SWIG_From_int(static_cast< int >(8)));
23449 SWIG_Python_SetConstant(d
, "STC_ERR_CTAG",SWIG_From_int(static_cast< int >(9)));
23450 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_CHANGED",SWIG_From_int(static_cast< int >(10)));
23451 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_ADDITION",SWIG_From_int(static_cast< int >(11)));
23452 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_DELETION",SWIG_From_int(static_cast< int >(12)));
23453 SWIG_Python_SetConstant(d
, "STC_ERR_DIFF_MESSAGE",SWIG_From_int(static_cast< int >(13)));
23454 SWIG_Python_SetConstant(d
, "STC_ERR_PHP",SWIG_From_int(static_cast< int >(14)));
23455 SWIG_Python_SetConstant(d
, "STC_ERR_ELF",SWIG_From_int(static_cast< int >(15)));
23456 SWIG_Python_SetConstant(d
, "STC_ERR_IFC",SWIG_From_int(static_cast< int >(16)));
23457 SWIG_Python_SetConstant(d
, "STC_ERR_IFORT",SWIG_From_int(static_cast< int >(17)));
23458 SWIG_Python_SetConstant(d
, "STC_ERR_ABSF",SWIG_From_int(static_cast< int >(18)));
23459 SWIG_Python_SetConstant(d
, "STC_ERR_TIDY",SWIG_From_int(static_cast< int >(19)));
23460 SWIG_Python_SetConstant(d
, "STC_ERR_JAVA_STACK",SWIG_From_int(static_cast< int >(20)));
23461 SWIG_Python_SetConstant(d
, "STC_BAT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23462 SWIG_Python_SetConstant(d
, "STC_BAT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23463 SWIG_Python_SetConstant(d
, "STC_BAT_WORD",SWIG_From_int(static_cast< int >(2)));
23464 SWIG_Python_SetConstant(d
, "STC_BAT_LABEL",SWIG_From_int(static_cast< int >(3)));
23465 SWIG_Python_SetConstant(d
, "STC_BAT_HIDE",SWIG_From_int(static_cast< int >(4)));
23466 SWIG_Python_SetConstant(d
, "STC_BAT_COMMAND",SWIG_From_int(static_cast< int >(5)));
23467 SWIG_Python_SetConstant(d
, "STC_BAT_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23468 SWIG_Python_SetConstant(d
, "STC_BAT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23469 SWIG_Python_SetConstant(d
, "STC_MAKE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23470 SWIG_Python_SetConstant(d
, "STC_MAKE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23471 SWIG_Python_SetConstant(d
, "STC_MAKE_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23472 SWIG_Python_SetConstant(d
, "STC_MAKE_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23473 SWIG_Python_SetConstant(d
, "STC_MAKE_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23474 SWIG_Python_SetConstant(d
, "STC_MAKE_TARGET",SWIG_From_int(static_cast< int >(5)));
23475 SWIG_Python_SetConstant(d
, "STC_MAKE_IDEOL",SWIG_From_int(static_cast< int >(9)));
23476 SWIG_Python_SetConstant(d
, "STC_DIFF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23477 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23478 SWIG_Python_SetConstant(d
, "STC_DIFF_COMMAND",SWIG_From_int(static_cast< int >(2)));
23479 SWIG_Python_SetConstant(d
, "STC_DIFF_HEADER",SWIG_From_int(static_cast< int >(3)));
23480 SWIG_Python_SetConstant(d
, "STC_DIFF_POSITION",SWIG_From_int(static_cast< int >(4)));
23481 SWIG_Python_SetConstant(d
, "STC_DIFF_DELETED",SWIG_From_int(static_cast< int >(5)));
23482 SWIG_Python_SetConstant(d
, "STC_DIFF_ADDED",SWIG_From_int(static_cast< int >(6)));
23483 SWIG_Python_SetConstant(d
, "STC_CONF_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23484 SWIG_Python_SetConstant(d
, "STC_CONF_COMMENT",SWIG_From_int(static_cast< int >(1)));
23485 SWIG_Python_SetConstant(d
, "STC_CONF_NUMBER",SWIG_From_int(static_cast< int >(2)));
23486 SWIG_Python_SetConstant(d
, "STC_CONF_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23487 SWIG_Python_SetConstant(d
, "STC_CONF_EXTENSION",SWIG_From_int(static_cast< int >(4)));
23488 SWIG_Python_SetConstant(d
, "STC_CONF_PARAMETER",SWIG_From_int(static_cast< int >(5)));
23489 SWIG_Python_SetConstant(d
, "STC_CONF_STRING",SWIG_From_int(static_cast< int >(6)));
23490 SWIG_Python_SetConstant(d
, "STC_CONF_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23491 SWIG_Python_SetConstant(d
, "STC_CONF_IP",SWIG_From_int(static_cast< int >(8)));
23492 SWIG_Python_SetConstant(d
, "STC_CONF_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23493 SWIG_Python_SetConstant(d
, "STC_AVE_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23494 SWIG_Python_SetConstant(d
, "STC_AVE_COMMENT",SWIG_From_int(static_cast< int >(1)));
23495 SWIG_Python_SetConstant(d
, "STC_AVE_NUMBER",SWIG_From_int(static_cast< int >(2)));
23496 SWIG_Python_SetConstant(d
, "STC_AVE_WORD",SWIG_From_int(static_cast< int >(3)));
23497 SWIG_Python_SetConstant(d
, "STC_AVE_STRING",SWIG_From_int(static_cast< int >(6)));
23498 SWIG_Python_SetConstant(d
, "STC_AVE_ENUM",SWIG_From_int(static_cast< int >(7)));
23499 SWIG_Python_SetConstant(d
, "STC_AVE_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23500 SWIG_Python_SetConstant(d
, "STC_AVE_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23501 SWIG_Python_SetConstant(d
, "STC_AVE_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23502 SWIG_Python_SetConstant(d
, "STC_AVE_WORD1",SWIG_From_int(static_cast< int >(11)));
23503 SWIG_Python_SetConstant(d
, "STC_AVE_WORD2",SWIG_From_int(static_cast< int >(12)));
23504 SWIG_Python_SetConstant(d
, "STC_AVE_WORD3",SWIG_From_int(static_cast< int >(13)));
23505 SWIG_Python_SetConstant(d
, "STC_AVE_WORD4",SWIG_From_int(static_cast< int >(14)));
23506 SWIG_Python_SetConstant(d
, "STC_AVE_WORD5",SWIG_From_int(static_cast< int >(15)));
23507 SWIG_Python_SetConstant(d
, "STC_AVE_WORD6",SWIG_From_int(static_cast< int >(16)));
23508 SWIG_Python_SetConstant(d
, "STC_ADA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23509 SWIG_Python_SetConstant(d
, "STC_ADA_WORD",SWIG_From_int(static_cast< int >(1)));
23510 SWIG_Python_SetConstant(d
, "STC_ADA_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23511 SWIG_Python_SetConstant(d
, "STC_ADA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23512 SWIG_Python_SetConstant(d
, "STC_ADA_DELIMITER",SWIG_From_int(static_cast< int >(4)));
23513 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23514 SWIG_Python_SetConstant(d
, "STC_ADA_CHARACTEREOL",SWIG_From_int(static_cast< int >(6)));
23515 SWIG_Python_SetConstant(d
, "STC_ADA_STRING",SWIG_From_int(static_cast< int >(7)));
23516 SWIG_Python_SetConstant(d
, "STC_ADA_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23517 SWIG_Python_SetConstant(d
, "STC_ADA_LABEL",SWIG_From_int(static_cast< int >(9)));
23518 SWIG_Python_SetConstant(d
, "STC_ADA_COMMENTLINE",SWIG_From_int(static_cast< int >(10)));
23519 SWIG_Python_SetConstant(d
, "STC_ADA_ILLEGAL",SWIG_From_int(static_cast< int >(11)));
23520 SWIG_Python_SetConstant(d
, "STC_BAAN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23521 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENT",SWIG_From_int(static_cast< int >(1)));
23522 SWIG_Python_SetConstant(d
, "STC_BAAN_COMMENTDOC",SWIG_From_int(static_cast< int >(2)));
23523 SWIG_Python_SetConstant(d
, "STC_BAAN_NUMBER",SWIG_From_int(static_cast< int >(3)));
23524 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD",SWIG_From_int(static_cast< int >(4)));
23525 SWIG_Python_SetConstant(d
, "STC_BAAN_STRING",SWIG_From_int(static_cast< int >(5)));
23526 SWIG_Python_SetConstant(d
, "STC_BAAN_PREPROCESSOR",SWIG_From_int(static_cast< int >(6)));
23527 SWIG_Python_SetConstant(d
, "STC_BAAN_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23528 SWIG_Python_SetConstant(d
, "STC_BAAN_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23529 SWIG_Python_SetConstant(d
, "STC_BAAN_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23530 SWIG_Python_SetConstant(d
, "STC_BAAN_WORD2",SWIG_From_int(static_cast< int >(10)));
23531 SWIG_Python_SetConstant(d
, "STC_LISP_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23532 SWIG_Python_SetConstant(d
, "STC_LISP_COMMENT",SWIG_From_int(static_cast< int >(1)));
23533 SWIG_Python_SetConstant(d
, "STC_LISP_NUMBER",SWIG_From_int(static_cast< int >(2)));
23534 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23535 SWIG_Python_SetConstant(d
, "STC_LISP_KEYWORD_KW",SWIG_From_int(static_cast< int >(4)));
23536 SWIG_Python_SetConstant(d
, "STC_LISP_SYMBOL",SWIG_From_int(static_cast< int >(5)));
23537 SWIG_Python_SetConstant(d
, "STC_LISP_STRING",SWIG_From_int(static_cast< int >(6)));
23538 SWIG_Python_SetConstant(d
, "STC_LISP_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23539 SWIG_Python_SetConstant(d
, "STC_LISP_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23540 SWIG_Python_SetConstant(d
, "STC_LISP_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23541 SWIG_Python_SetConstant(d
, "STC_LISP_SPECIAL",SWIG_From_int(static_cast< int >(11)));
23542 SWIG_Python_SetConstant(d
, "STC_LISP_MULTI_COMMENT",SWIG_From_int(static_cast< int >(12)));
23543 SWIG_Python_SetConstant(d
, "STC_EIFFEL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23544 SWIG_Python_SetConstant(d
, "STC_EIFFEL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23545 SWIG_Python_SetConstant(d
, "STC_EIFFEL_NUMBER",SWIG_From_int(static_cast< int >(2)));
23546 SWIG_Python_SetConstant(d
, "STC_EIFFEL_WORD",SWIG_From_int(static_cast< int >(3)));
23547 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRING",SWIG_From_int(static_cast< int >(4)));
23548 SWIG_Python_SetConstant(d
, "STC_EIFFEL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23549 SWIG_Python_SetConstant(d
, "STC_EIFFEL_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23550 SWIG_Python_SetConstant(d
, "STC_EIFFEL_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23551 SWIG_Python_SetConstant(d
, "STC_EIFFEL_STRINGEOL",SWIG_From_int(static_cast< int >(8)));
23552 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23553 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23554 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_TASK",SWIG_From_int(static_cast< int >(2)));
23555 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_SECTION",SWIG_From_int(static_cast< int >(3)));
23556 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23557 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_MODIFIER",SWIG_From_int(static_cast< int >(5)));
23558 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ASTERISK",SWIG_From_int(static_cast< int >(6)));
23559 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_NUMBER",SWIG_From_int(static_cast< int >(7)));
23560 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_STRING",SWIG_From_int(static_cast< int >(8)));
23561 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_ENVIRONMENT",SWIG_From_int(static_cast< int >(9)));
23562 SWIG_Python_SetConstant(d
, "STC_NNCRONTAB_IDENTIFIER",SWIG_From_int(static_cast< int >(10)));
23563 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23564 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT",SWIG_From_int(static_cast< int >(1)));
23565 SWIG_Python_SetConstant(d
, "STC_FORTH_COMMENT_ML",SWIG_From_int(static_cast< int >(2)));
23566 SWIG_Python_SetConstant(d
, "STC_FORTH_IDENTIFIER",SWIG_From_int(static_cast< int >(3)));
23567 SWIG_Python_SetConstant(d
, "STC_FORTH_CONTROL",SWIG_From_int(static_cast< int >(4)));
23568 SWIG_Python_SetConstant(d
, "STC_FORTH_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23569 SWIG_Python_SetConstant(d
, "STC_FORTH_DEFWORD",SWIG_From_int(static_cast< int >(6)));
23570 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD1",SWIG_From_int(static_cast< int >(7)));
23571 SWIG_Python_SetConstant(d
, "STC_FORTH_PREWORD2",SWIG_From_int(static_cast< int >(8)));
23572 SWIG_Python_SetConstant(d
, "STC_FORTH_NUMBER",SWIG_From_int(static_cast< int >(9)));
23573 SWIG_Python_SetConstant(d
, "STC_FORTH_STRING",SWIG_From_int(static_cast< int >(10)));
23574 SWIG_Python_SetConstant(d
, "STC_FORTH_LOCALE",SWIG_From_int(static_cast< int >(11)));
23575 SWIG_Python_SetConstant(d
, "STC_MATLAB_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23576 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMENT",SWIG_From_int(static_cast< int >(1)));
23577 SWIG_Python_SetConstant(d
, "STC_MATLAB_COMMAND",SWIG_From_int(static_cast< int >(2)));
23578 SWIG_Python_SetConstant(d
, "STC_MATLAB_NUMBER",SWIG_From_int(static_cast< int >(3)));
23579 SWIG_Python_SetConstant(d
, "STC_MATLAB_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23580 SWIG_Python_SetConstant(d
, "STC_MATLAB_STRING",SWIG_From_int(static_cast< int >(5)));
23581 SWIG_Python_SetConstant(d
, "STC_MATLAB_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23582 SWIG_Python_SetConstant(d
, "STC_MATLAB_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23583 SWIG_Python_SetConstant(d
, "STC_MATLAB_DOUBLEQUOTESTRING",SWIG_From_int(static_cast< int >(8)));
23584 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23585 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_WHITE",SWIG_From_int(static_cast< int >(1)));
23586 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23587 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PERSISTENT",SWIG_From_int(static_cast< int >(3)));
23588 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CSTYLE",SWIG_From_int(static_cast< int >(4)));
23589 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(5)));
23590 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_NUMBER",SWIG_From_int(static_cast< int >(6)));
23591 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRING",SWIG_From_int(static_cast< int >(7)));
23592 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CHARACTER",SWIG_From_int(static_cast< int >(8)));
23593 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_STRINGEOL",SWIG_From_int(static_cast< int >(9)));
23594 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_KEYWORD",SWIG_From_int(static_cast< int >(10)));
23595 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23596 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_IDENTIFIER",SWIG_From_int(static_cast< int >(12)));
23597 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_TRIPLE",SWIG_From_int(static_cast< int >(13)));
23598 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_CLASSNAME",SWIG_From_int(static_cast< int >(14)));
23599 SWIG_Python_SetConstant(d
, "STC_SCRIPTOL_PREPROCESSOR",SWIG_From_int(static_cast< int >(15)));
23600 SWIG_Python_SetConstant(d
, "STC_ASM_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23601 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENT",SWIG_From_int(static_cast< int >(1)));
23602 SWIG_Python_SetConstant(d
, "STC_ASM_NUMBER",SWIG_From_int(static_cast< int >(2)));
23603 SWIG_Python_SetConstant(d
, "STC_ASM_STRING",SWIG_From_int(static_cast< int >(3)));
23604 SWIG_Python_SetConstant(d
, "STC_ASM_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23605 SWIG_Python_SetConstant(d
, "STC_ASM_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23606 SWIG_Python_SetConstant(d
, "STC_ASM_CPUINSTRUCTION",SWIG_From_int(static_cast< int >(6)));
23607 SWIG_Python_SetConstant(d
, "STC_ASM_MATHINSTRUCTION",SWIG_From_int(static_cast< int >(7)));
23608 SWIG_Python_SetConstant(d
, "STC_ASM_REGISTER",SWIG_From_int(static_cast< int >(8)));
23609 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23610 SWIG_Python_SetConstant(d
, "STC_ASM_DIRECTIVEOPERAND",SWIG_From_int(static_cast< int >(10)));
23611 SWIG_Python_SetConstant(d
, "STC_ASM_COMMENTBLOCK",SWIG_From_int(static_cast< int >(11)));
23612 SWIG_Python_SetConstant(d
, "STC_ASM_CHARACTER",SWIG_From_int(static_cast< int >(12)));
23613 SWIG_Python_SetConstant(d
, "STC_ASM_STRINGEOL",SWIG_From_int(static_cast< int >(13)));
23614 SWIG_Python_SetConstant(d
, "STC_ASM_EXTINSTRUCTION",SWIG_From_int(static_cast< int >(14)));
23615 SWIG_Python_SetConstant(d
, "STC_F_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23616 SWIG_Python_SetConstant(d
, "STC_F_COMMENT",SWIG_From_int(static_cast< int >(1)));
23617 SWIG_Python_SetConstant(d
, "STC_F_NUMBER",SWIG_From_int(static_cast< int >(2)));
23618 SWIG_Python_SetConstant(d
, "STC_F_STRING1",SWIG_From_int(static_cast< int >(3)));
23619 SWIG_Python_SetConstant(d
, "STC_F_STRING2",SWIG_From_int(static_cast< int >(4)));
23620 SWIG_Python_SetConstant(d
, "STC_F_STRINGEOL",SWIG_From_int(static_cast< int >(5)));
23621 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23622 SWIG_Python_SetConstant(d
, "STC_F_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23623 SWIG_Python_SetConstant(d
, "STC_F_WORD",SWIG_From_int(static_cast< int >(8)));
23624 SWIG_Python_SetConstant(d
, "STC_F_WORD2",SWIG_From_int(static_cast< int >(9)));
23625 SWIG_Python_SetConstant(d
, "STC_F_WORD3",SWIG_From_int(static_cast< int >(10)));
23626 SWIG_Python_SetConstant(d
, "STC_F_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23627 SWIG_Python_SetConstant(d
, "STC_F_OPERATOR2",SWIG_From_int(static_cast< int >(12)));
23628 SWIG_Python_SetConstant(d
, "STC_F_LABEL",SWIG_From_int(static_cast< int >(13)));
23629 SWIG_Python_SetConstant(d
, "STC_F_CONTINUATION",SWIG_From_int(static_cast< int >(14)));
23630 SWIG_Python_SetConstant(d
, "STC_CSS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23631 SWIG_Python_SetConstant(d
, "STC_CSS_TAG",SWIG_From_int(static_cast< int >(1)));
23632 SWIG_Python_SetConstant(d
, "STC_CSS_CLASS",SWIG_From_int(static_cast< int >(2)));
23633 SWIG_Python_SetConstant(d
, "STC_CSS_PSEUDOCLASS",SWIG_From_int(static_cast< int >(3)));
23634 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_PSEUDOCLASS",SWIG_From_int(static_cast< int >(4)));
23635 SWIG_Python_SetConstant(d
, "STC_CSS_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23636 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23637 SWIG_Python_SetConstant(d
, "STC_CSS_UNKNOWN_IDENTIFIER",SWIG_From_int(static_cast< int >(7)));
23638 SWIG_Python_SetConstant(d
, "STC_CSS_VALUE",SWIG_From_int(static_cast< int >(8)));
23639 SWIG_Python_SetConstant(d
, "STC_CSS_COMMENT",SWIG_From_int(static_cast< int >(9)));
23640 SWIG_Python_SetConstant(d
, "STC_CSS_ID",SWIG_From_int(static_cast< int >(10)));
23641 SWIG_Python_SetConstant(d
, "STC_CSS_IMPORTANT",SWIG_From_int(static_cast< int >(11)));
23642 SWIG_Python_SetConstant(d
, "STC_CSS_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23643 SWIG_Python_SetConstant(d
, "STC_CSS_DOUBLESTRING",SWIG_From_int(static_cast< int >(13)));
23644 SWIG_Python_SetConstant(d
, "STC_CSS_SINGLESTRING",SWIG_From_int(static_cast< int >(14)));
23645 SWIG_Python_SetConstant(d
, "STC_CSS_IDENTIFIER2",SWIG_From_int(static_cast< int >(15)));
23646 SWIG_Python_SetConstant(d
, "STC_CSS_ATTRIBUTE",SWIG_From_int(static_cast< int >(16)));
23647 SWIG_Python_SetConstant(d
, "STC_POV_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23648 SWIG_Python_SetConstant(d
, "STC_POV_COMMENT",SWIG_From_int(static_cast< int >(1)));
23649 SWIG_Python_SetConstant(d
, "STC_POV_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23650 SWIG_Python_SetConstant(d
, "STC_POV_NUMBER",SWIG_From_int(static_cast< int >(3)));
23651 SWIG_Python_SetConstant(d
, "STC_POV_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23652 SWIG_Python_SetConstant(d
, "STC_POV_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
23653 SWIG_Python_SetConstant(d
, "STC_POV_STRING",SWIG_From_int(static_cast< int >(6)));
23654 SWIG_Python_SetConstant(d
, "STC_POV_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23655 SWIG_Python_SetConstant(d
, "STC_POV_DIRECTIVE",SWIG_From_int(static_cast< int >(8)));
23656 SWIG_Python_SetConstant(d
, "STC_POV_BADDIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23657 SWIG_Python_SetConstant(d
, "STC_POV_WORD2",SWIG_From_int(static_cast< int >(10)));
23658 SWIG_Python_SetConstant(d
, "STC_POV_WORD3",SWIG_From_int(static_cast< int >(11)));
23659 SWIG_Python_SetConstant(d
, "STC_POV_WORD4",SWIG_From_int(static_cast< int >(12)));
23660 SWIG_Python_SetConstant(d
, "STC_POV_WORD5",SWIG_From_int(static_cast< int >(13)));
23661 SWIG_Python_SetConstant(d
, "STC_POV_WORD6",SWIG_From_int(static_cast< int >(14)));
23662 SWIG_Python_SetConstant(d
, "STC_POV_WORD7",SWIG_From_int(static_cast< int >(15)));
23663 SWIG_Python_SetConstant(d
, "STC_POV_WORD8",SWIG_From_int(static_cast< int >(16)));
23664 SWIG_Python_SetConstant(d
, "STC_LOUT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23665 SWIG_Python_SetConstant(d
, "STC_LOUT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23666 SWIG_Python_SetConstant(d
, "STC_LOUT_NUMBER",SWIG_From_int(static_cast< int >(2)));
23667 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD",SWIG_From_int(static_cast< int >(3)));
23668 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD2",SWIG_From_int(static_cast< int >(4)));
23669 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD3",SWIG_From_int(static_cast< int >(5)));
23670 SWIG_Python_SetConstant(d
, "STC_LOUT_WORD4",SWIG_From_int(static_cast< int >(6)));
23671 SWIG_Python_SetConstant(d
, "STC_LOUT_STRING",SWIG_From_int(static_cast< int >(7)));
23672 SWIG_Python_SetConstant(d
, "STC_LOUT_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23673 SWIG_Python_SetConstant(d
, "STC_LOUT_IDENTIFIER",SWIG_From_int(static_cast< int >(9)));
23674 SWIG_Python_SetConstant(d
, "STC_LOUT_STRINGEOL",SWIG_From_int(static_cast< int >(10)));
23675 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23676 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENT",SWIG_From_int(static_cast< int >(1)));
23677 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23678 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
23679 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_NUMBER",SWIG_From_int(static_cast< int >(4)));
23680 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD",SWIG_From_int(static_cast< int >(5)));
23681 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_STRING",SWIG_From_int(static_cast< int >(6)));
23682 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23683 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23684 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_BRACE",SWIG_From_int(static_cast< int >(9)));
23685 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD2",SWIG_From_int(static_cast< int >(10)));
23686 SWIG_Python_SetConstant(d
, "STC_ESCRIPT_WORD3",SWIG_From_int(static_cast< int >(11)));
23687 SWIG_Python_SetConstant(d
, "STC_PS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23688 SWIG_Python_SetConstant(d
, "STC_PS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23689 SWIG_Python_SetConstant(d
, "STC_PS_DSC_COMMENT",SWIG_From_int(static_cast< int >(2)));
23690 SWIG_Python_SetConstant(d
, "STC_PS_DSC_VALUE",SWIG_From_int(static_cast< int >(3)));
23691 SWIG_Python_SetConstant(d
, "STC_PS_NUMBER",SWIG_From_int(static_cast< int >(4)));
23692 SWIG_Python_SetConstant(d
, "STC_PS_NAME",SWIG_From_int(static_cast< int >(5)));
23693 SWIG_Python_SetConstant(d
, "STC_PS_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23694 SWIG_Python_SetConstant(d
, "STC_PS_LITERAL",SWIG_From_int(static_cast< int >(7)));
23695 SWIG_Python_SetConstant(d
, "STC_PS_IMMEVAL",SWIG_From_int(static_cast< int >(8)));
23696 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_ARRAY",SWIG_From_int(static_cast< int >(9)));
23697 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_DICT",SWIG_From_int(static_cast< int >(10)));
23698 SWIG_Python_SetConstant(d
, "STC_PS_PAREN_PROC",SWIG_From_int(static_cast< int >(11)));
23699 SWIG_Python_SetConstant(d
, "STC_PS_TEXT",SWIG_From_int(static_cast< int >(12)));
23700 SWIG_Python_SetConstant(d
, "STC_PS_HEXSTRING",SWIG_From_int(static_cast< int >(13)));
23701 SWIG_Python_SetConstant(d
, "STC_PS_BASE85STRING",SWIG_From_int(static_cast< int >(14)));
23702 SWIG_Python_SetConstant(d
, "STC_PS_BADSTRINGCHAR",SWIG_From_int(static_cast< int >(15)));
23703 SWIG_Python_SetConstant(d
, "STC_NSIS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23704 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENT",SWIG_From_int(static_cast< int >(1)));
23705 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGDQ",SWIG_From_int(static_cast< int >(2)));
23706 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGLQ",SWIG_From_int(static_cast< int >(3)));
23707 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGRQ",SWIG_From_int(static_cast< int >(4)));
23708 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTION",SWIG_From_int(static_cast< int >(5)));
23709 SWIG_Python_SetConstant(d
, "STC_NSIS_VARIABLE",SWIG_From_int(static_cast< int >(6)));
23710 SWIG_Python_SetConstant(d
, "STC_NSIS_LABEL",SWIG_From_int(static_cast< int >(7)));
23711 SWIG_Python_SetConstant(d
, "STC_NSIS_USERDEFINED",SWIG_From_int(static_cast< int >(8)));
23712 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONDEF",SWIG_From_int(static_cast< int >(9)));
23713 SWIG_Python_SetConstant(d
, "STC_NSIS_SUBSECTIONDEF",SWIG_From_int(static_cast< int >(10)));
23714 SWIG_Python_SetConstant(d
, "STC_NSIS_IFDEFINEDEF",SWIG_From_int(static_cast< int >(11)));
23715 SWIG_Python_SetConstant(d
, "STC_NSIS_MACRODEF",SWIG_From_int(static_cast< int >(12)));
23716 SWIG_Python_SetConstant(d
, "STC_NSIS_STRINGVAR",SWIG_From_int(static_cast< int >(13)));
23717 SWIG_Python_SetConstant(d
, "STC_NSIS_NUMBER",SWIG_From_int(static_cast< int >(14)));
23718 SWIG_Python_SetConstant(d
, "STC_NSIS_SECTIONGROUP",SWIG_From_int(static_cast< int >(15)));
23719 SWIG_Python_SetConstant(d
, "STC_NSIS_PAGEEX",SWIG_From_int(static_cast< int >(16)));
23720 SWIG_Python_SetConstant(d
, "STC_NSIS_FUNCTIONDEF",SWIG_From_int(static_cast< int >(17)));
23721 SWIG_Python_SetConstant(d
, "STC_NSIS_COMMENTBOX",SWIG_From_int(static_cast< int >(18)));
23722 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LEADWS",SWIG_From_int(static_cast< int >(0)));
23723 SWIG_Python_SetConstant(d
, "STC_MMIXAL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23724 SWIG_Python_SetConstant(d
, "STC_MMIXAL_LABEL",SWIG_From_int(static_cast< int >(2)));
23725 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE",SWIG_From_int(static_cast< int >(3)));
23726 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_PRE",SWIG_From_int(static_cast< int >(4)));
23727 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_VALID",SWIG_From_int(static_cast< int >(5)));
23728 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_UNKNOWN",SWIG_From_int(static_cast< int >(6)));
23729 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPCODE_POST",SWIG_From_int(static_cast< int >(7)));
23730 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERANDS",SWIG_From_int(static_cast< int >(8)));
23731 SWIG_Python_SetConstant(d
, "STC_MMIXAL_NUMBER",SWIG_From_int(static_cast< int >(9)));
23732 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REF",SWIG_From_int(static_cast< int >(10)));
23733 SWIG_Python_SetConstant(d
, "STC_MMIXAL_CHAR",SWIG_From_int(static_cast< int >(11)));
23734 SWIG_Python_SetConstant(d
, "STC_MMIXAL_STRING",SWIG_From_int(static_cast< int >(12)));
23735 SWIG_Python_SetConstant(d
, "STC_MMIXAL_REGISTER",SWIG_From_int(static_cast< int >(13)));
23736 SWIG_Python_SetConstant(d
, "STC_MMIXAL_HEX",SWIG_From_int(static_cast< int >(14)));
23737 SWIG_Python_SetConstant(d
, "STC_MMIXAL_OPERATOR",SWIG_From_int(static_cast< int >(15)));
23738 SWIG_Python_SetConstant(d
, "STC_MMIXAL_SYMBOL",SWIG_From_int(static_cast< int >(16)));
23739 SWIG_Python_SetConstant(d
, "STC_MMIXAL_INCLUDE",SWIG_From_int(static_cast< int >(17)));
23740 SWIG_Python_SetConstant(d
, "STC_CLW_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23741 SWIG_Python_SetConstant(d
, "STC_CLW_LABEL",SWIG_From_int(static_cast< int >(1)));
23742 SWIG_Python_SetConstant(d
, "STC_CLW_COMMENT",SWIG_From_int(static_cast< int >(2)));
23743 SWIG_Python_SetConstant(d
, "STC_CLW_STRING",SWIG_From_int(static_cast< int >(3)));
23744 SWIG_Python_SetConstant(d
, "STC_CLW_USER_IDENTIFIER",SWIG_From_int(static_cast< int >(4)));
23745 SWIG_Python_SetConstant(d
, "STC_CLW_INTEGER_CONSTANT",SWIG_From_int(static_cast< int >(5)));
23746 SWIG_Python_SetConstant(d
, "STC_CLW_REAL_CONSTANT",SWIG_From_int(static_cast< int >(6)));
23747 SWIG_Python_SetConstant(d
, "STC_CLW_PICTURE_STRING",SWIG_From_int(static_cast< int >(7)));
23748 SWIG_Python_SetConstant(d
, "STC_CLW_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23749 SWIG_Python_SetConstant(d
, "STC_CLW_COMPILER_DIRECTIVE",SWIG_From_int(static_cast< int >(9)));
23750 SWIG_Python_SetConstant(d
, "STC_CLW_RUNTIME_EXPRESSIONS",SWIG_From_int(static_cast< int >(10)));
23751 SWIG_Python_SetConstant(d
, "STC_CLW_BUILTIN_PROCEDURES_FUNCTION",SWIG_From_int(static_cast< int >(11)));
23752 SWIG_Python_SetConstant(d
, "STC_CLW_STRUCTURE_DATA_TYPE",SWIG_From_int(static_cast< int >(12)));
23753 SWIG_Python_SetConstant(d
, "STC_CLW_ATTRIBUTE",SWIG_From_int(static_cast< int >(13)));
23754 SWIG_Python_SetConstant(d
, "STC_CLW_STANDARD_EQUATE",SWIG_From_int(static_cast< int >(14)));
23755 SWIG_Python_SetConstant(d
, "STC_CLW_ERROR",SWIG_From_int(static_cast< int >(15)));
23756 SWIG_Python_SetConstant(d
, "STC_CLW_DEPRECATED",SWIG_From_int(static_cast< int >(16)));
23757 SWIG_Python_SetConstant(d
, "STC_LOT_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23758 SWIG_Python_SetConstant(d
, "STC_LOT_HEADER",SWIG_From_int(static_cast< int >(1)));
23759 SWIG_Python_SetConstant(d
, "STC_LOT_BREAK",SWIG_From_int(static_cast< int >(2)));
23760 SWIG_Python_SetConstant(d
, "STC_LOT_SET",SWIG_From_int(static_cast< int >(3)));
23761 SWIG_Python_SetConstant(d
, "STC_LOT_PASS",SWIG_From_int(static_cast< int >(4)));
23762 SWIG_Python_SetConstant(d
, "STC_LOT_FAIL",SWIG_From_int(static_cast< int >(5)));
23763 SWIG_Python_SetConstant(d
, "STC_LOT_ABORT",SWIG_From_int(static_cast< int >(6)));
23764 SWIG_Python_SetConstant(d
, "STC_YAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23765 SWIG_Python_SetConstant(d
, "STC_YAML_COMMENT",SWIG_From_int(static_cast< int >(1)));
23766 SWIG_Python_SetConstant(d
, "STC_YAML_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23767 SWIG_Python_SetConstant(d
, "STC_YAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23768 SWIG_Python_SetConstant(d
, "STC_YAML_NUMBER",SWIG_From_int(static_cast< int >(4)));
23769 SWIG_Python_SetConstant(d
, "STC_YAML_REFERENCE",SWIG_From_int(static_cast< int >(5)));
23770 SWIG_Python_SetConstant(d
, "STC_YAML_DOCUMENT",SWIG_From_int(static_cast< int >(6)));
23771 SWIG_Python_SetConstant(d
, "STC_YAML_TEXT",SWIG_From_int(static_cast< int >(7)));
23772 SWIG_Python_SetConstant(d
, "STC_YAML_ERROR",SWIG_From_int(static_cast< int >(8)));
23773 SWIG_Python_SetConstant(d
, "STC_TEX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23774 SWIG_Python_SetConstant(d
, "STC_TEX_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23775 SWIG_Python_SetConstant(d
, "STC_TEX_GROUP",SWIG_From_int(static_cast< int >(2)));
23776 SWIG_Python_SetConstant(d
, "STC_TEX_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23777 SWIG_Python_SetConstant(d
, "STC_TEX_COMMAND",SWIG_From_int(static_cast< int >(4)));
23778 SWIG_Python_SetConstant(d
, "STC_TEX_TEXT",SWIG_From_int(static_cast< int >(5)));
23779 SWIG_Python_SetConstant(d
, "STC_METAPOST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23780 SWIG_Python_SetConstant(d
, "STC_METAPOST_SPECIAL",SWIG_From_int(static_cast< int >(1)));
23781 SWIG_Python_SetConstant(d
, "STC_METAPOST_GROUP",SWIG_From_int(static_cast< int >(2)));
23782 SWIG_Python_SetConstant(d
, "STC_METAPOST_SYMBOL",SWIG_From_int(static_cast< int >(3)));
23783 SWIG_Python_SetConstant(d
, "STC_METAPOST_COMMAND",SWIG_From_int(static_cast< int >(4)));
23784 SWIG_Python_SetConstant(d
, "STC_METAPOST_TEXT",SWIG_From_int(static_cast< int >(5)));
23785 SWIG_Python_SetConstant(d
, "STC_METAPOST_EXTRA",SWIG_From_int(static_cast< int >(6)));
23786 SWIG_Python_SetConstant(d
, "STC_ERLANG_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23787 SWIG_Python_SetConstant(d
, "STC_ERLANG_COMMENT",SWIG_From_int(static_cast< int >(1)));
23788 SWIG_Python_SetConstant(d
, "STC_ERLANG_VARIABLE",SWIG_From_int(static_cast< int >(2)));
23789 SWIG_Python_SetConstant(d
, "STC_ERLANG_NUMBER",SWIG_From_int(static_cast< int >(3)));
23790 SWIG_Python_SetConstant(d
, "STC_ERLANG_KEYWORD",SWIG_From_int(static_cast< int >(4)));
23791 SWIG_Python_SetConstant(d
, "STC_ERLANG_STRING",SWIG_From_int(static_cast< int >(5)));
23792 SWIG_Python_SetConstant(d
, "STC_ERLANG_OPERATOR",SWIG_From_int(static_cast< int >(6)));
23793 SWIG_Python_SetConstant(d
, "STC_ERLANG_ATOM",SWIG_From_int(static_cast< int >(7)));
23794 SWIG_Python_SetConstant(d
, "STC_ERLANG_FUNCTION_NAME",SWIG_From_int(static_cast< int >(8)));
23795 SWIG_Python_SetConstant(d
, "STC_ERLANG_CHARACTER",SWIG_From_int(static_cast< int >(9)));
23796 SWIG_Python_SetConstant(d
, "STC_ERLANG_MACRO",SWIG_From_int(static_cast< int >(10)));
23797 SWIG_Python_SetConstant(d
, "STC_ERLANG_RECORD",SWIG_From_int(static_cast< int >(11)));
23798 SWIG_Python_SetConstant(d
, "STC_ERLANG_SEPARATOR",SWIG_From_int(static_cast< int >(12)));
23799 SWIG_Python_SetConstant(d
, "STC_ERLANG_NODE_NAME",SWIG_From_int(static_cast< int >(13)));
23800 SWIG_Python_SetConstant(d
, "STC_ERLANG_UNKNOWN",SWIG_From_int(static_cast< int >(31)));
23801 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23802 SWIG_Python_SetConstant(d
, "STC_MSSQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23803 SWIG_Python_SetConstant(d
, "STC_MSSQL_LINE_COMMENT",SWIG_From_int(static_cast< int >(2)));
23804 SWIG_Python_SetConstant(d
, "STC_MSSQL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23805 SWIG_Python_SetConstant(d
, "STC_MSSQL_STRING",SWIG_From_int(static_cast< int >(4)));
23806 SWIG_Python_SetConstant(d
, "STC_MSSQL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23807 SWIG_Python_SetConstant(d
, "STC_MSSQL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23808 SWIG_Python_SetConstant(d
, "STC_MSSQL_VARIABLE",SWIG_From_int(static_cast< int >(7)));
23809 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME",SWIG_From_int(static_cast< int >(8)));
23810 SWIG_Python_SetConstant(d
, "STC_MSSQL_STATEMENT",SWIG_From_int(static_cast< int >(9)));
23811 SWIG_Python_SetConstant(d
, "STC_MSSQL_DATATYPE",SWIG_From_int(static_cast< int >(10)));
23812 SWIG_Python_SetConstant(d
, "STC_MSSQL_SYSTABLE",SWIG_From_int(static_cast< int >(11)));
23813 SWIG_Python_SetConstant(d
, "STC_MSSQL_GLOBAL_VARIABLE",SWIG_From_int(static_cast< int >(12)));
23814 SWIG_Python_SetConstant(d
, "STC_MSSQL_FUNCTION",SWIG_From_int(static_cast< int >(13)));
23815 SWIG_Python_SetConstant(d
, "STC_MSSQL_STORED_PROCEDURE",SWIG_From_int(static_cast< int >(14)));
23816 SWIG_Python_SetConstant(d
, "STC_MSSQL_DEFAULT_PREF_DATATYPE",SWIG_From_int(static_cast< int >(15)));
23817 SWIG_Python_SetConstant(d
, "STC_MSSQL_COLUMN_NAME_2",SWIG_From_int(static_cast< int >(16)));
23818 SWIG_Python_SetConstant(d
, "STC_V_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23819 SWIG_Python_SetConstant(d
, "STC_V_COMMENT",SWIG_From_int(static_cast< int >(1)));
23820 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23821 SWIG_Python_SetConstant(d
, "STC_V_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23822 SWIG_Python_SetConstant(d
, "STC_V_NUMBER",SWIG_From_int(static_cast< int >(4)));
23823 SWIG_Python_SetConstant(d
, "STC_V_WORD",SWIG_From_int(static_cast< int >(5)));
23824 SWIG_Python_SetConstant(d
, "STC_V_STRING",SWIG_From_int(static_cast< int >(6)));
23825 SWIG_Python_SetConstant(d
, "STC_V_WORD2",SWIG_From_int(static_cast< int >(7)));
23826 SWIG_Python_SetConstant(d
, "STC_V_WORD3",SWIG_From_int(static_cast< int >(8)));
23827 SWIG_Python_SetConstant(d
, "STC_V_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23828 SWIG_Python_SetConstant(d
, "STC_V_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23829 SWIG_Python_SetConstant(d
, "STC_V_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23830 SWIG_Python_SetConstant(d
, "STC_V_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23831 SWIG_Python_SetConstant(d
, "STC_V_USER",SWIG_From_int(static_cast< int >(19)));
23832 SWIG_Python_SetConstant(d
, "STC_KIX_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23833 SWIG_Python_SetConstant(d
, "STC_KIX_COMMENT",SWIG_From_int(static_cast< int >(1)));
23834 SWIG_Python_SetConstant(d
, "STC_KIX_STRING1",SWIG_From_int(static_cast< int >(2)));
23835 SWIG_Python_SetConstant(d
, "STC_KIX_STRING2",SWIG_From_int(static_cast< int >(3)));
23836 SWIG_Python_SetConstant(d
, "STC_KIX_NUMBER",SWIG_From_int(static_cast< int >(4)));
23837 SWIG_Python_SetConstant(d
, "STC_KIX_VAR",SWIG_From_int(static_cast< int >(5)));
23838 SWIG_Python_SetConstant(d
, "STC_KIX_MACRO",SWIG_From_int(static_cast< int >(6)));
23839 SWIG_Python_SetConstant(d
, "STC_KIX_KEYWORD",SWIG_From_int(static_cast< int >(7)));
23840 SWIG_Python_SetConstant(d
, "STC_KIX_FUNCTIONS",SWIG_From_int(static_cast< int >(8)));
23841 SWIG_Python_SetConstant(d
, "STC_KIX_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23842 SWIG_Python_SetConstant(d
, "STC_KIX_IDENTIFIER",SWIG_From_int(static_cast< int >(31)));
23843 SWIG_Python_SetConstant(d
, "STC_GC_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23844 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23845 SWIG_Python_SetConstant(d
, "STC_GC_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23846 SWIG_Python_SetConstant(d
, "STC_GC_GLOBAL",SWIG_From_int(static_cast< int >(3)));
23847 SWIG_Python_SetConstant(d
, "STC_GC_EVENT",SWIG_From_int(static_cast< int >(4)));
23848 SWIG_Python_SetConstant(d
, "STC_GC_ATTRIBUTE",SWIG_From_int(static_cast< int >(5)));
23849 SWIG_Python_SetConstant(d
, "STC_GC_CONTROL",SWIG_From_int(static_cast< int >(6)));
23850 SWIG_Python_SetConstant(d
, "STC_GC_COMMAND",SWIG_From_int(static_cast< int >(7)));
23851 SWIG_Python_SetConstant(d
, "STC_GC_STRING",SWIG_From_int(static_cast< int >(8)));
23852 SWIG_Python_SetConstant(d
, "STC_GC_OPERATOR",SWIG_From_int(static_cast< int >(9)));
23853 SWIG_Python_SetConstant(d
, "STC_SN_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23854 SWIG_Python_SetConstant(d
, "STC_SN_CODE",SWIG_From_int(static_cast< int >(1)));
23855 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23856 SWIG_Python_SetConstant(d
, "STC_SN_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(3)));
23857 SWIG_Python_SetConstant(d
, "STC_SN_NUMBER",SWIG_From_int(static_cast< int >(4)));
23858 SWIG_Python_SetConstant(d
, "STC_SN_WORD",SWIG_From_int(static_cast< int >(5)));
23859 SWIG_Python_SetConstant(d
, "STC_SN_STRING",SWIG_From_int(static_cast< int >(6)));
23860 SWIG_Python_SetConstant(d
, "STC_SN_WORD2",SWIG_From_int(static_cast< int >(7)));
23861 SWIG_Python_SetConstant(d
, "STC_SN_WORD3",SWIG_From_int(static_cast< int >(8)));
23862 SWIG_Python_SetConstant(d
, "STC_SN_PREPROCESSOR",SWIG_From_int(static_cast< int >(9)));
23863 SWIG_Python_SetConstant(d
, "STC_SN_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23864 SWIG_Python_SetConstant(d
, "STC_SN_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
23865 SWIG_Python_SetConstant(d
, "STC_SN_STRINGEOL",SWIG_From_int(static_cast< int >(12)));
23866 SWIG_Python_SetConstant(d
, "STC_SN_REGEXTAG",SWIG_From_int(static_cast< int >(13)));
23867 SWIG_Python_SetConstant(d
, "STC_SN_SIGNAL",SWIG_From_int(static_cast< int >(14)));
23868 SWIG_Python_SetConstant(d
, "STC_SN_USER",SWIG_From_int(static_cast< int >(19)));
23869 SWIG_Python_SetConstant(d
, "STC_AU3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23870 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENT",SWIG_From_int(static_cast< int >(1)));
23871 SWIG_Python_SetConstant(d
, "STC_AU3_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23872 SWIG_Python_SetConstant(d
, "STC_AU3_NUMBER",SWIG_From_int(static_cast< int >(3)));
23873 SWIG_Python_SetConstant(d
, "STC_AU3_FUNCTION",SWIG_From_int(static_cast< int >(4)));
23874 SWIG_Python_SetConstant(d
, "STC_AU3_KEYWORD",SWIG_From_int(static_cast< int >(5)));
23875 SWIG_Python_SetConstant(d
, "STC_AU3_MACRO",SWIG_From_int(static_cast< int >(6)));
23876 SWIG_Python_SetConstant(d
, "STC_AU3_STRING",SWIG_From_int(static_cast< int >(7)));
23877 SWIG_Python_SetConstant(d
, "STC_AU3_OPERATOR",SWIG_From_int(static_cast< int >(8)));
23878 SWIG_Python_SetConstant(d
, "STC_AU3_VARIABLE",SWIG_From_int(static_cast< int >(9)));
23879 SWIG_Python_SetConstant(d
, "STC_AU3_SENT",SWIG_From_int(static_cast< int >(10)));
23880 SWIG_Python_SetConstant(d
, "STC_AU3_PREPROCESSOR",SWIG_From_int(static_cast< int >(11)));
23881 SWIG_Python_SetConstant(d
, "STC_AU3_SPECIAL",SWIG_From_int(static_cast< int >(12)));
23882 SWIG_Python_SetConstant(d
, "STC_AU3_EXPAND",SWIG_From_int(static_cast< int >(13)));
23883 SWIG_Python_SetConstant(d
, "STC_AU3_COMOBJ",SWIG_From_int(static_cast< int >(14)));
23884 SWIG_Python_SetConstant(d
, "STC_APDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23885 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23886 SWIG_Python_SetConstant(d
, "STC_APDL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23887 SWIG_Python_SetConstant(d
, "STC_APDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23888 SWIG_Python_SetConstant(d
, "STC_APDL_STRING",SWIG_From_int(static_cast< int >(4)));
23889 SWIG_Python_SetConstant(d
, "STC_APDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23890 SWIG_Python_SetConstant(d
, "STC_APDL_WORD",SWIG_From_int(static_cast< int >(6)));
23891 SWIG_Python_SetConstant(d
, "STC_APDL_PROCESSOR",SWIG_From_int(static_cast< int >(7)));
23892 SWIG_Python_SetConstant(d
, "STC_APDL_COMMAND",SWIG_From_int(static_cast< int >(8)));
23893 SWIG_Python_SetConstant(d
, "STC_APDL_SLASHCOMMAND",SWIG_From_int(static_cast< int >(9)));
23894 SWIG_Python_SetConstant(d
, "STC_APDL_STARCOMMAND",SWIG_From_int(static_cast< int >(10)));
23895 SWIG_Python_SetConstant(d
, "STC_APDL_ARGUMENT",SWIG_From_int(static_cast< int >(11)));
23896 SWIG_Python_SetConstant(d
, "STC_APDL_FUNCTION",SWIG_From_int(static_cast< int >(12)));
23897 SWIG_Python_SetConstant(d
, "STC_SH_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23898 SWIG_Python_SetConstant(d
, "STC_SH_ERROR",SWIG_From_int(static_cast< int >(1)));
23899 SWIG_Python_SetConstant(d
, "STC_SH_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
23900 SWIG_Python_SetConstant(d
, "STC_SH_NUMBER",SWIG_From_int(static_cast< int >(3)));
23901 SWIG_Python_SetConstant(d
, "STC_SH_WORD",SWIG_From_int(static_cast< int >(4)));
23902 SWIG_Python_SetConstant(d
, "STC_SH_STRING",SWIG_From_int(static_cast< int >(5)));
23903 SWIG_Python_SetConstant(d
, "STC_SH_CHARACTER",SWIG_From_int(static_cast< int >(6)));
23904 SWIG_Python_SetConstant(d
, "STC_SH_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23905 SWIG_Python_SetConstant(d
, "STC_SH_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23906 SWIG_Python_SetConstant(d
, "STC_SH_SCALAR",SWIG_From_int(static_cast< int >(9)));
23907 SWIG_Python_SetConstant(d
, "STC_SH_PARAM",SWIG_From_int(static_cast< int >(10)));
23908 SWIG_Python_SetConstant(d
, "STC_SH_BACKTICKS",SWIG_From_int(static_cast< int >(11)));
23909 SWIG_Python_SetConstant(d
, "STC_SH_HERE_DELIM",SWIG_From_int(static_cast< int >(12)));
23910 SWIG_Python_SetConstant(d
, "STC_SH_HERE_Q",SWIG_From_int(static_cast< int >(13)));
23911 SWIG_Python_SetConstant(d
, "STC_ASN1_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23912 SWIG_Python_SetConstant(d
, "STC_ASN1_COMMENT",SWIG_From_int(static_cast< int >(1)));
23913 SWIG_Python_SetConstant(d
, "STC_ASN1_IDENTIFIER",SWIG_From_int(static_cast< int >(2)));
23914 SWIG_Python_SetConstant(d
, "STC_ASN1_STRING",SWIG_From_int(static_cast< int >(3)));
23915 SWIG_Python_SetConstant(d
, "STC_ASN1_OID",SWIG_From_int(static_cast< int >(4)));
23916 SWIG_Python_SetConstant(d
, "STC_ASN1_SCALAR",SWIG_From_int(static_cast< int >(5)));
23917 SWIG_Python_SetConstant(d
, "STC_ASN1_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23918 SWIG_Python_SetConstant(d
, "STC_ASN1_ATTRIBUTE",SWIG_From_int(static_cast< int >(7)));
23919 SWIG_Python_SetConstant(d
, "STC_ASN1_DESCRIPTOR",SWIG_From_int(static_cast< int >(8)));
23920 SWIG_Python_SetConstant(d
, "STC_ASN1_TYPE",SWIG_From_int(static_cast< int >(9)));
23921 SWIG_Python_SetConstant(d
, "STC_ASN1_OPERATOR",SWIG_From_int(static_cast< int >(10)));
23922 SWIG_Python_SetConstant(d
, "STC_VHDL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23923 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENT",SWIG_From_int(static_cast< int >(1)));
23924 SWIG_Python_SetConstant(d
, "STC_VHDL_COMMENTLINEBANG",SWIG_From_int(static_cast< int >(2)));
23925 SWIG_Python_SetConstant(d
, "STC_VHDL_NUMBER",SWIG_From_int(static_cast< int >(3)));
23926 SWIG_Python_SetConstant(d
, "STC_VHDL_STRING",SWIG_From_int(static_cast< int >(4)));
23927 SWIG_Python_SetConstant(d
, "STC_VHDL_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23928 SWIG_Python_SetConstant(d
, "STC_VHDL_IDENTIFIER",SWIG_From_int(static_cast< int >(6)));
23929 SWIG_Python_SetConstant(d
, "STC_VHDL_STRINGEOL",SWIG_From_int(static_cast< int >(7)));
23930 SWIG_Python_SetConstant(d
, "STC_VHDL_KEYWORD",SWIG_From_int(static_cast< int >(8)));
23931 SWIG_Python_SetConstant(d
, "STC_VHDL_STDOPERATOR",SWIG_From_int(static_cast< int >(9)));
23932 SWIG_Python_SetConstant(d
, "STC_VHDL_ATTRIBUTE",SWIG_From_int(static_cast< int >(10)));
23933 SWIG_Python_SetConstant(d
, "STC_VHDL_STDFUNCTION",SWIG_From_int(static_cast< int >(11)));
23934 SWIG_Python_SetConstant(d
, "STC_VHDL_STDPACKAGE",SWIG_From_int(static_cast< int >(12)));
23935 SWIG_Python_SetConstant(d
, "STC_VHDL_STDTYPE",SWIG_From_int(static_cast< int >(13)));
23936 SWIG_Python_SetConstant(d
, "STC_VHDL_USERWORD",SWIG_From_int(static_cast< int >(14)));
23937 SWIG_Python_SetConstant(d
, "STC_CAML_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23938 SWIG_Python_SetConstant(d
, "STC_CAML_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23939 SWIG_Python_SetConstant(d
, "STC_CAML_TAGNAME",SWIG_From_int(static_cast< int >(2)));
23940 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD",SWIG_From_int(static_cast< int >(3)));
23941 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD2",SWIG_From_int(static_cast< int >(4)));
23942 SWIG_Python_SetConstant(d
, "STC_CAML_KEYWORD3",SWIG_From_int(static_cast< int >(5)));
23943 SWIG_Python_SetConstant(d
, "STC_CAML_LINENUM",SWIG_From_int(static_cast< int >(6)));
23944 SWIG_Python_SetConstant(d
, "STC_CAML_OPERATOR",SWIG_From_int(static_cast< int >(7)));
23945 SWIG_Python_SetConstant(d
, "STC_CAML_NUMBER",SWIG_From_int(static_cast< int >(8)));
23946 SWIG_Python_SetConstant(d
, "STC_CAML_CHAR",SWIG_From_int(static_cast< int >(9)));
23947 SWIG_Python_SetConstant(d
, "STC_CAML_STRING",SWIG_From_int(static_cast< int >(11)));
23948 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT",SWIG_From_int(static_cast< int >(12)));
23949 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT1",SWIG_From_int(static_cast< int >(13)));
23950 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT2",SWIG_From_int(static_cast< int >(14)));
23951 SWIG_Python_SetConstant(d
, "STC_CAML_COMMENT3",SWIG_From_int(static_cast< int >(15)));
23952 SWIG_Python_SetConstant(d
, "STC_HA_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23953 SWIG_Python_SetConstant(d
, "STC_HA_IDENTIFIER",SWIG_From_int(static_cast< int >(1)));
23954 SWIG_Python_SetConstant(d
, "STC_HA_KEYWORD",SWIG_From_int(static_cast< int >(2)));
23955 SWIG_Python_SetConstant(d
, "STC_HA_NUMBER",SWIG_From_int(static_cast< int >(3)));
23956 SWIG_Python_SetConstant(d
, "STC_HA_STRING",SWIG_From_int(static_cast< int >(4)));
23957 SWIG_Python_SetConstant(d
, "STC_HA_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23958 SWIG_Python_SetConstant(d
, "STC_HA_CLASS",SWIG_From_int(static_cast< int >(6)));
23959 SWIG_Python_SetConstant(d
, "STC_HA_MODULE",SWIG_From_int(static_cast< int >(7)));
23960 SWIG_Python_SetConstant(d
, "STC_HA_CAPITAL",SWIG_From_int(static_cast< int >(8)));
23961 SWIG_Python_SetConstant(d
, "STC_HA_DATA",SWIG_From_int(static_cast< int >(9)));
23962 SWIG_Python_SetConstant(d
, "STC_HA_IMPORT",SWIG_From_int(static_cast< int >(10)));
23963 SWIG_Python_SetConstant(d
, "STC_HA_OPERATOR",SWIG_From_int(static_cast< int >(11)));
23964 SWIG_Python_SetConstant(d
, "STC_HA_INSTANCE",SWIG_From_int(static_cast< int >(12)));
23965 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTLINE",SWIG_From_int(static_cast< int >(13)));
23966 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK",SWIG_From_int(static_cast< int >(14)));
23967 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK2",SWIG_From_int(static_cast< int >(15)));
23968 SWIG_Python_SetConstant(d
, "STC_HA_COMMENTBLOCK3",SWIG_From_int(static_cast< int >(16)));
23969 SWIG_Python_SetConstant(d
, "STC_T3_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23970 SWIG_Python_SetConstant(d
, "STC_T3_X_DEFAULT",SWIG_From_int(static_cast< int >(1)));
23971 SWIG_Python_SetConstant(d
, "STC_T3_PREPROCESSOR",SWIG_From_int(static_cast< int >(2)));
23972 SWIG_Python_SetConstant(d
, "STC_T3_BLOCK_COMMENT",SWIG_From_int(static_cast< int >(3)));
23973 SWIG_Python_SetConstant(d
, "STC_T3_LINE_COMMENT",SWIG_From_int(static_cast< int >(4)));
23974 SWIG_Python_SetConstant(d
, "STC_T3_OPERATOR",SWIG_From_int(static_cast< int >(5)));
23975 SWIG_Python_SetConstant(d
, "STC_T3_KEYWORD",SWIG_From_int(static_cast< int >(6)));
23976 SWIG_Python_SetConstant(d
, "STC_T3_NUMBER",SWIG_From_int(static_cast< int >(7)));
23977 SWIG_Python_SetConstant(d
, "STC_T3_IDENTIFIER",SWIG_From_int(static_cast< int >(8)));
23978 SWIG_Python_SetConstant(d
, "STC_T3_S_STRING",SWIG_From_int(static_cast< int >(9)));
23979 SWIG_Python_SetConstant(d
, "STC_T3_D_STRING",SWIG_From_int(static_cast< int >(10)));
23980 SWIG_Python_SetConstant(d
, "STC_T3_X_STRING",SWIG_From_int(static_cast< int >(11)));
23981 SWIG_Python_SetConstant(d
, "STC_T3_LIB_DIRECTIVE",SWIG_From_int(static_cast< int >(12)));
23982 SWIG_Python_SetConstant(d
, "STC_T3_MSG_PARAM",SWIG_From_int(static_cast< int >(13)));
23983 SWIG_Python_SetConstant(d
, "STC_T3_HTML_TAG",SWIG_From_int(static_cast< int >(14)));
23984 SWIG_Python_SetConstant(d
, "STC_T3_HTML_DEFAULT",SWIG_From_int(static_cast< int >(15)));
23985 SWIG_Python_SetConstant(d
, "STC_T3_HTML_STRING",SWIG_From_int(static_cast< int >(16)));
23986 SWIG_Python_SetConstant(d
, "STC_T3_USER1",SWIG_From_int(static_cast< int >(17)));
23987 SWIG_Python_SetConstant(d
, "STC_T3_USER2",SWIG_From_int(static_cast< int >(18)));
23988 SWIG_Python_SetConstant(d
, "STC_T3_USER3",SWIG_From_int(static_cast< int >(19)));
23989 SWIG_Python_SetConstant(d
, "STC_REBOL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
23990 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTLINE",SWIG_From_int(static_cast< int >(1)));
23991 SWIG_Python_SetConstant(d
, "STC_REBOL_COMMENTBLOCK",SWIG_From_int(static_cast< int >(2)));
23992 SWIG_Python_SetConstant(d
, "STC_REBOL_PREFACE",SWIG_From_int(static_cast< int >(3)));
23993 SWIG_Python_SetConstant(d
, "STC_REBOL_OPERATOR",SWIG_From_int(static_cast< int >(4)));
23994 SWIG_Python_SetConstant(d
, "STC_REBOL_CHARACTER",SWIG_From_int(static_cast< int >(5)));
23995 SWIG_Python_SetConstant(d
, "STC_REBOL_QUOTEDSTRING",SWIG_From_int(static_cast< int >(6)));
23996 SWIG_Python_SetConstant(d
, "STC_REBOL_BRACEDSTRING",SWIG_From_int(static_cast< int >(7)));
23997 SWIG_Python_SetConstant(d
, "STC_REBOL_NUMBER",SWIG_From_int(static_cast< int >(8)));
23998 SWIG_Python_SetConstant(d
, "STC_REBOL_PAIR",SWIG_From_int(static_cast< int >(9)));
23999 SWIG_Python_SetConstant(d
, "STC_REBOL_TUPLE",SWIG_From_int(static_cast< int >(10)));
24000 SWIG_Python_SetConstant(d
, "STC_REBOL_BINARY",SWIG_From_int(static_cast< int >(11)));
24001 SWIG_Python_SetConstant(d
, "STC_REBOL_MONEY",SWIG_From_int(static_cast< int >(12)));
24002 SWIG_Python_SetConstant(d
, "STC_REBOL_ISSUE",SWIG_From_int(static_cast< int >(13)));
24003 SWIG_Python_SetConstant(d
, "STC_REBOL_TAG",SWIG_From_int(static_cast< int >(14)));
24004 SWIG_Python_SetConstant(d
, "STC_REBOL_FILE",SWIG_From_int(static_cast< int >(15)));
24005 SWIG_Python_SetConstant(d
, "STC_REBOL_EMAIL",SWIG_From_int(static_cast< int >(16)));
24006 SWIG_Python_SetConstant(d
, "STC_REBOL_URL",SWIG_From_int(static_cast< int >(17)));
24007 SWIG_Python_SetConstant(d
, "STC_REBOL_DATE",SWIG_From_int(static_cast< int >(18)));
24008 SWIG_Python_SetConstant(d
, "STC_REBOL_TIME",SWIG_From_int(static_cast< int >(19)));
24009 SWIG_Python_SetConstant(d
, "STC_REBOL_IDENTIFIER",SWIG_From_int(static_cast< int >(20)));
24010 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD",SWIG_From_int(static_cast< int >(21)));
24011 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD2",SWIG_From_int(static_cast< int >(22)));
24012 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD3",SWIG_From_int(static_cast< int >(23)));
24013 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD4",SWIG_From_int(static_cast< int >(24)));
24014 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD5",SWIG_From_int(static_cast< int >(25)));
24015 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD6",SWIG_From_int(static_cast< int >(26)));
24016 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD7",SWIG_From_int(static_cast< int >(27)));
24017 SWIG_Python_SetConstant(d
, "STC_REBOL_WORD8",SWIG_From_int(static_cast< int >(28)));
24018 SWIG_Python_SetConstant(d
, "STC_SQL_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24019 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENT",SWIG_From_int(static_cast< int >(1)));
24020 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
24021 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
24022 SWIG_Python_SetConstant(d
, "STC_SQL_NUMBER",SWIG_From_int(static_cast< int >(4)));
24023 SWIG_Python_SetConstant(d
, "STC_SQL_WORD",SWIG_From_int(static_cast< int >(5)));
24024 SWIG_Python_SetConstant(d
, "STC_SQL_STRING",SWIG_From_int(static_cast< int >(6)));
24025 SWIG_Python_SetConstant(d
, "STC_SQL_CHARACTER",SWIG_From_int(static_cast< int >(7)));
24026 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS",SWIG_From_int(static_cast< int >(8)));
24027 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_PROMPT",SWIG_From_int(static_cast< int >(9)));
24028 SWIG_Python_SetConstant(d
, "STC_SQL_OPERATOR",SWIG_From_int(static_cast< int >(10)));
24029 SWIG_Python_SetConstant(d
, "STC_SQL_IDENTIFIER",SWIG_From_int(static_cast< int >(11)));
24030 SWIG_Python_SetConstant(d
, "STC_SQL_SQLPLUS_COMMENT",SWIG_From_int(static_cast< int >(13)));
24031 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(15)));
24032 SWIG_Python_SetConstant(d
, "STC_SQL_WORD2",SWIG_From_int(static_cast< int >(16)));
24033 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(17)));
24034 SWIG_Python_SetConstant(d
, "STC_SQL_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(18)));
24035 SWIG_Python_SetConstant(d
, "STC_SQL_USER1",SWIG_From_int(static_cast< int >(19)));
24036 SWIG_Python_SetConstant(d
, "STC_SQL_USER2",SWIG_From_int(static_cast< int >(20)));
24037 SWIG_Python_SetConstant(d
, "STC_SQL_USER3",SWIG_From_int(static_cast< int >(21)));
24038 SWIG_Python_SetConstant(d
, "STC_SQL_USER4",SWIG_From_int(static_cast< int >(22)));
24039 SWIG_Python_SetConstant(d
, "STC_SQL_QUOTEDIDENTIFIER",SWIG_From_int(static_cast< int >(23)));
24040 SWIG_Python_SetConstant(d
, "STC_ST_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24041 SWIG_Python_SetConstant(d
, "STC_ST_STRING",SWIG_From_int(static_cast< int >(1)));
24042 SWIG_Python_SetConstant(d
, "STC_ST_NUMBER",SWIG_From_int(static_cast< int >(2)));
24043 SWIG_Python_SetConstant(d
, "STC_ST_COMMENT",SWIG_From_int(static_cast< int >(3)));
24044 SWIG_Python_SetConstant(d
, "STC_ST_SYMBOL",SWIG_From_int(static_cast< int >(4)));
24045 SWIG_Python_SetConstant(d
, "STC_ST_BINARY",SWIG_From_int(static_cast< int >(5)));
24046 SWIG_Python_SetConstant(d
, "STC_ST_BOOL",SWIG_From_int(static_cast< int >(6)));
24047 SWIG_Python_SetConstant(d
, "STC_ST_SELF",SWIG_From_int(static_cast< int >(7)));
24048 SWIG_Python_SetConstant(d
, "STC_ST_SUPER",SWIG_From_int(static_cast< int >(8)));
24049 SWIG_Python_SetConstant(d
, "STC_ST_NIL",SWIG_From_int(static_cast< int >(9)));
24050 SWIG_Python_SetConstant(d
, "STC_ST_GLOBAL",SWIG_From_int(static_cast< int >(10)));
24051 SWIG_Python_SetConstant(d
, "STC_ST_RETURN",SWIG_From_int(static_cast< int >(11)));
24052 SWIG_Python_SetConstant(d
, "STC_ST_SPECIAL",SWIG_From_int(static_cast< int >(12)));
24053 SWIG_Python_SetConstant(d
, "STC_ST_KWSEND",SWIG_From_int(static_cast< int >(13)));
24054 SWIG_Python_SetConstant(d
, "STC_ST_ASSIGN",SWIG_From_int(static_cast< int >(14)));
24055 SWIG_Python_SetConstant(d
, "STC_ST_CHARACTER",SWIG_From_int(static_cast< int >(15)));
24056 SWIG_Python_SetConstant(d
, "STC_ST_SPEC_SEL",SWIG_From_int(static_cast< int >(16)));
24057 SWIG_Python_SetConstant(d
, "STC_FS_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24058 SWIG_Python_SetConstant(d
, "STC_FS_COMMENT",SWIG_From_int(static_cast< int >(1)));
24059 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINE",SWIG_From_int(static_cast< int >(2)));
24060 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOC",SWIG_From_int(static_cast< int >(3)));
24061 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTLINEDOC",SWIG_From_int(static_cast< int >(4)));
24062 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORD",SWIG_From_int(static_cast< int >(5)));
24063 SWIG_Python_SetConstant(d
, "STC_FS_COMMENTDOCKEYWORDERROR",SWIG_From_int(static_cast< int >(6)));
24064 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD",SWIG_From_int(static_cast< int >(7)));
24065 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD2",SWIG_From_int(static_cast< int >(8)));
24066 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD3",SWIG_From_int(static_cast< int >(9)));
24067 SWIG_Python_SetConstant(d
, "STC_FS_KEYWORD4",SWIG_From_int(static_cast< int >(10)));
24068 SWIG_Python_SetConstant(d
, "STC_FS_NUMBER",SWIG_From_int(static_cast< int >(11)));
24069 SWIG_Python_SetConstant(d
, "STC_FS_STRING",SWIG_From_int(static_cast< int >(12)));
24070 SWIG_Python_SetConstant(d
, "STC_FS_PREPROCESSOR",SWIG_From_int(static_cast< int >(13)));
24071 SWIG_Python_SetConstant(d
, "STC_FS_OPERATOR",SWIG_From_int(static_cast< int >(14)));
24072 SWIG_Python_SetConstant(d
, "STC_FS_IDENTIFIER",SWIG_From_int(static_cast< int >(15)));
24073 SWIG_Python_SetConstant(d
, "STC_FS_DATE",SWIG_From_int(static_cast< int >(16)));
24074 SWIG_Python_SetConstant(d
, "STC_FS_STRINGEOL",SWIG_From_int(static_cast< int >(17)));
24075 SWIG_Python_SetConstant(d
, "STC_FS_CONSTANT",SWIG_From_int(static_cast< int >(18)));
24076 SWIG_Python_SetConstant(d
, "STC_FS_ASM",SWIG_From_int(static_cast< int >(19)));
24077 SWIG_Python_SetConstant(d
, "STC_FS_LABEL",SWIG_From_int(static_cast< int >(20)));
24078 SWIG_Python_SetConstant(d
, "STC_FS_ERROR",SWIG_From_int(static_cast< int >(21)));
24079 SWIG_Python_SetConstant(d
, "STC_FS_HEXNUMBER",SWIG_From_int(static_cast< int >(22)));
24080 SWIG_Python_SetConstant(d
, "STC_FS_BINNUMBER",SWIG_From_int(static_cast< int >(23)));
24081 SWIG_Python_SetConstant(d
, "STC_CSOUND_DEFAULT",SWIG_From_int(static_cast< int >(0)));
24082 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENT",SWIG_From_int(static_cast< int >(1)));
24083 SWIG_Python_SetConstant(d
, "STC_CSOUND_NUMBER",SWIG_From_int(static_cast< int >(2)));
24084 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPERATOR",SWIG_From_int(static_cast< int >(3)));
24085 SWIG_Python_SetConstant(d
, "STC_CSOUND_INSTR",SWIG_From_int(static_cast< int >(4)));
24086 SWIG_Python_SetConstant(d
, "STC_CSOUND_IDENTIFIER",SWIG_From_int(static_cast< int >(5)));
24087 SWIG_Python_SetConstant(d
, "STC_CSOUND_OPCODE",SWIG_From_int(static_cast< int >(6)));
24088 SWIG_Python_SetConstant(d
, "STC_CSOUND_HEADERSTMT",SWIG_From_int(static_cast< int >(7)));
24089 SWIG_Python_SetConstant(d
, "STC_CSOUND_USERKEYWORD",SWIG_From_int(static_cast< int >(8)));
24090 SWIG_Python_SetConstant(d
, "STC_CSOUND_COMMENTBLOCK",SWIG_From_int(static_cast< int >(9)));
24091 SWIG_Python_SetConstant(d
, "STC_CSOUND_PARAM",SWIG_From_int(static_cast< int >(10)));
24092 SWIG_Python_SetConstant(d
, "STC_CSOUND_ARATE_VAR",SWIG_From_int(static_cast< int >(11)));
24093 SWIG_Python_SetConstant(d
, "STC_CSOUND_KRATE_VAR",SWIG_From_int(static_cast< int >(12)));
24094 SWIG_Python_SetConstant(d
, "STC_CSOUND_IRATE_VAR",SWIG_From_int(static_cast< int >(13)));
24095 SWIG_Python_SetConstant(d
, "STC_CSOUND_GLOBAL_VAR",SWIG_From_int(static_cast< int >(14)));
24096 SWIG_Python_SetConstant(d
, "STC_CSOUND_STRINGEOL",SWIG_From_int(static_cast< int >(15)));
24097 SWIG_Python_SetConstant(d
, "STC_CMD_REDO",SWIG_From_int(static_cast< int >(2011)));
24098 SWIG_Python_SetConstant(d
, "STC_CMD_SELECTALL",SWIG_From_int(static_cast< int >(2013)));
24099 SWIG_Python_SetConstant(d
, "STC_CMD_UNDO",SWIG_From_int(static_cast< int >(2176)));
24100 SWIG_Python_SetConstant(d
, "STC_CMD_CUT",SWIG_From_int(static_cast< int >(2177)));
24101 SWIG_Python_SetConstant(d
, "STC_CMD_COPY",SWIG_From_int(static_cast< int >(2178)));
24102 SWIG_Python_SetConstant(d
, "STC_CMD_PASTE",SWIG_From_int(static_cast< int >(2179)));
24103 SWIG_Python_SetConstant(d
, "STC_CMD_CLEAR",SWIG_From_int(static_cast< int >(2180)));
24104 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWN",SWIG_From_int(static_cast< int >(2300)));
24105 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNEXTEND",SWIG_From_int(static_cast< int >(2301)));
24106 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUP",SWIG_From_int(static_cast< int >(2302)));
24107 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPEXTEND",SWIG_From_int(static_cast< int >(2303)));
24108 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFT",SWIG_From_int(static_cast< int >(2304)));
24109 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTEXTEND",SWIG_From_int(static_cast< int >(2305)));
24110 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHT",SWIG_From_int(static_cast< int >(2306)));
24111 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTEXTEND",SWIG_From_int(static_cast< int >(2307)));
24112 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFT",SWIG_From_int(static_cast< int >(2308)));
24113 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEXTEND",SWIG_From_int(static_cast< int >(2309)));
24114 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHT",SWIG_From_int(static_cast< int >(2310)));
24115 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEXTEND",SWIG_From_int(static_cast< int >(2311)));
24116 SWIG_Python_SetConstant(d
, "STC_CMD_HOME",SWIG_From_int(static_cast< int >(2312)));
24117 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEEXTEND",SWIG_From_int(static_cast< int >(2313)));
24118 SWIG_Python_SetConstant(d
, "STC_CMD_LINEEND",SWIG_From_int(static_cast< int >(2314)));
24119 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDEXTEND",SWIG_From_int(static_cast< int >(2315)));
24120 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTART",SWIG_From_int(static_cast< int >(2316)));
24121 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTSTARTEXTEND",SWIG_From_int(static_cast< int >(2317)));
24122 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTEND",SWIG_From_int(static_cast< int >(2318)));
24123 SWIG_Python_SetConstant(d
, "STC_CMD_DOCUMENTENDEXTEND",SWIG_From_int(static_cast< int >(2319)));
24124 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUP",SWIG_From_int(static_cast< int >(2320)));
24125 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPEXTEND",SWIG_From_int(static_cast< int >(2321)));
24126 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWN",SWIG_From_int(static_cast< int >(2322)));
24127 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2323)));
24128 SWIG_Python_SetConstant(d
, "STC_CMD_EDITTOGGLEOVERTYPE",SWIG_From_int(static_cast< int >(2324)));
24129 SWIG_Python_SetConstant(d
, "STC_CMD_CANCEL",SWIG_From_int(static_cast< int >(2325)));
24130 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACK",SWIG_From_int(static_cast< int >(2326)));
24131 SWIG_Python_SetConstant(d
, "STC_CMD_TAB",SWIG_From_int(static_cast< int >(2327)));
24132 SWIG_Python_SetConstant(d
, "STC_CMD_BACKTAB",SWIG_From_int(static_cast< int >(2328)));
24133 SWIG_Python_SetConstant(d
, "STC_CMD_NEWLINE",SWIG_From_int(static_cast< int >(2329)));
24134 SWIG_Python_SetConstant(d
, "STC_CMD_FORMFEED",SWIG_From_int(static_cast< int >(2330)));
24135 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOME",SWIG_From_int(static_cast< int >(2331)));
24136 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEEXTEND",SWIG_From_int(static_cast< int >(2332)));
24137 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMIN",SWIG_From_int(static_cast< int >(2333)));
24138 SWIG_Python_SetConstant(d
, "STC_CMD_ZOOMOUT",SWIG_From_int(static_cast< int >(2334)));
24139 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDLEFT",SWIG_From_int(static_cast< int >(2335)));
24140 SWIG_Python_SetConstant(d
, "STC_CMD_DELWORDRIGHT",SWIG_From_int(static_cast< int >(2336)));
24141 SWIG_Python_SetConstant(d
, "STC_CMD_LINECUT",SWIG_From_int(static_cast< int >(2337)));
24142 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDELETE",SWIG_From_int(static_cast< int >(2338)));
24143 SWIG_Python_SetConstant(d
, "STC_CMD_LINETRANSPOSE",SWIG_From_int(static_cast< int >(2339)));
24144 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDUPLICATE",SWIG_From_int(static_cast< int >(2404)));
24145 SWIG_Python_SetConstant(d
, "STC_CMD_LOWERCASE",SWIG_From_int(static_cast< int >(2340)));
24146 SWIG_Python_SetConstant(d
, "STC_CMD_UPPERCASE",SWIG_From_int(static_cast< int >(2341)));
24147 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLDOWN",SWIG_From_int(static_cast< int >(2342)));
24148 SWIG_Python_SetConstant(d
, "STC_CMD_LINESCROLLUP",SWIG_From_int(static_cast< int >(2343)));
24149 SWIG_Python_SetConstant(d
, "STC_CMD_DELETEBACKNOTLINE",SWIG_From_int(static_cast< int >(2344)));
24150 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAY",SWIG_From_int(static_cast< int >(2345)));
24151 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2346)));
24152 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAY",SWIG_From_int(static_cast< int >(2347)));
24153 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDDISPLAYEXTEND",SWIG_From_int(static_cast< int >(2348)));
24154 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAP",SWIG_From_int(static_cast< int >(2349)));
24155 SWIG_Python_SetConstant(d
, "STC_CMD_HOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2450)));
24156 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAP",SWIG_From_int(static_cast< int >(2451)));
24157 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDWRAPEXTEND",SWIG_From_int(static_cast< int >(2452)));
24158 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAP",SWIG_From_int(static_cast< int >(2453)));
24159 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMEWRAPEXTEND",SWIG_From_int(static_cast< int >(2454)));
24160 SWIG_Python_SetConstant(d
, "STC_CMD_LINECOPY",SWIG_From_int(static_cast< int >(2455)));
24161 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFT",SWIG_From_int(static_cast< int >(2390)));
24162 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTLEFTEXTEND",SWIG_From_int(static_cast< int >(2391)));
24163 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHT",SWIG_From_int(static_cast< int >(2392)));
24164 SWIG_Python_SetConstant(d
, "STC_CMD_WORDPARTRIGHTEXTEND",SWIG_From_int(static_cast< int >(2393)));
24165 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINELEFT",SWIG_From_int(static_cast< int >(2395)));
24166 SWIG_Python_SetConstant(d
, "STC_CMD_DELLINERIGHT",SWIG_From_int(static_cast< int >(2396)));
24167 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWN",SWIG_From_int(static_cast< int >(2413)));
24168 SWIG_Python_SetConstant(d
, "STC_CMD_PARADOWNEXTEND",SWIG_From_int(static_cast< int >(2414)));
24169 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUP",SWIG_From_int(static_cast< int >(2415)));
24170 SWIG_Python_SetConstant(d
, "STC_CMD_PARAUPEXTEND",SWIG_From_int(static_cast< int >(2416)));
24171 SWIG_Python_SetConstant(d
, "STC_CMD_LINEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2426)));
24172 SWIG_Python_SetConstant(d
, "STC_CMD_LINEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2427)));
24173 SWIG_Python_SetConstant(d
, "STC_CMD_CHARLEFTRECTEXTEND",SWIG_From_int(static_cast< int >(2428)));
24174 SWIG_Python_SetConstant(d
, "STC_CMD_CHARRIGHTRECTEXTEND",SWIG_From_int(static_cast< int >(2429)));
24175 SWIG_Python_SetConstant(d
, "STC_CMD_HOMERECTEXTEND",SWIG_From_int(static_cast< int >(2430)));
24176 SWIG_Python_SetConstant(d
, "STC_CMD_VCHOMERECTEXTEND",SWIG_From_int(static_cast< int >(2431)));
24177 SWIG_Python_SetConstant(d
, "STC_CMD_LINEENDRECTEXTEND",SWIG_From_int(static_cast< int >(2432)));
24178 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEUPRECTEXTEND",SWIG_From_int(static_cast< int >(2433)));
24179 SWIG_Python_SetConstant(d
, "STC_CMD_PAGEDOWNRECTEXTEND",SWIG_From_int(static_cast< int >(2434)));
24180 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUP",SWIG_From_int(static_cast< int >(2435)));
24181 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEUPEXTEND",SWIG_From_int(static_cast< int >(2436)));
24182 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWN",SWIG_From_int(static_cast< int >(2437)));
24183 SWIG_Python_SetConstant(d
, "STC_CMD_STUTTEREDPAGEDOWNEXTEND",SWIG_From_int(static_cast< int >(2438)));
24184 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTEND",SWIG_From_int(static_cast< int >(2439)));
24185 SWIG_Python_SetConstant(d
, "STC_CMD_WORDLEFTENDEXTEND",SWIG_From_int(static_cast< int >(2440)));
24186 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTEND",SWIG_From_int(static_cast< int >(2441)));
24187 SWIG_Python_SetConstant(d
, "STC_CMD_WORDRIGHTENDEXTEND",SWIG_From_int(static_cast< int >(2442)));
24188 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHANGE",SWIG_From_int(static_cast< int >(wxEVT_STC_CHANGE
)));
24189 SWIG_Python_SetConstant(d
, "wxEVT_STC_STYLENEEDED",SWIG_From_int(static_cast< int >(wxEVT_STC_STYLENEEDED
)));
24190 SWIG_Python_SetConstant(d
, "wxEVT_STC_CHARADDED",SWIG_From_int(static_cast< int >(wxEVT_STC_CHARADDED
)));
24191 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTREACHED",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTREACHED
)));
24192 SWIG_Python_SetConstant(d
, "wxEVT_STC_SAVEPOINTLEFT",SWIG_From_int(static_cast< int >(wxEVT_STC_SAVEPOINTLEFT
)));
24193 SWIG_Python_SetConstant(d
, "wxEVT_STC_ROMODIFYATTEMPT",SWIG_From_int(static_cast< int >(wxEVT_STC_ROMODIFYATTEMPT
)));
24194 SWIG_Python_SetConstant(d
, "wxEVT_STC_KEY",SWIG_From_int(static_cast< int >(wxEVT_STC_KEY
)));
24195 SWIG_Python_SetConstant(d
, "wxEVT_STC_DOUBLECLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_DOUBLECLICK
)));
24196 SWIG_Python_SetConstant(d
, "wxEVT_STC_UPDATEUI",SWIG_From_int(static_cast< int >(wxEVT_STC_UPDATEUI
)));
24197 SWIG_Python_SetConstant(d
, "wxEVT_STC_MODIFIED",SWIG_From_int(static_cast< int >(wxEVT_STC_MODIFIED
)));
24198 SWIG_Python_SetConstant(d
, "wxEVT_STC_MACRORECORD",SWIG_From_int(static_cast< int >(wxEVT_STC_MACRORECORD
)));
24199 SWIG_Python_SetConstant(d
, "wxEVT_STC_MARGINCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_MARGINCLICK
)));
24200 SWIG_Python_SetConstant(d
, "wxEVT_STC_NEEDSHOWN",SWIG_From_int(static_cast< int >(wxEVT_STC_NEEDSHOWN
)));
24201 SWIG_Python_SetConstant(d
, "wxEVT_STC_PAINTED",SWIG_From_int(static_cast< int >(wxEVT_STC_PAINTED
)));
24202 SWIG_Python_SetConstant(d
, "wxEVT_STC_USERLISTSELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_USERLISTSELECTION
)));
24203 SWIG_Python_SetConstant(d
, "wxEVT_STC_URIDROPPED",SWIG_From_int(static_cast< int >(wxEVT_STC_URIDROPPED
)));
24204 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLSTART",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLSTART
)));
24205 SWIG_Python_SetConstant(d
, "wxEVT_STC_DWELLEND",SWIG_From_int(static_cast< int >(wxEVT_STC_DWELLEND
)));
24206 SWIG_Python_SetConstant(d
, "wxEVT_STC_START_DRAG",SWIG_From_int(static_cast< int >(wxEVT_STC_START_DRAG
)));
24207 SWIG_Python_SetConstant(d
, "wxEVT_STC_DRAG_OVER",SWIG_From_int(static_cast< int >(wxEVT_STC_DRAG_OVER
)));
24208 SWIG_Python_SetConstant(d
, "wxEVT_STC_DO_DROP",SWIG_From_int(static_cast< int >(wxEVT_STC_DO_DROP
)));
24209 SWIG_Python_SetConstant(d
, "wxEVT_STC_ZOOM",SWIG_From_int(static_cast< int >(wxEVT_STC_ZOOM
)));
24210 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_CLICK
)));
24211 SWIG_Python_SetConstant(d
, "wxEVT_STC_HOTSPOT_DCLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_HOTSPOT_DCLICK
)));
24212 SWIG_Python_SetConstant(d
, "wxEVT_STC_CALLTIP_CLICK",SWIG_From_int(static_cast< int >(wxEVT_STC_CALLTIP_CLICK
)));
24213 SWIG_Python_SetConstant(d
, "wxEVT_STC_AUTOCOMP_SELECTION",SWIG_From_int(static_cast< int >(wxEVT_STC_AUTOCOMP_SELECTION
)));